次のコードを使用して、Gtk::TreeViewでモーション通知イベントをキャッチしました。
// This is the Gtk::Builder from which i read my tree view.
builder_ptr->get_widget("treeview", m_treeview_ptr);
// Connecting that event.
m_treeview_ptr->add_events(Gdk::POINTER_MOTION_MASK |
Gdk::POINTER_MOTION_HINT_MASK);
m_treeview_ptr->signal_motion_notify_event().connect(
sigc::mem_fun(this, &LayoutEditorDialog::_on_motion_notify));
私のスロット機能は次のようになります。
bool LayoutEditorDialog::_on_motion_notify(GdkEventMotion* event) const
{
// Just a test.
std::cout << event->x << " " << event->y << std::endl;
}
どういうわけか、ツリービューからモーション通知イベントは送信されません。誰かがここで私を助けてくれますか?ありがとう!