Commit ec04831f577033dcd47e62fa98f0b0baa1c01094
1 parent
66338dd9aa
Exists in
master
and in
2 other branches
모델 설정 변경
- 변경 확인 팝업 추가 - 버튼 체크 추가
Showing
6 changed files
with
190 additions
and
24 deletions
Show diff stats
app/gui/oven_control/electricmodelsettingwindow.cpp
1 | #include "electricmodelsettingwindow.h" | 1 | #include "electricmodelsettingwindow.h" |
2 | #include "ui_electricmodelsettingwindow.h" | 2 | #include "ui_electricmodelsettingwindow.h" |
3 | +#include "yesnopopupdlg.h" | ||
3 | 4 | ||
4 | #include "soundplayer.h" | 5 | #include "soundplayer.h" |
5 | 6 | ||
@@ -14,6 +15,26 @@ ElectricModelSettingWindow::ElectricModelSettingWindow(QWidget *parent) : | @@ -14,6 +15,26 @@ ElectricModelSettingWindow::ElectricModelSettingWindow(QWidget *parent) : | ||
14 | 15 | ||
15 | foreach (QPushButton *button, findChildren<QPushButton *>()) | 16 | foreach (QPushButton *button, findChildren<QPushButton *>()) |
16 | connect(button, &QPushButton::pressed, SoundPlayer::playClick); | 17 | connect(button, &QPushButton::pressed, SoundPlayer::playClick); |
18 | + | ||
19 | + Config* cfg = Config::getInstance(); | ||
20 | + Define::config_item item; | ||
21 | + item = cfg->getConfigValue(Define::config_model); | ||
22 | + selitem = item.d32; | ||
23 | + switch(selitem){ | ||
24 | + case Define::model_electric_10: | ||
25 | + ui->e10Button->setChecked(true); | ||
26 | + break; | ||
27 | + case Define::model_electric_20: | ||
28 | + ui->e20Button->setChecked(true); | ||
29 | + break; | ||
30 | + case Define::model_electric_24: | ||
31 | + ui->e24Button->setChecked(true); | ||
32 | + break; | ||
33 | + case Define::model_electric_40: | ||
34 | + ui->e40Button->setChecked(true); | ||
35 | + break; | ||
36 | + } | ||
37 | + | ||
17 | } | 38 | } |
18 | 39 | ||
19 | ElectricModelSettingWindow::~ElectricModelSettingWindow() | 40 | ElectricModelSettingWindow::~ElectricModelSettingWindow() |
@@ -33,25 +54,42 @@ void ElectricModelSettingWindow::setModel(Define::model_type model) | @@ -33,25 +54,42 @@ void ElectricModelSettingWindow::setModel(Define::model_type model) | ||
33 | 54 | ||
34 | void ElectricModelSettingWindow::on_e10Button_clicked() | 55 | void ElectricModelSettingWindow::on_e10Button_clicked() |
35 | { | 56 | { |
36 | - setModel(Define::model_electric_10); | 57 | + //setModel(Define::model_electric_10); |
58 | + selitem = Define::model_electric_10; | ||
37 | } | 59 | } |
38 | 60 | ||
39 | void ElectricModelSettingWindow::on_e20Button_clicked() | 61 | void ElectricModelSettingWindow::on_e20Button_clicked() |
40 | { | 62 | { |
41 | - setModel(Define::model_electric_20); | 63 | + //setModel(Define::model_electric_20); |
64 | + selitem = Define::model_electric_20; | ||
42 | } | 65 | } |
43 | 66 | ||
44 | void ElectricModelSettingWindow::on_e24Button_clicked() | 67 | void ElectricModelSettingWindow::on_e24Button_clicked() |
45 | { | 68 | { |
46 | - setModel(Define::model_electric_24); | 69 | + //setModel(Define::model_electric_24); |
70 | + selitem = Define::model_electric_24; | ||
71 | + | ||
47 | } | 72 | } |
48 | 73 | ||
49 | void ElectricModelSettingWindow::on_e40Button_clicked() | 74 | void ElectricModelSettingWindow::on_e40Button_clicked() |
50 | { | 75 | { |
51 | - setModel(Define::model_electric_40); | 76 | + //setModel(Define::model_electric_40); |
77 | + selitem = Define::model_electric_40; | ||
52 | } | 78 | } |
53 | 79 | ||
54 | void ElectricModelSettingWindow::on_backButton_clicked() | 80 | void ElectricModelSettingWindow::on_backButton_clicked() |
55 | { | 81 | { |
82 | + Config* cfg = Config::getInstance(); | ||
83 | + Define::config_item item; | ||
84 | + item = cfg->getConfigValue(Define::config_model); | ||
85 | + | ||
86 | + if(selitem != item.d32){ | ||
87 | + YesNoPopupDlg* yesnopop = new YesNoPopupDlg(this, tr("모델을 변경하시겠습니까?")); | ||
88 | + yesnopop->setModal(true); | ||
89 | + yesnopop->exec(); | ||
90 | + if(yesnopop->result() == QDialog::Accepted){ | ||
91 | + setModel((Define::model_type)selitem); | ||
92 | + } | ||
93 | + } | ||
56 | close(); | 94 | close(); |
57 | } | 95 | } |
app/gui/oven_control/electricmodelsettingwindow.h
app/gui/oven_control/electricmodelsettingwindow.ui
@@ -40,11 +40,17 @@ | @@ -40,11 +40,17 @@ | ||
40 | </property> | 40 | </property> |
41 | <property name="styleSheet"> | 41 | <property name="styleSheet"> |
42 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 42 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
43 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 43 | +QPushButton:pressed, QPushButton:checked { border-image: url(:/images/button/379_ov.png); }</string> |
44 | </property> | 44 | </property> |
45 | <property name="text"> | 45 | <property name="text"> |
46 | <string>24단</string> | 46 | <string>24단</string> |
47 | </property> | 47 | </property> |
48 | + <property name="checkable"> | ||
49 | + <bool>true</bool> | ||
50 | + </property> | ||
51 | + <property name="autoExclusive"> | ||
52 | + <bool>true</bool> | ||
53 | + </property> | ||
48 | </widget> | 54 | </widget> |
49 | <widget class="QWidget" name="widget" native="true"> | 55 | <widget class="QWidget" name="widget" native="true"> |
50 | <property name="geometry"> | 56 | <property name="geometry"> |
@@ -168,11 +174,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | @@ -168,11 +174,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | ||
168 | </property> | 174 | </property> |
169 | <property name="styleSheet"> | 175 | <property name="styleSheet"> |
170 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 176 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
171 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 177 | +QPushButton:pressed, QPushButton:checked { border-image: url(:/images/button/379_ov.png); }</string> |
172 | </property> | 178 | </property> |
173 | <property name="text"> | 179 | <property name="text"> |
174 | <string>40단</string> | 180 | <string>40단</string> |
175 | </property> | 181 | </property> |
182 | + <property name="checkable"> | ||
183 | + <bool>true</bool> | ||
184 | + </property> | ||
185 | + <property name="autoExclusive"> | ||
186 | + <bool>true</bool> | ||
187 | + </property> | ||
176 | </widget> | 188 | </widget> |
177 | <widget class="QLabel" name="label_15"> | 189 | <widget class="QLabel" name="label_15"> |
178 | <property name="geometry"> | 190 | <property name="geometry"> |
@@ -375,11 +387,17 @@ QPushButton:pressed { border-image: url(:/images/bottom_bar/back_ov.png); }</str | @@ -375,11 +387,17 @@ QPushButton:pressed { border-image: url(:/images/bottom_bar/back_ov.png); }</str | ||
375 | </property> | 387 | </property> |
376 | <property name="styleSheet"> | 388 | <property name="styleSheet"> |
377 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 389 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
378 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 390 | +QPushButton:pressed, QPushButton:checked { border-image: url(:/images/button/379_ov.png); }</string> |
379 | </property> | 391 | </property> |
380 | <property name="text"> | 392 | <property name="text"> |
381 | <string>10단</string> | 393 | <string>10단</string> |
382 | </property> | 394 | </property> |
395 | + <property name="checkable"> | ||
396 | + <bool>true</bool> | ||
397 | + </property> | ||
398 | + <property name="autoExclusive"> | ||
399 | + <bool>true</bool> | ||
400 | + </property> | ||
383 | </widget> | 401 | </widget> |
384 | <widget class="QPushButton" name="e20Button"> | 402 | <widget class="QPushButton" name="e20Button"> |
385 | <property name="geometry"> | 403 | <property name="geometry"> |
@@ -406,11 +424,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | @@ -406,11 +424,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | ||
406 | </property> | 424 | </property> |
407 | <property name="styleSheet"> | 425 | <property name="styleSheet"> |
408 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 426 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
409 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 427 | +QPushButton:pressed, QPushButton:checked { border-image: url(:/images/button/379_ov.png); }</string> |
410 | </property> | 428 | </property> |
411 | <property name="text"> | 429 | <property name="text"> |
412 | <string>20단</string> | 430 | <string>20단</string> |
413 | </property> | 431 | </property> |
432 | + <property name="checkable"> | ||
433 | + <bool>true</bool> | ||
434 | + </property> | ||
435 | + <property name="autoExclusive"> | ||
436 | + <bool>true</bool> | ||
437 | + </property> | ||
414 | </widget> | 438 | </widget> |
415 | <widget class="Line" name="line_3"> | 439 | <widget class="Line" name="line_3"> |
416 | <property name="geometry"> | 440 | <property name="geometry"> |
app/gui/oven_control/gasmodelsettingwindow.cpp
1 | +#include <QDebug> | ||
1 | #include "gasmodelsettingwindow.h" | 2 | #include "gasmodelsettingwindow.h" |
2 | #include "ui_gasmodelsettingwindow.h" | 3 | #include "ui_gasmodelsettingwindow.h" |
4 | +#include "yesnopopupdlg.h" | ||
3 | 5 | ||
4 | #include "soundplayer.h" | 6 | #include "soundplayer.h" |
5 | 7 | ||
@@ -14,6 +16,37 @@ GasModelSettingWindow::GasModelSettingWindow(QWidget *parent) : | @@ -14,6 +16,37 @@ GasModelSettingWindow::GasModelSettingWindow(QWidget *parent) : | ||
14 | 16 | ||
15 | foreach (QPushButton *button, findChildren<QPushButton *>()) | 17 | foreach (QPushButton *button, findChildren<QPushButton *>()) |
16 | connect(button, &QPushButton::pressed, SoundPlayer::playClick); | 18 | connect(button, &QPushButton::pressed, SoundPlayer::playClick); |
19 | + | ||
20 | + Config* cfg = Config::getInstance(); | ||
21 | + Define::config_item item; | ||
22 | + item = cfg->getConfigValue(Define::config_model); | ||
23 | + selitem = item.d32; | ||
24 | + switch(item.d32){ | ||
25 | + case Define::model_gas_lng_10: | ||
26 | + ui->lng10Button->setChecked(true); | ||
27 | + break; | ||
28 | + case Define::model_gas_lng_20: | ||
29 | + ui->lng20Button->setChecked(true); | ||
30 | + break; | ||
31 | + case Define::model_gas_lng_24: | ||
32 | + ui->lng24Button->setChecked(true); | ||
33 | + break; | ||
34 | + case Define::model_gas_lng_40: | ||
35 | + ui->lng40Button->setChecked(true); | ||
36 | + break; | ||
37 | + case Define::model_gas_lpg_10: | ||
38 | + ui->lpg10Button->setChecked(true); | ||
39 | + break; | ||
40 | + case Define::model_gas_lpg_20: | ||
41 | + ui->lpg20Button->setChecked(true); | ||
42 | + break; | ||
43 | + case Define::model_gas_lpg_24: | ||
44 | + ui->lpg24Button->setChecked(true); | ||
45 | + break; | ||
46 | + case Define::model_gas_lpg_40: | ||
47 | + ui->lpg40Button->setChecked(true); | ||
48 | + break; | ||
49 | + } | ||
17 | } | 50 | } |
18 | 51 | ||
19 | GasModelSettingWindow::~GasModelSettingWindow() | 52 | GasModelSettingWindow::~GasModelSettingWindow() |
@@ -33,45 +66,66 @@ void GasModelSettingWindow::setModel(Define::model_type model) | @@ -33,45 +66,66 @@ void GasModelSettingWindow::setModel(Define::model_type model) | ||
33 | 66 | ||
34 | void GasModelSettingWindow::on_lpg10Button_clicked() | 67 | void GasModelSettingWindow::on_lpg10Button_clicked() |
35 | { | 68 | { |
36 | - setModel(Define::model_gas_lpg_10); | 69 | + //setModel(Define::model_gas_lpg_10); |
70 | + selitem = Define::model_gas_lpg_10; | ||
37 | } | 71 | } |
38 | 72 | ||
39 | void GasModelSettingWindow::on_lng10Button_clicked() | 73 | void GasModelSettingWindow::on_lng10Button_clicked() |
40 | { | 74 | { |
41 | - setModel(Define::model_gas_lng_10); | 75 | + //setModel(Define::model_gas_lng_10); |
76 | + selitem = Define::model_gas_lng_10; | ||
42 | } | 77 | } |
43 | 78 | ||
44 | void GasModelSettingWindow::on_lpg20Button_clicked() | 79 | void GasModelSettingWindow::on_lpg20Button_clicked() |
45 | { | 80 | { |
46 | - setModel(Define::model_gas_lpg_20); | 81 | + //setModel(Define::model_gas_lpg_20); |
82 | + selitem = Define::model_gas_lpg_20; | ||
47 | } | 83 | } |
48 | 84 | ||
49 | void GasModelSettingWindow::on_lng20Button_clicked() | 85 | void GasModelSettingWindow::on_lng20Button_clicked() |
50 | { | 86 | { |
51 | - setModel(Define::model_gas_lng_20); | 87 | + //setModel(Define::model_gas_lng_20); |
88 | + selitem = Define::model_gas_lng_20; | ||
52 | } | 89 | } |
53 | 90 | ||
54 | void GasModelSettingWindow::on_lpg24Button_clicked() | 91 | void GasModelSettingWindow::on_lpg24Button_clicked() |
55 | { | 92 | { |
56 | - setModel(Define::model_gas_lpg_24); | 93 | + //setModel(Define::model_gas_lpg_24); |
94 | + selitem = Define::model_gas_lpg_24; | ||
57 | } | 95 | } |
58 | 96 | ||
59 | void GasModelSettingWindow::on_lng24Button_clicked() | 97 | void GasModelSettingWindow::on_lng24Button_clicked() |
60 | { | 98 | { |
61 | - setModel(Define::model_gas_lng_24); | 99 | + //setModel(Define::model_gas_lng_24); |
100 | + selitem = Define::model_gas_lng_24; | ||
62 | } | 101 | } |
63 | 102 | ||
64 | void GasModelSettingWindow::on_lpg40Button_clicked() | 103 | void GasModelSettingWindow::on_lpg40Button_clicked() |
65 | { | 104 | { |
66 | - setModel(Define::model_gas_lpg_40); | 105 | + //setModel(Define::model_gas_lpg_40); |
106 | + selitem = Define::model_gas_lpg_40; | ||
67 | } | 107 | } |
68 | 108 | ||
69 | void GasModelSettingWindow::on_lng40Button_clicked() | 109 | void GasModelSettingWindow::on_lng40Button_clicked() |
70 | { | 110 | { |
71 | - setModel(Define::model_gas_lng_40); | 111 | + //setModel(Define::model_gas_lng_40); |
112 | + selitem = Define::model_gas_lng_40; | ||
72 | } | 113 | } |
73 | 114 | ||
74 | void GasModelSettingWindow::on_backButton_clicked() | 115 | void GasModelSettingWindow::on_backButton_clicked() |
75 | { | 116 | { |
117 | + Config* cfg = Config::getInstance(); | ||
118 | + Define::config_item item; | ||
119 | + item = cfg->getConfigValue(Define::config_model); | ||
120 | + | ||
121 | + if(selitem != item.d32){ | ||
122 | + YesNoPopupDlg* yesnopop = new YesNoPopupDlg(this, tr("모델을 변경하시겠습니까?")); | ||
123 | + yesnopop->setModal(true); | ||
124 | + yesnopop->exec(); | ||
125 | + if(yesnopop->result() == QDialog::Accepted){ | ||
126 | + setModel((Define::model_type)selitem); | ||
127 | + qDebug() << "saved"; | ||
128 | + } | ||
129 | + } | ||
76 | close(); | 130 | close(); |
77 | } | 131 | } |
app/gui/oven_control/gasmodelsettingwindow.h
app/gui/oven_control/gasmodelsettingwindow.ui
@@ -40,11 +40,17 @@ | @@ -40,11 +40,17 @@ | ||
40 | </property> | 40 | </property> |
41 | <property name="styleSheet"> | 41 | <property name="styleSheet"> |
42 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 42 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
43 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 43 | +QPushButton:pressed, QPushButton::checked { border-image: url(:/images/button/379_ov.png); }</string> |
44 | </property> | 44 | </property> |
45 | <property name="text"> | 45 | <property name="text"> |
46 | <string>20단 LPG</string> | 46 | <string>20단 LPG</string> |
47 | </property> | 47 | </property> |
48 | + <property name="checkable"> | ||
49 | + <bool>true</bool> | ||
50 | + </property> | ||
51 | + <property name="autoExclusive"> | ||
52 | + <bool>true</bool> | ||
53 | + </property> | ||
48 | </widget> | 54 | </widget> |
49 | <widget class="QWidget" name="widget" native="true"> | 55 | <widget class="QWidget" name="widget" native="true"> |
50 | <property name="geometry"> | 56 | <property name="geometry"> |
@@ -181,11 +187,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | @@ -181,11 +187,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | ||
181 | </property> | 187 | </property> |
182 | <property name="styleSheet"> | 188 | <property name="styleSheet"> |
183 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 189 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
184 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 190 | +QPushButton:pressed, QPushButton::checked { border-image: url(:/images/button/379_ov.png); }</string> |
185 | </property> | 191 | </property> |
186 | <property name="text"> | 192 | <property name="text"> |
187 | <string>24단 LNG</string> | 193 | <string>24단 LNG</string> |
188 | </property> | 194 | </property> |
195 | + <property name="checkable"> | ||
196 | + <bool>true</bool> | ||
197 | + </property> | ||
198 | + <property name="autoExclusive"> | ||
199 | + <bool>true</bool> | ||
200 | + </property> | ||
189 | </widget> | 201 | </widget> |
190 | <widget class="QPushButton" name="lng20Button"> | 202 | <widget class="QPushButton" name="lng20Button"> |
191 | <property name="geometry"> | 203 | <property name="geometry"> |
@@ -212,11 +224,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | @@ -212,11 +224,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | ||
212 | </property> | 224 | </property> |
213 | <property name="styleSheet"> | 225 | <property name="styleSheet"> |
214 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 226 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
215 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 227 | +QPushButton:pressed , QPushButton::checked { border-image: url(:/images/button/379_ov.png); }</string> |
216 | </property> | 228 | </property> |
217 | <property name="text"> | 229 | <property name="text"> |
218 | <string>20단 LNG</string> | 230 | <string>20단 LNG</string> |
219 | </property> | 231 | </property> |
232 | + <property name="checkable"> | ||
233 | + <bool>true</bool> | ||
234 | + </property> | ||
235 | + <property name="autoExclusive"> | ||
236 | + <bool>true</bool> | ||
237 | + </property> | ||
220 | </widget> | 238 | </widget> |
221 | <widget class="QPushButton" name="lpg24Button"> | 239 | <widget class="QPushButton" name="lpg24Button"> |
222 | <property name="geometry"> | 240 | <property name="geometry"> |
@@ -243,11 +261,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | @@ -243,11 +261,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | ||
243 | </property> | 261 | </property> |
244 | <property name="styleSheet"> | 262 | <property name="styleSheet"> |
245 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 263 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
246 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 264 | +QPushButton:pressed, QPushButton::checked { border-image: url(:/images/button/379_ov.png); }</string> |
247 | </property> | 265 | </property> |
248 | <property name="text"> | 266 | <property name="text"> |
249 | <string>24단 LPG</string> | 267 | <string>24단 LPG</string> |
250 | </property> | 268 | </property> |
269 | + <property name="checkable"> | ||
270 | + <bool>true</bool> | ||
271 | + </property> | ||
272 | + <property name="autoExclusive"> | ||
273 | + <bool>true</bool> | ||
274 | + </property> | ||
251 | </widget> | 275 | </widget> |
252 | <widget class="QLabel" name="label_15"> | 276 | <widget class="QLabel" name="label_15"> |
253 | <property name="geometry"> | 277 | <property name="geometry"> |
@@ -463,11 +487,17 @@ QPushButton:pressed { border-image: url(:/images/bottom_bar/back_ov.png); }</str | @@ -463,11 +487,17 @@ QPushButton:pressed { border-image: url(:/images/bottom_bar/back_ov.png); }</str | ||
463 | </property> | 487 | </property> |
464 | <property name="styleSheet"> | 488 | <property name="styleSheet"> |
465 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 489 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
466 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 490 | +QPushButton:pressed, QPushButton::checked { border-image: url(:/images/button/379_ov.png); }</string> |
467 | </property> | 491 | </property> |
468 | <property name="text"> | 492 | <property name="text"> |
469 | <string>10단 LPG</string> | 493 | <string>10단 LPG</string> |
470 | </property> | 494 | </property> |
495 | + <property name="checkable"> | ||
496 | + <bool>true</bool> | ||
497 | + </property> | ||
498 | + <property name="autoExclusive"> | ||
499 | + <bool>true</bool> | ||
500 | + </property> | ||
471 | </widget> | 501 | </widget> |
472 | <widget class="QPushButton" name="lng10Button"> | 502 | <widget class="QPushButton" name="lng10Button"> |
473 | <property name="geometry"> | 503 | <property name="geometry"> |
@@ -494,11 +524,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | @@ -494,11 +524,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | ||
494 | </property> | 524 | </property> |
495 | <property name="styleSheet"> | 525 | <property name="styleSheet"> |
496 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 526 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
497 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 527 | +QPushButton:pressed , QPushButton::checked{ border-image: url(:/images/button/379_ov.png); }</string> |
498 | </property> | 528 | </property> |
499 | <property name="text"> | 529 | <property name="text"> |
500 | <string>10단 LNG</string> | 530 | <string>10단 LNG</string> |
501 | </property> | 531 | </property> |
532 | + <property name="checkable"> | ||
533 | + <bool>true</bool> | ||
534 | + </property> | ||
535 | + <property name="autoExclusive"> | ||
536 | + <bool>true</bool> | ||
537 | + </property> | ||
502 | </widget> | 538 | </widget> |
503 | <widget class="Line" name="line_3"> | 539 | <widget class="Line" name="line_3"> |
504 | <property name="geometry"> | 540 | <property name="geometry"> |
@@ -574,11 +610,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | @@ -574,11 +610,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | ||
574 | </property> | 610 | </property> |
575 | <property name="styleSheet"> | 611 | <property name="styleSheet"> |
576 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 612 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
577 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 613 | +QPushButton:pressed,QPushButton::checked { border-image: url(:/images/button/379_ov.png); }</string> |
578 | </property> | 614 | </property> |
579 | <property name="text"> | 615 | <property name="text"> |
580 | <string>40단 LPG</string> | 616 | <string>40단 LPG</string> |
581 | </property> | 617 | </property> |
618 | + <property name="checkable"> | ||
619 | + <bool>true</bool> | ||
620 | + </property> | ||
621 | + <property name="autoExclusive"> | ||
622 | + <bool>true</bool> | ||
623 | + </property> | ||
582 | </widget> | 624 | </widget> |
583 | <widget class="Line" name="line_8"> | 625 | <widget class="Line" name="line_8"> |
584 | <property name="geometry"> | 626 | <property name="geometry"> |
@@ -631,11 +673,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | @@ -631,11 +673,17 @@ QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | ||
631 | </property> | 673 | </property> |
632 | <property name="styleSheet"> | 674 | <property name="styleSheet"> |
633 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } | 675 | <string notr="true">QPushButton { border-image: url(:/images/button/379.png); } |
634 | -QPushButton:pressed { border-image: url(:/images/button/379_ov.png); }</string> | 676 | +QPushButton:pressed, QPushButton::checked { border-image: url(:/images/button/379_ov.png); }</string> |
635 | </property> | 677 | </property> |
636 | <property name="text"> | 678 | <property name="text"> |
637 | <string>40단 LNG</string> | 679 | <string>40단 LNG</string> |
638 | </property> | 680 | </property> |
681 | + <property name="checkable"> | ||
682 | + <bool>true</bool> | ||
683 | + </property> | ||
684 | + <property name="autoExclusive"> | ||
685 | + <bool>true</bool> | ||
686 | + </property> | ||
639 | </widget> | 687 | </widget> |
640 | </widget> | 688 | </widget> |
641 | </widget> | 689 | </widget> |