- keybinding globali: CTRL-{su,giu,...} devono fungere anche quando altre
finestre hanno il focus (e.g. cicBrowser). C'e' gia' da qualche parte il
codice che aggiunge i keybinding a tutte le eventBox, e' da ripristinare
- - fare "matita foo" (dove foo non esiste), cambiare qualcosa e uscire senza
- salvare. In verita' foo e' stato scritto lo stesso!
- sensitiveness per copy/paste/cut/delete nel menu Edit
- sensitiveness per goto begin/end/etc.
- matitamake foo/a.ma non funziona; bisogna chiamarlo con
matitamake /x/y/z/foo/a.ma
- notazione -> Luca e Zack
- - copiare nel .moo la baseuri e poi il matitaclean la legge da li e non dal
- .ma (si evita il syntax error e il cambio di una baseuri non causa
- sporcizia)
- non chiudere transitivamente i moo ??
DONE
+- fare "matita foo" (dove foo non esiste), cambiare qualcosa e uscire senza
+ salvare. In verita' foo e' stato scritto lo stesso! -> CSC
- matitaclean deve rimuovere anche i .moo; in alternativa il makefile
non deve basarsi sui .moo per decidere se qualcosa e' stato compilato o meno
-> CSC, Gares
script#reset ();
script#assignFileName f;
source_view#source_buffer#begin_not_undoable_action ();
- script#loadFromFile ();
+ script#loadFromFile f;
source_view#source_buffer#end_not_undoable_action ();
console#message ("'"^f^"' loaded.\n");
self#_enableSaveTo f
let script = MatitaScript.instance () in
script#reset ();
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;
- source_view#source_buffer#begin_not_undoable_action ();
- script#loadFromFile ();
- source_view#source_buffer#end_not_undoable_action ();
- console#message ("'"^file^"' loaded.");
- self#_enableSaveTo file
+ let content =
+ if Sys.file_exists file then file
+ else BuildTimeConf.script_template
+ in
+ source_view#source_buffer#begin_not_undoable_action ();
+ script#loadFromFile content;
+ source_view#source_buffer#end_not_undoable_action ();
+ console#message ("'"^file^"' loaded.");
+ self#_enableSaveTo file
method setStar name b =
let l = main#scriptLabel in
let status = self#status in
List.iter (fun o -> o status) observers
- method loadFromFile () =
- buffer#set_text (MatitaMisc.input_file self#getFilename);
+ method loadFromFile f =
+ buffer#set_text (MatitaMisc.input_file f);
self#goto_top;
buffer#set_modified false
(** {2 Load/save} *)
method assignFileName : string -> unit (* to the current active file *)
- method loadFromFile : unit -> unit
+ method loadFromFile : string -> unit
method saveToFile : unit -> unit
(** {2 Current proof} (if any) *)