aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/undo_lablgtk_ge212.mli
diff options
context:
space:
mode:
authorGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-27 16:43:33 +0000
committerGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-27 16:43:33 +0000
commit88a931fc1f1e5271c6167ccb28c45b5b33a20f78 (patch)
tree1c8c34ad66fe2ecd5e98db0cb002462071b8b8df /ide/undo_lablgtk_ge212.mli
parentdaf719e5554e823b6540be05e48e96ac478e2865 (diff)
Configure asks for lablgtk >= 2.12 with gtksourceview2
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15255 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/undo_lablgtk_ge212.mli')
-rw-r--r--ide/undo_lablgtk_ge212.mli35
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 d9451fd1a..000000000
--- 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-2010 *)
-(* \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
-
-