Re: Arabic-Indic digits and g_date_strftime()

2005-09-30 Thread Gaurav Jain
Thanks Behdad for the quick response. -Gaurav On 9/30/05, Behdad Esfahbod [EMAIL PROTECTED] wrote: On Fri, 30 Sep 2005, Gaurav Jain wrote: Hi, I'm trying to print a date onto a GtkLabel in ar_SA (arabic) locale. For this, I'm using the API g_date_strftime(), in which the format being

redirecting output to a file with g_spawn_async

2005-09-30 Thread Colossus
Hi, I tried with g_spawn_async_with_pipes and with gspawn_async but it does not work. In the first case the output (the decompressed bzip2 file) is redirected to a GTK window so I used g_spawn_async (no pipes) but the output is directed to the shell window from which I ran my program. How can

Re: redirecting output to a file with g_spawn_async

2005-09-30 Thread Colossus
Colossus wrote: Hi, I tried with g_spawn_async_with_pipes and with gspawn_async but it does not work. In the first case the output (the decompressed bzip2 file) is redirected to a GTK window so I used g_spawn_async (no pipes) but the output is directed to the shell window from which I ran my

Re: Arabic-Indic digits and g_date_strftime()

2005-09-30 Thread Behdad Esfahbod
On Fri, 30 Sep 2005, Gaurav Jain wrote: Hi, I'm trying to print a date onto a GtkLabel in ar_SA (arabic) locale. For this, I'm using the API g_date_strftime(), in which the format being passed is %c (to use the current locale's prefered format). The problem is that the output generated is

Where's the FAQ gone

2005-09-30 Thread Bill Medland
Does anyone know what's happended to the faq page (www.gtk.org/faq) (I want to have another quick look at 6.15 before I ask the next question) -- Bill Medland mailto:[EMAIL PROTECTED] http://webhome.idirect.com/~kbmed ___ gtk-app-devel-list mailing

is FAQ 6.15 lazily programmed

2005-09-30 Thread Bill Medland
or am I misunderstanding something? Surely the text passed in is a utf8 string and so the testing should be using g_utf8_validate, g_utf8_next_char, g_utf8_get_char and g_unichar_isalpha -- Bill Medland mailto:[EMAIL PROTECTED] http://webhome.idirect.com/~kbmed

Mnemonic activation for widgets with separate labels

2005-09-30 Thread Catherine Laws
I'm trying to use Glade to create an app that has Gtk spin buttons, combo boxes, and entry fields with separate labels packed in vertical or horizontal boxes. I'm using the underline in the label to create a mnemonic activation for the related spin button, combo box, or entry field, and using the

Re: Where's the FAQ gone

2005-09-30 Thread Shawn Amundson
Bill Medland wrote: Does anyone know what's happended to the faq page (www.gtk.org/faq) (I want to have another quick look at 6.15 before I ask the next question) It is now back up. Thanks, -Shawn -- Shawn T. Amundson ___

First column header in GtkTreeView?

2005-09-30 Thread The Saltydog
Is there any way to have the first column fixed in a GtkTreeView, not scrolling to the left? I need to headers: the first row and the first column... ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

GtkFileChooser and case sensitive filters

2005-09-30 Thread Luke Biddell
If there any way to set a GtkFileFilter to be case insensitive? For example I want users to be able to see .cue, .CUE files etc. Here is the code I am using: GtkFileFilter *imagefilter = gtk_file_filter_new(); gtk_file_filter_add_pattern (imagefilter, *.iso); gtk_file_filter_add_pattern

Scaling in one direction

2005-09-30 Thread Lachlan Gunn
Hi, I'm making an application that has a vbox that I want to only resize horizontally (ie. when I extend the window horizontally, it becomes wider, but when I extend vertically it stays the same size). I haven't been able to figure this out, is there anyone here who could help me? -- Thanks,

Re: GtkFileChooser and case sensitive filters

2005-09-30 Thread Arne Skjaerholt
Have a look at the gtk_file_chooser_add_filter() method and the GtkFileFilter class (especially gtk_file_filter_add_custom()). Then you can test away as much as you want, but in your case I'd probably use the PCRE library or something similar to test the filenames for the correct patterns (in your