我有一个使用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()发送

最佳答案

我能想到的最好的答案是我没有正确通过,为此我需要使用

m_TreeView.signal_state_changed().connect( sigc::bind(sigc::mem_fun(*this, &optionList::row_activated), any parameters) );

关于c++ - 如何从gtkmm树 View 获取选定的行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/55679336/

10-15 16:24