Hi Florian,
On 8/11/18 1:41 pm, Florian Müllner wrote:
> On Thu, Nov 8, 2018 at 12:35 PM Sebastian Geiger (Lanoxx)
> wrote:
>>
>> I was able to resolve the issue yesterday, and found that it was not
>> directly a Problem of GTK+.
>
> To some extent it is, I don't think its API currently allows w
Hi -
I've got a GTK+ 2 "external" widget (gtkdatabox from gtkdatabox.sf.net)
that isn't displaying right after I've patched it to compile with
GSEAL_ENABLED.
The relevant code in the older version was:
widget->style = gtk_style_attach (widget->style, widget->window);
which we changed to:
gtk_
build error in gtk with doc in Builder
it seems that I see the problem of the change I have made below
#include
static void
print_hello (GtkWidget *widget,
gpointer data)
{
g_print ("Hello World\n");
}
static void
activate (GtkApplication *app,
gpointeruser_d
I can't answer your question. But I can say that we never use gtk_style*.
Instead we just parse the RC file that includes "widget/style"
associations, and then we use gtk_widget_set_name() on our widgets to get
them to use the right style.
On Fri, Nov 16, 2018 at 5:32 AM Brent W. Baccala
wrote: