mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-23 20:22:58 +03:00
31 lines
793 B
C++
31 lines
793 B
C++
#include "languageselectdialog.h"
|
|
#include "ui_languageselectdialog.h"
|
|
#include <QLocale>
|
|
#include <QSet>
|
|
#include <QDebug>
|
|
|
|
LanguageSelectDialog::LanguageSelectDialog(QWidget *parent) :
|
|
QDialog(parent),
|
|
ui(new Ui::LanguageSelectDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
for (int i = 2; i<QLocale::LastLanguage; ++i){
|
|
ui->comboBox->addItem(QLocale::languageToString(static_cast<QLocale::Language>(i)),static_cast<QLocale::Language>(i));
|
|
}
|
|
#if QT_VERSION < 0x050000
|
|
ui->comboBox->setEditText("");
|
|
#else
|
|
ui->comboBox->setCurrentText("");
|
|
#endif
|
|
}
|
|
|
|
LanguageSelectDialog::~LanguageSelectDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
QLocale::Language LanguageSelectDialog::getSelectedLanguage()
|
|
{
|
|
return ui->comboBox->itemData(ui->comboBox->currentIndex()).value<QLocale::Language>();
|
|
}
|