X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaGui.mli;h=6f9601f710475b740fa1529dd9549850ee5f5bfd;hb=57b43a967eaf3b0747350cd775d4301a53af2820;hp=f517bbb9cb3c59415cc6e87933e353af687e3ec5;hpb=0a9583936e33eb9d65361537fd1e05168d423d11;p=helm.git diff --git a/helm/matita/matitaGui.mli b/helm/matita/matitaGui.mli index f517bbb9c..6f9601f71 100644 --- a/helm/matita/matitaGui.mli +++ b/helm/matita/matitaGui.mli @@ -34,6 +34,12 @@ object method log_callback: MatitaLog.log_callback end +class type browserWin = +object + inherit MatitaGeneratedGui.browserWin + method browserUri: GEdit.combo_box_entry +end + (** @param fname name of the Glade file describing the GUI *) class type gui = object @@ -45,15 +51,17 @@ object method about : MatitaGeneratedGui.aboutWin method fileSel : MatitaGeneratedGui.fileSelectionWin method main : MatitaGeneratedGui.mainWin + method findRepl : MatitaGeneratedGui.findReplWin (* method toolbar : MatitaGeneratedGui.toolBarWin *) method console: console + method sourceView: GSourceView.source_view (** {2 Dialogs instantiation} * methods below create a new window on each invocation. You should * remember to destroy windows after use *) - method newBrowserWin: unit -> MatitaGeneratedGui.browserWin + method newBrowserWin: unit -> browserWin method newUriDialog: unit -> MatitaGeneratedGui.uriChoiceDialog method newInterpDialog: unit -> MatitaGeneratedGui.interpChoiceDialog method newConfirmationDialog: unit -> MatitaGeneratedGui.confirmationDialog @@ -70,6 +78,12 @@ object method askText: ?title:string -> ?msg:string -> unit -> string option method loadScript: string -> unit + method setStar: string -> bool -> unit + + (** {3 Fonts} *) + method increaseFontSize: unit -> unit + method decreaseFontSize: unit -> unit + method resetFontSize: unit -> unit end