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

#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();
};