From 26a0a6eaf22d71ed5f075a38deb15de4de79b368 Mon Sep 17 00:00:00 2001 From: Matt Keeter Date: Fri, 7 Mar 2014 11:19:38 -0600 Subject: [PATCH] Adding quit action to file menu --- src/window.cpp | 7 +++++++ 1 file changed, 7 insertions(+) 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); } -- 2.39.2