Re: Combobox focus event

2017-04-08 Thread Eric Cashon via gtk-app-devel-list
Another thing to give a try is just to set a boolean in the "set-focus-child" callback. Not sure if this will always work. I think that it should. I don't know the best workaround for the "focus-in-event" in a combo box. It isn't obvious how to connect that signal for the combobox. Eric

gtk function with argv

2017-04-08 Thread RĂºben Rodrigues
Why guys, I have a doubt that is more about C language that gtk+ but it's to apply to gtk+. I have this function: GtkChart vChart_Init(GtkWidget *widget, GtkSeries *series) My doubt is: How can i use function like this: vChart_Init(GTK_WIDGET(widget), "Series A", "Series B", "Series C"); I