Re: GTK 3.22 Breaking My Eclipse IDE

2016-10-18 Thread Emmanuele Bassi
Hi; you should file bugs against Eclipse on the Eclipse bug tracker; the Eclipse developers will help you debug the issue — and eventually report what they find to the GTK+ bug tracker. Ciao, Emmanuele. On 12 October 2016 at 16:19, Markus Walther wrote: > Upgrading to GTK 3.22 broke the Pref

Make parent aware of drag and drop

2016-10-18 Thread Jim Heald
Hi, I have a slightly weird situation. I have two widgets that are both eventboxes, and I'm trying to make it possible to drag what I call a tile widget into a column. Basically, think I'm dragging a box from one column to another. My issue is I can now drag one tile to a column to get drag data

Re: Make parent aware of drag and drop

2016-10-18 Thread Chris Moller
Have you looked into g_signal_emit () in any of its variants? https://developer.gnome.org/gobject/stable/gobject-Signals.html#g-signal-emit On 10/19/16 00:40, Jim Heald wrote: Hi, I have a slightly weird situation. I have two widgets that are both eventboxes, and I'm trying to make it possibl

Re: Make parent aware of drag and drop

2016-10-18 Thread Jim Heald
So you're saying I'd do signal_emit from the children and then connect to it in the parent, correct? On Oct 18, 2016 22:32, "Chris Moller" wrote: > Have you looked into g_signal_emit () in any of its variants? > > https://developer.gnome.org/gobject/stable/gobject- > Signals.html#g-signal-emit >