X-Git-Url: https://git.sur5r.net/?p=fstl;a=blobdiff_plain;f=src%2Fwindow.cpp;h=9d0644924c1dcf30e9d6a0c1bc5cc7cd5672afd8;hp=eb4d9dc862ca5c452065cbb3afe887f393653284;hb=26a0a6eaf22d71ed5f075a38deb15de4de79b368;hpb=8239cb87b70c0661a3f576f08c63183a6dcfeb3c diff --git a/src/window.cpp b/src/window.cpp index eb4d9dc..9d06449 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -21,8 +21,15 @@ Window::Window(QWidget *parent) : open_action->setShortcut(QKeySequence::Open); QObject::connect(open_action, SIGNAL(triggered()), this, SLOT(on_open())); + + QAction* quit_action = new QAction("Quit", this); + quit_action->setShortcut(QKeySequence::Quit); + QObject::connect(quit_action, SIGNAL(triggered()), + this, SLOT(close())); + auto file_menu = menuBar()->addMenu("File"); file_menu->addAction(open_action); + file_menu->addAction(quit_action); resize(600, 400); }