X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=Builder3%2FWindow.js;h=52f8869b497976cc343c8044b9df30c81b534a1f;hb=f4aba2b8e632d7db5a03625dd8b7c7475e983cdb;hp=c6e49a1a473641ea9ee0a909a825b420a21574eb;hpb=86f9df29a938daf5aa42356a936e65f8a6b8c673;p=app.Builder.js diff --git a/Builder3/Window.js b/Builder3/Window.js index c6e49a1a4..52f8869b4 100644 --- a/Builder3/Window.js +++ b/Builder3/Window.js @@ -7,7 +7,7 @@ GObject = imports.gi.GObject; GtkSource = imports.gi.GtkSource; WebKit = imports.gi.WebKit; Vte = imports.gi.Vte; -GtkClutter = imports.gi.GtkClutter; +//GtkClutter = imports.gi.GtkClutter; console = imports.console; XObject = imports.XObject.XObject; Window=new XObject({ @@ -635,11 +635,11 @@ Window=new XObject({ return true; }, drag_data_received : function (self, ctx, x, y, sel_data, info, time) { - print("Tree: drag-data-received"); + print("Tree: drag-data-received"); var delete_selection_data = false; var dnd_success = false; - print(JSON.stringify(sel_data, null,4)); + //print(JSON.stringify(sel_data, null,4)); /* Deal with what we are given from source */ // simce I can not be bothered to sort out @@ -2803,7 +2803,7 @@ Window=new XObject({ { xtype: Gtk.HPaned, pack : "add", - id : 'CenterEast' + id : 'centereast', position : 500, items : [ @@ -2990,9 +2990,9 @@ Window=new XObject({ this.el.execute_script("Builder.overPos(" + x +','+ y + ");"); // A) find out from drag all the places that node could be dropped. - var src = Gtk.drag_get_source_widge(ctx); + var src = Gtk.drag_get_source_widget(ctx); if (!src.dropList) { - ctx.drag_status(0, time); + Gdk.drag_status(ctx,0, time); return true; } // b) get what we are over.. (from activeNode) @@ -3909,16 +3909,18 @@ Window=new XObject({ this.get('buttonbar').el.show(); this.get('viewbox').el.hide(); - var ce = this.get('/CenterEast').el; - ce.setPostion(ce.max_position - 30); + var ce = this.get('/Window.centereast').el; + + ce.set_position(ce.get_allocated_width() - 30); print("TRIED TO HIDE"); }, show : function() { this.get('buttonbar').el.hide(); this.get('viewbox').el.show(); - var ce = this.get('/CenterEast').el; - ce.setPostion(ce.max_position - 100); + var ce = this.get('/Window.centereast').el; + print(JSON.stringify(XObject.keys(ce) ,null,4)); + ce.set_position(ce.get_allocated_width() - 150); // this.get('model').expanded(); @@ -4020,7 +4022,7 @@ Window=new XObject({ var iret = {}; var s = this.selection; s.get_selected(iret); - var path = this.get('/RightPalete.model').el.get_path(iter.iter); + var path = this.get('/RightPalete.model').el.get_path(iret.iter); var pix = this.el.create_row_drag_icon ( path);