aboutsummaryrefslogtreecommitdiff
path: root/ide
diff options
context:
space:
mode:
authorpboutill2012-04-27 16:43:33 +0000
committerpboutill2012-04-27 16:43:33 +0000
commit88a931fc1f1e5271c6167ccb28c45b5b33a20f78 (patch)
tree1c8c34ad66fe2ecd5e98db0cb002462071b8b8df /ide
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')
-rw-r--r--ide/undo.mli (renamed from ide/undo_lablgtk_ge212.mli)0
-rw-r--r--ide/undo_lablgtk_ge26.mli33
-rw-r--r--ide/undo_lablgtk_lt26.mli33
3 files changed, 0 insertions, 66 deletions
diff --git a/ide/undo_lablgtk_ge212.mli b/ide/undo.mli
index d9451fd1ae..d9451fd1ae 100644
--- a/ide/undo_lablgtk_ge212.mli
+++ b/ide/undo.mli
diff --git a/ide/undo_lablgtk_ge26.mli b/ide/undo_lablgtk_ge26.mli
deleted file mode 100644
index a2eb65bd1d..0000000000
--- a/ide/undo_lablgtk_ge26.mli
+++ /dev/null
@@ -1,33 +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] Gtk.obj ->
-object
- inherit GText.view
- 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 ->
- ?border_width:int ->
- ?width:int ->
- ?height:int ->
- ?packing:(GObj.widget -> unit) ->
- ?show:bool ->
- unit ->
- undoable_view
-
-
diff --git a/ide/undo_lablgtk_lt26.mli b/ide/undo_lablgtk_lt26.mli
deleted file mode 100644
index b193007b6e..0000000000
--- a/ide/undo_lablgtk_lt26.mli
+++ /dev/null
@@ -1,33 +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 Gtk.obj ->
-object
- inherit GText.view
- 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 ->
- ?border_width:int ->
- ?width:int ->
- ?height:int ->
- ?packing:(GObj.widget -> unit) ->
- ?show:bool ->
- unit ->
- undoable_view
-
-