|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <ui version="4.0"> |
|
3 <class>SortOptionsDialog</class> |
|
4 <widget class="QDialog" name="SortOptionsDialog"> |
|
5 <property name="geometry"> |
|
6 <rect> |
|
7 <x>0</x> |
|
8 <y>0</y> |
|
9 <width>400</width> |
|
10 <height>209</height> |
|
11 </rect> |
|
12 </property> |
|
13 <property name="windowTitle"> |
|
14 <string>Sort Options</string> |
|
15 </property> |
|
16 <property name="sizeGripEnabled"> |
|
17 <bool>true</bool> |
|
18 </property> |
|
19 <layout class="QVBoxLayout" name="verticalLayout"> |
|
20 <item> |
|
21 <widget class="QGroupBox" name="directionGroupBox"> |
|
22 <property name="title"> |
|
23 <string>Direction</string> |
|
24 </property> |
|
25 <layout class="QHBoxLayout" name="horizontalLayout"> |
|
26 <item> |
|
27 <widget class="QRadioButton" name="ascendingButton"> |
|
28 <property name="toolTip"> |
|
29 <string>Select to sort in ascending order</string> |
|
30 </property> |
|
31 <property name="text"> |
|
32 <string>Ascending</string> |
|
33 </property> |
|
34 <property name="checked"> |
|
35 <bool>true</bool> |
|
36 </property> |
|
37 </widget> |
|
38 </item> |
|
39 <item> |
|
40 <widget class="QRadioButton" name="descendingButton"> |
|
41 <property name="toolTip"> |
|
42 <string>Select to sort in descending order</string> |
|
43 </property> |
|
44 <property name="text"> |
|
45 <string>Descending</string> |
|
46 </property> |
|
47 <property name="checked"> |
|
48 <bool>false</bool> |
|
49 </property> |
|
50 </widget> |
|
51 </item> |
|
52 </layout> |
|
53 </widget> |
|
54 </item> |
|
55 <item> |
|
56 <widget class="QGroupBox" name="typeGroupBox"> |
|
57 <property name="title"> |
|
58 <string>Type</string> |
|
59 </property> |
|
60 <layout class="QHBoxLayout" name="horizontalLayout_2"> |
|
61 <item> |
|
62 <widget class="QRadioButton" name="alnumButton"> |
|
63 <property name="toolTip"> |
|
64 <string>Select to sort alphanumerically</string> |
|
65 </property> |
|
66 <property name="text"> |
|
67 <string>Alphanumerical</string> |
|
68 </property> |
|
69 <property name="checked"> |
|
70 <bool>true</bool> |
|
71 </property> |
|
72 </widget> |
|
73 </item> |
|
74 <item> |
|
75 <widget class="QRadioButton" name="numButton"> |
|
76 <property name="toolTip"> |
|
77 <string>Select to sort numerically</string> |
|
78 </property> |
|
79 <property name="text"> |
|
80 <string>Numerical</string> |
|
81 </property> |
|
82 </widget> |
|
83 </item> |
|
84 </layout> |
|
85 </widget> |
|
86 </item> |
|
87 <item> |
|
88 <widget class="QGroupBox" name="caseGroupBox"> |
|
89 <property name="title"> |
|
90 <string>Case Sensitivity</string> |
|
91 </property> |
|
92 <layout class="QHBoxLayout" name="horizontalLayout_3"> |
|
93 <item> |
|
94 <widget class="QRadioButton" name="respectCaseButton"> |
|
95 <property name="toolTip"> |
|
96 <string>Select to respect the case while sorting</string> |
|
97 </property> |
|
98 <property name="text"> |
|
99 <string>Respect Case</string> |
|
100 </property> |
|
101 <property name="checked"> |
|
102 <bool>true</bool> |
|
103 </property> |
|
104 </widget> |
|
105 </item> |
|
106 <item> |
|
107 <widget class="QRadioButton" name="ignoreCaseButton"> |
|
108 <property name="toolTip"> |
|
109 <string>Select to ignore the case while sorting</string> |
|
110 </property> |
|
111 <property name="text"> |
|
112 <string>Ignore Case</string> |
|
113 </property> |
|
114 </widget> |
|
115 </item> |
|
116 </layout> |
|
117 </widget> |
|
118 </item> |
|
119 <item> |
|
120 <widget class="QDialogButtonBox" name="buttonBox"> |
|
121 <property name="orientation"> |
|
122 <enum>Qt::Horizontal</enum> |
|
123 </property> |
|
124 <property name="standardButtons"> |
|
125 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> |
|
126 </property> |
|
127 </widget> |
|
128 </item> |
|
129 </layout> |
|
130 </widget> |
|
131 <tabstops> |
|
132 <tabstop>ascendingButton</tabstop> |
|
133 <tabstop>descendingButton</tabstop> |
|
134 <tabstop>alnumButton</tabstop> |
|
135 <tabstop>numButton</tabstop> |
|
136 <tabstop>respectCaseButton</tabstop> |
|
137 <tabstop>ignoreCaseButton</tabstop> |
|
138 <tabstop>buttonBox</tabstop> |
|
139 </tabstops> |
|
140 <resources/> |
|
141 <connections> |
|
142 <connection> |
|
143 <sender>buttonBox</sender> |
|
144 <signal>accepted()</signal> |
|
145 <receiver>SortOptionsDialog</receiver> |
|
146 <slot>accept()</slot> |
|
147 <hints> |
|
148 <hint type="sourcelabel"> |
|
149 <x>227</x> |
|
150 <y>191</y> |
|
151 </hint> |
|
152 <hint type="destinationlabel"> |
|
153 <x>157</x> |
|
154 <y>208</y> |
|
155 </hint> |
|
156 </hints> |
|
157 </connection> |
|
158 <connection> |
|
159 <sender>buttonBox</sender> |
|
160 <signal>rejected()</signal> |
|
161 <receiver>SortOptionsDialog</receiver> |
|
162 <slot>reject()</slot> |
|
163 <hints> |
|
164 <hint type="sourcelabel"> |
|
165 <x>295</x> |
|
166 <y>197</y> |
|
167 </hint> |
|
168 <hint type="destinationlabel"> |
|
169 <x>286</x> |
|
170 <y>208</y> |
|
171 </hint> |
|
172 </hints> |
|
173 </connection> |
|
174 <connection> |
|
175 <sender>alnumButton</sender> |
|
176 <signal>toggled(bool)</signal> |
|
177 <receiver>caseGroupBox</receiver> |
|
178 <slot>setEnabled(bool)</slot> |
|
179 <hints> |
|
180 <hint type="sourcelabel"> |
|
181 <x>49</x> |
|
182 <y>95</y> |
|
183 </hint> |
|
184 <hint type="destinationlabel"> |
|
185 <x>47</x> |
|
186 <y>127</y> |
|
187 </hint> |
|
188 </hints> |
|
189 </connection> |
|
190 </connections> |
|
191 </ui> |