]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/gTopLevel/gTopLevel.ml
Scratch window is now also raised (= hide + show ;-| when updated.
[helm.git] / helm / gTopLevel / gTopLevel.ml
index 5726f3d8ce39a8f08ddf18f474be4f35c3941765..93924b9ada6a71331a28f5cb7002844dc88659c6 100644 (file)
@@ -209,6 +209,28 @@ ignore(domImpl#saveDocumentToFile ~doc:sequent_mml
 *)
 ;;
 
+let mml_of_cic_term term =
+ let context =
+  match !ProofEngine.goal with
+     None -> []
+   | Some (_,(context,_)) -> context
+ in
+  let metasenv =
+   match !ProofEngine.proof with
+      None -> []
+    | Some (_,metasenv,_,_) -> metasenv
+  in
+   let sequent_gdome,ids_to_terms,ids_to_father_ids =
+    SequentPp.XmlPp.print_sequent metasenv (context,term)
+   in
+    let sequent_doc =
+     Xml2Gdome.document_of_xml domImpl sequent_gdome
+    in
+     applyStylesheets sequent_doc sequent_styles sequent_args
+     (*CSC: magari prima o poi serve*)
+     (*current_scratch_infos := Some (ids_to_terms,ids_to_father_ids)*)
+;;
+
 let output_html outputhtml msg =
  htmlheader_and_content := !htmlheader_and_content ^ msg ;
  outputhtml#source (!htmlheader_and_content ^ htmlfooter) ;
@@ -278,7 +300,6 @@ let call_tactic_with_input tactic rendering_window () =
        CicTextualParser0.Eof ->
         inputt#delete_text 0 inputlen
      | e ->
-prerr_endline ("? " ^ Printexc.to_string e) ; flush stderr ;
         output_html outputhtml
          ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>");
         ProofEngine.proof := savedproof ;
@@ -313,7 +334,6 @@ let call_tactic_with_goal_input tactic rendering_window () =
            | None -> assert false (* "ERROR: No current term!!!" *)
          with
           e ->
-           prerr_endline ("? " ^ Printexc.to_string e) ; flush stderr ;
            output_html outputhtml
             ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
         end
@@ -383,7 +403,6 @@ let call_tactic_with_input_and_goal_input tactic rendering_window () =
            | None -> assert false (* "ERROR: No current term!!!" *)
          with
           e ->
-prerr_endline ("? " ^ Printexc.to_string e) ; flush stderr ;
            output_html outputhtml
             ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
         end
@@ -459,31 +478,34 @@ let save rendering_window () =
 let proveit rendering_window () =
  let module L = LogicalOperations in
  let module G = Gdome in
- match rendering_window#output#get_selection with
-   Some node ->
-    let xpath =
-     ((node : Gdome.element)#getAttributeNS
-     (*CSC: OCAML DIVERGE
-     ((element : G.element)#getAttributeNS
-     *)
-       ~namespaceURI:helmns
-       ~localName:(G.domString "xref"))#to_string
-    in
-     if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
-     else
-      begin
-       try
-        match !current_cic_infos with
-           Some (ids_to_terms, ids_to_father_ids) ->
-            let id = xpath in
-             if L.to_sequent id ids_to_terms ids_to_father_ids then
-              refresh_proof rendering_window#output ;
-             refresh_sequent rendering_window#proofw
-         | None -> assert false (* "ERROR: No current term!!!" *)
-       with
-        e -> print_endline ("Error: " ^ Printexc.to_string e) ; flush stdout
-      end
- | None -> assert false (* "ERROR: No selection!!!" *)
+ let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
+  match rendering_window#output#get_selection with
+    Some node ->
+     let xpath =
+      ((node : Gdome.element)#getAttributeNS
+      (*CSC: OCAML DIVERGE
+      ((element : G.element)#getAttributeNS
+      *)
+        ~namespaceURI:helmns
+        ~localName:(G.domString "xref"))#to_string
+     in
+      if xpath = "" then assert false (* "ERROR: No xref found!!!" *)
+      else
+       begin
+        try
+         match !current_cic_infos with
+            Some (ids_to_terms, ids_to_father_ids) ->
+             let id = xpath in
+              if L.to_sequent id ids_to_terms ids_to_father_ids then
+               refresh_proof rendering_window#output ;
+              refresh_sequent rendering_window#proofw
+          | None -> assert false (* "ERROR: No current term!!!" *)
+        with
+         e ->
+          output_html outputhtml
+           ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>")
+       end
+  | None -> assert false (* "ERROR: No selection!!!" *)
 ;;
 
 exception NotADefinition;;
@@ -554,7 +576,58 @@ let state rendering_window () =
         inputt#delete_text 0 inputlen ;
         ignore(oldinputt#insert_text input oldinputt#length)
      | e ->
-        print_endline ("Error: " ^ Printexc.to_string e) ; flush stdout
+        output_html outputhtml
+         ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
+;;
+
+let check rendering_window scratch_window () =
+ let inputt = (rendering_window#inputt : GEdit.text) in
+ let outputhtml = (rendering_window#outputhtml : GHtml.xmhtml) in
+ let output = (rendering_window#output : GMathView.math_view) in
+ let proofw = (rendering_window#proofw : GMathView.math_view) in
+  let inputlen = inputt#length in
+  let input = inputt#get_chars 0 inputlen ^ "\n" in
+  let curi,metasenv =
+   match !ProofEngine.proof with
+      None -> UriManager.uri_of_string "cic:/dummy.con", []
+    | Some (curi,metasenv,_,_) -> curi,metasenv
+  in
+  let ciccontext,names_context =
+   let context =
+    match !ProofEngine.goal with
+       None -> []
+     | Some (_,(ctx,_)) -> ctx
+   in
+    ProofEngine.cic_context_of_context context,
+     List.map (function (_,n,_) -> n) context
+  in
+   (* Do something interesting *)
+   let lexbuf = Lexing.from_string input in
+    try
+     while true do
+      (* Execute the actions *)
+      match
+       CicTextualParserContext.main curi names_context CicTextualLexer.token
+        lexbuf
+      with
+         None -> ()
+       | Some expr ->
+          try
+           let ty  = CicTypeChecker.type_of_aux' metasenv ciccontext expr in
+            let mml = mml_of_cic_term ty in
+             scratch_window#show () ;
+             scratch_window#display ~dom:mml
+          with
+           e ->
+            print_endline ("? " ^ CicPp.ppterm expr) ;
+            raise e
+     done
+    with
+       CicTextualParser0.Eof ->
+        inputt#delete_text 0 inputlen
+     | e ->
+       output_html outputhtml
+        ("<h1 color=\"red\">" ^ Printexc.to_string e ^ "</h1>") ;
 ;;
 
 let choose_selection
@@ -702,7 +775,21 @@ object(self)
   ignore(closeb#connect#clicked settings_window#misc#hide)
 end;;
 
-(* Main windows *)
+(* Scratch window *)
+
+class scratch_window () =
+ let window =
+  GWindow.window ~title:"MathML viewer" ~border_width:2 () in
+ let mmlwidget =
+  GMathView.math_view ~packing:(window#add) ~width:400 ~height:280 () in
+object(self)
+ method display = mmlwidget#load_tree
+ method show () = window#misc#hide () ; window#show ()
+ initializer
+  ignore(window#event#connect#delete (fun _ -> window#misc#hide () ; true ))
+end;;
+
+(* Main window *)
 
 class rendering_window output proofw (label : GMisc.label) =
  let window =
@@ -745,6 +832,9 @@ class rendering_window output proofw (label : GMisc.label) =
  let openb =
   GButton.button ~label:"Open"
    ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
+ let checkb =
+  GButton.button ~label:"Check"
+   ~packing:(hbox4#pack ~expand:false ~fill:false ~padding:5) () in
  let inputt = GEdit.text ~editable:true ~width:400 ~height: 100
    ~packing:(vbox#pack ~padding:5) () in
  let vbox1 =
@@ -791,13 +881,14 @@ class rendering_window output proofw (label : GMisc.label) =
    ~width:400 ~height: 200
    ~packing:(vbox1#pack ~expand:false ~fill:false ~padding:5)
    ~show:true () in
+ let scratch_window = new scratch_window () in
 object(self)
  method outputhtml = outputhtml
  method oldinputt = oldinputt
  method inputt = inputt
  method output = (output : GMathView.math_view)
  method proofw = (proofw : GMathView.math_view)
- method show () = window#show ()
+ method show = window#show
  initializer
   button_export_to_postscript#misc#set_sensitive false ;
 
@@ -815,6 +906,7 @@ object(self)
   ignore(window#event#connect#delete (fun _ -> GMain.Main.quit () ; true )) ;
   ignore(stateb#connect#clicked (state self)) ;
   ignore(openb#connect#clicked (open_ self)) ;
+  ignore(checkb#connect#clicked (check self scratch_window)) ;
   ignore(exactb#connect#clicked (exact self)) ;
   ignore(applyb#connect#clicked (apply self)) ;
   ignore(elimintrosb#connect#clicked (elimintros self)) ;