我有一个使用ListStore的gtkmm TreeView。我将其用作静态列表选择菜单。我在查看用户何时更改行以及选择哪一行时遇到问题。
我尝试使用m_TreeView.signal_row_activated().connect( sigc::mem_fun(*this, &optionList::row_activated) );
,但收到
error: no match for call to ‘(sigc::bound_mem_functor0<void, optionList>) (const Gtk::TreePath&, Gtk::TreeViewColumn* const&)’ { return functor_(_A_arg1, _A_arg2); }
我也尝试使用更改过的信号,但是我收到相同的错误。我在Google上发现这些错误并没有取得成果。我还没有看到另一种创建静态列表选择菜单的方法。
我的代码如下:
optionList::optionList() {
set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
add(m_TreeView);
m_refListStore = Gtk::ListStore::create(m_Columns);
m_TreeView.set_model(m_refListStore);
m_TreeView.set_activate_on_single_click(true);
std::array<Glib::ustring, 3> options = {"Status", "Plugins", "Config"};
for(const auto & option : options) {
std::ostringstream text;
text << option;
Gtk::TreeModel::Row row = *(m_refListStore->append());
row[m_Columns.m_col_text] = text.str();
}
m_TreeView.append_column("Options", m_Columns.m_col_text);
m_TreeView.signal_state_changed().connect( sigc::mem_fun(*this, &optionList::row_activated) ); //This line produces the error
show_all_children();
}
optionList::row_activated
函数只是一个cout
,所以我知道它至少已被激活。如果我删除连接线,则它可以编译并正常运行,但是我无法确定是否已选择该连接线。
我希望每次选择不同的行时,都会在控制台中看到短语A row has been selected
(这就是row_activated
的输出)。但是,我什至无法编译包含上述行的代码。
至少,如何解决此连接问题,以便代码可以编译和激活功能?
编辑:我认为我很忙,需要使用sigc::bind()
答案 0 :(得分:0)
我能想到的最好的答案是我没有正确通过,为此我需要使用
m_TreeView.signal_state_changed().connect( sigc::bind(sigc::mem_fun(*this, &optionList::row_activated), any parameters) );