GLib 2.12.7 released

2007-01-04 Thread Matthias Clasen
GLib 2.12.7 is now available for download at: ftp://ftp.gtk.org/pub/glib/2.12/ http://download.gnome.org/sources/glib/2.12/ glib-2.12.7.tar.bz2 md5sum: 7a9e949627cf55c844c3570ab83a2caf glib-2.12.7.tar.gzmd5sum: 86dff2c80d9277bba7b899058bc2c29c This is a bug fix release in the 2.12 series

Re: Tooltip per GtkClist row

2007-01-04 Thread Eduardo M KALINOWSKI
Edward Catmur wrote: > On Thu, 2007-01-04 at 09:00 +0530, Preeti Joshi wrote: > >> Hi, >> >> Is it possible to add tooltip to individual GtkCList rows? >> > > Um, you do realise GtkCList is deprecated? You should be using > GtkTreeView with a GtkListStore. > > That said, the answer to your

GTK Crash

2007-01-04 Thread Brian Ford
After 20-30 minutes of running my gtk app, it dies with an X windows error as follows: The program '.' received an X Window System error. This probably reflects a bug in the program. The error was 'BadRequest (invalid request code or no such operation)'. (Details: serial 8424308 error_code 1 r

Re: Using GLib main loop to free up temporary memory

2007-01-04 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, Jan 04, 2007 at 03:15:10PM +0100, David Nečas (Yeti) wrote: > On Thu, Jan 04, 2007 at 02:00:14PM +, [EMAIL PROTECTED] wrote: > > > > Try alloca() if you are into that sort of thing. It's frowned upon, > > because it is a BSD extension... >

Re: Using GLib main loop to free up temporary memory

2007-01-04 Thread Yeti
On Thu, Jan 04, 2007 at 02:00:14PM +, [EMAIL PROTECTED] wrote: > > Try alloca() if you are into that sort of thing. It's frowned upon, > because it is a BSD extension... g_newa() should work on all platforms GLib works on. Yeti -- http://physics.muni.cz/~yeti/pf2007.png ___

Re: Using GLib main loop to free up temporary memory

2007-01-04 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, Jan 03, 2007 at 01:02:39PM -0200, Leandro A. F. Pereira wrote: > Greetings! [idle_free] Cute. But as Iago points out, you'll have to make sure that your app doesn't go into idle until the object is used. Tough call. I'd think it's more danger

Re: How to capture mouse movements independend of a Window?

2007-01-04 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, Jan 04, 2007 at 01:18:51PM +0100, [EMAIL PROTECTED] wrote: > Hello!! > I was trying to create a cursor on my window...and i did it thanks to > Tomas,and > to gdk_pointer_grab(). the problem is that i want to add the cursor, over a > GdkWidget

Re: How to capture mouse movements independend of a Window?

2007-01-04 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, Jan 03, 2007 at 02:05:25PM +0100, [EMAIL PROTECTED] wrote: > Hi again!! Hi -- please, keep the list in Cc: so that others may comment/learn. > I think i didn't exlain well in my last mail...excuse me! > The thing i want to do, is to saw a cur

Re: How to capture mouse movements independend of a Window?

2007-01-04 Thread ferri_marllo
Hello!! I was trying to create a cursor on my window...and i did it thanks to Tomas,and to gdk_pointer_grab(). the problem is that i want to add the cursor, over a GdkWidget plot, not over a GtkWindow Can you explain me how can i do it?? thanks a lot ___

Re: How to capture mouse movements independend of a Window?

2007-01-04 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, Dec 29, 2006 at 05:08:49PM +0100, Andreas Stricker wrote: > Yo tomas! Yo! hope you started well the new year. > But the main problem remains: Once the pointer (Pirate!!) touch the border > or the window, the mouse coordinate don't change anym

FW: Using Animation for iconview

2007-01-04 Thread Madhusudan E
Hi All, How to set a animated icon for iconview. As of now I am using a .gif as my icon, But no animations is seen in the iconview. If use the same .gif on a container like GtkTable, the animation is visible. The GTK version I am using is GTK+-2.6.10 Can anyone guide me in this regard Tha

Using Animation for iconview

2007-01-04 Thread Madhusudan E
Hi All, How to set a animated icon for iconview. As of now I am using a .gif as my icon, But no animations is seen in the iconview. If use the same .gif on a container like GtkTable, the animation is visible. Can anyone guide me in this regard Thanks, Madhusudan E, HTIPL, Bangalore-08

Re: GtkEntry text selection

2007-01-04 Thread Anurag Chaudhary
Na, this also works the same way :( From: "Anurag Chaudhary" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED], gtk-app-devel-list@gnome.org Subject: Re: GtkEntry text selection Date: Thu, 04 Jan 2007 14:13:37 +0530 Thanks for the help. I got idea from your solution and I found that following code wil

Re: GtkEntry text selection

2007-01-04 Thread Anurag Chaudhary
Thanks for the help. I got idea from your solution and I found that following code will do it for a single widget g_object_set (gtk_widget_get_settings (GTK_WIDGET (w)), "gtk-entry-select-on-focus", 0, NULL); Tha