tools
[app.Builder.js] / Sample / DialogTemplateSelect.js
index ecc886d..486924e 100644 (file)
@@ -28,19 +28,21 @@ DialogTemplateSelect=new XObject({
             return node;
         }
       
-        opts.unshift('Just add Element')
+        opts.unshift({ path: '' , name :'Just add Element' });
         this.get('combo.model').loadData(opts);
-     
+         this.get('combo').el.set_active(0);
          
         this.el.show_all();
         this.el.run();
         this.el.hide();
-        var ix = this.el.get_active();
+        var ix = this.get('combo').el.get_active();
         if (ix < 1 ) {
             return node;
         }
-        var fn = opts[i];
-        return node;
+        
+    
+        return pal.loadTemplate(opts[ix].path)
+    
     },
     items : [
         {
@@ -52,9 +54,6 @@ DialogTemplateSelect=new XObject({
                 {
                     xtype: Gtk.HBox,
                     pack : "pack_start,false,false,0",
-                    listeners : {
-                        
-                    },
                     items : [
                         {
                             xtype: Gtk.Label,
@@ -67,28 +66,37 @@ DialogTemplateSelect=new XObject({
                             pack : "add",
                             init : function() {
                                 XObject.prototype.init.call(this);
-                                 this.el.add_attribute(this.items[0].el , 'markup', 1 );  
+                                 this.el.add_attribute(this.items[0].el , 'markup', 1 );
                             },
                             items : [
                                 {
                                     xtype: Gtk.CellRendererText,
-                                    pack : false
+                                    pack : "pack_start"
                                 },
                                 {
                                     xtype: Gtk.ListStore,
                                     id : "model",
                                     pack : "set_model",
+                                    init : function() {
+                                        XObject.prototype.init.call(this);
+                                                this.el.set_column_types ( 2, [
+                                                GObject.TYPE_STRING,  // real key
+                                                GObject.TYPE_STRING // real type
+                                                
+                                                
+                                            ] );
+                                    },
                                     loadData : function (data) {
                                         this.el.clear();                                    
                                         var iter = new Gtk.TreeIter();
                                         var el = this.el;
-                                        data.forEach(function(p,i) {
-                                            
+                                        data.forEach(function(p) {
+                                    
                                             el.append(iter);
                                             
                                              
-                                            el.set_value(iter, 0, i);
-                                            el.set_value(iter, 1, p);
+                                            el.set_value(iter, 0, ''+ p.path);
+                                            el.set_value(iter, 1, ''+ p.name);
                                             
                                         });