Removing themes under win32

2005-09-05 Thread Nick Watts
I have installed the Wimp theme for GTK on windows and well... I hate it. GIMP now crashes when I create a new image!!! How do I properly remove it and go back to the regular GTK+ look and feel? Cheers ___ gtk-app-devel-list mailing list

Removing themes under win32

2005-09-05 Thread Tor Lillqvist
Nick Watts writes: How do I properly remove it and go back to the regular GTK+ look and feel? Edit the installation-prefix\etc\gtk-2.0\gtkrc file? --tml ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: Local on GTK windows

2005-09-05 Thread Deekshit Mantampady
Hi, Thanks for the reply. I set Malayalam as my language in windows regional settings. Now, I see Window Date settings window shows some malayalam words. But when I run my GTK application. I get error like (I don't remember the exact one) Charset is not supported Falling back to C charset,

Re: Local on GTK windows

2005-09-05 Thread Tor Lillqvist
Deekshit Mantampady writes: But when I run my GTK application. I get error like (I don't remember the exact one) Charset is not supported Falling back to C charset, Any help? Not really unless you tell exactly what error message you get, and what exactly you did when you got it.

Re: Signal after Form is completely built

2005-09-05 Thread Stefan Kost
Hi Guenther, Hallo List, I have done a quite complicated GtkDialog. However, if the complete Dialog is built and display, I want some entries changed before the user shall edit there. Is there such an signal generated ? Why don't you update the settings after constructing, but before

disabling a widget when no rows are selected problem

2005-09-05 Thread Colossus
Hi, I have a gtk_image_menu_item_new_from_stock that I want to enable / disable when rows are selected and not selected. The problem is that when I click on a row who is selected it is not unselected but remains selected. So the function gtk_tree_selection_count_selected_rows return 0 and

Re: disabling a widget when no rows are selected problem

2005-09-05 Thread John Coppens
On Mon, 05 Sep 2005 15:49:50 -0700 Colossus [EMAIL PROTECTED] wrote: I have a gtk_image_menu_item_new_from_stock that I want to enable / disable when rows are selected and not selected. The problem is that when I click on a row who is selected it is not unselected but remains selected. So

Re: Very slow gdk_draw_pixbuf

2005-09-05 Thread Juhana Sadeharju
From: Barry Demchak [EMAIL PROTECTED] I am trying to use gdk_draw_pixbuf to render a .PNG into a window via a pixmap. (Actually, this is a much simplified case of trying to use librsvg to render into a window.) [ ... ] pixbuf = gdk_pixbuf_new_from_file((gchar *) mapserv.png, NULL); How

Re: Local on GTK windows

2005-09-05 Thread Tor Lillqvist
Deekshit Mantampady writes: Here is the exact error message. Gtk-WARNING **: Locale not supported by C library. Using the fallback 'C' locale. Yes, that message comes from GTK+. But it only means there is no support for Malayalam in the Microsoft C library (i.e. in API like strftime),

Re: disabling a widget when no rows are selected problem

2005-09-05 Thread Colossus
John Coppens wrote: I suspect you use a tree_view or so? Yes. You can unselect a row using Ctrl-Click on the row. This is what I did but why does the function gtk_tree_selection_count_selected_rows ( selection ) keep on returning 1 ? -- Colossus Cpsed, a Linux OpenGL 3D scene editor

Re: Signal after Form is completely built

2005-09-05 Thread Guenther Sohler
Hallo, I have now used gtk_tree_selection_set_select_function which jsut returns FALSE the first time called :) rds My Problem is solved On 05-Sep-2005 Stefan Kost wrote: Hi Guenther, some idea: * connect the change:handler after showing the dialog * set the correct row in the treeview,