Toolbar setup dialog

2019-03-07 Thread Igor Korot via gtk-list
Hi, list, On both Windows and OSX it is possible to have a standard platform-dependent toolbar setup dialog with the appropriate API. The dialog will allo to add/remove the tool button and re-arrange them. Is there such a dialog for GtkToolbar? Or I will have to create one myself? Is there a plan

Re: Emitting signals from threads

2019-03-07 Thread Luca Bacci via gtk-list
Yes, go ahead. I don't know if that can be useful to you, but if you increase the time spent in usleep() to something greater it works correctly. With usleep(1) I get mixed results: Third column activated Third column activated Activated an other column Activated an other column Third column

Re: Emitting signals from threads

2019-03-07 Thread Luca Bacci via gtk-list
just setting column1 as resizable fixes the issue Il giorno gio 7 mar 2019 alle ore 18:35 Luca Bacci ha scritto: > Yes, go ahead. > > I don't know if that can be useful to you, but if you increase

Re: Emitting signals from threads

2019-03-07 Thread Luca Bacci via gtk-list
try adding the line gtk_tree_view_column_set_resizable (gtk_tree_view_get_column(view, 0), TRUE); Il giorno gio 7 mar 2019 alle ore 19:43 Luca Bacci ha scritto: > just setting column1 as resizable >

GTK Menu Questions

2019-03-07 Thread Thomas Dineen via gtk-list
Gentle People:     1) In GTK is there a way to delete and recreate a large menu containing multiple submenus? Ideally one would delete or replace this menu at the head and recreate it with different entries.    2) After user selection of a menu entry, is there a way to "reset" the menu display

Re: Emitting signals from threads

2019-03-07 Thread Mitko Haralanov via gtk-list
OK, I can do that but I think it might be still worth the bug. Thanks for looking into this! On Thu, Mar 7, 2019 at 10:47 AM Luca Bacci wrote: > > try adding the line > gtk_tree_view_column_set_resizable (gtk_tree_view_get_column(view, 0), TRUE); > > Il giorno gio 7 mar 2019 alle ore 19:43 Luca

Re: Emitting signals from threads

2019-03-07 Thread Mitko Haralanov via gtk-list
I just tried this and it doesn't work. I set the first column as resizable in the main.ui (through Glade) and the bad behavior is still present. Of course, the sizing of the column is also marked as "AUTOMATIC", which may be the reason why. I am assuming that it works for you because you are overri