According to QUIP-18 [1], all tests file should be LicenseRef-Qt-Commercial OR GPL-3.0-only [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7 Task-number: QTBUG-121787 Change-Id: I9657df5d660820e56c96d511ea49d321c54682e8 Reviewed-by: Christian Ehrlicher <ch.ehrlicher@gmx.de>
49 lines
1.3 KiB
C++
49 lines
1.3 KiB
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
#include <QtGui>
|
|
#include <QtWidgets>
|
|
|
|
// This example show how calling QDialog::exec() shows the dialog,
|
|
// but does not return.
|
|
|
|
class ClickWindow: public QRasterWindow
|
|
{
|
|
public:
|
|
ClickWindow() {
|
|
qDebug() << "ClickWindow constructor";
|
|
}
|
|
|
|
~ClickWindow() {
|
|
qDebug() << "ClickWindow destructor";
|
|
}
|
|
|
|
void paintEvent(QPaintEvent *ev) override {
|
|
QPainter p(this);
|
|
p.fillRect(ev->rect(), QColorConstants::Svg::deepskyblue);
|
|
p.drawText(50, 100, "Application has started. See the developer tools console for debug output");
|
|
}
|
|
|
|
void mousePressEvent(QMouseEvent *) override {
|
|
qDebug() << "mousePressEvent(): calling QMessageBox::exec()";
|
|
|
|
QMessageBox messageBox;
|
|
messageBox.setText("Hello! This is a message box.");
|
|
connect(&messageBox, &QMessageBox::buttonClicked, [](QAbstractButton *button) {
|
|
qDebug() << "Button Clicked" << button;
|
|
});
|
|
messageBox.exec(); // <-- does not return
|
|
|
|
qDebug() << "mousePressEvent(): done"; // <--- will not be printed
|
|
}
|
|
};
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
ClickWindow window;
|
|
window.show();
|
|
|
|
return app.exec();
|
|
}
|