The proper way to integrate self-made widgets with themes

2008-02-08 Thread centipede
Hello list. I asked this question a few days ago at the generic gtk list, but unfortunately did not get much of an answer. I'll figure I would try my luck here instead... In the process of making a bunch of widgets I have stumbled upon this issue: I need to

weird i18n problem on Windows XP Home

2008-02-08 Thread Allin Cottrell
I've received a strange problem report about the win32 version of my GTK app running on XP Home in Spanish on an ACER 1691 laptop (setlocale gives Spanish_Spain.1252). Window titles are managed by gettext, as in title = g_strdup(_(gretl: command script));

Re: Selecting cells in threeview

2008-02-08 Thread Kristian Rietveld
Hi, On Fri, Feb 08, 2008 at 02:28:16PM +0100, Thomas Dybdahl Ahle wrote: Is there any way to select only a cell - not a row - in a gtk-treeview No, GtkTreeView does not support selecting individual cells. Selections can only contain full rows. regards, -kris.

Re: gtk-can-change-accels property absent in gtk 2.8.20?

2008-02-08 Thread Richard Shann
Well, I've passed in a constant string gtk_settings_set_long_property(settings, gtk-can-change-accels, TRUE, .gtkrc:0); and the code has started working - thank you very much! Richard Shann On Fri, 2008-02-08 at 00:19 +0100, Torsten Reuss wrote: On Feb 7, 2008 10:28 PM, Richard

Re: Disabling automatic ESC key action for GtkDialog

2008-02-08 Thread Dong Luo
You may need add GTK_RESPONSE_ACCEPT or GTK_RESPONSE_REJECT parameter when create GtkDialog using gtk_dialog_new_with_buttons (). One of them is the response id from the action of press ESC key, thus you can write your handle to it accordingly. In my case, it is GTK_RESPONSE_ACCEPT. You can test

Selecting cells in threeview

2008-02-08 Thread Thomas Dybdahl Ahle
Is there any way to select only a cell - not a row - in a gtk-treeview -- Best Regards, Med Venlig Hilsen, Thomas ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Treeview column width changed signal

2008-02-08 Thread Jeffrey Barish
Kristian Rietveld wrote: If just saving the column widths of the tree view when the tree view is destroyed is not enough, the easiest way to do this is probably to connect to the notify::width signal on each column. Remember to keep the callback fast (do not write to files, etc) as your