mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-25 21:14:39 +03:00
27 lines
719 B
C++
27 lines
719 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));
|
||
|
}
|
||
|
ui->comboBox->setCurrentText("");
|
||
|
}
|
||
|
|
||
|
LanguageSelectDialog::~LanguageSelectDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|
||
|
|
||
|
QLocale::Language LanguageSelectDialog::getSelectedLanguage()
|
||
|
{
|
||
|
return ui->comboBox->itemData(ui->comboBox->currentIndex()).value<QLocale::Language>();
|
||
|
}
|