5a38a241e
김태훈
환경 설정 뼈대 추가
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ConfigPanelButton</class>
<widget class="QWidget" name="ConfigPanelButton">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>821</width>
<height>65</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>821</width>
<height>65</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>821</width>
<height>65</height>
</size>
</property>
|
5a38a241e
김태훈
환경 설정 뼈대 추가
|
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
|
<property name="styleSheet">
<string notr="true">QPushButton {
background-position: center;
background-repeat: no-repeat;
border: none;
}</string>
</property>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>821</width>
<height>65</height>
</rect>
</property>
<property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>821</width>
<height>65</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>821</width>
<height>65</height>
</size>
</property>
<property name="font">
<font>
<family>Roboto</family>
<pointsize>11</pointsize>
</font>
</property>
<property name="styleSheet">
|
6139c8c79
김태훈
누락된 PNG 보충
|
66
67
68
|
<string notr="true">QPushButton { background-image: url(:/images/config/pannel_fav.png); }
QPushButton:pressed { background-image: url(:/images/config/pannel_fav_ov.png); }
QPushButton:focus { background-image: url(:/images/config/pannel_fav_ov.png); }</string>
|
5a38a241e
김태훈
환경 설정 뼈대 추가
|
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QPushButton" name="favoriteButton">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>77</width>
<height>65</height>
</rect>
</property>
<property name="focusPolicy">
|
80c5eb48b
고영탁
configwindow 엔코더 ...
|
84
|
<enum>Qt::TabFocus</enum>
|
5a38a241e
김태훈
환경 설정 뼈대 추가
|
85
86
|
</property>
<property name="styleSheet">
|
b7ae9e830
김태훈
엔코더 관련 디자인 변경 시범 적용
|
87
88
89
90
91
92
93
94
95
96
|
<string notr="true">QPushButton
{ background-image: url(:/images/config/088_fava_02.png); }
QPushButton:pressed,
QPushButton:focus
{ background-image: url(:/images/config/088_fava_01.png); }
QPushButton:checked
{ background-image: url(:/images/config/088_fava_01.png); }
QPushButton:checked:pressed,
QPushButton:checked:focus
{ background-image: url(:/images/config/088_fava_01.png); }</string>
|
5a38a241e
김태훈
환경 설정 뼈대 추가
|
97
98
99
100
|
</property>
<property name="text">
<string/>
</property>
|
81b55e046
고영탁
config pannel but...
|
101
102
103
|
<property name="checkable">
<bool>true</bool>
</property>
|
5a38a241e
김태훈
환경 설정 뼈대 추가
|
104
105
106
107
108
|
</widget>
</widget>
<resources/>
<connections/>
</ui>
|