如何在vala中使用set_cell_data_func函数来根据其内容更改单元格的布局?

时间:2013-08-05 17:17:52

标签: gtk vala

我正试图在set_cell_data_func上使用Gtk.TreeViewColumn。我的代码编译但在运行时出现分段错误。我也尝试了insert_column_with_data_func,但结果是一样的。

这是我的代码,我希望你能帮助我:)。

public class Application : Gtk.Window {
    public Application () {
        this.destroy.connect (Gtk.main_quit);
        this.set_default_size (600, 400);

        Gtk.ListStore store = new Gtk.ListStore (2, typeof(int),
            typeof(string));
        Gtk.TreeIter iter;

        store.append (out iter);
        store.set (iter, 0, 0, 1, "A");
        store.append (out iter);
        store.set (iter, 0, 1, 1, "B");
        store.append (out iter);
        store.set (iter, 0, 0, 1, "C");
        store.append (out iter);
        store.set (iter, 0, 0, 1, "D");

        Gtk.TreeView view = new Gtk.TreeView.with_model (store);
        this.add(view);

        Gtk.CellRendererText cell = new Gtk.CellRendererText ();
        Gtk.TreeViewColumn col = new Gtk.TreeViewColumn.with_attributes (
            "Value", cell, "text", 1);
        col.set_cell_data_func (cell, (Gtk.CellLayoutDataFunc)render_value);
        view.append_column (col);
    }

    public void render_value (Gtk.TreeViewColumn column, Gtk.CellRendererText
        cell, Gtk.TreeModel model, Gtk.TreeIter iter) {
        var val = Value (typeof(int));
        model.get_value (iter, 0, out val);
        if ((int)val==1) (cell as Gtk.CellRendererText).background = "#b8cb04";
        val.unset ();
    }

    public static int main (string[] args) {
        Gtk.init (ref args);
        Application app = new Application ();
        app.show_all ();
        Gtk.main ();
        return 0;
    }
}

1 个答案:

答案 0 :(得分:5)

在调试翻译过的c源后,我发现了这个错误。

vala翻译

public void render_value                            (Gtk.TreeViewColumn column, 
                                                     Gtk.CellRendererText cell, 
                                                     Gtk.TreeModel model, 
                                                     Gtk.TreeIter iter)

从您的代码到以下c等效

void application_render_value                       (Application* self,
                                                     GtkTreeViewColumn* column,
                                                     GtkCellRendererText* cell,
                                                     GtkTreeModel* model, 
                                                     GtkTreeIter* iter)

我将其与参考文档进行了比较。

数据函数的签名定义如下

void                (*GtkCellLayoutDataFunc)        (GtkCellLayout *cell_layout,
                                                     GtkCellRenderer *cell,
                                                     GtkTreeModel *tree_model,
                                                     GtkTreeIter *iter,
                                                     gpointer data);    

关于您实现的方法,意味着参数向右移动一个。所以以下内容适用于您的数据func / method

  • column实际上是单元格渲染器
  • cell是树模型
  • model是迭代器和
  • iter是传递给函数/方法的数据

如果您将数据func /方法的声明更改为

public void render_value (Gtk.CellRendererText cell, 
                          Gtk.TreeModel model, Gtk.TreeIter iter, Object data)

一切都应该正常。

可能原因是CellLayoutDataFunc被定义为public delegate void。但由于我对vala一无所知,这只是猜测。如果不是这种情况,您可以将其发布在相关的vala邮件列表中。