aboutsummaryrefslogtreecommitdiff
path: root/actions.mli
diff options
context:
space:
mode:
Diffstat (limited to 'actions.mli')
-rwxr-xr-xactions.mli28
1 files changed, 28 insertions, 0 deletions
diff --git a/actions.mli b/actions.mli
new file mode 100755
index 0000000..f955538
--- /dev/null
+++ b/actions.mli
@@ -0,0 +1,28 @@
+type direction =
+| Up of int
+| Down of int
+| Left of int
+| Right of int
+| Absolute of int * int
+
+type modes =
+| Normal
+| Select
+| Edit
+| Command
+
+type actions =
+| Move of direction
+| Resize (* Resize event *)
+| Escape
+| Delete
+| Yank
+| Paste
+| Search
+| Undo
+| Edit
+| InsertFormula
+| Visual
+| Button1_clicked of (int * int)
+| Button1_released of (int * int)
+| Command