summaryrefslogtreecommitdiffstats
path: root/tests/manual/examples/widgets/widgets/validators/validatorwidget.h
blob: d186c5863baf5f11df869c69d7d67ef9a5183f12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef VALIDATORWIDGET_H
#define VALIDATORWIDGET_H

#include <QWidget>

#include "ui_validators.h"

class ValidatorWidget : public QWidget, public Ui::ValidatorsForm
{
    Q_OBJECT
public:
    ValidatorWidget(QWidget *parent = nullptr);

private slots:
    void updateValidator();
    void updateDoubleValidator();
};

#endif // VALIDATORWIDGET_H