Commit 00a5124847747d5dbe70bfdba8e54e96376d3dc7
1 parent
6f96c947af
Exists in
master
and in
2 other branches
세척 모드 화면 추가
Showing
4 changed files
with
1838 additions
and
0 deletions
Show diff stats
app/gui/oven_control/washwindow.cpp
| ... | ... | @@ -0,0 +1,18 @@ |
| 1 | +#include "washwindow.h" | |
| 2 | +#include "ui_washwindow.h" | |
| 3 | + | |
| 4 | +WashWindow::WashWindow(QWidget *parent) : | |
| 5 | + QMainWindow(parent), | |
| 6 | + ui(new Ui::WashWindow) | |
| 7 | +{ | |
| 8 | + ui->setupUi(this); | |
| 9 | + | |
| 10 | + ui->clockContainer->setParent(ui->upperStack); | |
| 11 | + ui->progressContainer->setParent(ui->upperStack); | |
| 12 | + setAttribute(Qt::WA_DeleteOnClose); | |
| 13 | +} | |
| 14 | + | |
| 15 | +WashWindow::~WashWindow() | |
| 16 | +{ | |
| 17 | + delete ui; | |
| 18 | +} | ... | ... |
app/gui/oven_control/washwindow.h
| ... | ... | @@ -0,0 +1,22 @@ |
| 1 | +#ifndef WASHWINDOW_H | |
| 2 | +#define WASHWINDOW_H | |
| 3 | + | |
| 4 | +#include <QMainWindow> | |
| 5 | + | |
| 6 | +namespace Ui { | |
| 7 | +class WashWindow; | |
| 8 | +} | |
| 9 | + | |
| 10 | +class WashWindow : public QMainWindow | |
| 11 | +{ | |
| 12 | + Q_OBJECT | |
| 13 | + | |
| 14 | +public: | |
| 15 | + explicit WashWindow(QWidget *parent = 0); | |
| 16 | + ~WashWindow(); | |
| 17 | + | |
| 18 | +private: | |
| 19 | + Ui::WashWindow *ui; | |
| 20 | +}; | |
| 21 | + | |
| 22 | +#endif // WASHWINDOW_H | ... | ... |
app/gui/oven_control/washwindow.ui
| ... | ... | @@ -0,0 +1,896 @@ |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<ui version="4.0"> | |
| 3 | + <class>WashWindow</class> | |
| 4 | + <widget class="QMainWindow" name="WashWindow"> | |
| 5 | + <property name="geometry"> | |
| 6 | + <rect> | |
| 7 | + <x>0</x> | |
| 8 | + <y>0</y> | |
| 9 | + <width>900</width> | |
| 10 | + <height>1600</height> | |
| 11 | + </rect> | |
| 12 | + </property> | |
| 13 | + <property name="windowTitle"> | |
| 14 | + <string>MainWindow</string> | |
| 15 | + </property> | |
| 16 | + <property name="styleSheet"> | |
| 17 | + <string notr="true">#centralwidget { | |
| 18 | +background-image: url(:/images/images/auto/ba_ground_a01.png); | |
| 19 | +} | |
| 20 | + | |
| 21 | +QSlider::groove { | |
| 22 | +background-image: url(:/images/images/auto/gau_04.png); | |
| 23 | +background-repeat: no-repeat; | |
| 24 | +background-position: center; | |
| 25 | +} | |
| 26 | + | |
| 27 | +QSlider::sub-page { | |
| 28 | +background-repeat: no-repeat; | |
| 29 | +background-position: left center; | |
| 30 | +margin: 0px 5px; | |
| 31 | +} | |
| 32 | + | |
| 33 | +QSlider[sliderColor="red"]::sub-page { | |
| 34 | +background-image: url(:/images/images/auto/gau_05.png); | |
| 35 | +} | |
| 36 | + | |
| 37 | +QSlider[sliderColor="yellow"]::sub-page { | |
| 38 | +background-image: url(:/images/images/auto/gau_06.png); | |
| 39 | +} | |
| 40 | + | |
| 41 | +QSlider[sliderColor="white"]::sub-page { | |
| 42 | +background-image: url(:/images/images/auto/gau_07.png); | |
| 43 | +} | |
| 44 | + | |
| 45 | +QSlider[sliderColor="blue"]::sub-page { | |
| 46 | +background-image: url(:/images/images/auto/gau_09.png); | |
| 47 | +} | |
| 48 | + | |
| 49 | +QSlider[sliderColor="green"]::sub-page { | |
| 50 | +background-image: url(:/images/images/auto/sys_icon_01_gau.png); | |
| 51 | +} | |
| 52 | + | |
| 53 | +QSlider::handle { | |
| 54 | +background-image: url(:/images/images/manual/graphe_BTN_Bigsize.png); | |
| 55 | +background-repeat: no-repeat; | |
| 56 | +background-position: center; | |
| 57 | +width: 23px; | |
| 58 | +height: 33px; | |
| 59 | +} | |
| 60 | + | |
| 61 | +QPushButton[style="type"] { | |
| 62 | +background-repeat: no-repeat; | |
| 63 | +background-position: center; | |
| 64 | +background-clip: border; | |
| 65 | +background-origin: border; | |
| 66 | +margin-bottom: 50px; | |
| 67 | + | |
| 68 | +border-top: 140px; | |
| 69 | +border-bottom: -50px; | |
| 70 | +border-style: hidden; | |
| 71 | +color: white; | |
| 72 | +font-size: 25px; | |
| 73 | +}</string> | |
| 74 | + </property> | |
| 75 | + <widget class="QWidget" name="centralwidget"> | |
| 76 | + <widget class="QStackedWidget" name="upperStack"> | |
| 77 | + <property name="geometry"> | |
| 78 | + <rect> | |
| 79 | + <x>0</x> | |
| 80 | + <y>0</y> | |
| 81 | + <width>900</width> | |
| 82 | + <height>426</height> | |
| 83 | + </rect> | |
| 84 | + </property> | |
| 85 | + <widget class="QWidget" name="clockContainer"> | |
| 86 | + <property name="styleSheet"> | |
| 87 | + <string notr="true">QWidget#clockContainer { | |
| 88 | +background-image: url(:/images/images/config/001_01_background_time.png); | |
| 89 | +}</string> | |
| 90 | + </property> | |
| 91 | + <widget class="Clock" name="clock" native="true"> | |
| 92 | + <property name="geometry"> | |
| 93 | + <rect> | |
| 94 | + <x>272</x> | |
| 95 | + <y>36</y> | |
| 96 | + <width>356</width> | |
| 97 | + <height>355</height> | |
| 98 | + </rect> | |
| 99 | + </property> | |
| 100 | + </widget> | |
| 101 | + </widget> | |
| 102 | + <widget class="QWidget" name="page_2"/> | |
| 103 | + </widget> | |
| 104 | + <widget class="QLabel" name="label"> | |
| 105 | + <property name="geometry"> | |
| 106 | + <rect> | |
| 107 | + <x>0</x> | |
| 108 | + <y>1197</y> | |
| 109 | + <width>900</width> | |
| 110 | + <height>33</height> | |
| 111 | + </rect> | |
| 112 | + </property> | |
| 113 | + <property name="text"> | |
| 114 | + <string/> | |
| 115 | + </property> | |
| 116 | + <property name="pixmap"> | |
| 117 | + <pixmap resource="resources.qrc">:/images/images/auto/ba_ground_a02.png</pixmap> | |
| 118 | + </property> | |
| 119 | + </widget> | |
| 120 | + <widget class="QWidget" name="bottomBar" native="true"> | |
| 121 | + <property name="geometry"> | |
| 122 | + <rect> | |
| 123 | + <x>0</x> | |
| 124 | + <y>1450</y> | |
| 125 | + <width>900</width> | |
| 126 | + <height>150</height> | |
| 127 | + </rect> | |
| 128 | + </property> | |
| 129 | + <property name="styleSheet"> | |
| 130 | + <string notr="true">QWidget#bottomBar { | |
| 131 | +background-image: url(:/images/images/config_service/001_01_background_under_down.png); | |
| 132 | +}</string> | |
| 133 | + </property> | |
| 134 | + <widget class="QPushButton" name="backButton"> | |
| 135 | + <property name="geometry"> | |
| 136 | + <rect> | |
| 137 | + <x>288</x> | |
| 138 | + <y>26</y> | |
| 139 | + <width>97</width> | |
| 140 | + <height>97</height> | |
| 141 | + </rect> | |
| 142 | + </property> | |
| 143 | + <property name="sizePolicy"> | |
| 144 | + <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> | |
| 145 | + <horstretch>0</horstretch> | |
| 146 | + <verstretch>0</verstretch> | |
| 147 | + </sizepolicy> | |
| 148 | + </property> | |
| 149 | + <property name="styleSheet"> | |
| 150 | + <string notr="true">QPushButton { border-image: url(:/images/images/auto/006_sys_icon_03.png); } | |
| 151 | +QPushButton:pressed { border-image: url(:/images/images/auto/006_sys_icon_03_ov.png); }</string> | |
| 152 | + </property> | |
| 153 | + <property name="text"> | |
| 154 | + <string/> | |
| 155 | + </property> | |
| 156 | + </widget> | |
| 157 | + <widget class="QPushButton" name="backButton_2"> | |
| 158 | + <property name="geometry"> | |
| 159 | + <rect> | |
| 160 | + <x>401</x> | |
| 161 | + <y>26</y> | |
| 162 | + <width>97</width> | |
| 163 | + <height>97</height> | |
| 164 | + </rect> | |
| 165 | + </property> | |
| 166 | + <property name="sizePolicy"> | |
| 167 | + <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> | |
| 168 | + <horstretch>0</horstretch> | |
| 169 | + <verstretch>0</verstretch> | |
| 170 | + </sizepolicy> | |
| 171 | + </property> | |
| 172 | + <property name="styleSheet"> | |
| 173 | + <string notr="true">QPushButton { border-image: url(:/images/images/auto/006_sys_icon_01.png); } | |
| 174 | +QPushButton:pressed { border-image: url(:/images/images/auto/006_sys_icon_01_ov.png); }</string> | |
| 175 | + </property> | |
| 176 | + <property name="text"> | |
| 177 | + <string/> | |
| 178 | + </property> | |
| 179 | + </widget> | |
| 180 | + <widget class="QPushButton" name="backButton_4"> | |
| 181 | + <property name="geometry"> | |
| 182 | + <rect> | |
| 183 | + <x>514</x> | |
| 184 | + <y>26</y> | |
| 185 | + <width>97</width> | |
| 186 | + <height>97</height> | |
| 187 | + </rect> | |
| 188 | + </property> | |
| 189 | + <property name="sizePolicy"> | |
| 190 | + <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> | |
| 191 | + <horstretch>0</horstretch> | |
| 192 | + <verstretch>0</verstretch> | |
| 193 | + </sizepolicy> | |
| 194 | + </property> | |
| 195 | + <property name="styleSheet"> | |
| 196 | + <string notr="true">QPushButton { border-image: url(:/images/images/auto/006_sys_icon_02.png); } | |
| 197 | +QPushButton:pressed { border-image: url(:/images/images/auto/006_sys_icon_02_ov.png); }</string> | |
| 198 | + </property> | |
| 199 | + <property name="text"> | |
| 200 | + <string/> | |
| 201 | + </property> | |
| 202 | + </widget> | |
| 203 | + </widget> | |
| 204 | + <widget class="QPushButton" name="pushButton"> | |
| 205 | + <property name="geometry"> | |
| 206 | + <rect> | |
| 207 | + <x>0</x> | |
| 208 | + <y>1230</y> | |
| 209 | + <width>180</width> | |
| 210 | + <height>220</height> | |
| 211 | + </rect> | |
| 212 | + </property> | |
| 213 | + <property name="styleSheet"> | |
| 214 | + <string notr="true">QPushButton | |
| 215 | +{ | |
| 216 | +background-image: url(:/images/images/auto/option_btn_wash_01.png); | |
| 217 | +} | |
| 218 | + | |
| 219 | +QPushButton::pressed | |
| 220 | +{ | |
| 221 | +background-image: url(:/images/images/auto/option_btn_wash_01_ov.png); | |
| 222 | +}</string> | |
| 223 | + </property> | |
| 224 | + <property name="text"> | |
| 225 | + <string>세제 없이 헹굼</string> | |
| 226 | + </property> | |
| 227 | + <property name="style" stdset="0"> | |
| 228 | + <string>type</string> | |
| 229 | + </property> | |
| 230 | + </widget> | |
| 231 | + <widget class="QPushButton" name="pushButton_2"> | |
| 232 | + <property name="geometry"> | |
| 233 | + <rect> | |
| 234 | + <x>180</x> | |
| 235 | + <y>1230</y> | |
| 236 | + <width>180</width> | |
| 237 | + <height>220</height> | |
| 238 | + </rect> | |
| 239 | + </property> | |
| 240 | + <property name="styleSheet"> | |
| 241 | + <string notr="true">QPushButton | |
| 242 | +{ | |
| 243 | +background-image: url(:/images/images/auto/option_btn_wash_02.png); | |
| 244 | +} | |
| 245 | + | |
| 246 | +QPushButton::pressed | |
| 247 | +{ | |
| 248 | +background-image: url(:/images/images/auto/option_btn_wash_02_ov.png); | |
| 249 | +}</string> | |
| 250 | + </property> | |
| 251 | + <property name="text"> | |
| 252 | + <string>간이 세척</string> | |
| 253 | + </property> | |
| 254 | + <property name="style" stdset="0"> | |
| 255 | + <string>type</string> | |
| 256 | + </property> | |
| 257 | + </widget> | |
| 258 | + <widget class="QPushButton" name="pushButton_3"> | |
| 259 | + <property name="geometry"> | |
| 260 | + <rect> | |
| 261 | + <x>360</x> | |
| 262 | + <y>1230</y> | |
| 263 | + <width>180</width> | |
| 264 | + <height>220</height> | |
| 265 | + </rect> | |
| 266 | + </property> | |
| 267 | + <property name="styleSheet"> | |
| 268 | + <string notr="true">QPushButton | |
| 269 | +{ | |
| 270 | +background-image: url(:/images/images/auto/option_btn_wash_03.png); | |
| 271 | +} | |
| 272 | + | |
| 273 | +QPushButton::pressed | |
| 274 | +{ | |
| 275 | +background-image: url(:/images/images/auto/option_btn_wash_03_ov.png); | |
| 276 | +}</string> | |
| 277 | + </property> | |
| 278 | + <property name="text"> | |
| 279 | + <string>표준 세척</string> | |
| 280 | + </property> | |
| 281 | + <property name="style" stdset="0"> | |
| 282 | + <string>type</string> | |
| 283 | + </property> | |
| 284 | + </widget> | |
| 285 | + <widget class="QPushButton" name="pushButton_4"> | |
| 286 | + <property name="geometry"> | |
| 287 | + <rect> | |
| 288 | + <x>540</x> | |
| 289 | + <y>1230</y> | |
| 290 | + <width>180</width> | |
| 291 | + <height>220</height> | |
| 292 | + </rect> | |
| 293 | + </property> | |
| 294 | + <property name="styleSheet"> | |
| 295 | + <string notr="true">QPushButton | |
| 296 | +{ | |
| 297 | +background-image: url(:/images/images/auto/option_btn_wash_04.png); | |
| 298 | +} | |
| 299 | + | |
| 300 | +QPushButton::pressed | |
| 301 | +{ | |
| 302 | +background-image: url(:/images/images/auto/option_btn_wash_04_ov.png); | |
| 303 | +}</string> | |
| 304 | + </property> | |
| 305 | + <property name="text"> | |
| 306 | + <string>강 세척</string> | |
| 307 | + </property> | |
| 308 | + <property name="style" stdset="0"> | |
| 309 | + <string>type</string> | |
| 310 | + </property> | |
| 311 | + </widget> | |
| 312 | + <widget class="QPushButton" name="pushButton_5"> | |
| 313 | + <property name="geometry"> | |
| 314 | + <rect> | |
| 315 | + <x>720</x> | |
| 316 | + <y>1230</y> | |
| 317 | + <width>180</width> | |
| 318 | + <height>220</height> | |
| 319 | + </rect> | |
| 320 | + </property> | |
| 321 | + <property name="styleSheet"> | |
| 322 | + <string notr="true">QPushButton | |
| 323 | +{ | |
| 324 | +background-image: url(:/images/images/auto/option_btn_wash_05.png); | |
| 325 | +} | |
| 326 | + | |
| 327 | +QPushButton::pressed | |
| 328 | +{ | |
| 329 | +background-image: url(:/images/images/auto/option_btn_wash_05_ov.png); | |
| 330 | +}</string> | |
| 331 | + </property> | |
| 332 | + <property name="text"> | |
| 333 | + <string>고속 세척</string> | |
| 334 | + </property> | |
| 335 | + <property name="style" stdset="0"> | |
| 336 | + <string>type</string> | |
| 337 | + </property> | |
| 338 | + </widget> | |
| 339 | + <widget class="QLabel" name="configMaxLabel_4"> | |
| 340 | + <property name="enabled"> | |
| 341 | + <bool>true</bool> | |
| 342 | + </property> | |
| 343 | + <property name="geometry"> | |
| 344 | + <rect> | |
| 345 | + <x>700</x> | |
| 346 | + <y>927</y> | |
| 347 | + <width>151</width> | |
| 348 | + <height>51</height> | |
| 349 | + </rect> | |
| 350 | + </property> | |
| 351 | + <property name="palette"> | |
| 352 | + <palette> | |
| 353 | + <active> | |
| 354 | + <colorrole role="WindowText"> | |
| 355 | + <brush brushstyle="SolidPattern"> | |
| 356 | + <color alpha="255"> | |
| 357 | + <red>255</red> | |
| 358 | + <green>255</green> | |
| 359 | + <blue>255</blue> | |
| 360 | + </color> | |
| 361 | + </brush> | |
| 362 | + </colorrole> | |
| 363 | + </active> | |
| 364 | + <inactive> | |
| 365 | + <colorrole role="WindowText"> | |
| 366 | + <brush brushstyle="SolidPattern"> | |
| 367 | + <color alpha="255"> | |
| 368 | + <red>255</red> | |
| 369 | + <green>255</green> | |
| 370 | + <blue>255</blue> | |
| 371 | + </color> | |
| 372 | + </brush> | |
| 373 | + </colorrole> | |
| 374 | + </inactive> | |
| 375 | + <disabled> | |
| 376 | + <colorrole role="WindowText"> | |
| 377 | + <brush brushstyle="SolidPattern"> | |
| 378 | + <color alpha="255"> | |
| 379 | + <red>123</red> | |
| 380 | + <green>123</green> | |
| 381 | + <blue>123</blue> | |
| 382 | + </color> | |
| 383 | + </brush> | |
| 384 | + </colorrole> | |
| 385 | + </disabled> | |
| 386 | + </palette> | |
| 387 | + </property> | |
| 388 | + <property name="font"> | |
| 389 | + <font> | |
| 390 | + <family>Malgun Gothic</family> | |
| 391 | + <pointsize>9</pointsize> | |
| 392 | + </font> | |
| 393 | + </property> | |
| 394 | + <property name="text"> | |
| 395 | + <string>나쁨</string> | |
| 396 | + </property> | |
| 397 | + <property name="alignment"> | |
| 398 | + <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> | |
| 399 | + </property> | |
| 400 | + </widget> | |
| 401 | + <widget class="QPushButton" name="configButton_4"> | |
| 402 | + <property name="geometry"> | |
| 403 | + <rect> | |
| 404 | + <x>49</x> | |
| 405 | + <y>934</y> | |
| 406 | + <width>96</width> | |
| 407 | + <height>96</height> | |
| 408 | + </rect> | |
| 409 | + </property> | |
| 410 | + <property name="styleSheet"> | |
| 411 | + <string notr="true">QPushButton { | |
| 412 | + border-image: url(:/images/images/manual/011_icon_01.png); | |
| 413 | +} | |
| 414 | + | |
| 415 | +QPushButton:pressed { | |
| 416 | + border-image: url(:/images/images/manual/011_icon_01_ov.png); | |
| 417 | +} | |
| 418 | +</string> | |
| 419 | + </property> | |
| 420 | + <property name="text"> | |
| 421 | + <string/> | |
| 422 | + </property> | |
| 423 | + </widget> | |
| 424 | + <widget class="QLabel" name="configCurrentLabel_4"> | |
| 425 | + <property name="enabled"> | |
| 426 | + <bool>true</bool> | |
| 427 | + </property> | |
| 428 | + <property name="geometry"> | |
| 429 | + <rect> | |
| 430 | + <x>185</x> | |
| 431 | + <y>997</y> | |
| 432 | + <width>641</width> | |
| 433 | + <height>51</height> | |
| 434 | + </rect> | |
| 435 | + </property> | |
| 436 | + <property name="palette"> | |
| 437 | + <palette> | |
| 438 | + <active> | |
| 439 | + <colorrole role="WindowText"> | |
| 440 | + <brush brushstyle="SolidPattern"> | |
| 441 | + <color alpha="255"> | |
| 442 | + <red>255</red> | |
| 443 | + <green>255</green> | |
| 444 | + <blue>255</blue> | |
| 445 | + </color> | |
| 446 | + </brush> | |
| 447 | + </colorrole> | |
| 448 | + </active> | |
| 449 | + <inactive> | |
| 450 | + <colorrole role="WindowText"> | |
| 451 | + <brush brushstyle="SolidPattern"> | |
| 452 | + <color alpha="255"> | |
| 453 | + <red>255</red> | |
| 454 | + <green>255</green> | |
| 455 | + <blue>255</blue> | |
| 456 | + </color> | |
| 457 | + </brush> | |
| 458 | + </colorrole> | |
| 459 | + </inactive> | |
| 460 | + <disabled> | |
| 461 | + <colorrole role="WindowText"> | |
| 462 | + <brush brushstyle="SolidPattern"> | |
| 463 | + <color alpha="255"> | |
| 464 | + <red>123</red> | |
| 465 | + <green>123</green> | |
| 466 | + <blue>123</blue> | |
| 467 | + </color> | |
| 468 | + </brush> | |
| 469 | + </colorrole> | |
| 470 | + </disabled> | |
| 471 | + </palette> | |
| 472 | + </property> | |
| 473 | + <property name="font"> | |
| 474 | + <font> | |
| 475 | + <family>Roboto</family> | |
| 476 | + <pointsize>13</pointsize> | |
| 477 | + <weight>75</weight> | |
| 478 | + <bold>true</bold> | |
| 479 | + </font> | |
| 480 | + </property> | |
| 481 | + <property name="text"> | |
| 482 | + <string>유지/관리</string> | |
| 483 | + </property> | |
| 484 | + <property name="alignment"> | |
| 485 | + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> | |
| 486 | + </property> | |
| 487 | + </widget> | |
| 488 | + <widget class="QLabel" name="configMinLabel_4"> | |
| 489 | + <property name="enabled"> | |
| 490 | + <bool>true</bool> | |
| 491 | + </property> | |
| 492 | + <property name="geometry"> | |
| 493 | + <rect> | |
| 494 | + <x>185</x> | |
| 495 | + <y>927</y> | |
| 496 | + <width>151</width> | |
| 497 | + <height>51</height> | |
| 498 | + </rect> | |
| 499 | + </property> | |
| 500 | + <property name="palette"> | |
| 501 | + <palette> | |
| 502 | + <active> | |
| 503 | + <colorrole role="WindowText"> | |
| 504 | + <brush brushstyle="SolidPattern"> | |
| 505 | + <color alpha="255"> | |
| 506 | + <red>255</red> | |
| 507 | + <green>255</green> | |
| 508 | + <blue>255</blue> | |
| 509 | + </color> | |
| 510 | + </brush> | |
| 511 | + </colorrole> | |
| 512 | + </active> | |
| 513 | + <inactive> | |
| 514 | + <colorrole role="WindowText"> | |
| 515 | + <brush brushstyle="SolidPattern"> | |
| 516 | + <color alpha="255"> | |
| 517 | + <red>255</red> | |
| 518 | + <green>255</green> | |
| 519 | + <blue>255</blue> | |
| 520 | + </color> | |
| 521 | + </brush> | |
| 522 | + </colorrole> | |
| 523 | + </inactive> | |
| 524 | + <disabled> | |
| 525 | + <colorrole role="WindowText"> | |
| 526 | + <brush brushstyle="SolidPattern"> | |
| 527 | + <color alpha="255"> | |
| 528 | + <red>123</red> | |
| 529 | + <green>123</green> | |
| 530 | + <blue>123</blue> | |
| 531 | + </color> | |
| 532 | + </brush> | |
| 533 | + </colorrole> | |
| 534 | + </disabled> | |
| 535 | + </palette> | |
| 536 | + </property> | |
| 537 | + <property name="font"> | |
| 538 | + <font> | |
| 539 | + <family>Malgun Gothic</family> | |
| 540 | + <pointsize>9</pointsize> | |
| 541 | + </font> | |
| 542 | + </property> | |
| 543 | + <property name="text"> | |
| 544 | + <string>좋음</string> | |
| 545 | + </property> | |
| 546 | + <property name="alignment"> | |
| 547 | + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> | |
| 548 | + </property> | |
| 549 | + </widget> | |
| 550 | + <widget class="QWidget" name="configBlock_4" native="true"> | |
| 551 | + <property name="geometry"> | |
| 552 | + <rect> | |
| 553 | + <x>27</x> | |
| 554 | + <y>912</y> | |
| 555 | + <width>140</width> | |
| 556 | + <height>140</height> | |
| 557 | + </rect> | |
| 558 | + </property> | |
| 559 | + <property name="styleSheet"> | |
| 560 | + <string notr="true">background-image: url(:/images/images/manual/010_icon_block.png);</string> | |
| 561 | + </property> | |
| 562 | + </widget> | |
| 563 | + <widget class="QSlider" name="configSlider_4"> | |
| 564 | + <property name="geometry"> | |
| 565 | + <rect> | |
| 566 | + <x>185</x> | |
| 567 | + <y>970</y> | |
| 568 | + <width>666</width> | |
| 569 | + <height>33</height> | |
| 570 | + </rect> | |
| 571 | + </property> | |
| 572 | + <property name="maximum"> | |
| 573 | + <number>100</number> | |
| 574 | + </property> | |
| 575 | + <property name="pageStep"> | |
| 576 | + <number>1</number> | |
| 577 | + </property> | |
| 578 | + <property name="value"> | |
| 579 | + <number>0</number> | |
| 580 | + </property> | |
| 581 | + <property name="tracking"> | |
| 582 | + <bool>true</bool> | |
| 583 | + </property> | |
| 584 | + <property name="orientation"> | |
| 585 | + <enum>Qt::Horizontal</enum> | |
| 586 | + </property> | |
| 587 | + <property name="sliderColor" stdset="0"> | |
| 588 | + <string>blue</string> | |
| 589 | + </property> | |
| 590 | + </widget> | |
| 591 | + <widget class="QLabel" name="configMaxLabel_5"> | |
| 592 | + <property name="enabled"> | |
| 593 | + <bool>true</bool> | |
| 594 | + </property> | |
| 595 | + <property name="geometry"> | |
| 596 | + <rect> | |
| 597 | + <x>700</x> | |
| 598 | + <y>1077</y> | |
| 599 | + <width>151</width> | |
| 600 | + <height>51</height> | |
| 601 | + </rect> | |
| 602 | + </property> | |
| 603 | + <property name="palette"> | |
| 604 | + <palette> | |
| 605 | + <active> | |
| 606 | + <colorrole role="WindowText"> | |
| 607 | + <brush brushstyle="SolidPattern"> | |
| 608 | + <color alpha="255"> | |
| 609 | + <red>255</red> | |
| 610 | + <green>255</green> | |
| 611 | + <blue>255</blue> | |
| 612 | + </color> | |
| 613 | + </brush> | |
| 614 | + </colorrole> | |
| 615 | + </active> | |
| 616 | + <inactive> | |
| 617 | + <colorrole role="WindowText"> | |
| 618 | + <brush brushstyle="SolidPattern"> | |
| 619 | + <color alpha="255"> | |
| 620 | + <red>255</red> | |
| 621 | + <green>255</green> | |
| 622 | + <blue>255</blue> | |
| 623 | + </color> | |
| 624 | + </brush> | |
| 625 | + </colorrole> | |
| 626 | + </inactive> | |
| 627 | + <disabled> | |
| 628 | + <colorrole role="WindowText"> | |
| 629 | + <brush brushstyle="SolidPattern"> | |
| 630 | + <color alpha="255"> | |
| 631 | + <red>123</red> | |
| 632 | + <green>123</green> | |
| 633 | + <blue>123</blue> | |
| 634 | + </color> | |
| 635 | + </brush> | |
| 636 | + </colorrole> | |
| 637 | + </disabled> | |
| 638 | + </palette> | |
| 639 | + </property> | |
| 640 | + <property name="font"> | |
| 641 | + <font> | |
| 642 | + <family>Malgun Gothic</family> | |
| 643 | + <pointsize>9</pointsize> | |
| 644 | + </font> | |
| 645 | + </property> | |
| 646 | + <property name="text"> | |
| 647 | + <string>더러움</string> | |
| 648 | + </property> | |
| 649 | + <property name="alignment"> | |
| 650 | + <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> | |
| 651 | + </property> | |
| 652 | + </widget> | |
| 653 | + <widget class="QPushButton" name="configButton_5"> | |
| 654 | + <property name="geometry"> | |
| 655 | + <rect> | |
| 656 | + <x>49</x> | |
| 657 | + <y>1084</y> | |
| 658 | + <width>96</width> | |
| 659 | + <height>96</height> | |
| 660 | + </rect> | |
| 661 | + </property> | |
| 662 | + <property name="styleSheet"> | |
| 663 | + <string notr="true">QPushButton { | |
| 664 | + border-image: url(:/images/images/manual/011_icon_01.png); | |
| 665 | +} | |
| 666 | + | |
| 667 | +QPushButton:pressed { | |
| 668 | + border-image: url(:/images/images/manual/011_icon_01_ov.png); | |
| 669 | +} | |
| 670 | +</string> | |
| 671 | + </property> | |
| 672 | + <property name="text"> | |
| 673 | + <string/> | |
| 674 | + </property> | |
| 675 | + </widget> | |
| 676 | + <widget class="QLabel" name="configCurrentLabel_5"> | |
| 677 | + <property name="enabled"> | |
| 678 | + <bool>true</bool> | |
| 679 | + </property> | |
| 680 | + <property name="geometry"> | |
| 681 | + <rect> | |
| 682 | + <x>185</x> | |
| 683 | + <y>1147</y> | |
| 684 | + <width>641</width> | |
| 685 | + <height>51</height> | |
| 686 | + </rect> | |
| 687 | + </property> | |
| 688 | + <property name="palette"> | |
| 689 | + <palette> | |
| 690 | + <active> | |
| 691 | + <colorrole role="WindowText"> | |
| 692 | + <brush brushstyle="SolidPattern"> | |
| 693 | + <color alpha="255"> | |
| 694 | + <red>255</red> | |
| 695 | + <green>255</green> | |
| 696 | + <blue>255</blue> | |
| 697 | + </color> | |
| 698 | + </brush> | |
| 699 | + </colorrole> | |
| 700 | + </active> | |
| 701 | + <inactive> | |
| 702 | + <colorrole role="WindowText"> | |
| 703 | + <brush brushstyle="SolidPattern"> | |
| 704 | + <color alpha="255"> | |
| 705 | + <red>255</red> | |
| 706 | + <green>255</green> | |
| 707 | + <blue>255</blue> | |
| 708 | + </color> | |
| 709 | + </brush> | |
| 710 | + </colorrole> | |
| 711 | + </inactive> | |
| 712 | + <disabled> | |
| 713 | + <colorrole role="WindowText"> | |
| 714 | + <brush brushstyle="SolidPattern"> | |
| 715 | + <color alpha="255"> | |
| 716 | + <red>123</red> | |
| 717 | + <green>123</green> | |
| 718 | + <blue>123</blue> | |
| 719 | + </color> | |
| 720 | + </brush> | |
| 721 | + </colorrole> | |
| 722 | + </disabled> | |
| 723 | + </palette> | |
| 724 | + </property> | |
| 725 | + <property name="font"> | |
| 726 | + <font> | |
| 727 | + <family>Roboto</family> | |
| 728 | + <pointsize>13</pointsize> | |
| 729 | + <weight>75</weight> | |
| 730 | + <bold>true</bold> | |
| 731 | + </font> | |
| 732 | + </property> | |
| 733 | + <property name="text"> | |
| 734 | + <string>청결상태</string> | |
| 735 | + </property> | |
| 736 | + <property name="alignment"> | |
| 737 | + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> | |
| 738 | + </property> | |
| 739 | + </widget> | |
| 740 | + <widget class="QLabel" name="configMinLabel_5"> | |
| 741 | + <property name="enabled"> | |
| 742 | + <bool>true</bool> | |
| 743 | + </property> | |
| 744 | + <property name="geometry"> | |
| 745 | + <rect> | |
| 746 | + <x>185</x> | |
| 747 | + <y>1077</y> | |
| 748 | + <width>151</width> | |
| 749 | + <height>51</height> | |
| 750 | + </rect> | |
| 751 | + </property> | |
| 752 | + <property name="palette"> | |
| 753 | + <palette> | |
| 754 | + <active> | |
| 755 | + <colorrole role="WindowText"> | |
| 756 | + <brush brushstyle="SolidPattern"> | |
| 757 | + <color alpha="255"> | |
| 758 | + <red>255</red> | |
| 759 | + <green>255</green> | |
| 760 | + <blue>255</blue> | |
| 761 | + </color> | |
| 762 | + </brush> | |
| 763 | + </colorrole> | |
| 764 | + </active> | |
| 765 | + <inactive> | |
| 766 | + <colorrole role="WindowText"> | |
| 767 | + <brush brushstyle="SolidPattern"> | |
| 768 | + <color alpha="255"> | |
| 769 | + <red>255</red> | |
| 770 | + <green>255</green> | |
| 771 | + <blue>255</blue> | |
| 772 | + </color> | |
| 773 | + </brush> | |
| 774 | + </colorrole> | |
| 775 | + </inactive> | |
| 776 | + <disabled> | |
| 777 | + <colorrole role="WindowText"> | |
| 778 | + <brush brushstyle="SolidPattern"> | |
| 779 | + <color alpha="255"> | |
| 780 | + <red>123</red> | |
| 781 | + <green>123</green> | |
| 782 | + <blue>123</blue> | |
| 783 | + </color> | |
| 784 | + </brush> | |
| 785 | + </colorrole> | |
| 786 | + </disabled> | |
| 787 | + </palette> | |
| 788 | + </property> | |
| 789 | + <property name="font"> | |
| 790 | + <font> | |
| 791 | + <family>Malgun Gothic</family> | |
| 792 | + <pointsize>9</pointsize> | |
| 793 | + </font> | |
| 794 | + </property> | |
| 795 | + <property name="text"> | |
| 796 | + <string>깨끗함</string> | |
| 797 | + </property> | |
| 798 | + <property name="alignment"> | |
| 799 | + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> | |
| 800 | + </property> | |
| 801 | + </widget> | |
| 802 | + <widget class="QWidget" name="configBlock_5" native="true"> | |
| 803 | + <property name="geometry"> | |
| 804 | + <rect> | |
| 805 | + <x>27</x> | |
| 806 | + <y>1062</y> | |
| 807 | + <width>140</width> | |
| 808 | + <height>140</height> | |
| 809 | + </rect> | |
| 810 | + </property> | |
| 811 | + <property name="styleSheet"> | |
| 812 | + <string notr="true">background-image: url(:/images/images/manual/010_icon_block.png);</string> | |
| 813 | + </property> | |
| 814 | + </widget> | |
| 815 | + <widget class="QSlider" name="configSlider_5"> | |
| 816 | + <property name="geometry"> | |
| 817 | + <rect> | |
| 818 | + <x>185</x> | |
| 819 | + <y>1120</y> | |
| 820 | + <width>666</width> | |
| 821 | + <height>33</height> | |
| 822 | + </rect> | |
| 823 | + </property> | |
| 824 | + <property name="maximum"> | |
| 825 | + <number>100</number> | |
| 826 | + </property> | |
| 827 | + <property name="pageStep"> | |
| 828 | + <number>1</number> | |
| 829 | + </property> | |
| 830 | + <property name="value"> | |
| 831 | + <number>0</number> | |
| 832 | + </property> | |
| 833 | + <property name="tracking"> | |
| 834 | + <bool>true</bool> | |
| 835 | + </property> | |
| 836 | + <property name="orientation"> | |
| 837 | + <enum>Qt::Horizontal</enum> | |
| 838 | + </property> | |
| 839 | + <property name="sliderColor" stdset="0"> | |
| 840 | + <string>blue</string> | |
| 841 | + </property> | |
| 842 | + </widget> | |
| 843 | + <widget class="AnimatedImageBox" name="animation"> | |
| 844 | + <property name="geometry"> | |
| 845 | + <rect> | |
| 846 | + <x>340</x> | |
| 847 | + <y>460</y> | |
| 848 | + <width>255</width> | |
| 849 | + <height>427</height> | |
| 850 | + </rect> | |
| 851 | + </property> | |
| 852 | + <property name="text"> | |
| 853 | + <string/> | |
| 854 | + </property> | |
| 855 | + </widget> | |
| 856 | + <zorder>configBlock_5</zorder> | |
| 857 | + <zorder>configBlock_4</zorder> | |
| 858 | + <zorder>upperStack</zorder> | |
| 859 | + <zorder>label</zorder> | |
| 860 | + <zorder>bottomBar</zorder> | |
| 861 | + <zorder>pushButton</zorder> | |
| 862 | + <zorder>pushButton_2</zorder> | |
| 863 | + <zorder>pushButton_3</zorder> | |
| 864 | + <zorder>pushButton_4</zorder> | |
| 865 | + <zorder>pushButton_5</zorder> | |
| 866 | + <zorder>configMaxLabel_4</zorder> | |
| 867 | + <zorder>configButton_4</zorder> | |
| 868 | + <zorder>configCurrentLabel_4</zorder> | |
| 869 | + <zorder>configMinLabel_4</zorder> | |
| 870 | + <zorder>configSlider_4</zorder> | |
| 871 | + <zorder>configMaxLabel_5</zorder> | |
| 872 | + <zorder>configButton_5</zorder> | |
| 873 | + <zorder>configCurrentLabel_5</zorder> | |
| 874 | + <zorder>configMinLabel_5</zorder> | |
| 875 | + <zorder>configSlider_5</zorder> | |
| 876 | + <zorder>animation</zorder> | |
| 877 | + </widget> | |
| 878 | + </widget> | |
| 879 | + <customwidgets> | |
| 880 | + <customwidget> | |
| 881 | + <class>Clock</class> | |
| 882 | + <extends>QWidget</extends> | |
| 883 | + <header>clock.h</header> | |
| 884 | + <container>1</container> | |
| 885 | + </customwidget> | |
| 886 | + <customwidget> | |
| 887 | + <class>AnimatedImageBox</class> | |
| 888 | + <extends>QLabel</extends> | |
| 889 | + <header>animatedimagebox.h</header> | |
| 890 | + </customwidget> | |
| 891 | + </customwidgets> | |
| 892 | + <resources> | |
| 893 | + <include location="resources.qrc"/> | |
| 894 | + </resources> | |
| 895 | + <connections/> | |
| 896 | +</ui> | ... | ... |
app/gui/oven_control/washwindow.ui.autosave
| ... | ... | @@ -0,0 +1,902 @@ |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<ui version="4.0"> | |
| 3 | + <class>WashWindow</class> | |
| 4 | + <widget class="QMainWindow" name="WashWindow"> | |
| 5 | + <property name="geometry"> | |
| 6 | + <rect> | |
| 7 | + <x>0</x> | |
| 8 | + <y>0</y> | |
| 9 | + <width>900</width> | |
| 10 | + <height>1600</height> | |
| 11 | + </rect> | |
| 12 | + </property> | |
| 13 | + <property name="windowTitle"> | |
| 14 | + <string>MainWindow</string> | |
| 15 | + </property> | |
| 16 | + <property name="styleSheet"> | |
| 17 | + <string notr="true">#centralwidget { | |
| 18 | +background-image: url(:/images/images/auto/ba_ground_a01.png); | |
| 19 | +} | |
| 20 | + | |
| 21 | +QSlider::groove { | |
| 22 | +background-image: url(:/images/images/auto/gau_04.png); | |
| 23 | +background-repeat: no-repeat; | |
| 24 | +background-position: center; | |
| 25 | +} | |
| 26 | + | |
| 27 | +QSlider::sub-page { | |
| 28 | +background-repeat: no-repeat; | |
| 29 | +background-position: left center; | |
| 30 | +margin: 0px 5px; | |
| 31 | +} | |
| 32 | + | |
| 33 | +QSlider[sliderColor="red"]::sub-page { | |
| 34 | +background-image: url(:/images/images/auto/gau_05.png); | |
| 35 | +} | |
| 36 | + | |
| 37 | +QSlider[sliderColor="yellow"]::sub-page { | |
| 38 | +background-image: url(:/images/images/auto/gau_06.png); | |
| 39 | +} | |
| 40 | + | |
| 41 | +QSlider[sliderColor="white"]::sub-page { | |
| 42 | +background-image: url(:/images/images/auto/gau_07.png); | |
| 43 | +} | |
| 44 | + | |
| 45 | +QSlider[sliderColor="blue"]::sub-page { | |
| 46 | +background-image: url(:/images/images/auto/gau_09.png); | |
| 47 | +} | |
| 48 | + | |
| 49 | +QSlider[sliderColor="green"]::sub-page { | |
| 50 | +background-image: url(:/images/images/auto/sys_icon_01_gau.png); | |
| 51 | +} | |
| 52 | + | |
| 53 | +QSlider::handle { | |
| 54 | +background-image: url(:/images/images/manual/graphe_BTN_Bigsize.png); | |
| 55 | +background-repeat: no-repeat; | |
| 56 | +background-position: center; | |
| 57 | +width: 23px; | |
| 58 | +height: 33px; | |
| 59 | +} | |
| 60 | + | |
| 61 | +QPushButton[style="type"] { | |
| 62 | +background-repeat: no-repeat; | |
| 63 | +background-position: center; | |
| 64 | +background-clip: border; | |
| 65 | +background-origin: border; | |
| 66 | +margin-bottom: 50px; | |
| 67 | + | |
| 68 | +border-top: 140px; | |
| 69 | +border-bottom: -50px; | |
| 70 | +border-style: hidden; | |
| 71 | +color: white; | |
| 72 | +font-size: 25px; | |
| 73 | +}</string> | |
| 74 | + </property> | |
| 75 | + <widget class="QWidget" name="centralwidget"> | |
| 76 | + <widget class="QStackedWidget" name="upperStack"> | |
| 77 | + <property name="geometry"> | |
| 78 | + <rect> | |
| 79 | + <x>0</x> | |
| 80 | + <y>0</y> | |
| 81 | + <width>900</width> | |
| 82 | + <height>426</height> | |
| 83 | + </rect> | |
| 84 | + </property> | |
| 85 | + <widget class="QWidget" name="clockContainer"> | |
| 86 | + <property name="styleSheet"> | |
| 87 | + <string notr="true">QWidget#clockContainer { | |
| 88 | +background-image: url(:/images/images/config/001_01_background_time.png); | |
| 89 | +}</string> | |
| 90 | + </property> | |
| 91 | + <widget class="Clock" name="clock" native="true"> | |
| 92 | + <property name="geometry"> | |
| 93 | + <rect> | |
| 94 | + <x>272</x> | |
| 95 | + <y>36</y> | |
| 96 | + <width>356</width> | |
| 97 | + <height>355</height> | |
| 98 | + </rect> | |
| 99 | + </property> | |
| 100 | + </widget> | |
| 101 | + </widget> | |
| 102 | + <widget class="QWidget" name="progressContainer"> | |
| 103 | + <property name="styleSheet"> | |
| 104 | + <string notr="true">QWidget#progressContainer { | |
| 105 | +background-image: url(:/images/images/config/001_01_background_time.png); | |
| 106 | +}</string> | |
| 107 | + </property> | |
| 108 | + </widget> | |
| 109 | + </widget> | |
| 110 | + <widget class="QLabel" name="label"> | |
| 111 | + <property name="geometry"> | |
| 112 | + <rect> | |
| 113 | + <x>0</x> | |
| 114 | + <y>1197</y> | |
| 115 | + <width>900</width> | |
| 116 | + <height>33</height> | |
| 117 | + </rect> | |
| 118 | + </property> | |
| 119 | + <property name="text"> | |
| 120 | + <string/> | |
| 121 | + </property> | |
| 122 | + <property name="pixmap"> | |
| 123 | + <pixmap resource="resources.qrc">:/images/images/auto/ba_ground_a02.png</pixmap> | |
| 124 | + </property> | |
| 125 | + </widget> | |
| 126 | + <widget class="QWidget" name="bottomBar" native="true"> | |
| 127 | + <property name="geometry"> | |
| 128 | + <rect> | |
| 129 | + <x>0</x> | |
| 130 | + <y>1450</y> | |
| 131 | + <width>900</width> | |
| 132 | + <height>150</height> | |
| 133 | + </rect> | |
| 134 | + </property> | |
| 135 | + <property name="styleSheet"> | |
| 136 | + <string notr="true">QWidget#bottomBar { | |
| 137 | +background-image: url(:/images/images/config_service/001_01_background_under_down.png); | |
| 138 | +}</string> | |
| 139 | + </property> | |
| 140 | + <widget class="QPushButton" name="backButton"> | |
| 141 | + <property name="geometry"> | |
| 142 | + <rect> | |
| 143 | + <x>288</x> | |
| 144 | + <y>26</y> | |
| 145 | + <width>97</width> | |
| 146 | + <height>97</height> | |
| 147 | + </rect> | |
| 148 | + </property> | |
| 149 | + <property name="sizePolicy"> | |
| 150 | + <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> | |
| 151 | + <horstretch>0</horstretch> | |
| 152 | + <verstretch>0</verstretch> | |
| 153 | + </sizepolicy> | |
| 154 | + </property> | |
| 155 | + <property name="styleSheet"> | |
| 156 | + <string notr="true">QPushButton { border-image: url(:/images/images/auto/006_sys_icon_03.png); } | |
| 157 | +QPushButton:pressed { border-image: url(:/images/images/auto/006_sys_icon_03_ov.png); }</string> | |
| 158 | + </property> | |
| 159 | + <property name="text"> | |
| 160 | + <string/> | |
| 161 | + </property> | |
| 162 | + </widget> | |
| 163 | + <widget class="QPushButton" name="backButton_2"> | |
| 164 | + <property name="geometry"> | |
| 165 | + <rect> | |
| 166 | + <x>401</x> | |
| 167 | + <y>26</y> | |
| 168 | + <width>97</width> | |
| 169 | + <height>97</height> | |
| 170 | + </rect> | |
| 171 | + </property> | |
| 172 | + <property name="sizePolicy"> | |
| 173 | + <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> | |
| 174 | + <horstretch>0</horstretch> | |
| 175 | + <verstretch>0</verstretch> | |
| 176 | + </sizepolicy> | |
| 177 | + </property> | |
| 178 | + <property name="styleSheet"> | |
| 179 | + <string notr="true">QPushButton { border-image: url(:/images/images/auto/006_sys_icon_01.png); } | |
| 180 | +QPushButton:pressed { border-image: url(:/images/images/auto/006_sys_icon_01_ov.png); }</string> | |
| 181 | + </property> | |
| 182 | + <property name="text"> | |
| 183 | + <string/> | |
| 184 | + </property> | |
| 185 | + </widget> | |
| 186 | + <widget class="QPushButton" name="backButton_4"> | |
| 187 | + <property name="geometry"> | |
| 188 | + <rect> | |
| 189 | + <x>514</x> | |
| 190 | + <y>26</y> | |
| 191 | + <width>97</width> | |
| 192 | + <height>97</height> | |
| 193 | + </rect> | |
| 194 | + </property> | |
| 195 | + <property name="sizePolicy"> | |
| 196 | + <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> | |
| 197 | + <horstretch>0</horstretch> | |
| 198 | + <verstretch>0</verstretch> | |
| 199 | + </sizepolicy> | |
| 200 | + </property> | |
| 201 | + <property name="styleSheet"> | |
| 202 | + <string notr="true">QPushButton { border-image: url(:/images/images/auto/006_sys_icon_02.png); } | |
| 203 | +QPushButton:pressed { border-image: url(:/images/images/auto/006_sys_icon_02_ov.png); }</string> | |
| 204 | + </property> | |
| 205 | + <property name="text"> | |
| 206 | + <string/> | |
| 207 | + </property> | |
| 208 | + </widget> | |
| 209 | + </widget> | |
| 210 | + <widget class="QPushButton" name="pushButton"> | |
| 211 | + <property name="geometry"> | |
| 212 | + <rect> | |
| 213 | + <x>0</x> | |
| 214 | + <y>1230</y> | |
| 215 | + <width>180</width> | |
| 216 | + <height>220</height> | |
| 217 | + </rect> | |
| 218 | + </property> | |
| 219 | + <property name="styleSheet"> | |
| 220 | + <string notr="true">QPushButton | |
| 221 | +{ | |
| 222 | +background-image: url(:/images/images/auto/option_btn_wash_01.png); | |
| 223 | +} | |
| 224 | + | |
| 225 | +QPushButton::pressed | |
| 226 | +{ | |
| 227 | +background-image: url(:/images/images/auto/option_btn_wash_01_ov.png); | |
| 228 | +}</string> | |
| 229 | + </property> | |
| 230 | + <property name="text"> | |
| 231 | + <string>세제 없이 헹굼</string> | |
| 232 | + </property> | |
| 233 | + <property name="style" stdset="0"> | |
| 234 | + <string>type</string> | |
| 235 | + </property> | |
| 236 | + </widget> | |
| 237 | + <widget class="QPushButton" name="pushButton_2"> | |
| 238 | + <property name="geometry"> | |
| 239 | + <rect> | |
| 240 | + <x>180</x> | |
| 241 | + <y>1230</y> | |
| 242 | + <width>180</width> | |
| 243 | + <height>220</height> | |
| 244 | + </rect> | |
| 245 | + </property> | |
| 246 | + <property name="styleSheet"> | |
| 247 | + <string notr="true">QPushButton | |
| 248 | +{ | |
| 249 | +background-image: url(:/images/images/auto/option_btn_wash_02.png); | |
| 250 | +} | |
| 251 | + | |
| 252 | +QPushButton::pressed | |
| 253 | +{ | |
| 254 | +background-image: url(:/images/images/auto/option_btn_wash_02_ov.png); | |
| 255 | +}</string> | |
| 256 | + </property> | |
| 257 | + <property name="text"> | |
| 258 | + <string>간이 세척</string> | |
| 259 | + </property> | |
| 260 | + <property name="style" stdset="0"> | |
| 261 | + <string>type</string> | |
| 262 | + </property> | |
| 263 | + </widget> | |
| 264 | + <widget class="QPushButton" name="pushButton_3"> | |
| 265 | + <property name="geometry"> | |
| 266 | + <rect> | |
| 267 | + <x>360</x> | |
| 268 | + <y>1230</y> | |
| 269 | + <width>180</width> | |
| 270 | + <height>220</height> | |
| 271 | + </rect> | |
| 272 | + </property> | |
| 273 | + <property name="styleSheet"> | |
| 274 | + <string notr="true">QPushButton | |
| 275 | +{ | |
| 276 | +background-image: url(:/images/images/auto/option_btn_wash_03.png); | |
| 277 | +} | |
| 278 | + | |
| 279 | +QPushButton::pressed | |
| 280 | +{ | |
| 281 | +background-image: url(:/images/images/auto/option_btn_wash_03_ov.png); | |
| 282 | +}</string> | |
| 283 | + </property> | |
| 284 | + <property name="text"> | |
| 285 | + <string>표준 세척</string> | |
| 286 | + </property> | |
| 287 | + <property name="style" stdset="0"> | |
| 288 | + <string>type</string> | |
| 289 | + </property> | |
| 290 | + </widget> | |
| 291 | + <widget class="QPushButton" name="pushButton_4"> | |
| 292 | + <property name="geometry"> | |
| 293 | + <rect> | |
| 294 | + <x>540</x> | |
| 295 | + <y>1230</y> | |
| 296 | + <width>180</width> | |
| 297 | + <height>220</height> | |
| 298 | + </rect> | |
| 299 | + </property> | |
| 300 | + <property name="styleSheet"> | |
| 301 | + <string notr="true">QPushButton | |
| 302 | +{ | |
| 303 | +background-image: url(:/images/images/auto/option_btn_wash_04.png); | |
| 304 | +} | |
| 305 | + | |
| 306 | +QPushButton::pressed | |
| 307 | +{ | |
| 308 | +background-image: url(:/images/images/auto/option_btn_wash_04_ov.png); | |
| 309 | +}</string> | |
| 310 | + </property> | |
| 311 | + <property name="text"> | |
| 312 | + <string>강 세척</string> | |
| 313 | + </property> | |
| 314 | + <property name="style" stdset="0"> | |
| 315 | + <string>type</string> | |
| 316 | + </property> | |
| 317 | + </widget> | |
| 318 | + <widget class="QPushButton" name="pushButton_5"> | |
| 319 | + <property name="geometry"> | |
| 320 | + <rect> | |
| 321 | + <x>720</x> | |
| 322 | + <y>1230</y> | |
| 323 | + <width>180</width> | |
| 324 | + <height>220</height> | |
| 325 | + </rect> | |
| 326 | + </property> | |
| 327 | + <property name="styleSheet"> | |
| 328 | + <string notr="true">QPushButton | |
| 329 | +{ | |
| 330 | +background-image: url(:/images/images/auto/option_btn_wash_05.png); | |
| 331 | +} | |
| 332 | + | |
| 333 | +QPushButton::pressed | |
| 334 | +{ | |
| 335 | +background-image: url(:/images/images/auto/option_btn_wash_05_ov.png); | |
| 336 | +}</string> | |
| 337 | + </property> | |
| 338 | + <property name="text"> | |
| 339 | + <string>고속 세척</string> | |
| 340 | + </property> | |
| 341 | + <property name="style" stdset="0"> | |
| 342 | + <string>type</string> | |
| 343 | + </property> | |
| 344 | + </widget> | |
| 345 | + <widget class="QLabel" name="configMaxLabel_4"> | |
| 346 | + <property name="enabled"> | |
| 347 | + <bool>true</bool> | |
| 348 | + </property> | |
| 349 | + <property name="geometry"> | |
| 350 | + <rect> | |
| 351 | + <x>700</x> | |
| 352 | + <y>927</y> | |
| 353 | + <width>151</width> | |
| 354 | + <height>51</height> | |
| 355 | + </rect> | |
| 356 | + </property> | |
| 357 | + <property name="palette"> | |
| 358 | + <palette> | |
| 359 | + <active> | |
| 360 | + <colorrole role="WindowText"> | |
| 361 | + <brush brushstyle="SolidPattern"> | |
| 362 | + <color alpha="255"> | |
| 363 | + <red>255</red> | |
| 364 | + <green>255</green> | |
| 365 | + <blue>255</blue> | |
| 366 | + </color> | |
| 367 | + </brush> | |
| 368 | + </colorrole> | |
| 369 | + </active> | |
| 370 | + <inactive> | |
| 371 | + <colorrole role="WindowText"> | |
| 372 | + <brush brushstyle="SolidPattern"> | |
| 373 | + <color alpha="255"> | |
| 374 | + <red>255</red> | |
| 375 | + <green>255</green> | |
| 376 | + <blue>255</blue> | |
| 377 | + </color> | |
| 378 | + </brush> | |
| 379 | + </colorrole> | |
| 380 | + </inactive> | |
| 381 | + <disabled> | |
| 382 | + <colorrole role="WindowText"> | |
| 383 | + <brush brushstyle="SolidPattern"> | |
| 384 | + <color alpha="255"> | |
| 385 | + <red>123</red> | |
| 386 | + <green>123</green> | |
| 387 | + <blue>123</blue> | |
| 388 | + </color> | |
| 389 | + </brush> | |
| 390 | + </colorrole> | |
| 391 | + </disabled> | |
| 392 | + </palette> | |
| 393 | + </property> | |
| 394 | + <property name="font"> | |
| 395 | + <font> | |
| 396 | + <family>Malgun Gothic</family> | |
| 397 | + <pointsize>9</pointsize> | |
| 398 | + </font> | |
| 399 | + </property> | |
| 400 | + <property name="text"> | |
| 401 | + <string>나쁨</string> | |
| 402 | + </property> | |
| 403 | + <property name="alignment"> | |
| 404 | + <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> | |
| 405 | + </property> | |
| 406 | + </widget> | |
| 407 | + <widget class="QPushButton" name="configButton_4"> | |
| 408 | + <property name="geometry"> | |
| 409 | + <rect> | |
| 410 | + <x>49</x> | |
| 411 | + <y>934</y> | |
| 412 | + <width>96</width> | |
| 413 | + <height>96</height> | |
| 414 | + </rect> | |
| 415 | + </property> | |
| 416 | + <property name="styleSheet"> | |
| 417 | + <string notr="true">QPushButton { | |
| 418 | + border-image: url(:/images/images/manual/011_icon_01.png); | |
| 419 | +} | |
| 420 | + | |
| 421 | +QPushButton:pressed { | |
| 422 | + border-image: url(:/images/images/manual/011_icon_01_ov.png); | |
| 423 | +} | |
| 424 | +</string> | |
| 425 | + </property> | |
| 426 | + <property name="text"> | |
| 427 | + <string/> | |
| 428 | + </property> | |
| 429 | + </widget> | |
| 430 | + <widget class="QLabel" name="configCurrentLabel_4"> | |
| 431 | + <property name="enabled"> | |
| 432 | + <bool>true</bool> | |
| 433 | + </property> | |
| 434 | + <property name="geometry"> | |
| 435 | + <rect> | |
| 436 | + <x>185</x> | |
| 437 | + <y>997</y> | |
| 438 | + <width>641</width> | |
| 439 | + <height>51</height> | |
| 440 | + </rect> | |
| 441 | + </property> | |
| 442 | + <property name="palette"> | |
| 443 | + <palette> | |
| 444 | + <active> | |
| 445 | + <colorrole role="WindowText"> | |
| 446 | + <brush brushstyle="SolidPattern"> | |
| 447 | + <color alpha="255"> | |
| 448 | + <red>255</red> | |
| 449 | + <green>255</green> | |
| 450 | + <blue>255</blue> | |
| 451 | + </color> | |
| 452 | + </brush> | |
| 453 | + </colorrole> | |
| 454 | + </active> | |
| 455 | + <inactive> | |
| 456 | + <colorrole role="WindowText"> | |
| 457 | + <brush brushstyle="SolidPattern"> | |
| 458 | + <color alpha="255"> | |
| 459 | + <red>255</red> | |
| 460 | + <green>255</green> | |
| 461 | + <blue>255</blue> | |
| 462 | + </color> | |
| 463 | + </brush> | |
| 464 | + </colorrole> | |
| 465 | + </inactive> | |
| 466 | + <disabled> | |
| 467 | + <colorrole role="WindowText"> | |
| 468 | + <brush brushstyle="SolidPattern"> | |
| 469 | + <color alpha="255"> | |
| 470 | + <red>123</red> | |
| 471 | + <green>123</green> | |
| 472 | + <blue>123</blue> | |
| 473 | + </color> | |
| 474 | + </brush> | |
| 475 | + </colorrole> | |
| 476 | + </disabled> | |
| 477 | + </palette> | |
| 478 | + </property> | |
| 479 | + <property name="font"> | |
| 480 | + <font> | |
| 481 | + <family>Roboto</family> | |
| 482 | + <pointsize>13</pointsize> | |
| 483 | + <weight>75</weight> | |
| 484 | + <bold>true</bold> | |
| 485 | + </font> | |
| 486 | + </property> | |
| 487 | + <property name="text"> | |
| 488 | + <string>유지/관리</string> | |
| 489 | + </property> | |
| 490 | + <property name="alignment"> | |
| 491 | + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> | |
| 492 | + </property> | |
| 493 | + </widget> | |
| 494 | + <widget class="QLabel" name="configMinLabel_4"> | |
| 495 | + <property name="enabled"> | |
| 496 | + <bool>true</bool> | |
| 497 | + </property> | |
| 498 | + <property name="geometry"> | |
| 499 | + <rect> | |
| 500 | + <x>185</x> | |
| 501 | + <y>927</y> | |
| 502 | + <width>151</width> | |
| 503 | + <height>51</height> | |
| 504 | + </rect> | |
| 505 | + </property> | |
| 506 | + <property name="palette"> | |
| 507 | + <palette> | |
| 508 | + <active> | |
| 509 | + <colorrole role="WindowText"> | |
| 510 | + <brush brushstyle="SolidPattern"> | |
| 511 | + <color alpha="255"> | |
| 512 | + <red>255</red> | |
| 513 | + <green>255</green> | |
| 514 | + <blue>255</blue> | |
| 515 | + </color> | |
| 516 | + </brush> | |
| 517 | + </colorrole> | |
| 518 | + </active> | |
| 519 | + <inactive> | |
| 520 | + <colorrole role="WindowText"> | |
| 521 | + <brush brushstyle="SolidPattern"> | |
| 522 | + <color alpha="255"> | |
| 523 | + <red>255</red> | |
| 524 | + <green>255</green> | |
| 525 | + <blue>255</blue> | |
| 526 | + </color> | |
| 527 | + </brush> | |
| 528 | + </colorrole> | |
| 529 | + </inactive> | |
| 530 | + <disabled> | |
| 531 | + <colorrole role="WindowText"> | |
| 532 | + <brush brushstyle="SolidPattern"> | |
| 533 | + <color alpha="255"> | |
| 534 | + <red>123</red> | |
| 535 | + <green>123</green> | |
| 536 | + <blue>123</blue> | |
| 537 | + </color> | |
| 538 | + </brush> | |
| 539 | + </colorrole> | |
| 540 | + </disabled> | |
| 541 | + </palette> | |
| 542 | + </property> | |
| 543 | + <property name="font"> | |
| 544 | + <font> | |
| 545 | + <family>Malgun Gothic</family> | |
| 546 | + <pointsize>9</pointsize> | |
| 547 | + </font> | |
| 548 | + </property> | |
| 549 | + <property name="text"> | |
| 550 | + <string>좋음</string> | |
| 551 | + </property> | |
| 552 | + <property name="alignment"> | |
| 553 | + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> | |
| 554 | + </property> | |
| 555 | + </widget> | |
| 556 | + <widget class="QWidget" name="configBlock_4" native="true"> | |
| 557 | + <property name="geometry"> | |
| 558 | + <rect> | |
| 559 | + <x>27</x> | |
| 560 | + <y>912</y> | |
| 561 | + <width>140</width> | |
| 562 | + <height>140</height> | |
| 563 | + </rect> | |
| 564 | + </property> | |
| 565 | + <property name="styleSheet"> | |
| 566 | + <string notr="true">background-image: url(:/images/images/manual/010_icon_block.png);</string> | |
| 567 | + </property> | |
| 568 | + </widget> | |
| 569 | + <widget class="QSlider" name="configSlider_4"> | |
| 570 | + <property name="geometry"> | |
| 571 | + <rect> | |
| 572 | + <x>185</x> | |
| 573 | + <y>970</y> | |
| 574 | + <width>666</width> | |
| 575 | + <height>33</height> | |
| 576 | + </rect> | |
| 577 | + </property> | |
| 578 | + <property name="maximum"> | |
| 579 | + <number>100</number> | |
| 580 | + </property> | |
| 581 | + <property name="pageStep"> | |
| 582 | + <number>1</number> | |
| 583 | + </property> | |
| 584 | + <property name="value"> | |
| 585 | + <number>0</number> | |
| 586 | + </property> | |
| 587 | + <property name="tracking"> | |
| 588 | + <bool>true</bool> | |
| 589 | + </property> | |
| 590 | + <property name="orientation"> | |
| 591 | + <enum>Qt::Horizontal</enum> | |
| 592 | + </property> | |
| 593 | + <property name="sliderColor" stdset="0"> | |
| 594 | + <string>blue</string> | |
| 595 | + </property> | |
| 596 | + </widget> | |
| 597 | + <widget class="QLabel" name="configMaxLabel_5"> | |
| 598 | + <property name="enabled"> | |
| 599 | + <bool>true</bool> | |
| 600 | + </property> | |
| 601 | + <property name="geometry"> | |
| 602 | + <rect> | |
| 603 | + <x>700</x> | |
| 604 | + <y>1077</y> | |
| 605 | + <width>151</width> | |
| 606 | + <height>51</height> | |
| 607 | + </rect> | |
| 608 | + </property> | |
| 609 | + <property name="palette"> | |
| 610 | + <palette> | |
| 611 | + <active> | |
| 612 | + <colorrole role="WindowText"> | |
| 613 | + <brush brushstyle="SolidPattern"> | |
| 614 | + <color alpha="255"> | |
| 615 | + <red>255</red> | |
| 616 | + <green>255</green> | |
| 617 | + <blue>255</blue> | |
| 618 | + </color> | |
| 619 | + </brush> | |
| 620 | + </colorrole> | |
| 621 | + </active> | |
| 622 | + <inactive> | |
| 623 | + <colorrole role="WindowText"> | |
| 624 | + <brush brushstyle="SolidPattern"> | |
| 625 | + <color alpha="255"> | |
| 626 | + <red>255</red> | |
| 627 | + <green>255</green> | |
| 628 | + <blue>255</blue> | |
| 629 | + </color> | |
| 630 | + </brush> | |
| 631 | + </colorrole> | |
| 632 | + </inactive> | |
| 633 | + <disabled> | |
| 634 | + <colorrole role="WindowText"> | |
| 635 | + <brush brushstyle="SolidPattern"> | |
| 636 | + <color alpha="255"> | |
| 637 | + <red>123</red> | |
| 638 | + <green>123</green> | |
| 639 | + <blue>123</blue> | |
| 640 | + </color> | |
| 641 | + </brush> | |
| 642 | + </colorrole> | |
| 643 | + </disabled> | |
| 644 | + </palette> | |
| 645 | + </property> | |
| 646 | + <property name="font"> | |
| 647 | + <font> | |
| 648 | + <family>Malgun Gothic</family> | |
| 649 | + <pointsize>9</pointsize> | |
| 650 | + </font> | |
| 651 | + </property> | |
| 652 | + <property name="text"> | |
| 653 | + <string>더러움</string> | |
| 654 | + </property> | |
| 655 | + <property name="alignment"> | |
| 656 | + <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> | |
| 657 | + </property> | |
| 658 | + </widget> | |
| 659 | + <widget class="QPushButton" name="configButton_5"> | |
| 660 | + <property name="geometry"> | |
| 661 | + <rect> | |
| 662 | + <x>49</x> | |
| 663 | + <y>1084</y> | |
| 664 | + <width>96</width> | |
| 665 | + <height>96</height> | |
| 666 | + </rect> | |
| 667 | + </property> | |
| 668 | + <property name="styleSheet"> | |
| 669 | + <string notr="true">QPushButton { | |
| 670 | + border-image: url(:/images/images/manual/011_icon_01.png); | |
| 671 | +} | |
| 672 | + | |
| 673 | +QPushButton:pressed { | |
| 674 | + border-image: url(:/images/images/manual/011_icon_01_ov.png); | |
| 675 | +} | |
| 676 | +</string> | |
| 677 | + </property> | |
| 678 | + <property name="text"> | |
| 679 | + <string/> | |
| 680 | + </property> | |
| 681 | + </widget> | |
| 682 | + <widget class="QLabel" name="configCurrentLabel_5"> | |
| 683 | + <property name="enabled"> | |
| 684 | + <bool>true</bool> | |
| 685 | + </property> | |
| 686 | + <property name="geometry"> | |
| 687 | + <rect> | |
| 688 | + <x>185</x> | |
| 689 | + <y>1147</y> | |
| 690 | + <width>641</width> | |
| 691 | + <height>51</height> | |
| 692 | + </rect> | |
| 693 | + </property> | |
| 694 | + <property name="palette"> | |
| 695 | + <palette> | |
| 696 | + <active> | |
| 697 | + <colorrole role="WindowText"> | |
| 698 | + <brush brushstyle="SolidPattern"> | |
| 699 | + <color alpha="255"> | |
| 700 | + <red>255</red> | |
| 701 | + <green>255</green> | |
| 702 | + <blue>255</blue> | |
| 703 | + </color> | |
| 704 | + </brush> | |
| 705 | + </colorrole> | |
| 706 | + </active> | |
| 707 | + <inactive> | |
| 708 | + <colorrole role="WindowText"> | |
| 709 | + <brush brushstyle="SolidPattern"> | |
| 710 | + <color alpha="255"> | |
| 711 | + <red>255</red> | |
| 712 | + <green>255</green> | |
| 713 | + <blue>255</blue> | |
| 714 | + </color> | |
| 715 | + </brush> | |
| 716 | + </colorrole> | |
| 717 | + </inactive> | |
| 718 | + <disabled> | |
| 719 | + <colorrole role="WindowText"> | |
| 720 | + <brush brushstyle="SolidPattern"> | |
| 721 | + <color alpha="255"> | |
| 722 | + <red>123</red> | |
| 723 | + <green>123</green> | |
| 724 | + <blue>123</blue> | |
| 725 | + </color> | |
| 726 | + </brush> | |
| 727 | + </colorrole> | |
| 728 | + </disabled> | |
| 729 | + </palette> | |
| 730 | + </property> | |
| 731 | + <property name="font"> | |
| 732 | + <font> | |
| 733 | + <family>Roboto</family> | |
| 734 | + <pointsize>13</pointsize> | |
| 735 | + <weight>75</weight> | |
| 736 | + <bold>true</bold> | |
| 737 | + </font> | |
| 738 | + </property> | |
| 739 | + <property name="text"> | |
| 740 | + <string>청결상태</string> | |
| 741 | + </property> | |
| 742 | + <property name="alignment"> | |
| 743 | + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> | |
| 744 | + </property> | |
| 745 | + </widget> | |
| 746 | + <widget class="QLabel" name="configMinLabel_5"> | |
| 747 | + <property name="enabled"> | |
| 748 | + <bool>true</bool> | |
| 749 | + </property> | |
| 750 | + <property name="geometry"> | |
| 751 | + <rect> | |
| 752 | + <x>185</x> | |
| 753 | + <y>1077</y> | |
| 754 | + <width>151</width> | |
| 755 | + <height>51</height> | |
| 756 | + </rect> | |
| 757 | + </property> | |
| 758 | + <property name="palette"> | |
| 759 | + <palette> | |
| 760 | + <active> | |
| 761 | + <colorrole role="WindowText"> | |
| 762 | + <brush brushstyle="SolidPattern"> | |
| 763 | + <color alpha="255"> | |
| 764 | + <red>255</red> | |
| 765 | + <green>255</green> | |
| 766 | + <blue>255</blue> | |
| 767 | + </color> | |
| 768 | + </brush> | |
| 769 | + </colorrole> | |
| 770 | + </active> | |
| 771 | + <inactive> | |
| 772 | + <colorrole role="WindowText"> | |
| 773 | + <brush brushstyle="SolidPattern"> | |
| 774 | + <color alpha="255"> | |
| 775 | + <red>255</red> | |
| 776 | + <green>255</green> | |
| 777 | + <blue>255</blue> | |
| 778 | + </color> | |
| 779 | + </brush> | |
| 780 | + </colorrole> | |
| 781 | + </inactive> | |
| 782 | + <disabled> | |
| 783 | + <colorrole role="WindowText"> | |
| 784 | + <brush brushstyle="SolidPattern"> | |
| 785 | + <color alpha="255"> | |
| 786 | + <red>123</red> | |
| 787 | + <green>123</green> | |
| 788 | + <blue>123</blue> | |
| 789 | + </color> | |
| 790 | + </brush> | |
| 791 | + </colorrole> | |
| 792 | + </disabled> | |
| 793 | + </palette> | |
| 794 | + </property> | |
| 795 | + <property name="font"> | |
| 796 | + <font> | |
| 797 | + <family>Malgun Gothic</family> | |
| 798 | + <pointsize>9</pointsize> | |
| 799 | + </font> | |
| 800 | + </property> | |
| 801 | + <property name="text"> | |
| 802 | + <string>깨끗함</string> | |
| 803 | + </property> | |
| 804 | + <property name="alignment"> | |
| 805 | + <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> | |
| 806 | + </property> | |
| 807 | + </widget> | |
| 808 | + <widget class="QWidget" name="configBlock_5" native="true"> | |
| 809 | + <property name="geometry"> | |
| 810 | + <rect> | |
| 811 | + <x>27</x> | |
| 812 | + <y>1062</y> | |
| 813 | + <width>140</width> | |
| 814 | + <height>140</height> | |
| 815 | + </rect> | |
| 816 | + </property> | |
| 817 | + <property name="styleSheet"> | |
| 818 | + <string notr="true">background-image: url(:/images/images/manual/010_icon_block.png);</string> | |
| 819 | + </property> | |
| 820 | + </widget> | |
| 821 | + <widget class="QSlider" name="configSlider_5"> | |
| 822 | + <property name="geometry"> | |
| 823 | + <rect> | |
| 824 | + <x>185</x> | |
| 825 | + <y>1120</y> | |
| 826 | + <width>666</width> | |
| 827 | + <height>33</height> | |
| 828 | + </rect> | |
| 829 | + </property> | |
| 830 | + <property name="maximum"> | |
| 831 | + <number>100</number> | |
| 832 | + </property> | |
| 833 | + <property name="pageStep"> | |
| 834 | + <number>1</number> | |
| 835 | + </property> | |
| 836 | + <property name="value"> | |
| 837 | + <number>0</number> | |
| 838 | + </property> | |
| 839 | + <property name="tracking"> | |
| 840 | + <bool>true</bool> | |
| 841 | + </property> | |
| 842 | + <property name="orientation"> | |
| 843 | + <enum>Qt::Horizontal</enum> | |
| 844 | + </property> | |
| 845 | + <property name="sliderColor" stdset="0"> | |
| 846 | + <string>blue</string> | |
| 847 | + </property> | |
| 848 | + </widget> | |
| 849 | + <widget class="AnimatedImageBox" name="animation"> | |
| 850 | + <property name="geometry"> | |
| 851 | + <rect> | |
| 852 | + <x>340</x> | |
| 853 | + <y>460</y> | |
| 854 | + <width>255</width> | |
| 855 | + <height>427</height> | |
| 856 | + </rect> | |
| 857 | + </property> | |
| 858 | + <property name="text"> | |
| 859 | + <string/> | |
| 860 | + </property> | |
| 861 | + </widget> | |
| 862 | + <zorder>configBlock_5</zorder> | |
| 863 | + <zorder>configBlock_4</zorder> | |
| 864 | + <zorder>upperStack</zorder> | |
| 865 | + <zorder>label</zorder> | |
| 866 | + <zorder>bottomBar</zorder> | |
| 867 | + <zorder>pushButton</zorder> | |
| 868 | + <zorder>pushButton_2</zorder> | |
| 869 | + <zorder>pushButton_3</zorder> | |
| 870 | + <zorder>pushButton_4</zorder> | |
| 871 | + <zorder>pushButton_5</zorder> | |
| 872 | + <zorder>configMaxLabel_4</zorder> | |
| 873 | + <zorder>configButton_4</zorder> | |
| 874 | + <zorder>configCurrentLabel_4</zorder> | |
| 875 | + <zorder>configMinLabel_4</zorder> | |
| 876 | + <zorder>configSlider_4</zorder> | |
| 877 | + <zorder>configMaxLabel_5</zorder> | |
| 878 | + <zorder>configButton_5</zorder> | |
| 879 | + <zorder>configCurrentLabel_5</zorder> | |
| 880 | + <zorder>configMinLabel_5</zorder> | |
| 881 | + <zorder>configSlider_5</zorder> | |
| 882 | + <zorder>animation</zorder> | |
| 883 | + </widget> | |
| 884 | + </widget> | |
| 885 | + <customwidgets> | |
| 886 | + <customwidget> | |
| 887 | + <class>Clock</class> | |
| 888 | + <extends>QWidget</extends> | |
| 889 | + <header>clock.h</header> | |
| 890 | + <container>1</container> | |
| 891 | + </customwidget> | |
| 892 | + <customwidget> | |
| 893 | + <class>AnimatedImageBox</class> | |
| 894 | + <extends>QLabel</extends> | |
| 895 | + <header>animatedimagebox.h</header> | |
| 896 | + </customwidget> | |
| 897 | + </customwidgets> | |
| 898 | + <resources> | |
| 899 | + <include location="resources.qrc"/> | |
| 900 | + </resources> | |
| 901 | + <connections/> | |
| 902 | +</ui> | ... | ... |