Initial version of wxStyledTextCtrl, a Scintilla wrapper. There is
authorRobin Dunn <robin@alldunn.com>
Thu, 9 Mar 2000 19:42:06 +0000 (19:42 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 9 Mar 2000 19:42:06 +0000 (19:42 +0000)
commit9ce192d417eb9eb614bcf8510e91dac318706249
tree31ccb53a884c6f722f39e332cfc6c816bf29b731
parent7b22b912fd5db10c9b303ccaeea19343375bc2f1
Initial version of wxStyledTextCtrl, a Scintilla wrapper.  There is
still LOTS and LOTS to be done, but this is already very functional.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
94 files changed:
contrib/include/wx/stc/stc.h [new file with mode: 0644]
contrib/samples/stc/.cvsignore [new file with mode: 0644]
contrib/samples/stc/makefile.vc [new file with mode: 0644]
contrib/samples/stc/stctest.cpp [new file with mode: 0644]
contrib/samples/stc/stctest.rc [new file with mode: 0644]
contrib/src/stc/PlatWX.cpp [new file with mode: 0644]
contrib/src/stc/README.txt [new file with mode: 0644]
contrib/src/stc/ScintillaWX.cpp [new file with mode: 0644]
contrib/src/stc/ScintillaWX.h [new file with mode: 0644]
contrib/src/stc/makefile.vc [new file with mode: 0644]
contrib/src/stc/scintilla/README.txt [new file with mode: 0644]
contrib/src/stc/scintilla/include/Accessor.h [new file with mode: 0644]
contrib/src/stc/scintilla/include/KeyWords.h [new file with mode: 0644]
contrib/src/stc/scintilla/include/Platform.h [new file with mode: 0644]
contrib/src/stc/scintilla/include/PropSet.h [new file with mode: 0644]
contrib/src/stc/scintilla/include/SciLexer.h [new file with mode: 0644]
contrib/src/stc/scintilla/include/Scintilla.h [new file with mode: 0644]
contrib/src/stc/scintilla/include/WinDefs.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/Accessor.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/AutoComplete.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/AutoComplete.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/CallTip.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/CallTip.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/CellBuffer.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/CellBuffer.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/ContractionState.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/ContractionState.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/Document.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/Document.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/Editor.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/Editor.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/Indicator.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/Indicator.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/KeyMap.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/KeyMap.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/KeyWords.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/LineMarker.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/LineMarker.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/PropSet.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/SVector.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/ScintillaBase.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/ScintillaBase.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/Style.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/Style.h [new file with mode: 0644]
contrib/src/stc/scintilla/src/ViewStyle.cxx [new file with mode: 0644]
contrib/src/stc/scintilla/src/ViewStyle.h [new file with mode: 0644]
contrib/src/stc/stc.cpp [new file with mode: 0644]
include/wx/stc/stc.h [new file with mode: 0644]
samples/stc/.cvsignore [new file with mode: 0644]
samples/stc/makefile.vc [new file with mode: 0644]
samples/stc/stctest.cpp [new file with mode: 0644]
samples/stc/stctest.rc [new file with mode: 0644]
src/stc/PlatWX.cpp [new file with mode: 0644]
src/stc/README.txt [new file with mode: 0644]
src/stc/ScintillaWX.cpp [new file with mode: 0644]
src/stc/ScintillaWX.h [new file with mode: 0644]
src/stc/makefile.vc [new file with mode: 0644]
src/stc/scintilla/README.txt [new file with mode: 0644]
src/stc/scintilla/include/Accessor.h [new file with mode: 0644]
src/stc/scintilla/include/KeyWords.h [new file with mode: 0644]
src/stc/scintilla/include/Platform.h [new file with mode: 0644]
src/stc/scintilla/include/PropSet.h [new file with mode: 0644]
src/stc/scintilla/include/SciLexer.h [new file with mode: 0644]
src/stc/scintilla/include/Scintilla.h [new file with mode: 0644]
src/stc/scintilla/include/WinDefs.h [new file with mode: 0644]
src/stc/scintilla/src/Accessor.cxx [new file with mode: 0644]
src/stc/scintilla/src/AutoComplete.cxx [new file with mode: 0644]
src/stc/scintilla/src/AutoComplete.h [new file with mode: 0644]
src/stc/scintilla/src/CallTip.cxx [new file with mode: 0644]
src/stc/scintilla/src/CallTip.h [new file with mode: 0644]
src/stc/scintilla/src/CellBuffer.cxx [new file with mode: 0644]
src/stc/scintilla/src/CellBuffer.h [new file with mode: 0644]
src/stc/scintilla/src/ContractionState.cxx [new file with mode: 0644]
src/stc/scintilla/src/ContractionState.h [new file with mode: 0644]
src/stc/scintilla/src/Document.cxx [new file with mode: 0644]
src/stc/scintilla/src/Document.h [new file with mode: 0644]
src/stc/scintilla/src/Editor.cxx [new file with mode: 0644]
src/stc/scintilla/src/Editor.h [new file with mode: 0644]
src/stc/scintilla/src/Indicator.cxx [new file with mode: 0644]
src/stc/scintilla/src/Indicator.h [new file with mode: 0644]
src/stc/scintilla/src/KeyMap.cxx [new file with mode: 0644]
src/stc/scintilla/src/KeyMap.h [new file with mode: 0644]
src/stc/scintilla/src/KeyWords.cxx [new file with mode: 0644]
src/stc/scintilla/src/LineMarker.cxx [new file with mode: 0644]
src/stc/scintilla/src/LineMarker.h [new file with mode: 0644]
src/stc/scintilla/src/PropSet.cxx [new file with mode: 0644]
src/stc/scintilla/src/SVector.h [new file with mode: 0644]
src/stc/scintilla/src/ScintillaBase.cxx [new file with mode: 0644]
src/stc/scintilla/src/ScintillaBase.h [new file with mode: 0644]
src/stc/scintilla/src/Style.cxx [new file with mode: 0644]
src/stc/scintilla/src/Style.h [new file with mode: 0644]
src/stc/scintilla/src/ViewStyle.cxx [new file with mode: 0644]
src/stc/scintilla/src/ViewStyle.h [new file with mode: 0644]
src/stc/stc.cpp [new file with mode: 0644]