summaryrefslogtreecommitdiffstats
path: root/tests/manual/qlocale/languages.h
blob: b1fc997156e1a46f59be061140ff59ad0fc6204f (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) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#ifndef LANGUAGES_H
#define LANGUAGES_H

#include <QWidget>
#include <QLocale>

class QLabel;
class QListWidget;

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

private:
    QLocale currentLocale;

    QLabel *languagesLabel;
    QListWidget *languagesList;

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

#endif