Re: Need help to work with sockets...

2005-08-05 Thread Hubert Sokołowski
gnet is a network library that might be usefull for you, http://www.gnetlibrary.org/ ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

XML library

2005-08-05 Thread Bhatnagar Achindra
Is there any XML library available in GTK natively, Can any one suggest a good library for XML Parsing that can work with GTK/C... -- Bhatnagar Achindra Towards Invincibility ! www.mcp-achindra.it.tt http://www.mcp-achindra.it.tt All men seek one goal: success or happiness. The only way to

Re: XML library

2005-08-05 Thread The Saltydog
On 8/5/05, Bhatnagar Achindra [EMAIL PROTECTED] wrote: Is there any XML library available in GTK natively, try libxml http://xmlsoft.org/html/libxml-lib.html ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: Win32 binaries for the latest 2.7 releases

2005-08-05 Thread Tor Lillqvist
Daniel K. O. writes: Where do we get libcairo-1.dll and libpangocairo-1.0-0.dll, needed by libgdk-win32-2.0-0.dll? Good question... Thanks for notifying. I'll update the pango package to include the pangocairo DLL, and upload cairo (and libpixman) packages, too. --tml

Re: Win32 binaries for the latest 2.7 releases

2005-08-05 Thread Tor Lillqvist
Tor Lillqvist writes: I'll update the pango package to include the pangocairo DLL, and upload cairo (and libpixman) packages, too. Now ftp.gtk.org has updated pango zipfiles, and cairo and libpixman zipfiles. --tml ___ gtk-app-devel-list mailing

Hyperlink Widget

2005-08-05 Thread Matthew Beckler
Hello everyone, In this application I am writing, I am going to have an About dialog box. I would like to have a clickable hyperlink label-widget that would open the user's browser to my website. I know that backend browser interfacing is probably going to be different from platform to

Expose events not occurring from gdk_window_invalidate_rect

2005-08-05 Thread Douglas Vechinski
I sent this problem out a few days ago and never heard anything. This is a modified form of it plus I've attached a stripped down version of the code which demonstrates the problem (at least on my platforms). I'm having a problem with an application I am developing to display a 3D object in a

Re: Valid UTF-8 text mangled up in GtkLabel

2005-08-05 Thread Behdad Esfahbod
On Fri, 5 Aug 2005, Gaurav Jain wrote: Hi, I'm trying to set the text in a GtkLabel to a UTF-8 string, which contains some arabic characters first, followed by my email address in angle brackets, followed by my name in round brackets. For e.g., a sample value is: X [EMAIL PROTECTED]

Re: Valid UTF-8 text mangled up in GtkLabel

2005-08-05 Thread Jonathan Ben Avraham
Hi Behdad, Gaurav, IMHO this is *the* classic example of misapplied bidi algorithm, that is, the heuristic for determining base direction based on the first strong directional. There is no reason ever to use this heuristic in any normal GUI application. In almost all Arabic, Farsi and Hebrew

Re: Web Queries through GTK

2005-08-05 Thread Greg Breland
On Fri, 2005-08-05 at 02:30, Bhatnagar Achindra wrote: I need to make http: Get/Post queries through my GTK application, I'm using libcurl with great success. I use it on Win32 and Linux with no problems at all. libcurl is much faster than the normal .Net methods by a long shot. By faster

Re: Win32 binaries for the latest 2.7 releases

2005-08-05 Thread Tor Lillqvist
Daniel K. O. writes: System: Win98 SE Bzzzt. You lose. --tml ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Win32 binaries for the latest 2.7 releases

2005-08-05 Thread Daniel K. O.
--- Tor Lillqvist [EMAIL PROTECTED] escreveu: Daniel K. O. writes: System: Win98 SE Bzzzt. You lose. Was Win98 support officially dropped? --- Daniel K. O. ___ Yahoo! Acesso Grátis - Internet

Re: Win32 binaries for the latest 2.7 releases

2005-08-05 Thread Tor Lillqvist
Daniel K. O. writes: Was Win98 support officially dropped? No, it just rotted away and fell off. Patches accepted. --tml ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: XML library

2005-08-05 Thread William Park
On Fri, Aug 05, 2005 at 01:13:50PM +0530, Bhatnagar Achindra wrote: Is there any XML library available in GTK natively, Can any one suggest a good library for XML Parsing that can work with GTK/C... I'm using Expat right now, though, not from inside GTK+. Perhaps, you can find what you

Re: time consuming function/loop

2005-08-05 Thread Yogesh M
thank you for the useful information, is there a way i can give user an option to break the thread, like cancel button. --- Brian J. Tarricone [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Yogesh M wrote: One of the function take long time and blocks gtk_main. I

Re: time consuming function/loop

2005-08-05 Thread John Cupitt
On 8/5/05, Yogesh M [EMAIL PROTECTED] wrote: thank you for the useful information, is there a way i can give user an option to break the thread, like cancel button. I have a cancel button with a callback that sets a global variable to TRUE. The thread periodically checks this variable and if

mounted device list

2005-08-05 Thread The Saltydog
Is there some VFS or glib function to get the list of all mounted devices with their mount points, or should I use standard GNU-C libraries? ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: mounted device list

2005-08-05 Thread John Coppens
On Fri, 5 Aug 2005 21:39:11 +0200 The Saltydog [EMAIL PROTECTED] wrote: Is there some VFS or glib function to get the list of all mounted devices with their mount points, or should I use standard GNU-C libraries? Probably the easiest way to do that is to access the /etc/mtab file or the /proc

Re: Hyperlink Widget

2005-08-05 Thread Peter Hille
Matthew Beckler wrote: Hello everyone, In this application I am writing, I am going to have an About dialog box. I would like to have a clickable hyperlink label-widget that would open the user's browser to my website. I know that backend browser interfacing is probably going to be different

Re: Hyperlink Widget

2005-08-05 Thread Brian J. Tarricone
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Matthew Beckler wrote: In this application I am writing, I am going to have an About dialog box. I would like to have a clickable hyperlink label-widget that would open the user's browser to my website. I know that backend browser interfacing is

Re: mounted device list

2005-08-05 Thread Brian J. Tarricone
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John Coppens wrote: On Fri, 5 Aug 2005 21:39:11 +0200 The Saltydog [EMAIL PROTECTED] wrote: Is there some VFS or glib function to get the list of all mounted devices with their mount points, or should I use standard GNU-C libraries?

Re: pango text color in textbuffer

2005-08-05 Thread Ahmed El-Helw
does anyone have any ideas or can recommend an example i can look at? thanks, -ahmed On Jul 28, 2005, at 12:18 AM, Ahmed El-Helw wrote: hi all - i am trying to write some code to populate a gtktextbuffer with some arabic text. however, due to the nature of the application i am writing, i