aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/preferences.mli
diff options
context:
space:
mode:
authorGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-18 15:49:31 +0000
committerGravatar ppedrot <ppedrot@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-18 15:49:31 +0000
commitab99b2f3e62bdb67c2ebb001cf5bd0dcce8be73d (patch)
treed17084760a378ec6ad907bb6e5c67820d3086aab /ide/preferences.mli
parentcf9a7e43e3527184b56e18e5a65836a3345f13c7 (diff)
Cleaning up preferences and hooks in CoqIDE
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15215 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/preferences.mli')
-rw-r--r--ide/preferences.mli12
1 files changed, 6 insertions, 6 deletions
diff --git a/ide/preferences.mli b/ide/preferences.mli
index d862979fe..b680c6f02 100644
--- a/ide/preferences.mli
+++ b/ide/preferences.mli
@@ -57,7 +57,6 @@ type pref =
*)
mutable auto_complete : bool;
mutable stop_before : bool;
- mutable lax_syntax : bool;
mutable vertical_tabs : bool;
mutable opposite_tabs : bool;
@@ -73,10 +72,11 @@ val current : pref ref
val configure : ?apply:(unit -> unit) -> unit -> unit
-val change_font : (Pango.font_description -> unit) ref
-val change_background_color : (Gdk.color -> unit) ref
-val show_toolbar : (bool -> unit) ref
-val auto_complete : (bool -> unit) ref
-val resize_window : (unit -> unit) ref
+(* Hooks *)
+val refresh_font_hook : (unit -> unit) ref
+val refresh_background_color_hook : (unit -> unit) ref
+val refresh_toolbar_hook : (unit -> unit) ref
+val resize_window_hook : (unit -> unit) ref
+val refresh_tabs_hook : (unit -> unit) ref
val use_default_doc_url : string