Re: [gtkmm] Treeview/ListStore with customizable edit control
- From: Nils Nordman <nino nforced com>
- To: Alex Pavloff <apavloff eason com>
- Cc: 'Daniel Sundberg' <dss home se>, gtkmm-list gnome org
- Subject: Re: [gtkmm] Treeview/ListStore with customizable edit control
- Date: Fri, 21 Feb 2003 07:51:34 +0100
On Thu, Feb 20, 2003 at 03:14:53PM -0800, Alex Pavloff wrote:
> tree_view_.signal_button_press_event().connect(
> SigC::slot(*this,
> &AppWindow::on_tree_view_button_press_event) );
>
> tree_view_.add_events(Gdk::EventMask(Gdk::ALL_EVENTS_MASK) );
>
> doesn't result in AppWindow::on_tree_view_button_press_event being called
> when I click the mouse on the treeview. The release signal and my handler
> work though.
You have to connect it "before", i.e
tree_view_.signal_button_press_event().connect(
SigC::slot(*this,
&AppWindow::on_tree_view_button_press_event), false );
^
Regards,
--
Nils Nordman <nino nforced com>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]