在gtkmm中,我可以在构造函数中使用类似的东西:
// Gtk::ImageMenuItem *iQuit;
iQuit->signal_activate().connect (sigc::mem_fun (*this, &FormUI::on_quit_activated) );
但我想使用一种方法来设置项目的属性,例如:
void FormUI::SetItemProps (Gtk::ImageMenuItem *i, const Glib::ustring& _l, ?what should I put here?)
{
i->set_use_stock (true);
i->set_label (_l);
i->signal_activate().connect (sigc::mem_fun (*this, ???) ); <-- what to pass there
}
所以我可以在构造函数中使用这样的东西:
SetItemProps (iQuit, "gtk-quit", &FormUI::on_quit_activated);
有什么想法吗?
答案 0 :(得分:2)
您可能喜欢使用typedef:
typedef void (FormUI::*function_ptr)();
void FormUI::SetItemProps (Gtk::ImageMenuItem *i, const Glib::ustring& _l, function_ptr fun)
{
i->set_use_stock (true);
i->set_label (_l);
i->signal_activate().connect (sigc::mem_fun (*this, fun) );
}
on_quit_activated()方法必须是声明的类型。
要致电,请使用
SetItemProps (iQuit, "gtk-quit", &FormUI::on_quit_activated);
答案 1 :(得分:0)
您可能想要使用sigc :: bind(): https://developer.gnome.org/gtkmm-tutorial/unstable/sec-binding-extra-arguments.html.en