From 926cb6f7d228b347db16a45e1f2632da475da1f0 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 31 Jul 2022 15:51:53 +1000 Subject: Added change history which can display document changes (modified, saved, ...) in the margin or in the text. --- win32/Scintilla.vcxproj | 2 +- win32/deps.mak | 13 +++++++++++++ win32/makefile | 1 + win32/nmdeps.mak | 13 +++++++++++++ win32/scintilla.mak | 1 + 5 files changed, 29 insertions(+), 1 deletion(-) (limited to 'win32') diff --git a/win32/Scintilla.vcxproj b/win32/Scintilla.vcxproj index 1ceffb325..b8c6c4152 100644 --- a/win32/Scintilla.vcxproj +++ b/win32/Scintilla.vcxproj @@ -36,7 +36,7 @@ DynamicLibrary Unicode - v142 + v143 true diff --git a/win32/deps.mak b/win32/deps.mak index 652a4c012..98ddbaaf2 100644 --- a/win32/deps.mak +++ b/win32/deps.mak @@ -97,8 +97,21 @@ $(DIR_O)/CellBuffer.o: \ ../src/Position.h \ ../src/SplitVector.h \ ../src/Partitioning.h \ + ../src/RunStyles.h \ + ../src/SparseVector.h \ + ../src/ChangeHistory.h \ ../src/CellBuffer.h \ ../src/UniConversion.h +$(DIR_O)/ChangeHistory.o: \ + ../src/ChangeHistory.cxx \ + ../include/ScintillaTypes.h \ + ../src/Debugging.h \ + ../src/Position.h \ + ../src/SplitVector.h \ + ../src/Partitioning.h \ + ../src/RunStyles.h \ + ../src/SparseVector.h \ + ../src/ChangeHistory.h $(DIR_O)/CharacterCategoryMap.o: \ ../src/CharacterCategoryMap.cxx \ ../src/CharacterCategoryMap.h diff --git a/win32/makefile b/win32/makefile index 5bb146056..5c17641ef 100644 --- a/win32/makefile +++ b/win32/makefile @@ -87,6 +87,7 @@ SRC_OBJS = \ $(DIR_O)/CaseConvert.o \ $(DIR_O)/CaseFolder.o \ $(DIR_O)/CellBuffer.o \ + $(DIR_O)/ChangeHistory.o \ $(DIR_O)/CharacterCategoryMap.o \ $(DIR_O)/CharacterType.o \ $(DIR_O)/CharClassify.o \ diff --git a/win32/nmdeps.mak b/win32/nmdeps.mak index ee7db779b..1682eb54a 100644 --- a/win32/nmdeps.mak +++ b/win32/nmdeps.mak @@ -97,8 +97,21 @@ $(DIR_O)/CellBuffer.obj: \ ../src/Position.h \ ../src/SplitVector.h \ ../src/Partitioning.h \ + ../src/RunStyles.h \ + ../src/SparseVector.h \ + ../src/ChangeHistory.h \ ../src/CellBuffer.h \ ../src/UniConversion.h +$(DIR_O)/ChangeHistory.obj: \ + ../src/ChangeHistory.cxx \ + ../include/ScintillaTypes.h \ + ../src/Debugging.h \ + ../src/Position.h \ + ../src/SplitVector.h \ + ../src/Partitioning.h \ + ../src/RunStyles.h \ + ../src/SparseVector.h \ + ../src/ChangeHistory.h $(DIR_O)/CharacterCategoryMap.obj: \ ../src/CharacterCategoryMap.cxx \ ../src/CharacterCategoryMap.h diff --git a/win32/scintilla.mak b/win32/scintilla.mak index 3e089c46a..62b90385e 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -82,6 +82,7 @@ SRC_OBJS=\ $(DIR_O)\CaseConvert.obj \ $(DIR_O)\CaseFolder.obj \ $(DIR_O)\CellBuffer.obj \ + $(DIR_O)\ChangeHistory.obj \ $(DIR_O)\CharacterCategoryMap.obj \ $(DIR_O)\CharacterType.obj \ $(DIR_O)\CharClassify.obj \ -- cgit v1.2.3