(dlang,GtkD)使用菜单栏

时间:2015-03-05 09:06:54

标签: gtk d ubuntu-14.04 dmd gtkd

我复制了此网站(https://sites.google.com/site/gtkdtutorial/#chapter2_2)中的代码,并通过dmd2进行了编译。

import gtk.MainWindow;
import gtk.Box;
import gtk.Main;
import gtk.Menu;
import gtk.MenuBar;
import gtk.MenuItem;
import gtk.Widget;
import gdk.Event;

void main(string[] args)
{
    Main.init(args);
    MainWindow win = new MainWindow("MenuBar Example");
    win.setDefaultSize(250, 200);

    MenuBar menuBar = new MenuBar();  
    menuBar.append(new FileMenuItem());

    Box box = new Box(Orientation.VERTICAL, 10);
    box.packStart(menuBar, false, false, 0);

    win.add(box);
    win.showAll();
    Main.run();
}

class FileMenuItem : MenuItem
{
    Menu fileMenu;
    MenuItem exitMenuItem;

    this()
    {
        super("File");
        fileMenu = new Menu();

        exitMenuItem = new MenuItem("Exit");
        exitMenuItem.addOnButtonRelease(&exit);
        fileMenu.append(exitMenuItem);

        setSubmenu(fileMenu);
    }

    bool exit(Event event, Widget widget)
    {
        Main.quit();
        return true;
    }
}

正确显示窗口,但单击[退出] MenuItem时窗口不会死亡。 我糊涂了。有什么想法吗?

环境: Ubuntu 14.04 LTS

1 个答案:

答案 0 :(得分:0)

button-release-event(GtkD中的addOnButtonRelease())是连接到GtkMenuItem的错误信号。这是一个低级 GDK事件;也就是说,当用户放开鼠标按钮时,窗口系统产生的原始事件的抽象。它用于自定义事件处理,例如,如果您使用的是GtkDrawingArea。

相反,您需要{GtkD中的activate信号(addOnActivate())。