Commit 390e12852fd959bbea4eb1a0a2a6c409cc50e528

Authored by 김태훈
1 parent dc9ba3d4b5
Exists in fhd

요리 종류 아이콘을 큰 아이콘으로 변경

- 요리 종류를 선택하는 화면은 변경 대상에서 제외
app/gui/oven_control/define.cpp
... ... @@ -160,19 +160,19 @@ QString Define::icon(Define::CookType type)
160 160 switch (type)
161 161 {
162 162 case Poultry:
163   - return ":/images/cook_type/poultry_ov.png";
  163 + return ":/images/cook_type/poultry_big.png";
164 164 case Meat:
165   - return ":/images/cook_type/meat_ov.png";
  165 + return ":/images/cook_type/meat_big.png";
166 166 case Fish:
167   - return ":/images/cook_type/fish_ov.png";
  167 + return ":/images/cook_type/fish_big.png";
168 168 case Desert:
169   - return ":/images/cook_type/desert_ov.png";
  169 + return ":/images/cook_type/desert_big.png";
170 170 case Vegetable:
171   - return ":/images/cook_type/vegetable_ov.png";
  171 + return ":/images/cook_type/vegetable_big.png";
172 172 case Bread:
173   - return ":/images/cook_type/bread_ov.png";
  173 + return ":/images/cook_type/bread_big.png";
174 174 case Etc:
175   - return ":/images/cook_type/etc_ov.png";
  175 + return ":/images/cook_type/etc_big.png";
176 176 default:
177 177 return "";
178 178 }
... ...
app/gui/oven_control/images/cook_type/additional_big.png

2.56 KB

app/gui/oven_control/images/cook_type/bread_big.png

3.12 KB

app/gui/oven_control/images/cook_type/desert_big.png

2.42 KB

app/gui/oven_control/images/cook_type/etc_big.png

2.77 KB

app/gui/oven_control/images/cook_type/fish_big.png

3.09 KB

app/gui/oven_control/images/cook_type/meat_big.png

2.92 KB

app/gui/oven_control/images/cook_type/poultry_big.png

3.25 KB

app/gui/oven_control/images/cook_type/vegetable_big.png

2.79 KB

app/gui/oven_control/resources.qrc
... ... @@ -637,5 +637,13 @@
637 637 <file>images/symbol/water_level_middle.png</file>
638 638 <file>images/symbol/water_level_low.png</file>
639 639 <file>images/symbol/main_logo_pssco.png</file>
  640 + <file>images/cook_type/additional_big.png</file>
  641 + <file>images/cook_type/bread_big.png</file>
  642 + <file>images/cook_type/desert_big.png</file>
  643 + <file>images/cook_type/etc_big.png</file>
  644 + <file>images/cook_type/fish_big.png</file>
  645 + <file>images/cook_type/meat_big.png</file>
  646 + <file>images/cook_type/poultry_big.png</file>
  647 + <file>images/cook_type/vegetable_big.png</file>
640 648 </qresource>
641 649 </RCC>
... ...