Gtk filechooser and the native encoding of filenames on disk

2012-10-31 Thread Kristoffer Brånemyr
esn't mean whether you get the filenames as an URI or as plain filenames, they will always be in the encoding used on the disk. But the other developer disagrees, and thinks it only applies to plain filenames, and URIs are always returned in UTF-8. Which is correct? It doesn't make s

pango-win32 chinese big5 encoding support

2011-03-21 Thread Emmanuel Thomas-Maurin
Hi everybody, In my app on linux, I have full support for chinese big5 encoding. However, as I have also made a win32 port with mingw, this support is broken. I guess this has something to do with the fact that the linux version uses more recent versions of the gtk stack (gtk+, glib, pango, cairo

Re: [gtk-i18n-list] Determine the best encoding/script for a given text

2007-03-13 Thread mpsuzuki
BTW, for Vietnamese script (Chu-Han & Chu-Nom), I'm not sure if pre-Unicode encodings are used in popular. For example, TCVN 5773:1993 looks like a characterset of intersection between Chu-Han and (exisiting) CJK Unified Ideographs in BMP, I think it is not good characterset to use as a cha

Determine the best encoding/script for a given text

2007-03-13 Thread Gaurav Jain
inese or Simplified Chinese code range? Similarly for Vietnamese? Is there any other API available in GLIB that I can use to determine the best encoding/script for a given text? Thanks, Gaurav ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnom

Re: GLib and UTF-8 encoding text-file

2006-11-15 Thread tomas
just like you use std::string. > > > >Examples? Download any source and grep. > > I´m programming in C, and would like to read three characters in UTF-8 > encoding text-file. Have a look at this: <http://developer.gnome.org/doc/API/2.0/glib/glib-Unicode-Manipulation.html

Re: GLib and UTF-8 encoding text-file

2006-11-15 Thread Kurucz Istvan
encoding text-file. Thanks, The NeverGone :)___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: GLib and UTF-8 encoding text-file

2006-11-15 Thread Ralf Stephan
You wrote > I want to work with an UTF-8 encoding text contained file in my GLib-using > program. > I have any question: how can I read a given number valid UTF-8 characters > from this file? In which type of variables can I this characters save? And > how can I go on wo

GLib and UTF-8 encoding text-file

2006-11-14 Thread Kurucz Istvan
Hallo, I want to work with an UTF-8 encoding text contained file in my GLib-using program. I have any question: how can I read a given number valid UTF-8 characters from this file? In which type of variables can I this characters save? And how can I go on working with this characters? Can I

Re: Format/Encoding of Drag-and-drop data

2005-08-03 Thread Gaurav Jain
Thank you Damon. Yes, indeed, I need to decode the data from URI encoding! Gaurav On 8/3/05, Damon Chaplin <[EMAIL PROTECTED]> wrote: > On Wed, 2005-08-03 at 16:05 +0530, Gaurav Jain wrote: > > Hi, > > > > I'm trying to support drag-and-drop functionality in w

Re: Format/Encoding of Drag-and-drop data

2005-08-03 Thread Damon Chaplin
the first list, > which I expected it to be. > > The value of the "format" field in the GtkSelectionData structure is > equal to 8, but I don't know the actual encoding of the data. Could > somebody help me out with this? It looks like it is URI-encoded, using hexadeci

Format/Encoding of Drag-and-drop data

2005-08-03 Thread Gaurav Jain
l to 8, but I don't know the actual encoding of the data. Could somebody help me out with this? Thanks, Gaurav ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Encoding

2005-03-23 Thread André Pedralho
TED]> wrote: > Hi Guys, > > I'm trying to get encoding support for simple xml parser. > For the time being it has only > ascii support only. As the first implementaion I want to get utf-8 > support to it. In order to do this I want to get convert utf-8 stream &g

Re: Encoding

2005-03-23 Thread David Necas (Yeti)
On Wed, Mar 23, 2005 at 08:18:39PM +0600, Din%$h wrote: > I'm trying to get encoding support for simple xml parser. > For the time being it has only > ascii support only. As the first implementaion I want to get utf-8 > support to it. In order to do this I want to

Encoding

2005-03-23 Thread Din%$h
Hi Guys, I'm trying to get encoding support for simple xml parser. For the time being it has only ascii support only. As the first implementaion I want to get utf-8 support to it. In order to do this I want to get convert utf-8 stream to ascii format.Do u have any ideas ?