summaryrefslogtreecommitdiffstats
path: root/examples/embedded/styleexample/stylewidget.h
blob: 739830a74d9d6ad714156a3d6d6cead8714d0cdd (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#ifndef STYLEWIDGET_H
#define STYLEWIDGET_H

#include <QFrame>

#include "ui_stylewidget.h"

class StyleWidget : public QFrame
{
    Q_OBJECT
public:
    StyleWidget(QWidget *parent = nullptr);

private:
    Ui_StyleWidget m_ui;

private slots:
    void on_close_clicked();
    void on_blueStyle_clicked();
    void on_khakiStyle_clicked();
    void on_noStyle_clicked();
    void on_transparentStyle_clicked();
};

#endif