Genie中vala lambdas的替代品

时间:2016-01-01 10:49:23

标签: lambda gtk genie

Genie中缺少lambdas会给工作流程带来一些问题。有一种特殊的情况我无法规避。

我在这个特定练习中的目标是创建一个Notebook,其中有一个Button,点击后将用户带到同一个Notebook的下一页。有四个页面,最后一个按钮会将用户带回第一个页面(类似于PDO)。

似乎在vala中,使用lambdas可以轻松完成。我尝试了使用在类中共享的变量建议here的方法,但问题是虽然我设法通过按钮访问函数中的变量(回调?仍然不完全确定特定术语)。 click.connect,它仍然无法识别为Notebook。

这是我的方法:

(gtkcontainerswithgrid:23039): Gtk-CRITICAL **: gtk_notebook_append_page: assertion 'GTK_IS_NOTEBOOK (notebook)' failed

我在运行时得到的错误:

notebook.set_current_page(2)

所以我认为在+= def()笔记本中没有继承Notebook的属性。

我很欣赏有关如何规避这个问题的一些指示,因为我没有想法。我已经尝试创建函数来替换已弃用的语法default value,我偶然发现了类似的问题。

1 个答案:

答案 0 :(得分:3)

uses Gtk
class TestWindow : Window
    notebook:Gtk.Notebook
    init
        // General characteristics of the window
        title = "Gtk Containers"
        default_height = 250
        default_width = 250
        window_position = WindowPosition.CENTER
        destroy.connect(Gtk.main_quit)

        // Now building the notebook
        notebook = new Gtk.Notebook()
        var label1 = new Gtk.Label("Page one")
        var label2 = new Gtk.Label("Page two")
        var label3 = new Gtk.Label("Page three")
        var label4 = new Gtk.Label("Page four")

        var child1 = new Button.with_label ("Go to next page")
        child1.clicked.connect (childclicked1)
        var child2 = new Button.with_label ("Go to next page")
        child2.clicked.connect (childclicked2)
        var child3 = new Button.with_label ("Go to next page")
        child3.clicked.connect (childclicked3)
        var child4 = new Button.with_label ("Go to first page")
        child4.clicked.connect (childclicked4)


        notebook.append_page(child1, label1)
        notebook.append_page(child2, label2)
        notebook.append_page(child3, label3)
        notebook.append_page(child4, label4)

        // Now building the grid
        var grid = new Grid()
        var button1 = new Gtk.Button.with_mnemonic("Button_1")
        var button2 = new Button.with_mnemonic("Button 2")

        // Attaching all elements into the grid
        grid.attach(notebook, 0,0,2,1)
        grid.attach(button1, 0,1,1,1)
        grid.attach(button2, 1,1,1,1)
        add(grid)

    def childclicked1()
        notebook.set_current_page(1)

    def childclicked2()
        notebook.set_current_page(2)

    def childclicked3()
        notebook.set_current_page(3)

    def childclicked4()
        notebook.set_current_page(0)

init
    Gtk.init (ref args)
    var test = new TestWindow ()
    test.show_all ()
    Gtk.main ()

我认为唯一的选择就是这个。不受支持。