Fix #8009 - remove libgda dependancy
authorAlan <alan@roojs.com>
Mon, 5 Feb 2024 07:25:18 +0000 (15:25 +0800)
committerAlan <alan@roojs.com>
Mon, 5 Feb 2024 07:25:18 +0000 (15:25 +0800)
.roobuilder.jcfg
meson.build
src/Builder4/DialogTemplateSelect.bjs
src/Builder4/DialogTemplateSelect.vala
src/Builder4/RooProjectSettings.bjs
src/Builder4/RooProjectSettings.vala
src/Project/Roo.vala

index c80927a..87db39f 100644 (file)
@@ -59,7 +59,6 @@
                 "src/Application.vala",
                 "src/Palete/Javascript.vala",
                 "src/Project/Meson.vala",
-                "src/Palete/RooDatabase.vala",
                 "src/Palete/LanguageClient.vala",
                 "src/Palete/LanguageClientVala.vala",
                 "src/Palete/LanguageClientJavascript.vala",
@@ -87,7 +86,6 @@
         "libxml-2.0",
         "posix",
         "gtksourceview-5",
-        "libgda-5.0",
         "jsonrpc-glib-1.0",
         "gio-unix-2.0",
         "libadwaita-1"
index 34fb208..2987160 100644 (file)
@@ -27,7 +27,6 @@ deps = [
    dependency('libxml-2.0'),
    valac.find_library('posix'),
    dependency('gtksourceview-5'),
-   dependency('libgda-5.0'),
    dependency('jsonrpc-glib-1.0'),
    dependency('gio-unix-2.0'),
    dependency('libadwaita-1'),
@@ -137,7 +136,6 @@ roobuilder_src = files([
    'src/Application.vala',
    'src/Palete/Javascript.vala',
    'src/Project/Meson.vala',
-   'src/Palete/RooDatabase.vala',
    'src/Palete/LanguageClient.vala',
    'src/Palete/LanguageClientVala.vala',
    'src/Palete/LanguageClientJavascript.vala',
index 3358b97..aef58ca 100644 (file)
     "\t_this.model.loadData(opts);",
     "\t_this.combo.el.set_active(-1);",
     "",
-    " ",
+    " /*",
     "\tvar db =  new Palete.RooDatabase.from_project((Project.Roo) project);",
     "\t_this.dbmodel.loadData(db.readTablesGee());",
     "",
-    "",
+    "*/",
     "\t_this.dbcombo.el.set_active(-1);",
     " ",
     "\tthis.window = mwindow;",
index 40a14c2..ecbe2ec 100644 (file)
-    static DialogTemplateSelect  _DialogTemplateSelect;
-
-    public class DialogTemplateSelect : Object
-    {
-        public Gtk.Dialog el;
-        private DialogTemplateSelect  _this;
-
-        public static DialogTemplateSelect singleton()
-        {
-            if (_DialogTemplateSelect == null) {
-                _DialogTemplateSelect= new DialogTemplateSelect();
-            }
-            return _DialogTemplateSelect;
-        }
-        public Xcls_combo combo;
-        public Xcls_cellrenderer cellrenderer;
-        public Xcls_model model;
-        public Xcls_dbcombo dbcombo;
-        public Xcls_dbcellrenderer dbcellrenderer;
-        public Xcls_dbmodel dbmodel;
-
-            // my vars (def)
-        public Xcls_MainWindow window;
-        public signal void complete (JsRender.Node? node);
-        public Palete.Palete palete;
-        public JsRender.Node node;
-        public Project.Project project;
-
-        // ctor
-        public DialogTemplateSelect()
-        {
-            _this = this;
-            this.el = new Gtk.Dialog();
-
-            // my vars (dec)
-
-            // set gobject values
-            this.el.title = "Add an Object";
-            this.el.default_height = 200;
-            this.el.default_width = 400;
-            this.el.modal = true;
-            var child_1 = new Xcls_Box2( _this );
-            child_1.ref();
-            this.el.get_content_area().append ( child_1.el  );
-            var child_2 = new Xcls_Button13( _this );
-            child_2.ref();
-            this.el.add_action_widget ( child_2.el , 0 );
-            var child_3 = new Xcls_Button14( _this );
-            child_3.ref();
-            this.el.add_action_widget ( child_3.el , 1 );
-            var child_4 = new Xcls_Button15( _this );
-            child_4.ref();
-            this.el.add_action_widget ( child_4.el , 2 );
-
-            //listeners
-            this.el.close_request.connect( ( ) => {
-            
-             this.el.hide();
-                return true;;
-            });
-            this.el.response.connect( (res) => {
-            
-               //var node = _this.node;
-               //var project = _this.project;
-               return;
-               /*
-               
-               if (this.plugin == null) {
-                  this.plugin = new Xcls_DialogPluginWebkit();
-                  this.plugin.complete.connect((json_str) => {
-                               print("json_str = %s\n", json_str);
-                        if (json_str.length < 1) {
-                                       this.complete(_this.node);
-                                       return; 
-                        }
-                        var pa = new Json.Parser();
-                        try {
-            
-                               pa.load_from_data(json_str);
-                               } catch(Error e) {
-                                    this.complete(node);
-                               return; // 1 = just add it..
-                               }
-                               var new_node = pa.get_root();
-                       
-                               if (new_node.get_node_type () != Json.NodeType.OBJECT) {
-                                        this.complete(node);
-                                                       return; 
-                               }
-                               var obj = new_node.get_object ();
-            
-                               var ret = new JsRender.Node();
-            
-                               ret.loadFromJson(obj, 1);
-                               this.complete(ret);
-                       });
-              
-               }
-               
-               
-                 
-               
-                 this.el.hide();    
-                //var ix = _this.combo.el.get_active();
-                if (res < 1 ) {
-                       this.complete(null);
-                    return; // 0 = cancel.
-                }
-                if (res < 2 ) {
-                    this.complete(node);
-                    return; // 1 = just add it..
-                }
-                
-                
-                // have they selected a table??
-                
-               Gtk.TreeIter iter; 
-                Value vfname;   
-                if (_this.dbcombo.el.get_active_iter (out iter)) {    
-                     this.dbmodel.el.get_value (iter, 0, out vfname);
-                     if (((string)vfname).length > 0 && this.plugin.has_plugin(node.fqn())) {
-                        this.plugin.showIt(this.window.el, project, node.fqn(), (string)vfname);
-                        return;
-                    }
-                   this.complete(node);
-                     return; // 1 = just add it..
-                     
-                    
-                }
-            
-                if (!_this.combo.el.get_active_iter (out iter)) {
-            
-                     this.complete(node);
-                    return; // 1 = just add it../ nothing selected...
-                }
-               
-                this.model.el.get_value (iter, 0, out vfname);
-                
-                 this.complete(this.palete.loadTemplate((string)vfname));
-                  return; // 1 = just add it..
-              
-            */
-            });
-        }
-
-        // user defined functions
-        public void showIt (
-               Xcls_MainWindow mwindow, 
-               Palete.Palete pal, 
-                JsRender.Node node, 
-                Project.Project project
-         ) {
-        
-               this.el.show();
-        
-               var opts = pal.listTemplates(node);
-               if (opts.length() < 1) {
-               this.el.hide();
-                       this.complete(node);
-                       return; 
-               }
-               this.el.set_transient_for( mwindow.el);
-        
-               //opts.unshift({ path: '' , name :'Just add Element' });
-               _this.model.loadData(opts);
-               _this.combo.el.set_active(-1);
-        
-         
-               var db =  new Palete.RooDatabase.from_project((Project.Roo) project);
-               _this.dbmodel.loadData(db.readTablesGee());
-        
-        
-               _this.dbcombo.el.set_active(-1);
-         
-               this.window = mwindow;
-               this.palete = pal;
-               this.node = node;
-               this.project = project;
-           
-        }
-        public class Xcls_Box2 : Object
-        {
-            public Gtk.Box el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Box2(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
-
-                // my vars (dec)
-
-                // set gobject values
-                var child_1 = new Xcls_Box3( _this );
-                child_1.ref();
-                this.el.append ( child_1.el  );
-                var child_2 = new Xcls_Box8( _this );
-                child_2.ref();
-                this.el.append ( child_2.el  );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_Box3 : Object
-        {
-            public Gtk.Box el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Box3(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.margin_end = 3;
-                this.el.margin_start = 3;
-                var child_1 = new Xcls_Label4( _this );
-                child_1.ref();
-                this.el.append ( child_1.el  );
-                new Xcls_combo( _this );
-                this.el.append ( _this.combo.el  );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_Label4 : Object
-        {
-            public Gtk.Label el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Label4(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "Select Template : " );
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_combo : Object
-        {
-            public Gtk.ComboBox el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_combo(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                _this.combo = this;
-                this.el = new Gtk.ComboBox();
-
-                // my vars (dec)
-
-                // set gobject values
-                new Xcls_cellrenderer( _this );
-                this.el.pack_start ( _this.cellrenderer.el , true );
-                new Xcls_model( _this );
-                this.el.set_model ( _this.model.el  );
-
-                // init method
-
-                this.el.add_attribute(_this.cellrenderer.el , "markup", 1 );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_cellrenderer : Object
-        {
-            public Gtk.CellRendererText el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_cellrenderer(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                _this.cellrenderer = this;
-                this.el = new Gtk.CellRendererText();
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_model : Object
-        {
-            public Gtk.ListStore el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_model(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                _this.model = this;
-                this.el = new Gtk.ListStore.newv(  { typeof(string),typeof(string) }  );
-
-                // my vars (dec)
-
-                // set gobject values
-            }
+static DialogTemplateSelect  _DialogTemplateSelect;
+
+public class DialogTemplateSelect : Object
+{
+       public Gtk.Dialog el;
+       private DialogTemplateSelect  _this;
+
+       public static DialogTemplateSelect singleton()
+       {
+               if (_DialogTemplateSelect == null) {
+                   _DialogTemplateSelect= new DialogTemplateSelect();
+               }
+               return _DialogTemplateSelect;
+       }
+       public Xcls_combo combo;
+       public Xcls_cellrenderer cellrenderer;
+       public Xcls_model model;
+       public Xcls_dbcombo dbcombo;
+       public Xcls_dbcellrenderer dbcellrenderer;
+       public Xcls_dbmodel dbmodel;
+
+               // my vars (def)
+       public Xcls_MainWindow window;
+       public signal void complete (JsRender.Node? node);
+       public Palete.Palete palete;
+       public JsRender.Node node;
+       public Project.Project project;
+
+       // ctor
+       public DialogTemplateSelect()
+       {
+               _this = this;
+               this.el = new Gtk.Dialog();
+
+               // my vars (dec)
+
+               // set gobject values
+               this.el.title = "Add an Object";
+               this.el.default_height = 200;
+               this.el.default_width = 400;
+               this.el.modal = true;
+               var child_1 = new Xcls_Box1( _this );
+               child_1.ref();
+               this.el.get_content_area().append ( child_1.el  );
+               var child_2 = new Xcls_Button12( _this );
+               child_2.ref();
+               this.el.add_action_widget ( child_2.el , 0 );
+               var child_3 = new Xcls_Button13( _this );
+               child_3.ref();
+               this.el.add_action_widget ( child_3.el , 1 );
+               var child_4 = new Xcls_Button14( _this );
+               child_4.ref();
+               this.el.add_action_widget ( child_4.el , 2 );
+
+               //listeners
+               this.el.close_request.connect( ( ) => {
+               
+                this.el.hide();
+                   return true;;
+               });
+               this.el.response.connect( (res) => {
+               
+                       //var node = _this.node;
+                       //var project = _this.project;
+                       return;
+                  /*
+                  
+                  if (this.plugin == null) {
+                          this.plugin = new Xcls_DialogPluginWebkit();
+                          this.plugin.complete.connect((json_str) => {
+                                       print("json_str = %s\n", json_str);
+                           if (json_str.length < 1) {
+                                               this.complete(_this.node);
+                                               return; 
+                           }
+                           var pa = new Json.Parser();
+                           try {
+               
+                                       pa.load_from_data(json_str);
+                                       } catch(Error e) {
+                                            this.complete(node);
+                                       return; // 1 = just add it..
+                               }
+                               var new_node = pa.get_root();
+                               
+                                       if (new_node.get_node_type () != Json.NodeType.OBJECT) {
+                                                this.complete(node);
+                                                               return; 
+                                       }
+                                       var obj = new_node.get_object ();
+               
+                                       var ret = new JsRender.Node();
+               
+                                       ret.loadFromJson(obj, 1);
+                                       this.complete(ret);
+                               });
+                 
+                  }
+                  
+                  
+                    
+                       
+                    this.el.hide();    
+                   //var ix = _this.combo.el.get_active();
+                   if (res < 1 ) {
+                       this.complete(null);
+                       return; // 0 = cancel.
+                   }
+                   if (res < 2 ) {
+                       this.complete(node);
+                       return; // 1 = just add it..
+                   }
+                   
+                   
+                   // have they selected a table??
+                   
+                  Gtk.TreeIter iter; 
+                   Value vfname;   
+                   if (_this.dbcombo.el.get_active_iter (out iter)) {    
+                        this.dbmodel.el.get_value (iter, 0, out vfname);
+                        if (((string)vfname).length > 0 && this.plugin.has_plugin(node.fqn())) {
+                           this.plugin.showIt(this.window.el, project, node.fqn(), (string)vfname);
+                           return;
+                       }
+                           this.complete(node);
+                        return; // 1 = just add it..
+                        
+                       
+                   }
+               
+                   if (!_this.combo.el.get_active_iter (out iter)) {
+               
+                        this.complete(node);
+                       return; // 1 = just add it../ nothing selected...
+                   }
+                  
+                   this.model.el.get_value (iter, 0, out vfname);
+                   
+                    this.complete(this.palete.loadTemplate((string)vfname));
+                     return; // 1 = just add it..
+                 
+               */
+               });
+       }
+
+       // user defined functions
+       public void showIt (
+               Xcls_MainWindow mwindow, 
+               Palete.Palete pal, 
+                JsRender.Node node, 
+                Project.Project project
+        ) {
+       
+               this.el.show();
+       
+               var opts = pal.listTemplates(node);
+               if (opts.length() < 1) {
+               this.el.hide();
+                       this.complete(node);
+                       return; 
+               }
+               this.el.set_transient_for( mwindow.el);
+       
+               //opts.unshift({ path: '' , name :'Just add Element' });
+               _this.model.loadData(opts);
+               _this.combo.el.set_active(-1);
+       
+        /*
+               var db =  new Palete.RooDatabase.from_project((Project.Roo) project);
+               _this.dbmodel.loadData(db.readTablesGee());
+       
+       */
+               _this.dbcombo.el.set_active(-1);
+        
+               this.window = mwindow;
+               this.palete = pal;
+               this.node = node;
+               this.project = project;
+          
+       }
+       public class Xcls_Box1 : Object
+       {
+               public Gtk.Box el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Box1(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       var child_1 = new Xcls_Box2( _this );
+                       child_1.ref();
+                       this.el.append ( child_1.el  );
+                       var child_2 = new Xcls_Box7( _this );
+                       child_2.ref();
+                       this.el.append ( child_2.el  );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_Box2 : Object
+       {
+               public Gtk.Box el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Box2(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.margin_end = 3;
+                       this.el.margin_start = 3;
+                       var child_1 = new Xcls_Label3( _this );
+                       child_1.ref();
+                       this.el.append ( child_1.el  );
+                       new Xcls_combo( _this );
+                       this.el.append ( _this.combo.el  );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_Label3 : Object
+       {
+               public Gtk.Label el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Label3(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "Select Template : " );
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_combo : Object
+       {
+               public Gtk.ComboBox el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_combo(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       _this.combo = this;
+                       this.el = new Gtk.ComboBox();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       new Xcls_cellrenderer( _this );
+                       this.el.pack_start ( _this.cellrenderer.el , true );
+                       new Xcls_model( _this );
+                       this.el.set_model ( _this.model.el  );
+
+                       // init method
+
+                       this.el.add_attribute(_this.cellrenderer.el , "markup", 1 );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_cellrenderer : Object
+       {
+               public Gtk.CellRendererText el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_cellrenderer(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       _this.cellrenderer = this;
+                       this.el = new Gtk.CellRendererText();
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_model : Object
+       {
+               public Gtk.ListStore el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_model(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       _this.model = this;
+                       this.el = new Gtk.ListStore.newv(  { typeof(string),typeof(string) }  );
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
 
-            // user defined functions
-            public void loadData (GLib.List<string> data) {
-                this.el.clear();                                    
-                Gtk.TreeIter iter;
-                var el = this.el;
-                
-               /// el.append(out iter);
-                
-                 
-               // el.set_value(iter, 0, "");
-               // el.set_value(iter, 1, "aaa  - Just add Element - aaa");
-                
-                for (var i = 0; i < data.length();i++) {
-                
-            
-                    el.append(out iter);
-                    var str = data.nth_data(i);
-                    var fn = Path.get_basename (str);
-                    fn.replace(".json", "");
-                    
-                    el.set_value(iter, 0, str);
-                    el.set_value(iter, 1, fn);
-                    
-                }
-                this.el.set_sort_column_id(1, Gtk.SortType.ASCENDING);          
-                                                 
-            }
-        }
+               // user defined functions
+               public void loadData (GLib.List<string> data) {
+                   this.el.clear();                                    
+                   Gtk.TreeIter iter;
+                   var el = this.el;
+                   
+                  /// el.append(out iter);
+                   
+                    
+                  // el.set_value(iter, 0, "");
+                  // el.set_value(iter, 1, "aaa  - Just add Element - aaa");
+                   
+                   for (var i = 0; i < data.length();i++) {
+                   
+               
+                       el.append(out iter);
+                       var str = data.nth_data(i);
+                       var fn = Path.get_basename (str);
+                       fn.replace(".json", "");
+                       
+                       el.set_value(iter, 0, str);
+                       el.set_value(iter, 1, fn);
+                       
+                   }
+                   this.el.set_sort_column_id(1, Gtk.SortType.ASCENDING);          
+                                                    
+               }
+       }
 
 
 
-        public class Xcls_Box8 : Object
-        {
-            public Gtk.Box el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
+       public class Xcls_Box7 : Object
+       {
+               public Gtk.Box el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
 
-            // ctor
-            public Xcls_Box8(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
+               // ctor
+               public Xcls_Box7(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Box( Gtk.Orientation.HORIZONTAL, 0 );
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                this.el.margin_end = 3;
-                this.el.margin_start = 3;
-                var child_1 = new Xcls_Label9( _this );
-                child_1.ref();
-                this.el.append ( child_1.el  );
-                new Xcls_dbcombo( _this );
-                this.el.append ( _this.dbcombo.el  );
-            }
+                       // set gobject values
+                       this.el.margin_end = 3;
+                       this.el.margin_start = 3;
+                       var child_1 = new Xcls_Label8( _this );
+                       child_1.ref();
+                       this.el.append ( child_1.el  );
+                       new Xcls_dbcombo( _this );
+                       this.el.append ( _this.dbcombo.el  );
+               }
 
-            // user defined functions
-        }
-        public class Xcls_Label9 : Object
-        {
-            public Gtk.Label el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Label9(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "Select Database Table : " );
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_dbcombo : Object
-        {
-            public Gtk.ComboBox el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_dbcombo(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                _this.dbcombo = this;
-                this.el = new Gtk.ComboBox();
-
-                // my vars (dec)
-
-                // set gobject values
-                new Xcls_dbcellrenderer( _this );
-                this.el.pack_start ( _this.dbcellrenderer.el , true );
-                new Xcls_dbmodel( _this );
-                this.el.set_model ( _this.dbmodel.el  );
-
-                // init method
-
-                this.el.add_attribute(_this.dbcellrenderer.el , "markup", 1 );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_dbcellrenderer : Object
-        {
-            public Gtk.CellRendererText el;
-            private DialogTemplateSelect  _this;
-
-
-                // my vars (def)
+               // user defined functions
+       }
+       public class Xcls_Label8 : Object
+       {
+               public Gtk.Label el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Label8(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "Select Database Table : " );
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_dbcombo : Object
+       {
+               public Gtk.ComboBox el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_dbcombo(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       _this.dbcombo = this;
+                       this.el = new Gtk.ComboBox();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       new Xcls_dbcellrenderer( _this );
+                       this.el.pack_start ( _this.dbcellrenderer.el , true );
+                       new Xcls_dbmodel( _this );
+                       this.el.set_model ( _this.dbmodel.el  );
+
+                       // init method
+
+                       this.el.add_attribute(_this.dbcellrenderer.el , "markup", 1 );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_dbcellrenderer : Object
+       {
+               public Gtk.CellRendererText el;
+               private DialogTemplateSelect  _this;
+
+
+                       // my vars (def)
 
-            // ctor
-            public Xcls_dbcellrenderer(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                _this.dbcellrenderer = this;
-                this.el = new Gtk.CellRendererText();
+               // ctor
+               public Xcls_dbcellrenderer(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       _this.dbcellrenderer = this;
+                       this.el = new Gtk.CellRendererText();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-            }
+                       // set gobject values
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
-        public class Xcls_dbmodel : Object
-        {
-            public Gtk.ListStore el;
-            private DialogTemplateSelect  _this;
+       public class Xcls_dbmodel : Object
+       {
+               public Gtk.ListStore el;
+               private DialogTemplateSelect  _this;
 
 
-                // my vars (def)
-
-            // ctor
-            public Xcls_dbmodel(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                _this.dbmodel = this;
-                this.el = new Gtk.ListStore.newv(  { typeof(string),typeof(string) }  );
+                       // my vars (def)
+
+               // ctor
+               public Xcls_dbmodel(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       _this.dbmodel = this;
+                       this.el = new Gtk.ListStore.newv(  { typeof(string),typeof(string) }  );
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-            }
+                       // set gobject values
+               }
 
-            // user defined functions
-            public void loadData (Gee.ArrayList<string> data) {
-                this.el.clear();                                    
-                Gtk.TreeIter iter;
-                var el = this.el;
-                
-               /// el.append(out iter);
-                
-                 
-               // el.set_value(iter, 0, "");
-               // el.set_value(iter, 1, "aaa  - Just add Element - aaa");
-            
-                el.append(out iter);
-            
-                
-                el.set_value(iter, 0, "");
-                el.set_value(iter, 1, "-- select a table --");
-                
-                
-                for (var i = 0; i < data.size;i++) {
-                
-            
-                    el.append(out iter);
-                    
-                    el.set_value(iter, 0, data.get(i));
-                    el.set_value(iter, 1, data.get(i));
-                    
-                }
-                 this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          
-                                                 
-            }
-        }
+               // user defined functions
+               public void loadData (Gee.ArrayList<string> data) {
+                   this.el.clear();                                    
+                   Gtk.TreeIter iter;
+                   var el = this.el;
+                   
+                  /// el.append(out iter);
+                   
+                    
+                  // el.set_value(iter, 0, "");
+                  // el.set_value(iter, 1, "aaa  - Just add Element - aaa");
+               
+                   el.append(out iter);
+               
+                   
+                   el.set_value(iter, 0, "");
+                   el.set_value(iter, 1, "-- select a table --");
+                   
+                   
+                   for (var i = 0; i < data.size;i++) {
+                   
+               
+                       el.append(out iter);
+                       
+                       el.set_value(iter, 0, data.get(i));
+                       el.set_value(iter, 1, data.get(i));
+                       
+                   }
+                    this.el.set_sort_column_id(0, Gtk.SortType.ASCENDING);          
+                                                    
+               }
+       }
 
 
 
 
-        public class Xcls_Button13 : Object
-        {
-            public Gtk.Button el;
-            private DialogTemplateSelect  _this;
+       public class Xcls_Button12 : Object
+       {
+               public Gtk.Button el;
+               private DialogTemplateSelect  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_Button13(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Button();
+               // ctor
+               public Xcls_Button12(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Button();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                this.el.label = "Cancel";
-            }
+                       // set gobject values
+                       this.el.label = "Cancel";
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
-        public class Xcls_Button14 : Object
-        {
-            public Gtk.Button el;
-            private DialogTemplateSelect  _this;
+       public class Xcls_Button13 : Object
+       {
+               public Gtk.Button el;
+               private DialogTemplateSelect  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_Button14(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Button();
+               // ctor
+               public Xcls_Button13(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Button();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                this.el.label = "Just add it";
-            }
+                       // set gobject values
+                       this.el.label = "Just add it";
+               }
 
-            // user defined functions
-        }
-
-        public class Xcls_Button15 : Object
-        {
-            public Gtk.Button el;
-            private DialogTemplateSelect  _this;
+               // user defined functions
+       }
+
+       public class Xcls_Button14 : Object
+       {
+               public Gtk.Button el;
+               private DialogTemplateSelect  _this;
 
 
-                // my vars (def)
-
-            // ctor
-            public Xcls_Button15(DialogTemplateSelect _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Button();
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Button14(DialogTemplateSelect _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Button();
 
-                // my vars (dec)
-
-                // set gobject values
-                this.el.label = "OK";
-            }
-
-            // user defined functions
-        }
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.label = "OK";
+               }
+
+               // user defined functions
+       }
 
-    }
+}
index 90d969d..adff8c9 100644 (file)
              "",
              "",
              "  _this.database_ERROR.el.label    = \"\";",
-             " ",
+             " /*",
              "    Gda.Connection cnc;",
              "    try {",
              "        // assumes localhost...",
              "   }  ",
              "  _this.database_ERROR.el.label = \"Connection Succeeded\";",
              "   cnc.close();",
-             "  ",
+             "  */",
              "}"
             ]
            },
index 73e9216..7516636 100644 (file)
-    static Xcls_RooProjectSettings  _RooProjectSettings;
-
-    public class Xcls_RooProjectSettings : Object
-    {
-        public Gtk.Window el;
-        private Xcls_RooProjectSettings  _this;
-
-        public static Xcls_RooProjectSettings singleton()
-        {
-            if (_RooProjectSettings == null) {
-                _RooProjectSettings= new Xcls_RooProjectSettings();
-            }
-            return _RooProjectSettings;
-        }
-        public Xcls_label_global label_global;
-        public Xcls_label_database label_database;
-        public Xcls_grid grid;
-        public Xcls_path path;
-        public Xcls_base_template base_template;
-        public Xcls_base_template_cellrenderer base_template_cellrenderer;
-        public Xcls_base_template_model base_template_model;
-        public Xcls_rootURL rootURL;
-        public Xcls_html_gen html_gen;
-        public Xcls_html_gen_cellrenderer html_gen_cellrenderer;
-        public Xcls_html_gen_model html_gen_model;
-        public Xcls_view view;
-        public Xcls_database_DBTYPE database_DBTYPE;
-        public Xcls_database_DBNAME database_DBNAME;
-        public Xcls_database_DBUSERNAME database_DBUSERNAME;
-        public Xcls_database_DBPASSWORD database_DBPASSWORD;
-        public Xcls_database_ERROR database_ERROR;
-
-            // my vars (def)
-        public signal void buttonPressed (string btn);
-        public Gtk.PositionType position;
-        public uint border_width;
-        public bool done;
-        public Project.Roo project;
-        public bool autohide;
-
-        // ctor
-        public Xcls_RooProjectSettings()
-        {
-            _this = this;
-            this.el = new Gtk.Window();
-
-            // my vars (dec)
-            this.position = Gtk.PositionType.RIGHT;
-            this.border_width = 0;
-            this.done = false;
-            this.autohide = false;
-
-            // set gobject values
-            this.el.title = "Edit Project settings";
-            this.el.modal = true;
-            var child_1 = new Xcls_Box2( _this );
-            child_1.ref();
-            this.el.set_child ( child_1.el  );
-            var child_2 = new Xcls_HeaderBar38( _this );
-            this.el.titlebar = child_2.el;
-        }
-
-        // user defined functions
-        public void show (Gtk.Window pwin, Project.Roo project) {
-            _this.done = false;
-            
-            _this.project = project;
-            _this.path.el.label = project.path;
-            // get the active project.
-             var lm = GtkSource.LanguageManager.get_default();
-                        
-            ((GtkSource.Buffer)(_this.view.el.get_buffer())) .set_language(
-                lm.get_language("html")
-            );
-          
-            //print (project.fn);
-            //project.runhtml = project.runhtml || '';
-            _this.view.el.get_buffer().set_text(project.runhtml);
-             
-              
-            _this.rootURL.el.set_text( _this.project.rootURL );
-            
-            _this.html_gen_model.loadData(_this.project.html_gen);
-        
-            _this.base_template_model.loadData();
-            
-             //var js = _this.project;
-            _this.database_DBTYPE.el.set_text(    _this.project.DBTYPE );
-            _this.database_DBNAME.el.set_text(    _this.project.DBNAME );
-            _this.database_DBUSERNAME.el.set_text(  _this.project.DBUSERNAME );
-            _this.database_DBPASSWORD.el.set_text(  _this.project.DBPASSWORD );
-            
-               //console.log('show all');
-        
-               
-            this.el.set_transient_for(pwin);
-               // window + header?
-                print("SHOWALL - POPIP\n");
-               this.el.show();
-               this.el.set_size_request(800,600);
-               this.view.el.grab_focus();
-               
-            
-            //this.el.show_all();
-        }
-        public void save () {
-           var buf =    _this.view.el.get_buffer();
-           Gtk.TextIter s;
-             Gtk.TextIter e;
-            buf.get_start_iter(out s);
-            buf.get_end_iter(out e);
-               _this.project.runhtml = buf.get_text(s,e,true);
-              
-            _this.project.rootURL = _this.rootURL.el.get_text();
-            
-            
-            Gtk.TreeIter iter;
-            Value html_gen_val;
-            _this.html_gen.el.get_active_iter(out iter);
-            _this.html_gen_model.el.get_value (iter, 0, out html_gen_val);
-            
-            _this.project.html_gen = (string)html_gen_val;
-            
-            // set by event changed...
-            //_this.project.base_template = _this.base_template.el.get_text();    
-            
-            var js = _this.project;
-            js.DBTYPE = _this.database_DBTYPE.el.get_text();
-           js.DBNAME= _this.database_DBNAME.el.get_text();
-            js.DBUSERNAME= _this.database_DBUSERNAME.el.get_text();
-            js.DBPASSWORD= _this.database_DBPASSWORD.el.get_text();
-        //    _this.project.set_string_member("DBHOST", _this.DBTYPE.el.get_text());    
-            
-            // need to re-init the database 
-               js.save();
-            _this.project.initDatabase();
-             
-            
-        }
-        public class Xcls_Box2 : Object
-        {
-            public Gtk.Box el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Box2(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.homogeneous = false;
-                var child_1 = new Xcls_Notebook3( _this );
-                child_1.ref();
-                this.el.append( child_1.el );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_Notebook3 : Object
-        {
-            public Gtk.Notebook el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Notebook3(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Notebook();
-
-                // my vars (dec)
-
-                // set gobject values
-                new Xcls_label_global( _this );
-                new Xcls_label_database( _this );
-                var child_3 = new Xcls_Box6( _this );
-                child_3.ref();
-                this.el.append_page ( child_3.el , _this.label_global.el );
-                var child_4 = new Xcls_Box24( _this );
-                child_4.ref();
-                this.el.append_page ( child_4.el , _this.label_database.el );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_label_global : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_label_global(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.label_global = this;
-                this.el = new Gtk.Label( "Global" );
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_label_database : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_label_database(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.label_database = this;
-                this.el = new Gtk.Label( "Database" );
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_Box6 : Object
-        {
-            public Gtk.Box el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Box6(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.homogeneous = false;
-                new Xcls_grid( _this );
-                this.el.append( _this.grid.el );
-                var child_2 = new Xcls_Label20( _this );
-                child_2.ref();
-                this.el.append( child_2.el );
-                var child_3 = new Xcls_ScrolledWindow21( _this );
-                child_3.ref();
-                this.el.append( child_3.el );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_grid : Object
-        {
-            public Gtk.Grid el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_grid(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.grid = this;
-                this.el = new Gtk.Grid();
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.margin_end = 4;
-                this.el.margin_start = 4;
-                this.el.row_spacing = 2;
-                var child_1 = new Xcls_Label8( _this );
-                child_1.ref();
-                this.el.attach ( child_1.el , 0,0,1,1 );
-                new Xcls_path( _this );
-                this.el.attach ( _this.path.el , 1,0,1,1 );
-                var child_3 = new Xcls_Label10( _this );
-                child_3.ref();
-                this.el.attach ( child_3.el , 0,1,1,1 );
-                new Xcls_base_template( _this );
-                this.el.attach ( _this.base_template.el , 1,1,1,1 );
-                var child_5 = new Xcls_Label14( _this );
-                child_5.ref();
-                this.el.attach ( child_5.el , 0,2,1,1 );
-                new Xcls_rootURL( _this );
-                this.el.attach ( _this.rootURL.el , 1,2,1,1 );
-                var child_7 = new Xcls_Label16( _this );
-                child_7.ref();
-                this.el.attach ( child_7.el , 0,3,1,1 );
-                new Xcls_html_gen( _this );
-                this.el.attach ( _this.html_gen.el , 1,3,1,1 );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_Label8 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Label8(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "Filename" );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.margin_end = 3;
-                this.el.margin_start = 3;
-                this.el.xalign = 0f;
-                this.el.margin_bottom = 3;
-                this.el.margin_top = 3;
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_path : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_path(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.path = this;
-                this.el = new Gtk.Label( "filename" );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.margin_end = 3;
-                this.el.margin_start = 3;
-                this.el.xalign = 0f;
-                this.el.margin_bottom = 3;
-                this.el.margin_top = 3;
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_Label10 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Label10(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "HTML template file" );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.margin_end = 3;
-                this.el.margin_start = 3;
-                this.el.margin_bottom = 3;
-                this.el.margin_top = 3;
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_base_template : Object
-        {
-            public Gtk.ComboBox el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-            public bool loading;
-
-            // ctor
-            public Xcls_base_template(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.base_template = this;
-                this.el = new Gtk.ComboBox();
-
-                // my vars (dec)
-                this.loading = false;
-
-                // set gobject values
-                new Xcls_base_template_cellrenderer( _this );
-                this.el.pack_start ( _this.base_template_cellrenderer.el , true );
-                new Xcls_base_template_model( _this );
-                this.el.set_model ( _this.base_template_model.el  );
-
-                // init method
-
-                this.el.add_attribute(_this.base_template_cellrenderer.el , "markup", 0 );
-
-                //listeners
-                this.el.changed.connect( () => {
-                       Gtk.TreeIter iter;
-                 
-                       // this get's called when we are filling in the data... ???
-                       if (this.loading) {
-                               return;
-                       }
-                       
-                 
-                       if (this.el.get_active_iter(out iter)) {
-                               Value vfname;
-                               _this.base_template_model.el.get_value (iter, 0, out vfname);
-                               _this.project.base_template = ((string)vfname) ;
-                               
-                                print("\nSET base template to %s\n", _this.project.base_template );
-                               // is_bjs = ((string)vfname) == "bjs";
-                       }
-                    
-                  
-                    // directory is only available for non-bjs 
-                 
-                
-                
-                });
-            }
-
-            // user defined functions
-        }
-        public class Xcls_base_template_cellrenderer : Object
-        {
-            public Gtk.CellRendererText el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_base_template_cellrenderer(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.base_template_cellrenderer = this;
-                this.el = new Gtk.CellRendererText();
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_base_template_model : Object
-        {
-            public Gtk.ListStore el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_base_template_model(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.base_template_model = this;
-                this.el = new Gtk.ListStore.newv(  { typeof(string) }  );
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-            public void loadData () {
-               _this.base_template.loading = true;
-              
-                this.el.clear();                                    
-                Gtk.TreeIter iter;
-                var el = this.el;
-                
-               /// el.append(out iter);
-                
-               
-                el.append(out iter);
-                el.set_value(iter, 0, "roo.builder.html");
-                _this.base_template.el.set_active_iter(iter);
-               if (_this.project.base_template == "roo.builder.html") {
-                  _this.base_template.el.set_active_iter(iter);
-                }
-            
-                el.append(out iter);
-                el.set_value(iter, 0, "bootstrap.builder.html");
-              
-               print("\ncur template = %s\n", _this.project.base_template);
-             
-                if (_this.project.base_template == "bootstrap.builder.html") {
-                  _this.base_template.el.set_active_iter(iter);
-                }
-                 el.append(out iter);
-                el.set_value(iter, 0, "bootstrap4.builder.html");
-                 if (_this.project.base_template == "bootstrap4.builder.html") {
-                  _this.base_template.el.set_active_iter(iter);
-                }
-                
-            
-               el.append(out iter);
-                el.set_value(iter, 0, "mailer.builder.html");
-            
-               if (_this.project.base_template == "mailer.builder.html") {
-                   _this.base_template.el.set_active_iter(iter);
-                }
-               _this.base_template.loading = false;
-                                                 
-            }
-        }
-
-
-        public class Xcls_Label14 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Label14(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "root URL" );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.margin_end = 3;
-                this.el.margin_start = 3;
-                this.el.margin_bottom = 3;
-                this.el.margin_top = 3;
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_rootURL : Object
-        {
-            public Gtk.Entry el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_rootURL(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.rootURL = this;
-                this.el = new Gtk.Entry();
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_Label16 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Label16(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "Generate HTML in" );
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_html_gen : Object
-        {
-            public Gtk.ComboBox el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_html_gen(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.html_gen = this;
-                this.el = new Gtk.ComboBox();
-
-                // my vars (dec)
-
-                // set gobject values
-                new Xcls_html_gen_cellrenderer( _this );
-                this.el.pack_start ( _this.html_gen_cellrenderer.el , true );
-                new Xcls_html_gen_model( _this );
-                this.el.set_model ( _this.html_gen_model.el  );
+static Xcls_RooProjectSettings  _RooProjectSettings;
+
+public class Xcls_RooProjectSettings : Object
+{
+       public Gtk.Window el;
+       private Xcls_RooProjectSettings  _this;
+
+       public static Xcls_RooProjectSettings singleton()
+       {
+               if (_RooProjectSettings == null) {
+                   _RooProjectSettings= new Xcls_RooProjectSettings();
+               }
+               return _RooProjectSettings;
+       }
+       public Xcls_label_global label_global;
+       public Xcls_label_database label_database;
+       public Xcls_grid grid;
+       public Xcls_path path;
+       public Xcls_base_template base_template;
+       public Xcls_base_template_cellrenderer base_template_cellrenderer;
+       public Xcls_base_template_model base_template_model;
+       public Xcls_rootURL rootURL;
+       public Xcls_html_gen html_gen;
+       public Xcls_html_gen_cellrenderer html_gen_cellrenderer;
+       public Xcls_html_gen_model html_gen_model;
+       public Xcls_view view;
+       public Xcls_database_DBTYPE database_DBTYPE;
+       public Xcls_database_DBNAME database_DBNAME;
+       public Xcls_database_DBUSERNAME database_DBUSERNAME;
+       public Xcls_database_DBPASSWORD database_DBPASSWORD;
+       public Xcls_database_ERROR database_ERROR;
+
+               // my vars (def)
+       public signal void buttonPressed (string btn);
+       public Gtk.PositionType position;
+       public uint border_width;
+       public bool done;
+       public Project.Roo project;
+       public bool autohide;
+
+       // ctor
+       public Xcls_RooProjectSettings()
+       {
+               _this = this;
+               this.el = new Gtk.Window();
+
+               // my vars (dec)
+               this.position = Gtk.PositionType.RIGHT;
+               this.border_width = 0;
+               this.done = false;
+               this.autohide = false;
+
+               // set gobject values
+               this.el.title = "Edit Project settings";
+               this.el.modal = true;
+               var child_1 = new Xcls_Box1( _this );
+               child_1.ref();
+               this.el.set_child ( child_1.el  );
+               var child_2 = new Xcls_HeaderBar37( _this );
+               this.el.titlebar = child_2.el;
+       }
+
+       // user defined functions
+       public void show (Gtk.Window pwin, Project.Roo project) {
+           _this.done = false;
+           
+           _this.project = project;
+           _this.path.el.label = project.path;
+           // get the active project.
+            var lm = GtkSource.LanguageManager.get_default();
+                       
+           ((GtkSource.Buffer)(_this.view.el.get_buffer())) .set_language(
+               lm.get_language("html")
+           );
+         
+           //print (project.fn);
+           //project.runhtml = project.runhtml || '';
+           _this.view.el.get_buffer().set_text(project.runhtml);
+            
+             
+           _this.rootURL.el.set_text( _this.project.rootURL );
+           
+           _this.html_gen_model.loadData(_this.project.html_gen);
+       
+           _this.base_template_model.loadData();
+           
+            //var js = _this.project;
+           _this.database_DBTYPE.el.set_text(    _this.project.DBTYPE );
+           _this.database_DBNAME.el.set_text(    _this.project.DBNAME );
+           _this.database_DBUSERNAME.el.set_text(  _this.project.DBUSERNAME );
+           _this.database_DBPASSWORD.el.set_text(  _this.project.DBPASSWORD );
+           
+               //console.log('show all');
+       
+               
+           this.el.set_transient_for(pwin);
+               // window + header?
+                print("SHOWALL - POPIP\n");
+               this.el.show();
+               this.el.set_size_request(800,600);
+               this.view.el.grab_focus();
+               
+           
+           //this.el.show_all();
+       }
+       public void save () {
+          var buf =    _this.view.el.get_buffer();
+          Gtk.TextIter s;
+            Gtk.TextIter e;
+           buf.get_start_iter(out s);
+           buf.get_end_iter(out e);
+               _this.project.runhtml = buf.get_text(s,e,true);
+             
+           _this.project.rootURL = _this.rootURL.el.get_text();
+           
+           
+           Gtk.TreeIter iter;
+           Value html_gen_val;
+           _this.html_gen.el.get_active_iter(out iter);
+           _this.html_gen_model.el.get_value (iter, 0, out html_gen_val);
+           
+           _this.project.html_gen = (string)html_gen_val;
+           
+           // set by event changed...
+           //_this.project.base_template = _this.base_template.el.get_text();    
+           
+           var js = _this.project;
+           js.DBTYPE = _this.database_DBTYPE.el.get_text();
+          js.DBNAME= _this.database_DBNAME.el.get_text();
+           js.DBUSERNAME= _this.database_DBUSERNAME.el.get_text();
+           js.DBPASSWORD= _this.database_DBPASSWORD.el.get_text();
+       //    _this.project.set_string_member("DBHOST", _this.DBTYPE.el.get_text());    
+           
+           // need to re-init the database 
+               js.save();
+           _this.project.initDatabase();
+            
+           
+       }
+       public class Xcls_Box1 : Object
+       {
+               public Gtk.Box el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Box1(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.homogeneous = false;
+                       var child_1 = new Xcls_Notebook2( _this );
+                       child_1.ref();
+                       this.el.append( child_1.el );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_Notebook2 : Object
+       {
+               public Gtk.Notebook el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Notebook2(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Notebook();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       new Xcls_label_global( _this );
+                       new Xcls_label_database( _this );
+                       var child_3 = new Xcls_Box5( _this );
+                       child_3.ref();
+                       this.el.append_page ( child_3.el , _this.label_global.el );
+                       var child_4 = new Xcls_Box23( _this );
+                       child_4.ref();
+                       this.el.append_page ( child_4.el , _this.label_database.el );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_label_global : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_label_global(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.label_global = this;
+                       this.el = new Gtk.Label( "Global" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_label_database : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_label_database(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.label_database = this;
+                       this.el = new Gtk.Label( "Database" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_Box5 : Object
+       {
+               public Gtk.Box el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Box5(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.homogeneous = false;
+                       new Xcls_grid( _this );
+                       this.el.append( _this.grid.el );
+                       var child_2 = new Xcls_Label19( _this );
+                       child_2.ref();
+                       this.el.append( child_2.el );
+                       var child_3 = new Xcls_ScrolledWindow20( _this );
+                       child_3.ref();
+                       this.el.append( child_3.el );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_grid : Object
+       {
+               public Gtk.Grid el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_grid(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.grid = this;
+                       this.el = new Gtk.Grid();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.margin_end = 4;
+                       this.el.margin_start = 4;
+                       this.el.row_spacing = 2;
+                       var child_1 = new Xcls_Label7( _this );
+                       child_1.ref();
+                       this.el.attach ( child_1.el , 0,0,1,1 );
+                       new Xcls_path( _this );
+                       this.el.attach ( _this.path.el , 1,0,1,1 );
+                       var child_3 = new Xcls_Label9( _this );
+                       child_3.ref();
+                       this.el.attach ( child_3.el , 0,1,1,1 );
+                       new Xcls_base_template( _this );
+                       this.el.attach ( _this.base_template.el , 1,1,1,1 );
+                       var child_5 = new Xcls_Label13( _this );
+                       child_5.ref();
+                       this.el.attach ( child_5.el , 0,2,1,1 );
+                       new Xcls_rootURL( _this );
+                       this.el.attach ( _this.rootURL.el , 1,2,1,1 );
+                       var child_7 = new Xcls_Label15( _this );
+                       child_7.ref();
+                       this.el.attach ( child_7.el , 0,3,1,1 );
+                       new Xcls_html_gen( _this );
+                       this.el.attach ( _this.html_gen.el , 1,3,1,1 );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_Label7 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Label7(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "Filename" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.margin_end = 3;
+                       this.el.margin_start = 3;
+                       this.el.xalign = 0f;
+                       this.el.margin_bottom = 3;
+                       this.el.margin_top = 3;
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_path : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_path(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.path = this;
+                       this.el = new Gtk.Label( "filename" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.margin_end = 3;
+                       this.el.margin_start = 3;
+                       this.el.xalign = 0f;
+                       this.el.margin_bottom = 3;
+                       this.el.margin_top = 3;
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_Label9 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Label9(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "HTML template file" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.margin_end = 3;
+                       this.el.margin_start = 3;
+                       this.el.margin_bottom = 3;
+                       this.el.margin_top = 3;
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_base_template : Object
+       {
+               public Gtk.ComboBox el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+               public bool loading;
+
+               // ctor
+               public Xcls_base_template(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.base_template = this;
+                       this.el = new Gtk.ComboBox();
+
+                       // my vars (dec)
+                       this.loading = false;
+
+                       // set gobject values
+                       new Xcls_base_template_cellrenderer( _this );
+                       this.el.pack_start ( _this.base_template_cellrenderer.el , true );
+                       new Xcls_base_template_model( _this );
+                       this.el.set_model ( _this.base_template_model.el  );
+
+                       // init method
+
+                       this.el.add_attribute(_this.base_template_cellrenderer.el , "markup", 0 );
+
+                       //listeners
+                       this.el.changed.connect( () => {
+                               Gtk.TreeIter iter;
+                        
+                               // this get's called when we are filling in the data... ???
+                               if (this.loading) {
+                                       return;
+                               }
+                               
+                        
+                               if (this.el.get_active_iter(out iter)) {
+                                       Value vfname;
+                                       _this.base_template_model.el.get_value (iter, 0, out vfname);
+                                       _this.project.base_template = ((string)vfname) ;
+                                       
+                                        print("\nSET base template to %s\n", _this.project.base_template );
+                                       // is_bjs = ((string)vfname) == "bjs";
+                               }
+                           
+                         
+                           // directory is only available for non-bjs 
+                        
+                       
+                       
+                       });
+               }
+
+               // user defined functions
+       }
+       public class Xcls_base_template_cellrenderer : Object
+       {
+               public Gtk.CellRendererText el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_base_template_cellrenderer(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.base_template_cellrenderer = this;
+                       this.el = new Gtk.CellRendererText();
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_base_template_model : Object
+       {
+               public Gtk.ListStore el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_base_template_model(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.base_template_model = this;
+                       this.el = new Gtk.ListStore.newv(  { typeof(string) }  );
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+               public void loadData () {
+                       _this.base_template.loading = true;
+                 
+                   this.el.clear();                                    
+                   Gtk.TreeIter iter;
+                   var el = this.el;
+                   
+                  /// el.append(out iter);
+                   
+                  
+                   el.append(out iter);
+                   el.set_value(iter, 0, "roo.builder.html");
+                   _this.base_template.el.set_active_iter(iter);
+                       if (_this.project.base_template == "roo.builder.html") {
+                          _this.base_template.el.set_active_iter(iter);
+                   }
+               
+                   el.append(out iter);
+                   el.set_value(iter, 0, "bootstrap.builder.html");
+                 
+                       print("\ncur template = %s\n", _this.project.base_template);
+                
+                   if (_this.project.base_template == "bootstrap.builder.html") {
+                          _this.base_template.el.set_active_iter(iter);
+                   }
+                         el.append(out iter);
+                   el.set_value(iter, 0, "bootstrap4.builder.html");
+                    if (_this.project.base_template == "bootstrap4.builder.html") {
+                          _this.base_template.el.set_active_iter(iter);
+                   }
+                   
+               
+                       el.append(out iter);
+                   el.set_value(iter, 0, "mailer.builder.html");
+               
+                       if (_this.project.base_template == "mailer.builder.html") {
+                           _this.base_template.el.set_active_iter(iter);
+                   }
+                       _this.base_template.loading = false;
+                                                    
+               }
+       }
+
+
+       public class Xcls_Label13 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Label13(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "root URL" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.margin_end = 3;
+                       this.el.margin_start = 3;
+                       this.el.margin_bottom = 3;
+                       this.el.margin_top = 3;
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_rootURL : Object
+       {
+               public Gtk.Entry el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_rootURL(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.rootURL = this;
+                       this.el = new Gtk.Entry();
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_Label15 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Label15(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "Generate HTML in" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_html_gen : Object
+       {
+               public Gtk.ComboBox el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_html_gen(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.html_gen = this;
+                       this.el = new Gtk.ComboBox();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       new Xcls_html_gen_cellrenderer( _this );
+                       this.el.pack_start ( _this.html_gen_cellrenderer.el , true );
+                       new Xcls_html_gen_model( _this );
+                       this.el.set_model ( _this.html_gen_model.el  );
 
-                // init method
+                       // init method
 
-                this.el.add_attribute(_this.html_gen_cellrenderer.el , "markup", 1 );
-            }
+                       this.el.add_attribute(_this.html_gen_cellrenderer.el , "markup", 1 );
+               }
 
-            // user defined functions
-        }
-        public class Xcls_html_gen_cellrenderer : Object
-        {
-            public Gtk.CellRendererText el;
-            private Xcls_RooProjectSettings  _this;
+               // user defined functions
+       }
+       public class Xcls_html_gen_cellrenderer : Object
+       {
+               public Gtk.CellRendererText el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
-
-            // ctor
-            public Xcls_html_gen_cellrenderer(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.html_gen_cellrenderer = this;
-                this.el = new Gtk.CellRendererText();
+                       // my vars (def)
+
+               // ctor
+               public Xcls_html_gen_cellrenderer(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.html_gen_cellrenderer = this;
+                       this.el = new Gtk.CellRendererText();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-            }
+                       // set gobject values
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
-        public class Xcls_html_gen_model : Object
-        {
-            public Gtk.ListStore el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_html_gen_model : Object
+       {
+               public Gtk.ListStore el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_html_gen_model(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.html_gen_model = this;
-                this.el = new Gtk.ListStore.newv(  { typeof(string),typeof(string) }  );
+               // ctor
+               public Xcls_html_gen_model(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.html_gen_model = this;
+                       this.el = new Gtk.ListStore.newv(  { typeof(string),typeof(string) }  );
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-            }
-
-            // user defined functions
-            public void loadData (string cur) {
-                this.el.clear();                                    
-                Gtk.TreeIter iter;
-                var el = this.el;
-                
-             
-                el.append(out iter);
-            
-                
-                el.set_value(iter, 0, "");
-                el.set_value(iter, 1, "Do not Generate");
-                _this.html_gen.el.set_active_iter(iter);
-            
-                el.append(out iter);
-                
-                el.set_value(iter, 0, "bjs");
-                el.set_value(iter, 1, "same directory as BJS file");
-               if (cur == "bjs") {
-                   _this.html_gen.el.set_active_iter(iter);
-                }
-            
-            
-            
-                el.append(out iter);
-                
-                el.set_value(iter, 0, "templates");
-                el.set_value(iter, 1, "in templates subdirectory");
-            
-               if (cur == "template") {
-                   _this.html_gen.el.set_active_iter(iter);
-                }
-            
-                                                 
-            }
-        }
-
-
-
-        public class Xcls_Label20 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Label20(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "HTML To insert at end of <HEAD>" );
-
-                // my vars (dec)
-
-                // set gobject values
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_ScrolledWindow21 : Object
-        {
-            public Gtk.ScrolledWindow el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_ScrolledWindow21(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.ScrolledWindow();
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.vexpand = true;
-                new Xcls_view( _this );
-                this.el.set_child ( _this.view.el  );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_view : Object
-        {
-            public GtkSource.View el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-            public Gtk.CssProvider css;
-
-            // ctor
-            public Xcls_view(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.view = this;
-                this.el = new GtkSource.View();
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.name = "roo-project-settings-view";
-                var child_1 = new Xcls_EventControllerKey23( _this );
-                child_1.ref();
-                this.el.add_controller(  child_1.el );
-
-                // init method
-
-                this.css = new Gtk.CssProvider();
-                 
-                       this.css.load_from_string(
-                       "#roo-project-settings-view{ font:  10px monospace;}"
-                );
-                 
-                //this.el.get_style_context().add_provider(this.css,Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION);
-                        
-                       Gtk.StyleContext.add_provider_for_display(
-                              Gdk.Display.get_default(), 
-                              this.css,
-                              Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION
-                       );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_EventControllerKey23 : Object
-        {
-            public Gtk.EventControllerKey el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_EventControllerKey23(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.EventControllerKey();
-
-                // my vars (dec)
-
-                // set gobject values
-
-                //listeners
-                this.el.key_released.connect( (keyval, keycode, state) => {
-                
-                
-                    if (keyval != 115) {
-                        return;
-                         
-                    }
-                    if   ( (state & Gdk.ModifierType.CONTROL_MASK ) < 1 ) {
-                        return;
-                    }
-                     var buf =    _this.view.el.get_buffer();
-                    Gtk.TextIter s;
-                    Gtk.TextIter e;
-                    buf.get_start_iter(out s);
-                    buf.get_end_iter(out e);
-                    _this.project.runhtml = buf.get_text(s,e,true);
-                    
-                          
-                    _this.buttonPressed("save");
-                   
-                         
-                
-                });
-            }
-
-            // user defined functions
-        }
-
-
-
-
-        public class Xcls_Box24 : Object
-        {
-            public Gtk.Box el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Box24(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.homogeneous = false;
-                var child_1 = new Xcls_Label25( _this );
-                child_1.ref();
-                this.el.append( child_1.el );
-                new Xcls_database_DBTYPE( _this );
-                this.el.append( _this.database_DBTYPE.el );
-                var child_3 = new Xcls_Label28( _this );
-                child_3.ref();
-                this.el.append( child_3.el );
-                new Xcls_database_DBNAME( _this );
-                this.el.append( _this.database_DBNAME.el );
-                var child_5 = new Xcls_Label31( _this );
-                child_5.ref();
-                this.el.append( child_5.el );
-                new Xcls_database_DBUSERNAME( _this );
-                this.el.append( _this.database_DBUSERNAME.el );
-                var child_7 = new Xcls_Label34( _this );
-                child_7.ref();
-                this.el.append( child_7.el );
-                new Xcls_database_DBPASSWORD( _this );
-                this.el.append( _this.database_DBPASSWORD.el );
-                var child_9 = new Xcls_Button36( _this );
-                child_9.ref();
-                this.el.append( child_9.el );
-                new Xcls_database_ERROR( _this );
-                this.el.append( _this.database_ERROR.el );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_Label25 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Label25(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "Type (eg. MySQL or PostgreSQL)" );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.xalign = 0f;
-            }
-
-            // user defined functions
-        }
-
-        public class Xcls_database_DBTYPE : Object
-        {
-            public Gtk.Entry el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_database_DBTYPE(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.database_DBTYPE = this;
-                this.el = new Gtk.Entry();
-
-                // my vars (dec)
-
-                // set gobject values
-                var child_1 = new Xcls_EventControllerKey27( _this );
-                child_1.ref();
-                this.el.add_controller(  child_1.el );
-            }
+                       // set gobject values
+               }
+
+               // user defined functions
+               public void loadData (string cur) {
+                   this.el.clear();                                    
+                   Gtk.TreeIter iter;
+                   var el = this.el;
+                   
+                
+                   el.append(out iter);
+               
+                   
+                   el.set_value(iter, 0, "");
+                   el.set_value(iter, 1, "Do not Generate");
+                   _this.html_gen.el.set_active_iter(iter);
+               
+                   el.append(out iter);
+                   
+                   el.set_value(iter, 0, "bjs");
+                   el.set_value(iter, 1, "same directory as BJS file");
+                       if (cur == "bjs") {
+                           _this.html_gen.el.set_active_iter(iter);
+                   }
+               
+               
+               
+                   el.append(out iter);
+                   
+                   el.set_value(iter, 0, "templates");
+                   el.set_value(iter, 1, "in templates subdirectory");
+               
+                       if (cur == "template") {
+                           _this.html_gen.el.set_active_iter(iter);
+                   }
+               
+                                                    
+               }
+       }
+
+
+
+       public class Xcls_Label19 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Label19(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "HTML To insert at end of <HEAD>" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_ScrolledWindow20 : Object
+       {
+               public Gtk.ScrolledWindow el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_ScrolledWindow20(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.ScrolledWindow();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.vexpand = true;
+                       new Xcls_view( _this );
+                       this.el.set_child ( _this.view.el  );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_view : Object
+       {
+               public GtkSource.View el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+               public Gtk.CssProvider css;
+
+               // ctor
+               public Xcls_view(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.view = this;
+                       this.el = new GtkSource.View();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.name = "roo-project-settings-view";
+                       var child_1 = new Xcls_EventControllerKey22( _this );
+                       child_1.ref();
+                       this.el.add_controller(  child_1.el );
+
+                       // init method
+
+                       this.css = new Gtk.CssProvider();
+                        
+                               this.css.load_from_string(
+                               "#roo-project-settings-view{ font:  10px monospace;}"
+                       );
+                        
+                       //this.el.get_style_context().add_provider(this.css,Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION);
+                               
+                              Gtk.StyleContext.add_provider_for_display(
+                                      Gdk.Display.get_default(), 
+                                      this.css,
+                                      Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION
+                              );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_EventControllerKey22 : Object
+       {
+               public Gtk.EventControllerKey el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_EventControllerKey22(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.EventControllerKey();
+
+                       // my vars (dec)
+
+                       // set gobject values
+
+                       //listeners
+                       this.el.key_released.connect( (keyval, keycode, state) => {
+                       
+                       
+                           if (keyval != 115) {
+                               return;
+                                
+                           }
+                           if   ( (state & Gdk.ModifierType.CONTROL_MASK ) < 1 ) {
+                               return;
+                           }
+                            var buf =    _this.view.el.get_buffer();
+                           Gtk.TextIter s;
+                           Gtk.TextIter e;
+                           buf.get_start_iter(out s);
+                           buf.get_end_iter(out e);
+                           _this.project.runhtml = buf.get_text(s,e,true);
+                           
+                                 
+                           _this.buttonPressed("save");
+                          
+                                
+                       
+                       });
+               }
+
+               // user defined functions
+       }
+
+
+
+
+       public class Xcls_Box23 : Object
+       {
+               public Gtk.Box el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Box23(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Box( Gtk.Orientation.VERTICAL, 0 );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.homogeneous = false;
+                       var child_1 = new Xcls_Label24( _this );
+                       child_1.ref();
+                       this.el.append( child_1.el );
+                       new Xcls_database_DBTYPE( _this );
+                       this.el.append( _this.database_DBTYPE.el );
+                       var child_3 = new Xcls_Label27( _this );
+                       child_3.ref();
+                       this.el.append( child_3.el );
+                       new Xcls_database_DBNAME( _this );
+                       this.el.append( _this.database_DBNAME.el );
+                       var child_5 = new Xcls_Label30( _this );
+                       child_5.ref();
+                       this.el.append( child_5.el );
+                       new Xcls_database_DBUSERNAME( _this );
+                       this.el.append( _this.database_DBUSERNAME.el );
+                       var child_7 = new Xcls_Label33( _this );
+                       child_7.ref();
+                       this.el.append( child_7.el );
+                       new Xcls_database_DBPASSWORD( _this );
+                       this.el.append( _this.database_DBPASSWORD.el );
+                       var child_9 = new Xcls_Button35( _this );
+                       child_9.ref();
+                       this.el.append( child_9.el );
+                       new Xcls_database_ERROR( _this );
+                       this.el.append( _this.database_ERROR.el );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_Label24 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Label24(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "Type (eg. MySQL or PostgreSQL)" );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.xalign = 0f;
+               }
+
+               // user defined functions
+       }
+
+       public class Xcls_database_DBTYPE : Object
+       {
+               public Gtk.Entry el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_database_DBTYPE(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.database_DBTYPE = this;
+                       this.el = new Gtk.Entry();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       var child_1 = new Xcls_EventControllerKey26( _this );
+                       child_1.ref();
+                       this.el.add_controller(  child_1.el );
+               }
 
-            // user defined functions
-        }
-        public class Xcls_EventControllerKey27 : Object
-        {
-            public Gtk.EventControllerKey el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_EventControllerKey27(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.EventControllerKey();
-
-                // my vars (dec)
-
-                // set gobject values
-
-                //listeners
-                this.el.key_pressed.connect( (keyval, keycode, state) => {
-                    if (keyval == Gdk.Key.Tab) {
-                        _this.database_DBNAME.el.grab_focus();
-                        return true;
-                    }
-                
-                
-                       return false;
-                });
-            }
-
-            // user defined functions
-        }
+               // user defined functions
+       }
+       public class Xcls_EventControllerKey26 : Object
+       {
+               public Gtk.EventControllerKey el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_EventControllerKey26(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.EventControllerKey();
+
+                       // my vars (dec)
+
+                       // set gobject values
+
+                       //listeners
+                       this.el.key_pressed.connect( (keyval, keycode, state) => {
+                           if (keyval == Gdk.Key.Tab) {
+                               _this.database_DBNAME.el.grab_focus();
+                               return true;
+                           }
+                       
+                       
+                               return false;
+                       });
+               }
+
+               // user defined functions
+       }
 
 
-        public class Xcls_Label28 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_Label27 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_Label28(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "Name" );
+               // ctor
+               public Xcls_Label27(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "Name" );
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                this.el.xalign = 0f;
-            }
+                       // set gobject values
+                       this.el.xalign = 0f;
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
-        public class Xcls_database_DBNAME : Object
-        {
-            public Gtk.Entry el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_database_DBNAME : Object
+       {
+               public Gtk.Entry el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_database_DBNAME(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.database_DBNAME = this;
-                this.el = new Gtk.Entry();
+               // ctor
+               public Xcls_database_DBNAME(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.database_DBNAME = this;
+                       this.el = new Gtk.Entry();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                var child_1 = new Xcls_EventControllerKey30( _this );
-                child_1.ref();
-                this.el.add_controller(  child_1.el );
-            }
+                       // set gobject values
+                       var child_1 = new Xcls_EventControllerKey29( _this );
+                       child_1.ref();
+                       this.el.add_controller(  child_1.el );
+               }
 
-            // user defined functions
-        }
-        public class Xcls_EventControllerKey30 : Object
-        {
-            public Gtk.EventControllerKey el;
-            private Xcls_RooProjectSettings  _this;
+               // user defined functions
+       }
+       public class Xcls_EventControllerKey29 : Object
+       {
+               public Gtk.EventControllerKey el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_EventControllerKey30(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.EventControllerKey();
+               // ctor
+               public Xcls_EventControllerKey29(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.EventControllerKey();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
+                       // set gobject values
 
-                //listeners
-                this.el.key_pressed.connect( (keyval, keycode, state) => {
-                    if (keyval == Gdk.Key.Tab) {
-                        _this.database_DBUSERNAME.el.grab_focus();
-                        return true;
-                    }
-                
-                
-                       return false;
-                        
-                });
-            }
+                       //listeners
+                       this.el.key_pressed.connect( (keyval, keycode, state) => {
+                           if (keyval == Gdk.Key.Tab) {
+                               _this.database_DBUSERNAME.el.grab_focus();
+                               return true;
+                           }
+                       
+                       
+                               return false;
+                                
+                       });
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
 
-        public class Xcls_Label31 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_Label30 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_Label31(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "Username" );
+               // ctor
+               public Xcls_Label30(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "Username" );
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                this.el.xalign = 0f;
-            }
+                       // set gobject values
+                       this.el.xalign = 0f;
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
-        public class Xcls_database_DBUSERNAME : Object
-        {
-            public Gtk.Entry el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_database_DBUSERNAME : Object
+       {
+               public Gtk.Entry el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_database_DBUSERNAME(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.database_DBUSERNAME = this;
-                this.el = new Gtk.Entry();
+               // ctor
+               public Xcls_database_DBUSERNAME(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.database_DBUSERNAME = this;
+                       this.el = new Gtk.Entry();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                var child_1 = new Xcls_EventControllerKey33( _this );
-                child_1.ref();
-                this.el.add_controller(  child_1.el );
-            }
+                       // set gobject values
+                       var child_1 = new Xcls_EventControllerKey32( _this );
+                       child_1.ref();
+                       this.el.add_controller(  child_1.el );
+               }
 
-            // user defined functions
-        }
-        public class Xcls_EventControllerKey33 : Object
-        {
-            public Gtk.EventControllerKey el;
-            private Xcls_RooProjectSettings  _this;
+               // user defined functions
+       }
+       public class Xcls_EventControllerKey32 : Object
+       {
+               public Gtk.EventControllerKey el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_EventControllerKey33(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.EventControllerKey();
+               // ctor
+               public Xcls_EventControllerKey32(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.EventControllerKey();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
+                       // set gobject values
 
-                //listeners
-                this.el.key_pressed.connect( (keyval, keycode, state) => {
-                    if (keyval == Gdk.Key.Tab) {
-                        _this.database_DBPASSWORD.el.grab_focus();
-                        return true;
-                    }
-                
-                
-                       return false;
-                        
-                
-                });
-            }
-
-            // user defined functions
-        }
-
-
-        public class Xcls_Label34 : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
+                       //listeners
+                       this.el.key_pressed.connect( (keyval, keycode, state) => {
+                           if (keyval == Gdk.Key.Tab) {
+                               _this.database_DBPASSWORD.el.grab_focus();
+                               return true;
+                           }
+                       
+                       
+                               return false;
+                                
+                       
+                       });
+               }
+
+               // user defined functions
+       }
+
+
+       public class Xcls_Label33 : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_Label34(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Label( "Password" );
+               // ctor
+               public Xcls_Label33(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Label( "Password" );
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                this.el.xalign = 0f;
-            }
+                       // set gobject values
+                       this.el.xalign = 0f;
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
-        public class Xcls_database_DBPASSWORD : Object
-        {
-            public Gtk.Entry el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_database_DBPASSWORD : Object
+       {
+               public Gtk.Entry el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_database_DBPASSWORD(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.database_DBPASSWORD = this;
-                this.el = new Gtk.Entry();
+               // ctor
+               public Xcls_database_DBPASSWORD(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.database_DBPASSWORD = this;
+                       this.el = new Gtk.Entry();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-            }
+                       // set gobject values
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
-        public class Xcls_Button36 : Object
-        {
-            public Gtk.Button el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_Button35 : Object
+       {
+               public Gtk.Button el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_Button36(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Button();
+               // ctor
+               public Xcls_Button35(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Button();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                this.el.label = "Check Connection";
+                       // set gobject values
+                       this.el.label = "Check Connection";
 
-                //listeners
-                this.el.clicked.connect( () => {
-                
-                
-                  _this.database_ERROR.el.label    = "";
-                 
-                    Gda.Connection cnc;
-                    try {
-                        // assumes localhost...
-                         cnc = Gda.Connection.open_from_string (
-                                       _this.database_DBTYPE.el.get_text(),
-                                       "DB_NAME=" + _this.database_DBNAME.el.get_text(), 
-                                       "USERNAME=" + _this.database_DBUSERNAME.el.get_text() + 
-                                       ";PASSWORD=" + _this.database_DBPASSWORD.el.get_text(),
-                                       Gda.ConnectionOptions.NONE
-                               );
-                   //} catch (Gda.ConnectionError ce) { 
-                   //   _this.database_ERROR.el.label = ce.message;        
-                   } catch(GLib.Error ue) {
-                      _this.database_ERROR.el.label = ue.message;
-                        return;
-                   }  
-                  _this.database_ERROR.el.label = "Connection Succeeded";
-                   cnc.close();
-                  
-                });
-            }
+                       //listeners
+                       this.el.clicked.connect( () => {
+                       
+                       
+                         _this.database_ERROR.el.label    = "";
+                        /*
+                           Gda.Connection cnc;
+                           try {
+                               // assumes localhost...
+                                cnc = Gda.Connection.open_from_string (
+                                               _this.database_DBTYPE.el.get_text(),
+                                               "DB_NAME=" + _this.database_DBNAME.el.get_text(), 
+                                               "USERNAME=" + _this.database_DBUSERNAME.el.get_text() + 
+                                               ";PASSWORD=" + _this.database_DBPASSWORD.el.get_text(),
+                                               Gda.ConnectionOptions.NONE
+                                       );
+                          //} catch (Gda.ConnectionError ce) { 
+                          //   _this.database_ERROR.el.label = ce.message;        
+                          } catch(GLib.Error ue) {
+                             _this.database_ERROR.el.label = ue.message;
+                               return;
+                          }  
+                         _this.database_ERROR.el.label = "Connection Succeeded";
+                          cnc.close();
+                         */
+                       });
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
-        public class Xcls_database_ERROR : Object
-        {
-            public Gtk.Label el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_database_ERROR : Object
+       {
+               public Gtk.Label el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_database_ERROR(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                _this.database_ERROR = this;
-                this.el = new Gtk.Label( " " );
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.xalign = 0f;
-            }
-
-            // user defined functions
-        }
-
-
-
-
-        public class Xcls_HeaderBar38 : Object
-        {
-            public Gtk.HeaderBar el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_HeaderBar38(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.HeaderBar();
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.show_title_buttons = false;
-                var child_1 = new Xcls_Button39( _this );
-                child_1.ref();
-                this.el.pack_start ( child_1.el  );
-                var child_2 = new Xcls_Button40( _this );
-                child_2.ref();
-                this.el.pack_end ( child_2.el  );
-            }
-
-            // user defined functions
-        }
-        public class Xcls_Button39 : Object
-        {
-            public Gtk.Button el;
-            private Xcls_RooProjectSettings  _this;
-
-
-                // my vars (def)
-
-            // ctor
-            public Xcls_Button39(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Button();
-
-                // my vars (dec)
-
-                // set gobject values
-                this.el.label = "Cancel";
-
-                //listeners
-                this.el.clicked.connect( () => { 
-                
-                  _this.done = true;
-                    _this.el.hide(); 
-                });
-            }
-
-            // user defined functions
-        }
+               // ctor
+               public Xcls_database_ERROR(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       _this.database_ERROR = this;
+                       this.el = new Gtk.Label( " " );
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.xalign = 0f;
+               }
+
+               // user defined functions
+       }
+
+
+
+
+       public class Xcls_HeaderBar37 : Object
+       {
+               public Gtk.HeaderBar el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_HeaderBar37(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.HeaderBar();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.show_title_buttons = false;
+                       var child_1 = new Xcls_Button38( _this );
+                       child_1.ref();
+                       this.el.pack_start ( child_1.el  );
+                       var child_2 = new Xcls_Button39( _this );
+                       child_2.ref();
+                       this.el.pack_end ( child_2.el  );
+               }
+
+               // user defined functions
+       }
+       public class Xcls_Button38 : Object
+       {
+               public Gtk.Button el;
+               private Xcls_RooProjectSettings  _this;
+
+
+                       // my vars (def)
+
+               // ctor
+               public Xcls_Button38(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Button();
+
+                       // my vars (dec)
+
+                       // set gobject values
+                       this.el.label = "Cancel";
+
+                       //listeners
+                       this.el.clicked.connect( () => { 
+                       
+                         _this.done = true;
+                           _this.el.hide(); 
+                       });
+               }
+
+               // user defined functions
+       }
 
-        public class Xcls_Button40 : Object
-        {
-            public Gtk.Button el;
-            private Xcls_RooProjectSettings  _this;
+       public class Xcls_Button39 : Object
+       {
+               public Gtk.Button el;
+               private Xcls_RooProjectSettings  _this;
 
 
-                // my vars (def)
+                       // my vars (def)
 
-            // ctor
-            public Xcls_Button40(Xcls_RooProjectSettings _owner )
-            {
-                _this = _owner;
-                this.el = new Gtk.Button();
+               // ctor
+               public Xcls_Button39(Xcls_RooProjectSettings _owner )
+               {
+                       _this = _owner;
+                       this.el = new Gtk.Button();
 
-                // my vars (dec)
+                       // my vars (dec)
 
-                // set gobject values
-                this.el.css_classes = { "suggested-action" };
-                this.el.label = "Save";
+                       // set gobject values
+                       this.el.css_classes = { "suggested-action" };
+                       this.el.label = "Save";
 
-                //listeners
-                this.el.clicked.connect( ( ) =>  { 
-                
-                 
-                 _this.buttonPressed("save");
-                 
-                       // what about .js ?
-                   _this.done = true;
-                       _this.el.hide();
-                
-                // hopefull this will work with bjs files..
-                       
-                 
-                   
-                });
-            }
+                       //listeners
+                       this.el.clicked.connect( ( ) =>  { 
+                       
+                        
+                        _this.buttonPressed("save");
+                        
+                               // what about .js ?
+                          _this.done = true;
+                               _this.el.hide();
+                       
+                       // hopefull this will work with bjs files..
+                               
+                        
+                          
+                       });
+               }
 
-            // user defined functions
-        }
+               // user defined functions
+       }
 
 
-    }
+}
index 8863586..ce64d86 100644 (file)
@@ -4,7 +4,7 @@
 
 public class Project.Roo : Project {
 
-       public Palete.RooDatabase roo_database;
+       //public Palete.RooDatabase roo_database;
 
        public string runhtml = "";
        public string base_template = "";
@@ -27,7 +27,7 @@ public class Project.Roo : Project {
     }
        public override void   initDatabase()
        {
-               this.roo_database = new Palete.RooDatabase.from_project(this);   
+               //this.roo_database = new Palete.RooDatabase.from_project(this);   
        }
        public override void loadJson(Json.Object obj) 
        {