From 54ff7790908e2b31f976ba74ca353bc4507ea70d Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sat, 2 Jun 2007 05:18:13 +0000 Subject: Addition of PositionCache module which adds cacing of string to position information and segments long pieces of text so they can be handled more efficiently. --- win32/scintilla.mak | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'win32/scintilla.mak') diff --git a/win32/scintilla.mak b/win32/scintilla.mak index da3c506bd..b6b4749ef 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -99,6 +99,7 @@ SOBJS=\ $(DIR_O)\KeyMap.obj \ $(DIR_O)\LineMarker.obj \ $(DIR_O)\PlatWin.obj \ + $(DIR_O)\PositionCache.obj \ $(DIR_O)\PropSet.obj \ $(DIR_O)\RESearch.obj \ $(DIR_O)\RunStyles.obj \ @@ -193,6 +194,7 @@ LOBJS=\ $(DIR_O)\KeyWords.obj \ $(DIR_O)\LineMarker.obj \ $(DIR_O)\PlatWin.obj \ + $(DIR_O)\PositionCache.obj \ $(DIR_O)\PropSet.obj \ $(DIR_O)\RESearch.obj \ $(DIR_O)\RunStyles.obj \ @@ -280,7 +282,7 @@ $(DIR_O)\Editor.obj: ../src/Editor.cxx ../include/Platform.h ../include/Scintill ../src/Partitioning.h ../src/CellBuffer.h ../src/KeyMap.h \ ../src/RunStyles.h ../src/Indicator.h ../src/XPM.h ../src/LineMarker.h \ ../src/Style.h ../src/ViewStyle.h ../src/CharClassify.h \ - ../src/Decoration.h ../src/Document.h ../src/Editor.h + ../src/Decoration.h ../src/Document.h ../src/Editor.h ../src/PositionCache.h $(DIR_O)\ExternalLexer.obj: ../src/ExternalLexer.cxx ../include/Platform.h \ ../include/Scintilla.h ../include/SciLexer.h ../include/PropSet.h \ ../include/SString.h ../include/Accessor.h ../src/DocumentAccessor.h \ @@ -427,6 +429,12 @@ $(DIR_O)\LineMarker.obj: ../src/LineMarker.cxx ../include/Platform.h \ ../include/Scintilla.h ../src/XPM.h ../src/LineMarker.h $(DIR_O)\PlatWin.obj: PlatWin.cxx ../include/Platform.h PlatformRes.h \ ../src/UniConversion.h ../src/XPM.h +$(DIR_O)\PositionCache.obj: ../src/Editor.cxx ../include/Platform.h ../include/Scintilla.h \ + ../src/ContractionState.h ../src/SVector.h ../src/SplitVector.h \ + ../src/Partitioning.h ../src/CellBuffer.h ../src/KeyMap.h \ + ../src/RunStyles.h ../src/Indicator.h ../src/XPM.h ../src/LineMarker.h \ + ../src/Style.h ../src/ViewStyle.h ../src/CharClassify.h \ + ../src/Decoration.h ../src/Document.h ../src/Editor.h ../src/PositionCache.h $(DIR_O)\PropSet.obj: ../src/PropSet.cxx ../include/Platform.h ../include/PropSet.h \ ../include/SString.h $(DIR_O)\RESearch.obj: ../src/RESearch.cxx ../src/CharClassify.h ../src/RESearch.h -- cgit v1.2.3