summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/qsignalmapper/buttonwidget.h
blob: 537c21c9141032a3f10d18d8264b45ebf109e151 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef BUTTONWIDGET_H
#define BUTTONWIDGET_H

#include <QWidget>

class QSignalMapper;
class QString;

//! [0]
class ButtonWidget : public QWidget
{
    Q_OBJECT

public:
    ButtonWidget(const QStringList &texts, QWidget *parent = nullptr);

signals:
    void clicked(const QString &text);

private:
    QSignalMapper *signalMapper;
//! [0] //! [1]
};
//! [1]

#endif