summaryrefslogtreecommitdiffstats
path: root/tests/manual/widgets/widgets/qmainwindow/saveStateSize/main.cpp
blob: c7cf25641570cbc5b04ab0b7fd95c80b507e682c (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
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

// Test that the size of the saved state bytearray does not change due to moving a
// toolbar from one area to another. It should stay the same size as the first time
// it had that toolbar in it

#include <QApplication>
#include <QMainWindow>
#include <QToolBar>
#include <QPushButton>
#include <QLabel>
#include <QVBoxLayout>
#include <QMessageBox>

class MainWindow : public QMainWindow
{
    Q_OBJECT
public:
    MainWindow() : QMainWindow()
    {
        auto *tb = new QToolBar(this);
        tb->setObjectName("Toolbar");
        tb->addAction("Test action");
        tb->addAction("Test action");
        addToolBar(Qt::TopToolBarArea, tb);
        auto *movableTb = new QToolBar(this);
        movableTb->setObjectName("Movable Toolbar");
        movableTb->addAction("Test action");
        movableTb->addAction("Test action");
        addToolBar(Qt::TopToolBarArea, movableTb);
        auto *widget = new QWidget;
        auto *vbox = new QVBoxLayout;
        auto *label = new QLabel;
        label->setText("1. Click on check state size to save initial state\n"
                       "2. Drag the movable toolbar in the top dock area to the left area."
                       " Click on check state size to save moved state\n"
                       "3. Drag the movable toolbar from the left dock area to the top area."
                       " Click on check state size to compare the state sizes.\n"
                       "4. Drag the movable toolbar in the top dock area to the left area."
                       " Click on check state size to compare the state sizes.\n"
                       "5. Drag the movable toolbar from the left dock area to the top area."
                       " Click on check state size to compare the state sizes.\n");
        vbox->addWidget(label);
        auto *pushButton = new QPushButton("Check state size");
        connect(pushButton, &QPushButton::clicked, this, &MainWindow::checkState);
        vbox->addWidget(pushButton);
        widget->setLayout(vbox);
        setCentralWidget(widget);
    }
public slots:
    void checkState()
    {
        stepCounter++;
        QString messageText;
        if (stepCounter == 1) {
            beforeMoveStateData = saveState();
            messageText = QLatin1String("Initial state saved");
        } else if (stepCounter == 2) {
            afterMoveStateData = saveState();
            messageText = QLatin1String("Moved state saved");
        } else {
            const int currentSaveSize = saveState().size();
            const int compareValue = (stepCounter == 4) ? afterMoveStateData.size() : beforeMoveStateData.size();
            messageText = QString::fromLatin1("%1 step %2")
                .arg((currentSaveSize == compareValue) ? QLatin1String("SUCCESS") : QLatin1String("FAIL"))
                .arg(stepCounter);
        }
        QMessageBox::information(this, "Step done", messageText);
    }
private:
    int stepCounter = 0;
    QByteArray beforeMoveStateData;
    QByteArray afterMoveStateData;
};

#include "main.moc"

int main(int argc, char **argv)
{
    QApplication a(argc, argv);
    MainWindow mw;
    mw.show();
    return a.exec();
}