PyGTK + Khmer Unicode + Win32 == possible ?

2006-04-01 Thread Mathieu Pellerin
Greetings, I made a quick python script to test the Khmer Unicode support using pygtk and the gladewin32.sf.net Gtk+ package on a windows plateform.  Unfortunately, it failed:  -> Not modifying the font of a text entry / text view widget would simply fail to show _anything_ typed in khmer (while Th

Re: GOption-multiple arguments with exclude parameters

2006-04-01 Thread Anna
something like this maybe?... GOptionEntry options[] = { { "verbose", 0, 0, G_OPTION_ARG_NONE, &gbverbose, "Add verbose output to standard log", NULL }, { "version", 0, 0, G_OPTION_ARG_NONE, &gbversion, "Print version information on standard output", NULL }, { "parse", 0, 0, G_OP

Re: PyGTK + Khmer Unicode + Win32 == possible ?

2006-04-01 Thread Tor Lillqvist
Mathieu Pellerin writes: > -> Not modifying the font of a text entry / text view widget would simply > fail to show _anything_ typed in khmer (while Thai/Arabic/Japanese are > working like it should) The pango.aliases file as shipped in the pango Win32 packages from ftp.gtk.org lists fonts tha

Re: [gtk-list] Re: PyGTK + Khmer Unicode + Win32 == possible ?

2006-04-01 Thread mpsuzuki
Hi On Sat, 1 Apr 2006 20:45:00 +0300 Tor Lillqvist <[EMAIL PROTECTED]> wrote: >But where does one find a Windows keyboard layout for Khmer? It >doesn't seem to be included by Microsoft in XP. You're looking for Microsoft "Official" Khmer keymap? I could not find anything suitable in Microsoft dow

Re: [gtk-list] Re: PyGTK + Khmer Unicode + Win32 == possible ?

2006-04-01 Thread Tor Lillqvist
[EMAIL PROTECTED] writes: > If third party is OK, KhmerOS project (the project who > produced KhmerOS fonts) provides "Khmer unicode keyboard" > for Windows: > > http://prdownloads.sourceforge.net/khmer/NIDA-KhmerKbd-1.0.2.zip?download Thanks. Didn't install it yet, but judging from the

Re: [gtk-list] Re: PyGTK + Khmer Unicode + Win32 == possible ?

2006-04-01 Thread mpsuzuki
Hi, On Sat, 1 Apr 2006 22:19:28 +0300 Tor Lillqvist <[EMAIL PROTECTED]> wrote: > > I heard their Unicode keymap is different from existing keymaps > > (ABC, Limon, etc) for non-Unicode legacy fonts. > >Huh? Can you explain more? Sorry for my poor English. Before Unicode standardization of Khmer

Add signal handler for gtk_main_quit()

2006-04-01 Thread [EMAIL PROTECTED]
Hi, How can I add a signal handler for gtk_main_quit()? I mean there are multiple places in my application which calls gtk_main_quit(), but I want it to call a 'cleanup handler' as part of the exit sequence. Thank you. Sam __ Do You Yahoo!? Tired o

Re: Add signal handler for gtk_main_quit()

2006-04-01 Thread David Necas (Yeti)
On Sat, Apr 01, 2006 at 08:33:30PM -0800, [EMAIL PROTECTED] wrote: > How can I add a signal handler for gtk_main_quit()? gtk_main_quit() is not an action of any object, so how it could have a signal handler? > I mean there are multiple places in my application > which calls gtk_main_quit(), but I