X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2Fmatita.ml;h=530e477a8f45bcb319f1bfee256d7bd859f3f672;hb=cc465115cdeea9819f43a5ad219b07c4f928c43a;hp=59076c94ed540a53c98a99cb6fbdedf8fa3a8498;hpb=b5d69130dd83587b5fb9cbb39251aaa8df8c456e;p=helm.git diff --git a/helm/matita/matita.ml b/helm/matita/matita.ml index 59076c94e..530e477a8 100644 --- a/helm/matita/matita.ml +++ b/helm/matita/matita.ml @@ -25,44 +25,81 @@ open MatitaGtkMisc -exception Not_implemented of string -let not_implemented feature = raise (Not_implemented feature) +(** {2 Internal status} *) - (** exceptions whose content should be presented to the user *) -exception Failure of string -let error s = raise (Failure s) + (* TODO Zack: may be current_proofs if we want an MDI interface *) +let (current_proof: MatitaProof.proof option ref) = ref None + +(** {2 Settings} *) + +let untitled_con_uri = UriManager.uri_of_string "cic:/untitled.con" +let untitled_def_uri = UriManager.uri_of_string "cic:/untitled.def" + +(** {2 Initialization} *) let _ = Helm_registry.load_from "matita.conf.xml" let _ = GMain.Main.init () let gui = new MatitaGui.gui (Helm_registry.get "matita.glade_file") +let parserr = new MatitaDisambiguator.parserr () +let mqiconn = MQIConn.init () +let disambiguator = + new MatitaDisambiguator.disambiguator ~parserr ~mqiconn + ~chooseUris:(interactive_user_uri_choice ~gui) + ~chooseInterp:(interactive_interp_choice ~gui) + () (** quit program, possibly asking for confirmation *) let quit () = GMain.Main.quit () -let _ = gui#setQuitCallback quit -let _ = gui#main#debugMenu#misc#hide () + +let _ = + gui#setQuitCallback quit; + gui#main#debugMenu#misc#hide (); + ignore (gui#main#newProofMenuItem#connect#activate (fun _ -> + if (!current_proof <> None) && + not (ask_confirmation ~gui + ~msg:("Starting a new proof will abort current one,\n" ^ + "are you sure you want to continue?") + ()) + then + () (* abort new proof process *) + else + let input = ask_text ~gui ~msg:"Insert proof goal" ~multiline:true () in + let (env, metasenv, term) = + disambiguator#disambiguateTerm (Stream.of_string input) + in + prerr_endline ("nuova prova: " ^ CicPp.ppterm term) + (* TODO Zack: FINQUI *) + )) (** *) -if BuildTimeConf.debug then begin - gui#main#debugMenu#misc#show (); - let addDebugItem ~label callback = - let item = GMenu.menu_item ~label () in - gui#main#debugMenu_menu#append item; - ignore (item#connect#activate callback); - in - addDebugItem "interactive user uri choice" (fun _ -> - try - let uris = - interactive_user_uri_choice ~gui ~selection_mode:`MULTIPLE - ~title:"titolo" ~msg:"messaggio" ~nonvars_button:true - ["cic:/uno.con"; "cic:/due.var"; "cic:/tre.con"; "cic:/quattro.con"; - "cic:/cinque.var"] +let _ = + if BuildTimeConf.debug then begin + gui#main#debugMenu#misc#show (); + let addDebugItem ~label callback = + let item = + GMenu.menu_item ~packing:gui#main#debugMenu_menu#append ~label () in - List.iter prerr_endline uris - with No_choice -> error "no choice"); - addDebugItem "toggle auto disambiguation" (fun _ -> - Helm_registry.set_bool "matita.auto_disambiguation" - (not (Helm_registry.get_bool "matita.auto_disambiguation"))) -end + ignore (item#connect#activate callback) + in + addDebugItem "interactive user uri choice" (fun _ -> + try + let uris = + interactive_user_uri_choice ~gui ~selection_mode:`MULTIPLE + ~msg:"messaggio" ~nonvars_button:true + ["cic:/uno.con"; "cic:/due.var"; "cic:/tre.con"; "cic:/quattro.con"; + "cic:/cinque.var"] + in + List.iter prerr_endline uris + with MatitaGtkMisc.Cancel -> MatitaTypes.error "no choice"); + addDebugItem "toggle auto disambiguation" (fun _ -> + Helm_registry.set_bool "matita.auto_disambiguation" + (not (Helm_registry.get_bool "matita.auto_disambiguation"))); + addDebugItem "mono line text input" (fun _ -> + prerr_endline (ask_text ~gui ~title:"title" ~msg:"message" ())); + addDebugItem "multi line text input" (fun _ -> + prerr_endline + (ask_text ~gui ~title:"title" ~multiline:true ~msg:"message" ())); + end (** *) let _ = GtkThread.main ()