2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2014-11-25 17:23:15 +01:00
|
|
|
*
|
2020-08-22 01:19:58 +02:00
|
|
|
* SPDX-FileCopyrightText: 2014 Teo Mrnjavac <teo@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2014-11-25 17:23:15 +01:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2014-11-25 17:23:15 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LCLOCALEDIALOG_H
|
|
|
|
#define LCLOCALEDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
class QListWidget;
|
|
|
|
|
|
|
|
class LCLocaleDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit LCLocaleDialog( const QString& guessedLCLocale,
|
|
|
|
const QStringList& localeGenLines,
|
|
|
|
QWidget* parent = nullptr );
|
|
|
|
|
|
|
|
QString selectedLCLocale();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QListWidget* m_localesWidget;
|
|
|
|
};
|
|
|
|
|
2019-09-07 16:58:37 +02:00
|
|
|
#endif // LCLOCALEDIALOG_H
|