Re: focus line pattern around gtk event box

2011-12-20 Thread David Nečas
On Tue, Dec 20, 2011 at 11:24:44AM +0530, Guruprasad Bhat wrote: When I set the focus line pattern in rc file, dotted border comes around button widgtes, entry widgets when focus comes on that. But for event box, layout, even though i set Can focus flag TRUE focus in indication is not

Re: focus line pattern around gtk event box

2011-12-20 Thread Andrew Cowie
On Tue, 2011-12-20 at 09:25 +0100, David Nečas wrote: Using gtk_paint_focus() in the draw handler... Deprecated now, apparently; refers to http://developer.gnome.org/gtk3/3.3/GtkStyleContext.html#gtk-render-focus instead. AfC Sydney ___

Re: focus line pattern around gtk event box

2011-12-20 Thread David Nečas
On Tue, Dec 20, 2011 at 10:43:43PM +1100, Andrew Cowie wrote: On Tue, 2011-12-20 at 09:25 +0100, David Nečas wrote: Using gtk_paint_focus() in the draw handler... Deprecated now, apparently; refers to http://developer.gnome.org/gtk3/3.3/GtkStyleContext.html#gtk-render-focus instead. No,

OpenGL and GtkDrawingArea

2011-12-20 Thread Alessio Giovanni Baroni
Hi, how can I to enable OpenGL on a GtkDrawingArea (GTK+ 3.0)? I attempted to enable it in realize signal, but the gtk_widget_get_window (widget) returns NULL. In draw signal X11 returns BadMatch instead. Thanks. ___ gtk-app-devel-list mailing list

no joy...

2011-12-20 Thread Gary Kline
thanks to those who have tried to help, mostly off-list. i can't believe how hard this is. i want to open a base window: gtk_window_set_title(GTK_WINDOW(window),testing); gtk_widget_set_usize(GTK_WIDGET(window),200,300); ... and then only a text window --upon button

no luck with dialogs and ecrooolbars, and gtktext..

2011-12-20 Thread Gary Kline
Sorry, crummy Subject line before:: n Tue, Dec 20, 2011 at 02:52:10PM -0800, Gary Kline wrote: Date: Tue, 20 Dec 2011 14:52:10 -0800 From: Gary Kline kl...@thought.org Subject: no joy... To: GTK Devel List gtk-app-devel-list@gnome.org thanks to those who have tried to help,

Re: no joy...

2011-12-20 Thread Colomban Wendling
Le 20/12/2011 23:52, Gary Kline a écrit : thanks to those who have tried to help, mostly off-list. i can't believe how hard this is. i want to open a base window: gtk_window_set_title(GTK_WINDOW(window),testing); gtk_widget_set_usize(GTK_WIDGET(window),200,300);

Re: no luck with dialogs and ecrooolbars, and gtktext..

2011-12-20 Thread James Morris
n Tue, Dec 20, 2011 at 02:52:10PM -0800, Gary Kline wrote:         text = gtk_text_view_new();         gtk_container_add(GTK_CONTAINER(window),text);         buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text)); and fopen some file and display the text in the buffer.  The question