src/Builder4/GtkView.bjs
authorAlan Knowles <alan@roojs.com>
Mon, 23 Mar 2015 10:03:05 +0000 (18:03 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 23 Mar 2015 10:03:05 +0000 (18:03 +0800)
src/Builder4/GtkView.vala

src/Builder4/GtkView.bjs
src/Builder4/GtkView.vala

index f4e4cbe..b6bb418 100644 (file)
@@ -10,7 +10,7 @@
    "id" : "GtkView",
    "# Gtk.Widget lastObj" : "null",
    "| void createThumb" : "() {\n    \n    \n    if (this.file == null) {\n        return;\n    }\n    var filename = this.file.getIconFileName(false);\n    \n    var  win = this.el.get_parent_window();\n    var width = win.get_width();\n    var height = win.get_height();\n\n    Gdk.Pixbuf screenshot = Gdk.pixbuf_get_from_window(win, 0, 0, width, height); // this.el.position?\n\n    screenshot.save(filename,\"png\");\n    return;\n    \n    \n    \n    \n    \n     \n    \n    // should we hold until it's printed...\n    \n      \n\n    \n    \n\n\n    \n     \n}\n",
-   "| void loadFile" : "(JsRender.JsRender file) \n{\n    \n        this.el.set_position((int)(this.el.max_position * 0.7));\n        this.file = null;\n        \n        if (file.tree == null) {\n            return;\n        }\n        this.file = file;\n        if (this.lastObj != null) {\n            this.container.el.remove(this.lastObj);\n        }\n        \n        // hide the compile view at present..\n        _this.compile_view.el.hide();\n        \n        \n        uint w,h;\n        \n        _this.view_layout.el.get_size(out w, out h);\n        \n        // set the container size min to 500/500 or 20 px less than max..\n        w = uint.min (w-20, 500);\n        h = uint.min (h-20, 500);        \n        _this.container.el.set_size_request((int)w,(int)h);\n        \n\tvar x = new JsRender.NodeToGtk(file.tree);\n        var obj = x.munge() as Gtk.Widget;\n        this.lastObj = null;\n\tif (obj == null) {\n        \treturn;\n\t}\n\tthis.lastObj = obj;\n        \n        this.container.el.add(obj);\n        obj.show_all();\n}\n ",
+   "| void loadFile" : "(JsRender.JsRender file) \n{\n    \n        this.el.set_position((int)(this.el.max_position * 0.7));\n        this.file = null;\n        \n        if (file.tree == null) {\n            return;\n        }\n        this.file = file;\n        if (this.lastObj != null) {\n            this.container.el.remove(this.lastObj);\n        }\n        \n        // hide the compile view at present..\n        _this.compile_view.el.visible = false;\n        \n        \n        uint w,h;\n        \n        _this.view_layout.el.get_size(out w, out h);\n        \n        // set the container size min to 500/500 or 20 px less than max..\n        w = uint.min (w-20, 500);\n        h = uint.min (h-20, 500);        \n        _this.container.el.set_size_request((int)w,(int)h);\n        \n\tvar x = new JsRender.NodeToGtk(file.tree);\n        var obj = x.munge() as Gtk.Widget;\n        this.lastObj = null;\n\tif (obj == null) {\n        \treturn;\n\t}\n\tthis.lastObj = obj;\n        \n        this.container.el.add(obj);\n        obj.show_all();\n        \n         _this.compile_view.el.visible = false;\n        \n}\n ",
    "xtype" : "VPaned",
    "# JsRender.JsRender file" : "null",
    "$ xns" : "Gtk",
index 71f5686..12c88ae 100644 (file)
@@ -89,7 +89,7 @@ public class Xcls_GtkView : Object
             }
             
             // hide the compile view at present..
-            _this.compile_view.el.hide();
+            _this.compile_view.el.visible = false;
             
             
             uint w,h;
@@ -111,6 +111,9 @@ public class Xcls_GtkView : Object
             
             this.container.el.add(obj);
             obj.show_all();
+            
+             _this.compile_view.el.visible = false;
+            
     }
     public class Xcls_view_layout : Object 
     {