Lucie Gérard 05fc3aef53 Use SPDX license identifiers
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>
2022-05-16 16:37:38 +02:00

57 lines
1.6 KiB
C++

// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include "notificationclient.h"
#include <QApplication>
#include <QWidget>
#include <QPushButton>
#include <QHBoxLayout>
#include <QLabel>
#include <QFont>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QWidget widget;
QPushButton happyButton;
happyButton.setIcon(QIcon(":/images/happy.png"));
happyButton.setIconSize(QSize(happyButton.width(), 120));
QPushButton sadButton;
sadButton.setIcon(QIcon(":/images/sad.png"));
sadButton.setIconSize(QSize(sadButton.width(), 120));
QVBoxLayout mainLayout;
QHBoxLayout labelLayout;
QLabel label = QLabel("Click a smiley to notify your mood");
QFont font = label.font();
font.setPointSize(20);
label.setFont(font);
labelLayout.addWidget(&label);
labelLayout.setAlignment(Qt::AlignHCenter);
mainLayout.addLayout(&labelLayout);
QHBoxLayout smileysLayout;
smileysLayout.addWidget(&sadButton);
smileysLayout.addWidget(&happyButton);
smileysLayout.setAlignment(Qt::AlignCenter);
mainLayout.addLayout(&smileysLayout);
widget.setLayout(&mainLayout);
//! [Connect button signals]
QObject::connect(&happyButton, &QPushButton::clicked, []() {
NotificationClient().setNotification("The user is happy!");
});
QObject::connect(&sadButton, &QPushButton::clicked, []() {
NotificationClient().setNotification("The user is sad!");
});
//! [Connect button signals]
widget.show();
return a.exec();
}