resources/RooUsage.txt
[app.Builder.js] / src / Builder4 / WindowRightPalete.bjs
1 {
2  "name" : "WindowRightPalete",
3  "parent" : "",
4  "title" : "",
5  "path" : "/home/alan/gitlive/app.Builder.js/src/Builder4/WindowRightPalete.bjs",
6  "permname" : "",
7  "modOrder" : "",
8  "build_module" : "builder",
9  "items" : [
10   {
11    "id" : "RightPalete",
12    "@ void after_node_change(JsRender.Node? node)" : "",
13    "* pack" : "add",
14    "xtype" : "Box",
15    "@ void before_node_change(JsRender.Node? node)" : "",
16    "| void load" : " (Palete.Palete pal, string cls ) {\n   \n   // this.get('model').expanded();\n    \n    var tr = pal.getChildList(cls);\n    this.model.el.clear();\n\n\n    Gtk.TreeIter citer;\n\n    for(var i =0 ; i < tr.length; i++) {\n         this.model.el.append(out citer);   \n         \n        this.model.el.set_value(citer, 0,   tr[i] ); // title \n        \n    }\n    this.model.el.set_sort_column_id(0,Gtk.SortType.ASCENDING);\n    \n} \n\n",
17    "@ void drag_end()" : "",
18    "$ xns" : "Gtk",
19    "| void clear" : "() {\n   this.model.el.clear();\n} ",
20    "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
21    "items" : [
22     {
23      "id" : "viewbox",
24      "* pack" : "pack_start,true,true,0",
25      "xtype" : "Box",
26      "$ xns" : "Gtk",
27      "Gtk.Orientation orientation" : "Gtk.Orientation.VERTICAL",
28      "items" : [
29       {
30        "* init" : "  this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);\n   this.el.set_size_request(-1,200);\n \n",
31        "$ shadow_type" : "Gtk.ShadowType.IN",
32        "* pack" : "pack_start,true,true,0",
33        "xtype" : "ScrolledWindow",
34        "$ xns" : "Gtk",
35        "items" : [
36         {
37          "listeners" : {
38           "button_press_event" : " ( event) => {\n\n //\tif (!this.get('/Editor').save()) {\n //\t    // popup!! - click handled.. \n// \t    return true;\n//        }\n    return false;\n}",
39           "drag_begin" : "  ( ctx) => {\n    // we could fill this in now...\n//        Seed.print('SOURCE: drag-begin');\n        \n        \n        \n        Gtk.TreeIter iter;\n        var s = this.el.get_selection();\n        \n        Gtk.TreeModel mod;\n        s.get_selected(out mod, out iter);\n        var path = mod.get_path(iter);\n        \n        /// pix is a surface..\n        var pix = this.el.create_row_drag_icon ( path);\n            \n                \n        Gtk.drag_set_icon_surface (ctx, pix);\n        GLib.Value value;\n        \n\n        _this.model.el.get_value(iter, 0, out value);\n        \n        this.dragData = (string) value;\n         \n        \n        return;\n}",
40           "drag_end" : "( drag_context)  => {\n \t print(\"SOURCE: drag-end\\n\");\n\t\n\tthis.dragData = \"\";\n\t//this.dropList = null;\n\t_this.drag_end(); // call signal..\n\t//this.get('/LeftTree.view').highlight(false);\n\t \n}",
41           "drag_data_get" : "(drag_context, selection_data, info, time) => {\n \t//Seed.print('Palete: drag-data-get: ' + target_type);\n    if (this.dragData.length < 1 ) {\n        return; \n    }\n    \n    print(\"setting drag data to %s\\n\", this.dragData);\n   // selection_data.set_text(this.dragData ,this.dragData.length);\n   selection_data.set (selection_data.get_target (), 8, (uchar[]) this.dragData.to_utf8 ());\n\n        //this.el.dragData = \"TEST from source widget\";\n        \n        \n}"
42          },
43          "# string dragData" : "",
44          "* init" : " {\n    this.el.set_size_request(150,-1);\n                          //  set_reorderable: [1]\n                                  \n    var description = new Pango.FontDescription();\n    description.set_size(8000);\n    this.el.override_font(description);\n    \n    var selection = this.el.get_selection();\n    selection.set_mode( Gtk.SelectionMode.SINGLE);\n   // this.selection.signal['changed'].connect(function() {\n    //    _view.listeners['cursor-changed'].apply(_view, [ _view, '']);\n    //});\n    // see: http://live.gnome.org/GnomeLove/DragNDropTutorial\n     \n    Gtk.drag_source_set (\n            this.el,            /* widget will be drag-able */\n            Gdk.ModifierType.BUTTON1_MASK,       /* modifier that will start a drag */\n            BuilderApplication.targetList,            /* lists of target to support */\n            Gdk.DragAction.COPY         /* what to do with data after dropped */\n    );\n    //Gtk.drag_source_set_target_list(this.el, LeftTree.targetList);\n   \n   // Gtk.drag_source_set_target_list(this.el, Application.targetList);\n   // Gtk.drag_source_add_text_targets(this.el); \n \n}\n",
45          "xtype" : "TreeView",
46          "* pack" : "add",
47          "$ enable_tree_lines" : true,
48          "$ headers_visible" : true,
49          "$ xns" : "Gtk",
50          "items" : [
51           {
52            "| string getValue" : " (Gtk.TreeIter iter, int col)  {\n    GLib.Value gval;\n     this.el.get_value(iter, col , out gval);\n    return  (string)gval;\n    \n    \n}",
53            "id" : "model",
54            "* pack" : "set_model",
55            "xtype" : "ListStore",
56            "$ columns" : "typeof(string),typeof(string)",
57            "n_columns" : 2,
58            "$ xns" : "Gtk"
59           },
60           {
61            "utf8 title" : "Drag to add Object",
62            "* init" : " this.el.add_attribute(_this.txtrender.el , \"markup\", 0 );\n \n",
63            "* pack" : "append_column",
64            "xtype" : "TreeViewColumn",
65            "$ xns" : "Gtk",
66            "items" : [
67             {
68              "id" : "txtrender",
69              "xtype" : "CellRendererText",
70              "* pack" : "pack_start,true",
71              "$ xns" : "Gtk"
72             }
73            ]
74           }
75          ]
76         }
77        ]
78       }
79      ]
80     }
81    ]
82   }
83  ]
84 }