diff options
Diffstat (limited to 'include/ScintillaTypes.h')
-rw-r--r-- | include/ScintillaTypes.h | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/include/ScintillaTypes.h b/include/ScintillaTypes.h index fe4b06032..962542011 100644 --- a/include/ScintillaTypes.h +++ b/include/ScintillaTypes.h @@ -90,6 +90,10 @@ enum class MarkerSymbol { }; enum class MarkerOutline { + HistoryRevertedToOrigin = 21, + HistorySaved = 22, + HistoryModified = 23, + HistoryRevertedToModified = 24, FolderEnd = 25, FolderOpenMid = 26, FolderMidTail = 27, @@ -219,7 +223,15 @@ enum class IndicatorNumbers { Container = 8, Ime = 32, ImeMax = 35, - Max = 35, + HistoryRevertedToOriginInsertion = 36, + HistoryRevertedToOriginDeletion = 37, + HistorySavedInsertion = 38, + HistorySavedDeletion = 39, + HistoryModifiedInsertion = 40, + HistoryModifiedDeletion = 41, + HistoryRevertedToModifiedInsertion = 42, + HistoryRevertedToModifiedDeletion = 43, + Max = 43, }; enum class IndicValue { @@ -263,6 +275,13 @@ enum class FindOption { Cxx11RegEx = 0x00800000, }; +enum class ChangeHistoryOption { + Disabled = 0, + Enabled = 1, + Markers = 2, + Indicators = 4, +}; + enum class FoldLevel { None = 0x0, Base = 0x400, |