X-Git-Url: http://git.roojs.org/?p=app.Builder.js;a=blobdiff_plain;f=src%2FBuilder4%2FWindowState.vala;h=b9b7ee6d023dc1b7b35dc1ed2c1e1b8ac6c95855;hp=495c451ce8e3db828821ba00bc462f4026b5a26e;hb=HEAD;hpb=8fbf2866bf15da03085635e6926e4873bb819ed5 diff --git a/src/Builder4/WindowState.vala b/src/Builder4/WindowState.vala index 495c451ce..b9b7ee6d0 100644 --- a/src/Builder4/WindowState.vala +++ b/src/Builder4/WindowState.vala @@ -8,29 +8,29 @@ public class WindowState : Object { public Xcls_MainWindow win; - + public enum State { NONE, PREVIEW, OBJECT, PROP, LISTENER, - CODE, + CODE, // code editor. CODEONLY, FILES, - PROJECT // project settings.. + PROJECT, // project settings.. + FILEPROJECT, // project when in file mode + PROJECTCODEONLY // when editing code... } public State state = State.NONE; public bool children_loaded = false; - - + public Project.Project project; public JsRender.JsRender file; - - + public Xcls_WindowLeftTree left_tree; public Xcls_WindowAddProp add_props; @@ -93,15 +93,9 @@ public class WindowState : Object this.template_select = new DialogTemplateSelect(); this.children_loaded = true; - this.left_tree.node_selected.connect((sel) => { - if (this.file.xtype == "Roo") { - this.window_rooview.sourceview.nodeSelected(sel); - } else { - this.window_gladeview.sourceview.nodeSelected(sel); - } - }); + this.valasource = new Palete.ValaSource(); - this.valasource.compiled.connect(this.valaCompiled); + this.valasource.compiled.connect(this.showCompileResult); this.compile_results = new Xcls_ValaCompileResults(); this.compile_results.window = this.win; @@ -126,16 +120,31 @@ public class WindowState : Object this.left_tree.el.show_all(); this.left_tree.before_node_change.connect(() => { + // if the node change is caused by the editor (code preview) + if (this.left_tree.view.lastEventSource == "editor") { + return true; + } return this.leftTreeBeforeChange(); }); - - this.left_tree.node_selected.connect((sel) => { - this.leftTreeNodeSelected(sel); + + this.left_tree.node_selected.connect((sel, source) => { + if (source == "editor") { + return; + } + if (this.file.xtype == "Roo") { + this.window_rooview.sourceview.nodeSelected(sel,true); // foce scroll. + } else { + this.window_gladeview.sourceview.nodeSelected(sel); + } + }); + + this.left_tree.node_selected.connect((sel, source) => { + this.leftTreeNodeSelected(sel, source); }); this.left_tree.changed.connect(() => { - + print("LEFT TREE: Changed fired\n"); this.file.save(); if (this.left_tree.getActiveFile().xtype == "Roo" ) { this.window_rooview.requestRedraw(); @@ -159,7 +168,7 @@ public class WindowState : Object return false; } - public void leftTreeNodeSelected(JsRender.Node? sel) + public void leftTreeNodeSelected(JsRender.Node? sel, string source) { print("node_selected called %s\n", (sel == null) ? "NULL" : "a value"); @@ -503,8 +512,33 @@ public class WindowState : Object } - + + // our project properties is different for Roo and Gtk + // it would be better to change the above code to use this, + public void attachProjectSettings() { + var ctr_p= ((Gtk.Container)(this.win.projecteditview.el.get_widget())); + + if (this.win.project.xtype == "Roo" ) { + ctr_p.foreach( (w) => { ctr_p.remove(w); }); + ctr_p.add(this.projectsettings.el); + this.projectsettings.el.show_all(); + + } else { + ctr_p.foreach( (w) => { ctr_p.remove(w); }); + ctr_p.add(this.vala_projectsettings.el); + this.vala_projectsettings.el.show_all(); + } + } + /* + public void fileViewOpenPlain(string fname) + { + + this.switchState (State.CODEONLY); + this.code_editor.showPlainFile(fname); + } + */ + // --------- webkit view public void webkitViewInit() { @@ -556,6 +590,13 @@ public class WindowState : Object return; } + // stop werid stuff happening + + if (this.state == State.FILES + && new_state == State.FILEPROJECT + && this.left_projects.getSelectedProject() == null) { + return; + } // save the easing state of everything.. this.easingSaveAll(); @@ -573,6 +614,7 @@ public class WindowState : Object // and different windows hide the preview in differnt ways.. break; + case State.LISTENER: case State.PROP: @@ -588,15 +630,23 @@ public class WindowState : Object case State.CODEONLY: // going from codeonly.. - this.win.leftpane.el.show(); + // enable re-calc of canvas.. + + //this.code_editor.saveContents(); << not yet... + if (new_state != State.PROJECTCODEONLY) { + this.win.rooview.el.show(); + this.win.leftpane.el.show(); + this.win.codeeditview.el.set_scale(0.0f,0.0f); + } else { + this.win.codeeditview.el.set_pivot_point(0.0f,1.0f); // bottom left + this.win.codeeditview.el.set_scale(0.5f,0.5f); + } while (Gtk.events_pending()) { Gtk.main_iteration(); } - //this.code_editor.saveContents(); << not yet... - - this.win.rooview.el.show(); - this.win.codeeditview.el.set_scale(0.0f,0.0f); + + // hides it completely... break; @@ -605,17 +655,31 @@ public class WindowState : Object this.win.objectview.el.set_scale(0.0f,0.0f); break; - case State.PROJECT: + case State.FILEPROJECT: + case State.PROJECT: + case State.PROJECTCODEONLY: if (this.win.project.xtype == "Gtk") { this.vala_projectsettings.save(); } + if (this.state == State.FILEPROJECT) { + this.clutterfiles.el.set_scale(1.0f,1.0f); + } this.win.projecteditview.el.set_scale(0.0f,0.0f); - break; + break; case State.FILES: // goes to preview or codeonly... // hide files... + + if (new_state == State.FILEPROJECT) { + + this.clutterfiles.el.set_easing_duration(1000); + this.clutterfiles.el.set_pivot_point(0.5f,1.0f); + this.clutterfiles.el.set_scale(0.5f,0.5f); + break; + } + if (new_state == State.CODEONLY) { this.win.rooview.el.hide(); } else { @@ -628,13 +692,12 @@ public class WindowState : Object this.win.rooview.el.set_pivot_point(0.5f,0.5f); this.win.rooview.el.set_opacity(0xff); - - this.clutterfiles.el.set_easing_duration(1000); this.clutterfiles.el.set_pivot_point(0.5f,0.5f); this.clutterfiles.el.set_rotation_angle(Clutter.RotateAxis.Y_AXIS, -180.0f); this.clutterfiles.el.set_opacity(0); + //this.clutterfiles.el.hide(); @@ -757,21 +820,57 @@ public class WindowState : Object this.win.rooview.el.set_pivot_point(1.0f,0.5f); break; - case State.PROJECT: + case State.PROJECTCODEONLY: + // going to project edit (when in code only) - if (this.win.project.xtype == "Roo") { + + + if (this.win.project.xtype == "Roo") { this.projectsettings.el.show_all(); this.projectsettings.show(this.win.project); } else { this.vala_projectsettings.el.show_all(); this.vala_projectsettings.show((Project.Gtk)this.win.project); } + + this.win.projecteditview.el.set_scale(1.0f,1.0f); + + break; + + case State.PROJECT: this.win.rooview.el.set_pivot_point(1.0f,1.0f); // bottom right.. + if (this.win.project.xtype == "Roo") { + this.projectsettings.el.show_all(); + this.projectsettings.show(this.win.project); + } else { + this.vala_projectsettings.el.show_all(); + this.vala_projectsettings.show((Project.Gtk)this.win.project); + } + this.win.projecteditview.el.set_scale(1.0f,1.0f); + + break; - + case State.FILEPROJECT: + var pr = this.left_projects.getSelectedProject(); + + this.win.project = pr; + + this.attachProjectSettings(); + print("FIlE PROJECT - show %s\n", pr.xtype); + + if (pr.xtype == "Roo") { + this.projectsettings.el.show_all(); + this.projectsettings.show(this.win.project); + } else { + this.vala_projectsettings.el.show_all(); + this.vala_projectsettings.show((Project.Gtk)this.win.project); + } + + this.win.projecteditview.el.set_scale(1.0f,1.0f); + break; case State.FILES: // can only get here from PREVIEW (or code-only) state.. in theory.. @@ -979,7 +1078,7 @@ public class WindowState : Object case State.CODEONLY: this.win.openbtn.el.show(); - + this.win.projecteditbutton.el.show(); this.win.search_entry.el.show(); break; @@ -1002,6 +1101,8 @@ public class WindowState : Object break; case State.PROJECT: + case State.FILEPROJECT: + case State.PROJECTCODEONLY: // anything else? this.win.backbutton.el.show(); @@ -1011,14 +1112,14 @@ public class WindowState : Object case State.FILES: if (this.left_projects.getSelectedProject() != null ) { if (this.left_tree.getActiveFile() != null) { - this.win.backbutton.el.show(); + this.win.openbackbtn.el.show(); } this.win.addfilebutton.el.show(); this.win.search_entry.el.show(); - + this.win.projecteditbutton.el.show(); } - + this.win.addprojectbutton.el.show(); this.win.delprojectbutton.el.show(); @@ -1034,10 +1135,16 @@ public class WindowState : Object } - public void valaCompiled(Json.Object obj) + public void showCompileResult(Json.Object obj) { // vala has finished compiling... print("vala compiled"); + var generator = new Json.Generator (); + var n = new Json.Node(Json.NodeType.OBJECT); + n.init_object(obj); + generator.set_root (n); + print("result :%s", generator.to_data (null)); + var buf = this.code_editor.buffer; buf.check_running = false; @@ -1066,25 +1173,40 @@ public class WindowState : Object } else { this.win.statusbar_depricated.setNotices( new Json.Object(),0); } - - buf.highlightErrorsJson("ERR", obj); - buf.highlightErrorsJson("WARN", obj); - buf.highlightErrorsJson("DEPR", obj); + if (this.state == State.CODE || this.state == State.PROJECTCODEONLY) { + buf.highlightErrorsJson("ERR", obj); + buf.highlightErrorsJson("WARN", obj); + buf.highlightErrorsJson("DEPR", obj); + } this.win.statusbar_compilestatus_label.el.hide(); this.win.statusbar_run.el.hide(); - - if (this.file.xtype == "Gtk") { + if (!has_errors) { this.win.statusbar_compilestatus_label.el.show(); - if (!has_errors) { + this.win.statusbar_run.el.show(); + } + if (this.file.xtype == "Gtk") { + // not sure how this is working ok? - as highlighting is happening on the vala files at present.. + var gbuf = this.window_gladeview.sourceview; + gbuf.highlightErrorsJson("ERR", obj); + gbuf.highlightErrorsJson("WARN", obj); + gbuf.highlightErrorsJson("DEPR", obj); + + if (!has_errors) { this.win.statusbar_run.el.show(); } - var gbuf = this.window_gladeview.sourceview; + + } + + if (this.file.xtype == "Gtk") { + // not sure how this is working ok? - as highlighting is happening on the vala files at present.. + var gbuf = this.window_rooview.sourceview; gbuf.highlightErrorsJson("ERR", obj); gbuf.highlightErrorsJson("WARN", obj); gbuf.highlightErrorsJson("DEPR", obj); } + this.last_compile_result = obj;