From 704a9b64ee5847066bedf6bf3bef2526ff72596a Mon Sep 17 00:00:00 2001 From: Enrique Garcia Date: Sat, 4 May 2024 03:04:08 +0200 Subject: [PATCH] Add "Exit" menu option and shortcuts for all menu entries Signed-off-by: Enrique Garcia --- qt/mainwindow.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/qt/mainwindow.cpp b/qt/mainwindow.cpp index faf29b65f5..5ef4194f75 100644 --- a/qt/mainwindow.cpp +++ b/qt/mainwindow.cpp @@ -152,10 +152,11 @@ MainWindow::MainWindow(Framework & framework, #ifndef OMIM_OS_WINDOWS QMenu * helpMenu = new QMenu(tr("Help"), this); menuBar()->addMenu(helpMenu); - helpMenu->addAction(tr("About"), this, SLOT(OnAbout())); - helpMenu->addAction(tr("Preferences"), this, SLOT(OnPreferences())); - helpMenu->addAction(tr("OpenStreetMap Login"), this, SLOT(OnLoginMenuItem())); - helpMenu->addAction(tr("Upload Edits"), this, SLOT(OnUploadEditsMenuItem())); + helpMenu->addAction(tr("OpenStreetMap Login"), this, SLOT(OnLoginMenuItem()), QKeySequence(Qt::CTRL | Qt::Key_O)); + helpMenu->addAction(tr("Upload Edits"), this, SLOT(OnUploadEditsMenuItem()), QKeySequence(Qt::CTRL | Qt::Key_U)); + helpMenu->addAction(tr("Preferences"), this, SLOT(OnPreferences()), QKeySequence(Qt::CTRL | Qt::Key_P)); + helpMenu->addAction(tr("About"), this, SLOT(OnAbout()), QKeySequence(Qt::Key_F1)); + helpMenu->addAction(tr("Exit"), this, SLOT(close()), QKeySequence(Qt::CTRL | Qt::Key_Q)); #else { // create items in the system menu