DependTree/Window.bjs
[app.Builder.js] / DependTree / Window.js
index 26a42be..1c45e10 100644 (file)
@@ -86,6 +86,7 @@ Window=new XObject({
                                         {
                                             xtype: Gtk.TreeViewColumn,
                                             title : "Class",
+                                            expand : true,
                                             items : [
                                                 {
                                                     xtype: Gtk.CellRendererText
@@ -130,11 +131,25 @@ Window=new XObject({
                                     items : [
                                         {
                                             xtype: Gtk.ListStore,
-                                            id : "method-list-store"
+                                            id : "method-list-store",
+                                            init : function() 
+                                                    {
+                                                        XObject.prototype.init.call(this);
+                                                        this.el.set_column_types ( 6, [
+                                                            GObject.TYPE_STRING, 
+                                                            GObject.TYPE_BOOLEAN, 
+                                                            GObject.TYPE_STRING, 
+                                                            GObject.TYPE_STRING, 
+                                                            GObject.TYPE_STRING, 
+                                                            GObject.TYPE_STRING 
+                                                        ] );
+                                                        
+                                                    }
                                         },
                                         {
                                             xtype: Gtk.TreeViewColumn,
                                             title : "Methods",
+                                            expand : true,
                                             items : [
                                                 {
                                                     xtype: Gtk.CellRendererText
@@ -179,11 +194,25 @@ Window=new XObject({
                                     items : [
                                         {
                                             xtype: Gtk.ListStore,
-                                            id : "children-list-store"
+                                            id : "children-list-store",
+                                            init : function() 
+                                                    {
+                                                        XObject.prototype.init.call(this);
+                                                        this.el.set_column_types ( 6, [
+                                                            GObject.TYPE_STRING, 
+                                                            GObject.TYPE_BOOLEAN, 
+                                                            GObject.TYPE_STRING, 
+                                                            GObject.TYPE_STRING, 
+                                                            GObject.TYPE_STRING, 
+                                                            GObject.TYPE_STRING 
+                                                        ] );
+                                                        
+                                                    }
                                         },
                                         {
                                             xtype: Gtk.TreeViewColumn,
                                             title : "Child classes",
+                                            expand : true,
                                             items : [
                                                 {
                                                     xtype: Gtk.CellRendererText