aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/undo.mli
diff options
context:
space:
mode:
authorGravatar monate <monate@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-03-06 08:53:31 +0000
committerGravatar monate <monate@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-03-06 08:53:31 +0000
commit59cfe64fc355ac910d3c795cec08ecc97c77589d (patch)
tree268d0bf37c6bc1f7187f49e8c4e3948b82871662 /ide/undo.mli
parent8b1e3ffdca68c46e2019b49c1c1bcbcd07cb5776 (diff)
coqide: le undo
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@3746 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/undo.mli')
-rw-r--r--ide/undo.mli17
1 files changed, 17 insertions, 0 deletions
diff --git a/ide/undo.mli b/ide/undo.mli
new file mode 100644
index 000000000..36700f396
--- /dev/null
+++ b/ide/undo.mli
@@ -0,0 +1,17 @@
+(* An undoable view class *)
+
+class undoable_view : Gtk.textview Gtk.obj ->
+object
+ inherit GText.view
+ method undo : bool
+ method redo : bool
+end
+
+val undoable_view :
+ ?buffer:GText.buffer ->
+ ?editable:bool ->
+ ?cursor_visible:bool ->
+ ?wrap_mode:Gtk.Tags.wrap_mode ->
+ ?packing:(GObj.widget -> unit) -> ?show:bool -> unit -> undoable_view
+
+