Re: single-click treeview

2005-10-18 Thread Kevin C. Krinke
On Tue, 2005-18-10 at 16:19 +0200, Jaap Karssenberg wrote: > Only mind you that you block this signal handler when selecting from > other parts of your code. I believe if you return( TRUE ); the signal will propagate properly to other "changed" signal callbacks. -- Kevin C. Krinke <[EMAIL PROTE

Gtk2 1.110 (unstable)

2005-10-18 Thread Torsten Schoenfeld
Gtk2 is a Perl extension providing Perl bindings to the 2.x series of the Gtk+ graphical user interface library. This module allows you to write graphical user interfaces in a perlish and object-oriented way, freeing you from the casting and memory management in C, yet remaining very close

Glib 1.110 (unstable)

2005-10-18 Thread Torsten Schoenfeld
Glib provides Perl access to the GLib and GObject libraries. GLib is a portability and utility library; GObject provides a generic type system with inheritance and a powerful signal system. Together these libraries are used as the foundation for many of the libraries that make up the Gnome env

Re: single-click treeview

2005-10-18 Thread Jaap Karssenberg
Jaap Karssenberg wrote: I'm trying to get a treeview to activate a row on single-click instead of double-click. Answering my own question for completeness of the mail archive: Instead of connecting to the button_release_event connect to the TreeSelection "changed" signal $treeview->ge

single-click treeview

2005-10-18 Thread Jaap Karssenberg
Greetings, I'm trying to get a treeview to activate a row on single-click instead of double-click. (Btw. I'm not really sure whether this default depends on any gtk settings.) So for I just attached a signal to the button_release_event which activates the row. This kind of works but now I al