sync
[app.Builder.js] / Builder3 / DialogTemplateSelect.js
diff --git a/Builder3/DialogTemplateSelect.js b/Builder3/DialogTemplateSelect.js
deleted file mode 100644 (file)
index c561c45..0000000
+++ /dev/null
@@ -1,156 +0,0 @@
-Gtk = imports.gi.Gtk;
-Gdk = imports.gi.Gdk;
-Pango = imports.gi.Pango;
-GLib = imports.gi.GLib;
-Gio = imports.gi.Gio;
-GObject = imports.gi.GObject;
-GtkSource = imports.gi.GtkSource;
-WebKit = imports.gi.WebKit;
-Vte = imports.gi.Vte;
-console = imports.console;
-XObject = imports.XObject.XObject;
-DialogTemplateSelect=new XObject({
-    xtype: Gtk.Dialog,
-    listeners : {
-        delete_event : function (self, event) {
-            this.el.hide();
-            return true;
-        }
-    },
-    default_height : 200,
-    default_width : 400,
-    modal : true,
-    show : function(node) {
-        
-        var pal = this.get('/Window.LeftTree').getPaleteProvider();
-        var opts = pal.listTemplates(node);
-        if (!opts.length) {
-            return node;
-        }
-      
-      
-        var dopts = [];
-      
-      
-        dopts.push({ path: '' , name :'Just add Element' });
-        
-        
-        
-         
-        var project = this.get('/Window.LeftTree').getActiveFile().project;
-        var m = project.dbcon ? project.dbcon + '_' : false;
-        
-      
-                        //print (project.fn);
-        
-        opts.forEach(function(p) {
-            // if we have a dbname - ignore _ named.
-            if (m  && p.name.match(/_/) && 
-                p.name.substring(0, m.length) != m) {
-                return;
-                
-            }
-            dopts.push(p);
-        });
-            
-        
-        this.get('combo.model').loadData(dopts);
-         this.get('combo').el.set_active(0);
-         
-        this.el.show_all();
-        this.el.run();
-        this.el.hide();
-        var ix = this.get('combo').el.get_active();
-        if (ix < 1 ) {
-            return node;
-        }
-         
-        return pal.loadTemplate(dopts[ix].path)
-    
-    },
-    items : [
-        {
-            xtype: Gtk.VBox,
-            pack : function(p,e) {
-                                p.el.get_content_area().add(e.el)
-                            },
-            items : [
-                {
-                    xtype: Gtk.HBox,
-                    pack : "pack_start,false,false,0",
-                    items : [
-                        {
-                            xtype: Gtk.Label,
-                            label : "Select Template : ",
-                            pack : "pack_start,false,false"
-                        },
-                        {
-                            xtype: Gtk.ComboBox,
-                            id : "combo",
-                            pack : "add",
-                            init : function() {
-                                XObject.prototype.init.call(this);
-                                 this.el.add_attribute(this.items[0].el , 'markup', 1 );
-                            },
-                            items : [
-                                {
-                                    xtype: Gtk.CellRendererText,
-                                    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 project = this.get('/Window.LeftTree').getActiveFile().project;
-                                        var m = project.dbcon ? project.dbcon + '_' : false;
-                                        
-                                      
-                                                        //print (project.fn);
-                                        var el = this.el;
-                                        data.forEach(function(p) {
-                                            // if we have a dbname - ignore _ named.
-                                            if (m  && p.name.match(/_/) && 
-                                                p.name.substring(0, m.length) != m) {
-                                                return;
-                                                
-                                            }
-                                            
-                                            var iret = {};
-                                            el.append(iret);
-                                            
-                                             
-                                            el.set_value(iret.iter, 0, ''+ p.path);
-                                            el.set_value(iret.iter, 1, ''+ p.name);
-                                            
-                                        });
-                                                  
-                                                                         
-                                    }
-                                }
-                            ]
-                        }
-                    ]
-                }  
-            ]
-        },
-        {
-            xtype: Gtk.Button,
-            label : "OK",
-            pack : "add_action_widget,0"
-        }
-    ]
-});
-DialogTemplateSelect.init();
-XObject.cache['/DialogTemplateSelect'] = DialogTemplateSelect;