aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/wg_Find.mli
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-23 10:35:25 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-23 10:35:25 +0000
commitbd18c08212cbed9877167b64e0d1484a483b3cf6 (patch)
treec88bb9a6ae05ddecae3e9bd7d5a59c023c8ad6d1 /ide/wg_Find.mli
parenta2e44a2dbe77c5ce227ea7e12d2cfce903221254 (diff)
Now CoqIDE has a nice find & replace mechanism. BTW, removing a blob of dead code that used to serve as such a long time ago.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15234 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/wg_Find.mli')
-rw-r--r--ide/wg_Find.mli19
1 files changed, 19 insertions, 0 deletions
diff --git a/ide/wg_Find.mli b/ide/wg_Find.mli
new file mode 100644
index 000000000..96025e188
--- /dev/null
+++ b/ide/wg_Find.mli
@@ -0,0 +1,19 @@
+(************************************************************************)
+(* 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 *)
+(************************************************************************)
+
+class finder : GText.view ->
+ object
+ method coerce : GObj.widget
+ method hide : unit -> unit
+ method show_find : unit -> unit
+ method show_replace : unit -> unit
+ method replace : unit -> unit
+ method replace_all : unit -> unit
+ method find_backward : unit -> unit
+ method find_forward : unit -> unit
+ end