summaryrefslogtreecommitdiffstats
path: root/examples/widgets/effects/blurpicker/main.cpp
blob: 4d5bf158c9dadf8c751992e2c16ddcd06ff77f1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "blurpicker.h"
#include <QApplication>

int main(int argc, char **argv)
{
    QApplication app(argc, argv);

    BlurPicker blurPicker;
    blurPicker.setWindowTitle(QT_TRANSLATE_NOOP(QGraphicsView, "Application Picker"));

    blurPicker.setFixedSize(400, 300);
    blurPicker.show();

    return app.exec();
}