-
Notifications
You must be signed in to change notification settings - Fork 142
/
LVGLNewDialog.cpp
74 lines (59 loc) · 2.09 KB
/
LVGLNewDialog.cpp
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include "LVGLNewDialog.h"
#include "ui_LVGLNewDialog.h"
#include <QSettings>
LVGLNewDialog::LVGLNewDialog(QWidget *parent)
: QDialog(parent)
, m_ui(new Ui::LVGLNewDialog)
{
m_ui->setupUi(this);
m_ui->group_oriantation->addButton(m_ui->radio_landscape, 0);
m_ui->group_oriantation->addButton(m_ui->radio_portrait, 1);
m_resolutions << qMakePair(480, 320);
m_resolutions << qMakePair(320, 240);
m_resolutions << qMakePair(160, 120);
for (const auto &r:m_resolutions)
m_ui->combo_resolution->addItem(QString("%1 x %2").arg(r.first).arg(r.second));
connect(m_ui->combo_resolution, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
this, &LVGLNewDialog::resolutionChanged
);
QSettings settings("at.fhooe.lvgl", "LVGL Builder");
m_ui->combo_resolution->setCurrentIndex(settings.value("resolution index", 0).toInt());
const QSize size = settings.value("resolution", QSize(1, 1)).toSize();
m_ui->spin_width->setValue(size.width());
m_ui->spin_height->setValue(size.height());
const int oriantation = settings.value("oriantation", 0).toInt();
m_ui->group_oriantation->button(oriantation)->setChecked(true);
}
LVGLNewDialog::~LVGLNewDialog()
{
delete m_ui;
}
QString LVGLNewDialog::selectedName() const
{
return m_ui->edit_name->text();
}
QSize LVGLNewDialog::selectedResolution() const
{
int w = m_ui->spin_width->value();
int h = m_ui->spin_height->value();
if (m_ui->radio_portrait->isChecked())
qSwap(w, h);
return QSize(w, h);
}
void LVGLNewDialog::accept()
{
QSettings settings("at.fhooe.lvgl", "LVGL Builder");
settings.setValue("resolution index", m_ui->combo_resolution->currentIndex());
settings.setValue("resolution", QSize(m_ui->spin_width->value(), m_ui->spin_height->value()));
settings.setValue("oriantation", m_ui->group_oriantation->checkedId());
QDialog::accept();
}
void LVGLNewDialog::resolutionChanged(int index)
{
m_ui->spin_width->setEnabled(index == 0);
m_ui->spin_height->setEnabled(index == 0);
if (index > 0) {
m_ui->spin_width->setValue(m_resolutions[index - 1].first);
m_ui->spin_height->setValue(m_resolutions[index - 1].second);
}
}