diff options
author | Neil <nyamatongwe@gmail.com> | 2024-02-09 21:45:35 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-02-09 21:45:35 +1100 |
commit | bd53ffcbefe4e7a22fc493b1916939bae5f9dc1d (patch) | |
tree | bfe435d75b222d464a9cbb21e25583d33c591936 /include/ScintillaMessages.h | |
parent | 07a7683902feb4b9944394b9378f0a1a51972497 (diff) | |
download | scintilla-mirror-bd53ffcbefe4e7a22fc493b1916939bae5f9dc1d.tar.gz |
Implement API to read and write undo history from applications.
Diffstat (limited to 'include/ScintillaMessages.h')
-rw-r--r-- | include/ScintillaMessages.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/ScintillaMessages.h b/include/ScintillaMessages.h index 4b9421242..5cff5ed26 100644 --- a/include/ScintillaMessages.h +++ b/include/ScintillaMessages.h @@ -171,6 +171,18 @@ enum class Message { GetCharacterCategoryOptimization = 2721, BeginUndoAction = 2078, EndUndoAction = 2079, + GetUndoActions = 2790, + SetUndoSavePoint = 2791, + GetUndoSavePoint = 2792, + SetUndoCurrent = 2793, + GetUndoCurrent = 2794, + SetUndoTentative = 2795, + GetUndoTentative = 2796, + PushUndoActionType = 2797, + ChangeLastUndoActionText = 2798, + GetUndoActionType = 2799, + GetUndoActionPosition = 2800, + GetUndoActionText = 2801, IndicSetStyle = 2080, IndicGetStyle = 2081, IndicSetFore = 2082, |