05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
52 lines
1.6 KiB
C++
52 lines
1.6 KiB
C++
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "mainwindow.h"
|
|
#include "menuramaapplication.h"
|
|
|
|
#include <QtGui/QAction>
|
|
#include <QtWidgets/QMenu>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
MenuramaApplication a(argc, argv);
|
|
a.setQuitOnLastWindowClosed(false);
|
|
|
|
auto *dockMenu = new QMenu();
|
|
dockMenu->setAsDockMenu();
|
|
dockMenu->addAction(QLatin1String("New Window"), [=] {
|
|
auto *w = new MainWindow;
|
|
w->setAttribute(Qt::WA_DeleteOnClose, true);
|
|
w->show();
|
|
});
|
|
auto *disabledAction = dockMenu->addAction(QLatin1String("Disabled Item"), [=] {
|
|
qDebug() << "Should not happen!";
|
|
Q_UNREACHABLE();
|
|
});
|
|
disabledAction->setEnabled(false);
|
|
dockMenu->addAction(QLatin1String("Last Item Before Separator"), [=] {
|
|
qDebug() << "Last Item triggered";
|
|
});
|
|
auto *hiddenAction = dockMenu->addAction(QLatin1String("Invisible Item (FIXME rdar:39615815)"), [=] {
|
|
qDebug() << "Should not happen!";
|
|
Q_UNREACHABLE();
|
|
});
|
|
hiddenAction->setVisible(false);
|
|
dockMenu->addSeparator();
|
|
auto *toolsMenu = dockMenu->addMenu(QLatin1String("Menurama Tools"));
|
|
toolsMenu->addAction(QLatin1String("Hammer"), [=] {
|
|
qDebug() << "Bang! Bang!";
|
|
});
|
|
toolsMenu->addAction(QLatin1String("Wrench"), [=] {
|
|
qDebug() << "Clang! Clang!";
|
|
});
|
|
toolsMenu->addAction(QLatin1String("Screwdriver"), [=] {
|
|
qDebug() << "Squeak! Squeak!";
|
|
});
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|