diff options
Diffstat (limited to 'ide/undo_lablgtk_ge212.mli')
-rw-r--r-- | ide/undo_lablgtk_ge212.mli | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/ide/undo_lablgtk_ge212.mli b/ide/undo_lablgtk_ge212.mli deleted file mode 100644 index ea7f85ef..00000000 --- a/ide/undo_lablgtk_ge212.mli +++ /dev/null @@ -1,35 +0,0 @@ -(************************************************************************) -(* v * The Coq Proof Assistant / The Coq Development Team *) -(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2014 *) -(* \VV/ **************************************************************) -(* // * This file is distributed under the terms of the *) -(* * GNU Lesser General Public License Version 2.1 *) -(************************************************************************) - -(* An undoable view class *) - -class undoable_view : ([> Gtk.text_view] as 'a) Gtk.obj -> -object - inherit GText.view - val obj : 'a Gtk.obj - method undo : bool - method redo : bool - method clear_undo : unit -end - -val undoable_view : - ?buffer:GText.buffer -> - ?editable:bool -> - ?cursor_visible:bool -> - ?justification:GtkEnums.justification -> - ?wrap_mode:GtkEnums.wrap_mode -> - ?accepts_tab:bool -> - ?border_width:int -> - ?width:int -> - ?height:int -> - ?packing:(GObj.widget -> unit) -> - ?show:bool -> - unit -> - undoable_view - - |