X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2FmatitaGui.ml;h=b54dbb777f2e57f7e898d5510f7dcf7b0232ca03;hb=57b43a967eaf3b0747350cd775d4301a53af2820;hp=8eec3244d29915ff57768b0acb1f0de7961c2cc4;hpb=842919f2f8ee71a5301ad962220569450340a9e9;p=helm.git diff --git a/helm/matita/matitaGui.ml b/helm/matita/matitaGui.ml index 8eec3244d..b54dbb777 100644 --- a/helm/matita/matitaGui.ml +++ b/helm/matita/matitaGui.ml @@ -42,7 +42,7 @@ end class console ~(buffer: GText.buffer) () = object (self) val error_tag = buffer#create_tag [ `FOREGROUND "red" ] - val warning_tag = buffer#create_tag [ `FOREGROUND "yellow" ] + val warning_tag = buffer#create_tag [ `FOREGROUND "orange" ] val message_tag = buffer#create_tag [] val debug_tag = buffer#create_tag [ `FOREGROUND "#888888" ] method message s = buffer#insert ~iter:buffer#end_iter ~tags:[message_tag] s @@ -58,12 +58,58 @@ class console ~(buffer: GText.buffer) () = | `Message -> self#message (s ^ "\n") | `Warning -> self#warning (s ^ "\n") end + +let clean_current_baseuri status = + try + let baseuri = MatitaTypes.get_string_option status "baseuri" in + MatitacleanLib.clean_baseuris [baseuri] + with MatitaTypes.Option_error _ -> () + +let ask_and_save_moo_if_needed parent fname status = + let save () = + MatitacLib.dump_moo_to_file fname status.MatitaTypes.moo_content_rev in + if (MatitaScript.instance ())#eos && + status.MatitaTypes.proof_status = MatitaTypes.No_proof + then + begin + let mooname = + MatitaMisc.obj_file_of_script fname + in + let rc = + MatitaGtkMisc.ask_confirmation + ~title:"A .moo can be generated" + ~message:(Printf.sprintf + "%s can be generated for %s.\nShould I generate it?" + mooname fname) + ~parent () + in + let b = + match rc with + | `YES -> true + | `NO -> false + | `CANCEL -> raise MatitaTypes.Cancel + in + if b then + save () + else + clean_current_baseuri status + end + else + clean_current_baseuri status + +let ask_unsaved parent = + MatitaGtkMisc.ask_confirmation + ~parent ~title:"Unsaved work!" + ~message:("Your work is unsaved!\n\n"^ + "Do you want to save the script before exiting?") + () class gui () = (* creation order _is_ relevant for windows placement *) let main = new mainWin () in let about = new aboutWin () in let fileSel = new fileSelectionWin () in + let findRepl = new findReplWin () in let keyBindingBoxes = (* event boxes which should receive global key events *) [ main#mainWinEventBox ] in @@ -92,7 +138,7 @@ class gui () = (* glade's check widgets *) List.iter (fun w -> w#check_widgets ()) (let c w = (w :> unit>) in - [ c about; c fileSel; c main ]); + [ c about; c fileSel; c main; c findRepl]); (* key bindings *) List.iter (* global key bindings *) (fun (key, callback) -> self#addKeyBinding key callback) @@ -111,6 +157,44 @@ class gui () = about#aboutWin#misc#hide ()); about#aboutLabel#set_label (Pcre.replace ~pat:"@VERSION@" ~templ:BuildTimeConf.version about#aboutLabel#label); + (* findRepl win *) + let show_find_Repl () = + findRepl#toplevel#misc#show (); + findRepl#toplevel#misc#grab_focus () + in + let hide_find_Repl () = findRepl#toplevel#misc#hide () in + let find_forward _ = + let highlight start end_ = + source_buffer#move_mark `INSERT ~where:start; + source_buffer#move_mark `SEL_BOUND ~where:end_ + in + let text = findRepl#findEntry#text in + let iter = source_buffer#get_iter `SEL_BOUND in + match iter#forward_search text with + | None -> + (match source_buffer#start_iter#forward_search text with + | None -> () + | Some (start,end_) -> highlight start end_) + | Some (start,end_) -> highlight start end_ + in + let replace _ = + let text = findRepl#replaceEntry#text in + let ins = source_buffer#get_iter `INSERT in + let sel = source_buffer#get_iter `SEL_BOUND in + if ins#compare sel < 0 then + begin + ignore(source_buffer#delete_selection ()); + source_buffer#insert text + end + in + connect_button findRepl#findButton find_forward; + connect_button findRepl#findReplButton replace; + connect_button findRepl#cancelButton (fun _ -> hide_find_Repl ()); + ignore(findRepl#toplevel#event#connect#delete + ~callback:(fun _ -> hide_find_Repl ();true)); + ignore(self#main#findReplMenuItem#connect#activate + ~callback:show_find_Repl); + ignore (findRepl#findEntry#connect#activate ~callback:find_forward); (* file selection win *) ignore (fileSel#fileSelectionWin#event#connect#delete (fun _ -> true)); ignore (fileSel#fileSelectionWin#connect#response (fun event -> @@ -156,8 +240,8 @@ class gui () = connect_button tbar#introsButton (tac (A.Intros (loc, None, []))); connect_button tbar#applyButton (tac_w_term (A.Apply (loc, hole))); connect_button tbar#exactButton (tac_w_term (A.Exact (loc, hole))); - connect_button tbar#elimButton (tac_w_term (A.Elim (loc, hole, None))); - connect_button tbar#elimTypeButton (tac_w_term (A.ElimType (loc, hole))); + connect_button tbar#elimButton (tac_w_term (A.Elim (loc, hole, None, None, []))); + connect_button tbar#elimTypeButton (tac_w_term (A.ElimType (loc, hole, None, None, []))); connect_button tbar#splitButton (tac (A.Split loc)); connect_button tbar#leftButton (tac (A.Left loc)); connect_button tbar#rightButton (tac (A.Right loc)); @@ -167,7 +251,7 @@ class gui () = connect_button tbar#transitivityButton (tac_w_term (A.Transitivity (loc, hole))); connect_button tbar#assumptionButton (tac (A.Assumption loc)); - connect_button tbar#cutButton (tac_w_term (A.Cut (loc, hole))); + connect_button tbar#cutButton (tac_w_term (A.Cut (loc, None, hole))); connect_button tbar#autoButton (tac (A.Auto (loc,None,None))); MatitaGtkMisc.toggle_widget_visibility ~widget:(self#main#tacticsButtonsHandlebox :> GObj.widget) @@ -183,14 +267,10 @@ class gui () = | false -> self#main#toplevel#unfullscreen ()) ~check:self#main#fullscreenMenuItem; self#main#fullscreenMenuItem#set_active false; - (* quit *) - self#setQuitCallback (fun () -> exit 0); (* log *) MatitaLog.set_log_callback self#console#log_callback; GtkSignal.user_handler := - (fun exn -> - MatitaLog.error - (sprintf "Uncaught exception: %s" (Printexc.to_string exn))); + (fun exn -> MatitaLog.error (MatitaExcPp.to_string exn)); (* script *) let _ = match GSourceView.source_language_from_file BuildTimeConf.lang_file with @@ -206,21 +286,12 @@ class gui () = script_fname <- None; self#main#saveMenuItem#misc#set_sensitive false in - let loadScript () = - let script = s () in - match self#chooseFile () with - | Some f -> - script#reset (); - script#loadFrom f; - console#message ("'"^f^"' loaded.\n"); - self#_enableSaveTo f - | None -> () - in let saveAsScript () = let script = s () in match self#chooseFile ~ok_not_exists:true () with | Some f -> - script#saveTo f; + script#assignFileName f; + script#saveToFile (); console#message ("'"^f^"' saved.\n"); self#_enableSaveTo f | None -> () @@ -229,10 +300,41 @@ class gui () = match script_fname with | None -> saveAsScript () | Some f -> - (s ())#saveTo f; + (s ())#assignFileName f; + (s ())#saveToFile (); console#message ("'"^f^"' saved.\n"); in - let newScript () = (s ())#reset (); disableSave () in + let loadScript () = + let script = s () in + let status = script#status in + try + if source_view#buffer#modified then + begin + match ask_unsaved main#toplevel with + | `YES -> saveScript () + | `NO -> () + | `CANCEL -> raise MatitaTypes.Cancel + end; + (match script_fname with + | None -> () + | Some fname -> + ask_and_save_moo_if_needed main#toplevel fname status); + match self#chooseFile () with + | Some f -> + script#reset (); + script#assignFileName f; + script#loadFromFile (); + console#message ("'"^f^"' loaded.\n"); + self#_enableSaveTo f + | None -> () + with MatitaTypes.Cancel -> () + in + let newScript () = + (s ())#reset (); + (s ())#template (); + disableSave (); + script_fname <- None + in let cursor () = source_buffer#place_cursor (source_buffer#get_iter_at_mark (`NAME "locked")) @@ -248,6 +350,38 @@ class gui () = connect_key self#sourceView#event ~modifiers:[`CONTROL] ~stop:true sym f in + (* quit *) + self#setQuitCallback (fun () -> + let status = (MatitaScript.instance ())#status in + if source_view#buffer#modified then + begin + let rc = ask_unsaved main#toplevel in + try + match rc with + | `YES -> saveScript (); + if not source_view#buffer#modified then + begin + (match script_fname with + | None -> () + | Some fname -> + ask_and_save_moo_if_needed + main#toplevel fname status); + GMain.Main.quit () + end + | `NO -> GMain.Main.quit () + | `CANCEL -> raise MatitaTypes.Cancel + with MatitaTypes.Cancel -> () + end + else + begin + (match script_fname with + | None -> clean_current_baseuri status; GMain.Main.quit () + | Some fname -> + try + ask_and_save_moo_if_needed main#toplevel fname status; + GMain.Main.quit () + with MatitaTypes.Cancel -> ()) + end); connect_button self#main#scriptAdvanceButton advance; connect_button self#main#scriptRetractButton retract; connect_button self#main#scriptTopButton top; @@ -288,14 +422,32 @@ class gui () = let main_h = height * 80 / 100 in let script_w = main_w * 6 / 10 in self#main#toplevel#resize ~width:main_w ~height:main_h; - self#main#hpaneScriptSequent#set_position script_w + self#main#hpaneScriptSequent#set_position script_w; + (* source_view *) + ignore(source_view#connect#after#paste_clipboard + ~callback:(fun () -> (MatitaScript.instance ())#clean_dirty_lock)) method loadScript file = let script = MatitaScript.instance () in script#reset (); - script#loadFrom file; + script#assignFileName file; + if not (Sys.file_exists file) then + begin + let oc = open_out file in + let template = MatitaMisc.input_file BuildTimeConf.script_template in + output_string oc template; + close_out oc + end; + script#loadFromFile (); console#message ("'"^file^"' loaded."); self#_enableSaveTo file + + method setStar name b = + let l = main#scriptLabel in + if b then + l#set_text (name ^ " *") + else + l#set_text (name) method private _enableSaveTo file = script_fname <- Some file; @@ -306,6 +458,7 @@ class gui () = method sourceView: GSourceView.source_view = (source_view: GSourceView.source_view) method about = about method fileSel = fileSel + method findRepl = findRepl method main = main method newBrowserWin () = @@ -345,8 +498,9 @@ class gui () = keyBindingBoxes method setQuitCallback callback = - ignore (main#toplevel#connect#destroy callback); ignore (main#quitMenuItem#connect#activate callback); + ignore (main#toplevel#event#connect#delete + (fun _ -> callback ();true)); self#addKeyBinding GdkKeysyms._q callback method chooseFile ?(ok_not_exists = false) () =