776411ce5
고영탁
설정 기능 5월 개발 범위 UI...
|
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>ConfigFavoriteButton</class>
<widget class="QWidget" name="ConfigFavoriteButton">
<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>
|
776411ce5
고영탁
설정 기능 5월 개발 범위 UI...
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
<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">
<string notr="true">QPushButton { background-image: url(:/images/config/pannel.png);
color : white;
text-align: left;
border : 20px;
padding-left : 20px;
}
QPushButton:pressed { background-image: url(:/images/config/pannel_ov.png); }
QPushButton:focus { background-image: url(:/images/config/pannel_ov.png); }</string>
</property>
<property name="text">
<string>test</string>
</property>
</widget>
<widget class="QPushButton" name="favoriteButton">
<property name="geometry">
<rect>
<x>650</x>
<y>0</y>
<width>77</width>
<height>65</height>
</rect>
</property>
<property name="focusPolicy">
<enum>Qt::NoFocus</enum>
</property>
<property name="styleSheet">
<string notr="true">QPushButton { background-image: url(:/images/config/100_fav_pannel_icon.png); }
|
9146b87b4
고영탁
엔코더 작업 진행중
|
93
|
QPushButton:checked, QPushButton:focus, QPushButton:pressed { background-image: url(:/images/config/100_fav_pannel_icon_ov.png); }</string>
|
776411ce5
고영탁
설정 기능 5월 개발 범위 UI...
|
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
</property>
<property name="text">
<string/>
</property>
<property name="checkable">
<bool>false</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
|