summaryrefslogtreecommitdiffstats
path: root/tests/manual/qlocale/info.h
blob: 820a2435ad113ac6c6005bbbc6d0523456a399a2 (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
30
31
32
33
34
35
36
37
38
39
40
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef INFO_H
#define INFO_H

#include <QWidget>
#include <QLocale>

class QLineEdit;
class QScrollArea;
class QGridLayout;

class InfoWidget : public QWidget
{
    Q_OBJECT
public:
    InfoWidget();

private:
    void addItem(const QString &label, QWidget *);
    QLineEdit *addItem(const QString &label);

    QScrollArea *scrollArea;
    QWidget *scrollAreaWidget;
    QGridLayout *layout;

    QLineEdit *name;
    QLineEdit *bcp47Name;
    QLineEdit *languageName;
    QLineEdit *nativeLanguageName;
    QLineEdit *scriptName;
    QLineEdit *territoryName;
    QLineEdit *nativeTerritoryName;

private slots:
    void localeChanged(QLocale locale);
};

#endif