summaryrefslogtreecommitdiffstats
path: root/src/gui/doc/snippets/code/src_gui_kernel_qguiapplication.cpp
blob: e9a2446b916c810e852b1c4689e0ebea3dd97376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QApplication>
#include <QMessageBox>
#include <QSessionManager>
#include <QWidget>

namespace src_gui_kernel_qguiapplication {
struct MyMainWidget : public QWidget
{
    MyMainWidget(QWidget *parent);
    void commitData(QSessionManager& manager);
    bool saveDocument() { return true; };
    QStringList restartCommand() { return QStringList(); };
    QStringList discardCommand() { return QStringList(); };
};
MyMainWidget *mainWindow = nullptr;
void do_something(QString command) { Q_UNUSED(command); };
MyMainWidget mySession(nullptr);

//! [0]
int main(int argc, char *argv[])
{
    QApplication::setDesktopSettingsAware(false);
    QApplication app(argc, argv);
    // ...
    return app.exec();
}
//! [0]


//! [1]
MyMainWidget::MyMainWidget(QWidget *parent)
    : QWidget(parent)
{
    connect(qApp, &QGuiApplication::commitDataRequest,
            this, &MyMainWidget::commitData);
}

void MyMainWidget::commitData(QSessionManager& manager)
{
    if (manager.allowsInteraction()) {
        int ret = QMessageBox::warning(
                    mainWindow,
                    tr("My Application"),
                    tr("Save changes to document?"),
                    QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel);

        switch (ret) {
        case QMessageBox::Save:
            manager.release();
            if (!saveDocument())
                manager.cancel();
            break;
        case QMessageBox::Discard:
            break;
        case QMessageBox::Cancel:
        default:
            manager.cancel();
        }
    } else {
        // we did not get permission to interact, then
        // do something reasonable instead
    }
}
//! [1]


/* wrap snippet 2

//! [2]
appname -session id
//! [2]

*/ // wrap snippet 2


void wrapper0() {


//! [3]
const QStringList commands = mySession.restartCommand();
for (const QString &command : commands)
    do_something(command);
//! [3]

} // wrapper0


void wrapper1() {
//! [4]
const QStringList commands = mySession.discardCommand();
for (const QString &command : mySession.discardCommand())
    do_something(command);
//! [4]


} // wrapper1
} // src_gui_kernel_qguiapplication