done with functional-core logic for redo (now just need to send REDO_ACTION on key callback when shortcut is pressed)

This commit is contained in:
2024-08-08 23:43:38 +01:00
parent 10b3617689
commit 4d0d8ef0a1
4 changed files with 145 additions and 85 deletions

View File

@@ -6,6 +6,7 @@ sig
| MOUSE_LEFT_RELEASE
| RESIZE_WINDOW of {width: int, height: int}
| UNDO_ACTION
| REDO_ACTION
end
structure InputMessage :> INPUT_MESSAGE =
@@ -16,4 +17,5 @@ struct
| MOUSE_LEFT_RELEASE
| RESIZE_WINDOW of {width: int, height: int}
| UNDO_ACTION
| REDO_ACTION
end