Attribute changed old-javascript
[app.Builder.js] / old-javascript / Builder4 / WindowRightPalete.bjs
1 {
2     "name" : "WindowRightPalete",
3     "parent" : "",
4     "title" : "",
5     "path" : "/home/alan/gitlive/app.Builder.js/Builder4/WindowRightPalete.bjs",
6     "permname" : "",
7     "modOrder" : "",
8     "items" : [
9         {
10             "id" : "RightPalete",
11             "@ void after_node_change(JsRender.Node? node)" : "",
12             "* pack" : "add",
13             "xtype" : "VBox",
14             "@ void before_node_change(JsRender.Node? node)" : "",
15             "| 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",
16             "@ void drag_end()" : "",
17             "$ xns" : "Gtk",
18             "| void clear" : "() {\n   this.model.el.clear();\n}",
19             "items" : [
20                 {
21                     "id" : "viewbox",
22                     "* pack" : "add",
23                     "xtype" : "VBox",
24                     "$ xns" : "Gtk",
25                     "items" : [
26                         {
27                             "* init" : "  this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);\n   this.el.set_size_request(-1,200);\n \n",
28                             "$ shadow_type" : "Gtk.ShadowType.IN",
29                             "* pack" : "add",
30                             "xtype" : "ScrolledWindow",
31                             "$ xns" : "Gtk",
32                             "items" : [
33                                 {
34                                     "listeners" : {
35                                         "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}",
36                                         "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}",
37                                         "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}",
38                                         "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}"
39                                     },
40                                     "# string dragData" : "",
41                                     "* 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.modify_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            Builder4.Application.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",
42                                     "xtype" : "TreeView",
43                                     "* pack" : "add",
44                                     "$ enable_tree_lines" : true,
45                                     "$ headers_visible" : false,
46                                     "$ xns" : "Gtk",
47                                     "items" : [
48                                         {
49                                             "| 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}",
50                                             "id" : "model",
51                                             "* pack" : "set_model",
52                                             "xtype" : "ListStore",
53                                             "$ columns" : "typeof(string),typeof(string)",
54                                             "n_columns" : 2,
55                                             "$ xns" : "Gtk"
56                                         },
57                                         {
58                                             "* init" : " this.el.add_attribute(_this.txtrender.el , \"markup\", 0 );\n \n",
59                                             "* pack" : "append_column",
60                                             "xtype" : "TreeViewColumn",
61                                             "$ xns" : "Gtk",
62                                             "items" : [
63                                                 {
64                                                     "id" : "txtrender",
65                                                     "xtype" : "CellRendererText",
66                                                     "* pack" : "pack_start,true",
67                                                     "$ xns" : "Gtk"
68                                                 }
69                                             ]
70                                         }
71                                     ]
72                                 }
73                             ]
74                         }
75                     ]
76                 }
77             ]
78         }
79     ]
80 }