colors in treeview

2006-01-18 Thread Karel Honzl
Hi all, Is it possible to create treeview in which I can set color (text color) of certain row? I want to hightlight some rows. Thanks ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-devel-l

Re: Blocking a signal with unknown handler id?

2006-01-18 Thread Christian Neumair
Daniel Pekelharing wrote: Hi all, Anyone know how one would go about blocking a signal on a widget where you don't know the signal handler id? I have some check menu items which I set depending on various program modes... I need to block the "activate" signal before I set it and unblock it afte

Problem with popup menus and highlighted items in TreeView

2006-01-18 Thread Gabriel Burt
I have a TreeView (F-Spot's tag list) that has a popup menu. If I have a tag (row) selected and then right-click on a different tag, it first pops up the menu, then (the default handler) selects all the tags in between the two tags. The problem is I need to know how many tags are highlighted to c

RE: Finding memory leaks

2006-01-18 Thread Freddie Unpenstein
> I've made some progress on my program and now i would like to check > formemory leaks. Do you recommend any way or program in special for > doing this? Something I've sometimes found useful, was to write a little chunk of code that throws up a small window that holds a list view, into which I

Re: Finding memory leaks

2006-01-18 Thread Thomas Coppi
Valgrind On 1/18/06, Juan Pablo <[EMAIL PROTECTED]> wrote: > > Hi list! > I've made some progress on my program and now i would like to check for > memory leaks. > > Do you recommend any way or program in special for doing this? > > Thanks all. > > Saludos, Juan Pablo. > > >

Re: Finding memory leaks

2006-01-18 Thread David Necas (Yeti)
On Wed, Jan 18, 2006 at 04:22:09PM -0300, Juan Pablo wrote: > I've made some progress on my program and now i would like to check for > memory leaks. > > Do you recommend any way or program in special for doing this? Valgrind (http://valgrind.org/). Yeti -- That's enough. _

Re: Blocking a signal with unknown handler id?

2006-01-18 Thread John Cupitt
On 1/18/06, Daniel Pekelharing <[EMAIL PROTECTED]> wrote: > I have some check menu items which I set depending on various program > modes... I need to block the "activate" signal before I set it and > unblock it afterwords, but I don't know the id... You can block by callback & data: http://devel

Finding memory leaks

2006-01-18 Thread Juan Pablo
Hi list! I've made some progress on my program and now i would like to check for memory leaks. Do you recommend any way or program in special for doing this? Thanks all. Saludos, Juan Pablo. ___ 1GB g

dialogs problems

2006-01-18 Thread Juan Pablo
Hello list. I have a main window, when the user selects a menu, it opens a dialog with gtk_widget_show with a list of items, then the user double click on one of them and an edition dialog is opened, this time with gtk_dialog_run. The the user edit some stuff and press the "save" button, some che

GLib 2.8.6 released

2006-01-18 Thread Matthias Clasen
GLib 2.8.6 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.8/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.8/ glib-2.8.6.tar.bz2 md5sum: fce6835fd8c99ab4c3e5213bc5bcd0ed glib-2.8.6.tar.gzmd5sum: 135c276a63b0987aa914ac2736315b4f GLib is the low-level core library that for

GLib 2.9.4 released

2006-01-18 Thread Matthias Clasen
GLib 2.9.4 is now available for download at: ftp://ftp.gtk.org/pub/gtk/v2.9/ http://ftp.gnome.org/pub/GNOME/sources/glib/2.9/ glib-2.9.4.tar.bz2 md5sum: 467d473c2fd43e124bcab02b6548c135 glib-2.9.4.tar.gz md5sum: 2852efbdd737949a6941e6082d183393 This is a development release lead

Blocking a signal with unknown handler id?

2006-01-18 Thread Daniel Pekelharing
Hi all, Anyone know how one would go about blocking a signal on a widget where you don't know the signal handler id? I have some check menu items which I set depending on various program modes... I need to block the "activate" signal before I set it and unblock it afterwords, but I don't know the

Re: Differences beetwen ref and weak ref

2006-01-18 Thread Maciej Piechotka
2006/1/18, Stefan Kost <[EMAIL PROTECTED]>: > Hi, > Uzytkownik wrote: > > I'm so sorry - when should I use weak reference? > > > > I use waek references in the class collaboration hierarchy. Imagine classes > GGroup and GItem, where GGroup has GItems. GItem instances need access to > GGroup, thus t

Re: Differences beetwen ref and weak ref

2006-01-18 Thread Stefan Kost
Hi, Uzytkownik wrote: I'm so sorry - when should I use weak reference? I use waek references in the class collaboration hierarchy. Imagine classes GGroup and GItem, where GGroup has GItems. GItem instances need access to GGroup, thus they have a GGroup *container element;. When setting the c