Re: Win32 binaries for the latest 2.7 releases

2005-08-04 Thread Daniel K. O.
--- Tor Lillqvist <[EMAIL PROTECTED]> escreveu: > Win32 packages (run-time and developer) for GLib > 2.7.6, atk 1.9.0, > Pango 1.9.1 and GTK+ 2.7.5 are available for > download at: > > ftp://ftp.gtk.org/pub/gtk/v2.7/win32/ > > and its mirrors. Where do we get libcairo-1.dll and libpangoca

Valid UTF-8 text mangled up in GtkLabel

2005-08-04 Thread Gaurav Jain
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]> (Gaurav Jain) In the above, 'X' represents a val

Need help to work with sockets...

2005-08-04 Thread Tor Lillqvist
Enrique Guzman writes: > I have to do an application that can send messages from one PC to > another PC, Some like the Windows Pop up, my question is that... Read any basic book on network programming using the socket API. (Berkeley or Winsock, not that big difference for simple uses like this.

Need help to work with sockets...

2005-08-04 Thread Enrique Guzman
Hi all... I have to do an application that can send messages from one PC to another PC, Some like the Windows Pop up, my question is that... there are some widget that make the conection one to one, I have been reading some about the gtk sockets (.h), the Documentation about this widget isn“t large

Re: g_spawn_async_with_pipes: Still no luck

2005-08-04 Thread John Coppens
On Thu, 04 Aug 2005 12:18:46 -0700 Wallace Owen <[EMAIL PROTECTED]> wrote: > On Thu, 2005-08-04 at 16:00 -0300, John Coppens wrote: > > Hello all. > > > > Could someone please indicate what I doing wrong, or indicate some > > example of g_spawn_async_with_pipes where both channels are > > redirec

Re: g_spawn_async_with_pipes: Still no luck

2005-08-04 Thread Wallace Owen
On Thu, 2005-08-04 at 16:00 -0300, John Coppens wrote: > Hello all. > > Could someone please indicate what I doing wrong, or indicate some > example of g_spawn_async_with_pipes where both channels are redirected? Just an aside, but would it help to remember that printf output is buffered, and tha

g_spawn_async_with_pipes: Still no luck

2005-08-04 Thread John Coppens
Hello all. After hours of trying, I still cannot get g_spawn_async_with_pipes working in both directions (stdin and stdout piped at the same time). Here's the call: ok = g_spawn_async_with_pipes("/tmp", argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL,

Win32 binaries for the latest 2.7 releases

2005-08-04 Thread Tor Lillqvist
Win32 packages (run-time and developer) for GLib 2.7.6, atk 1.9.0, Pango 1.9.1 and GTK+ 2.7.5 are available for download at: ftp://ftp.gtk.org/pub/gtk/v2.7/win32/ and its mirrors. As always, proceed with caution. Don't blindly overwrite your current binaries with these. Unzip in a fresh

Re: time consuming function/loop

2005-08-04 Thread Brian J. Tarricone
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Yogesh M wrote: > One of the function take long time and blocks gtk_main. I dont want to put it > in thread because it contains some part of the code which draws[drawing is > not allowed in thread]. is there any way i can make user to interrupt the

widget destroy hangs

2005-08-04 Thread Felix Kater
Hi, I wrote a tool to edit config files: A widget table with rows of one label (the variable name) + one entry widget (the value) each. I've made a load_table() function which destroys and re-loads the widget table according to the rows of the config file: It does gtk_widget_destroy() and then ..

A question regarding gtk_clipboard_request_text

2005-08-04 Thread Wang, Yong Y
Hi, I have a question regarding the function voidgtk_clipboard_request_text (GtkClipboard *clipboard, GtkClipboardTextReceivedFunc callback, gpointer user_data); I wonder how long is the lifetime of clipboard data we get via this functio

time consuming function/loop

2005-08-04 Thread Yogesh M
One of the function take long time and blocks gtk_main. I dont want to put it in thread because it contains some part of the code which draws[drawing is not allowed in thread]. is there any way i can make user to interrupt the thread and break it. --