X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmatita%2Fmatita.ml;h=b71463860148a98b08c587d57d65dbcaed067ef8;hb=481992ea591bf53cba758a96e7d42e9cdce7e129;hp=530e477a8f45bcb319f1bfee256d7bd859f3f672;hpb=eb8dc961c7f9dc2e76a1eb29e2fcf94304011566;p=helm.git diff --git a/helm/matita/matita.ml b/helm/matita/matita.ml index 530e477a8..b71463860 100644 --- a/helm/matita/matita.ml +++ b/helm/matita/matita.ml @@ -28,12 +28,18 @@ open MatitaGtkMisc (** {2 Internal status} *) (* TODO Zack: may be current_proofs if we want an MDI interface *) -let (current_proof: MatitaProof.proof option ref) = ref None +let (get_proof, set_proof, has_proof) = + let (current_proof: MatitaTypes.proof option ref) = ref None in + ((fun () -> + match !current_proof with + | Some proof -> proof + | None -> assert false), + (fun proof -> current_proof := Some proof), + (fun () -> !current_proof <> 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" +let debug_print = MatitaTypes.debug_print (** {2 Initialization} *) @@ -55,7 +61,7 @@ let _ = gui#setQuitCallback quit; gui#main#debugMenu#misc#hide (); ignore (gui#main#newProofMenuItem#connect#activate (fun _ -> - if (!current_proof <> None) && + if has_proof () && not (ask_confirmation ~gui ~msg:("Starting a new proof will abort current one,\n" ^ "are you sure you want to continue?") @@ -67,9 +73,11 @@ let _ = let (env, metasenv, term) = disambiguator#disambiguateTerm (Stream.of_string input) in - prerr_endline ("nuova prova: " ^ CicPp.ppterm term) - (* TODO Zack: FINQUI *) - )) + let proof = MatitaProof.proof ~typ:term ~metasenv () in +(* proof#status#attach ... FINQUI *) + proof#status#notify (); + set_proof proof; + debug_print ("new proof, goal is: " ^ CicPp.ppterm term))) (** *) let _ = @@ -99,6 +107,8 @@ let _ = addDebugItem "multi line text input" (fun _ -> prerr_endline (ask_text ~gui ~title:"title" ~multiline:true ~msg:"message" ())); + addDebugItem "dump proof status to stdout" (fun _ -> + print_endline ((get_proof ())#status#toString)); end (** *)