summaryrefslogtreecommitdiff
path: root/rbutil
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil')
-rw-r--r--rbutil/rbutilqt/rbutilqt.cpp11
-rw-r--r--rbutil/rbutilqt/rbutilqt.h1
-rw-r--r--rbutil/rbutilqt/rbutilqtfrm.ui844
3 files changed, 426 insertions, 430 deletions
diff --git a/rbutil/rbutilqt/rbutilqt.cpp b/rbutil/rbutilqt/rbutilqt.cpp
index 9c9aff7569..4698b3fc58 100644
--- a/rbutil/rbutilqt/rbutilqt.cpp
+++ b/rbutil/rbutilqt/rbutilqt.cpp
@@ -102,6 +102,7 @@ RbUtilQt::RbUtilQt(QWidget *parent) : QMainWindow(parent)
102 connect(ui.action_About, SIGNAL(triggered()), this, SLOT(about())); 102 connect(ui.action_About, SIGNAL(triggered()), this, SLOT(about()));
103 connect(ui.action_Help, SIGNAL(triggered()), this, SLOT(help())); 103 connect(ui.action_Help, SIGNAL(triggered()), this, SLOT(help()));
104 connect(ui.action_Configure, SIGNAL(triggered()), this, SLOT(configDialog())); 104 connect(ui.action_Configure, SIGNAL(triggered()), this, SLOT(configDialog()));
105 connect(ui.actionE_xit, SIGNAL(triggered()), this, SLOT(shutdown()));
105 connect(ui.buttonChangeDevice, SIGNAL(clicked()), this, SLOT(configDialog())); 106 connect(ui.buttonChangeDevice, SIGNAL(clicked()), this, SLOT(configDialog()));
106 connect(ui.buttonRockbox, SIGNAL(clicked()), this, SLOT(installBtn())); 107 connect(ui.buttonRockbox, SIGNAL(clicked()), this, SLOT(installBtn()));
107 connect(ui.buttonBootloader, SIGNAL(clicked()), this, SLOT(installBootloaderBtn())); 108 connect(ui.buttonBootloader, SIGNAL(clicked()), this, SLOT(installBootloaderBtn()));
@@ -142,6 +143,16 @@ RbUtilQt::RbUtilQt(QWidget *parent) : QMainWindow(parent)
142} 143}
143 144
144 145
146void RbUtilQt::shutdown(void)
147{
148 // restore default message handler to prevent trace accesses during
149 // object destruction -- the trace object could already be destroyed.
150 // Fixes segfaults on exit.
151 qInstallMsgHandler(0);
152 this->close();
153}
154
155
145void RbUtilQt::trace(void) 156void RbUtilQt::trace(void)
146{ 157{
147 SysTrace wnd(this); 158 SysTrace wnd(this);
diff --git a/rbutil/rbutilqt/rbutilqt.h b/rbutil/rbutilqt/rbutilqt.h
index c47926e5a2..afe8c5fd48 100644
--- a/rbutil/rbutilqt/rbutilqt.h
+++ b/rbutil/rbutilqt/rbutilqt.h
@@ -64,6 +64,7 @@ class RbUtilQt : public QMainWindow
64 bool m_auto; 64 bool m_auto;
65 65
66 private slots: 66 private slots:
67 void shutdown(void);
67 void about(void); 68 void about(void);
68 void help(void); 69 void help(void);
69 void sysinfo(void); 70 void sysinfo(void);
diff --git a/rbutil/rbutilqt/rbutilqtfrm.ui b/rbutil/rbutilqt/rbutilqtfrm.ui
index 315449910e..1be30e1363 100644
--- a/rbutil/rbutilqt/rbutilqtfrm.ui
+++ b/rbutil/rbutilqt/rbutilqtfrm.ui
@@ -1,7 +1,8 @@
1<ui version="4.0" > 1<?xml version="1.0" encoding="UTF-8"?>
2<ui version="4.0">
2 <class>RbUtilQtFrm</class> 3 <class>RbUtilQtFrm</class>
3 <widget class="QMainWindow" name="RbUtilQtFrm" > 4 <widget class="QMainWindow" name="RbUtilQtFrm">
4 <property name="geometry" > 5 <property name="geometry">
5 <rect> 6 <rect>
6 <x>0</x> 7 <x>0</x>
7 <y>0</y> 8 <y>0</y>
@@ -9,29 +10,29 @@
9 <height>550</height> 10 <height>550</height>
10 </rect> 11 </rect>
11 </property> 12 </property>
12 <property name="windowTitle" > 13 <property name="windowTitle">
13 <string>Rockbox Utility</string> 14 <string>Rockbox Utility</string>
14 </property> 15 </property>
15 <property name="windowIcon" > 16 <property name="windowIcon">
16 <iconset resource="rbutilqt.qrc" > 17 <iconset resource="rbutilqt.qrc">
17 <normaloff>:/icons/rockbox-1.png</normaloff>:/icons/rockbox-1.png</iconset> 18 <normaloff>:/icons/rockbox-1.png</normaloff>:/icons/rockbox-1.png</iconset>
18 </property> 19 </property>
19 <widget class="QWidget" name="centralwidget" > 20 <widget class="QWidget" name="centralwidget">
20 <layout class="QGridLayout" > 21 <layout class="QGridLayout">
21 <item row="0" column="0" > 22 <item row="0" column="0">
22 <layout class="QHBoxLayout" > 23 <layout class="QHBoxLayout">
23 <property name="spacing" > 24 <property name="spacing">
24 <number>6</number> 25 <number>6</number>
25 </property> 26 </property>
26 <property name="margin" > 27 <property name="margin">
27 <number>0</number> 28 <number>0</number>
28 </property> 29 </property>
29 <item> 30 <item>
30 <spacer> 31 <spacer>
31 <property name="orientation" > 32 <property name="orientation">
32 <enum>Qt::Horizontal</enum> 33 <enum>Qt::Horizontal</enum>
33 </property> 34 </property>
34 <property name="sizeHint" stdset="0" > 35 <property name="sizeHint" stdset="0">
35 <size> 36 <size>
36 <width>40</width> 37 <width>40</width>
37 <height>20</height> 38 <height>20</height>
@@ -40,21 +41,21 @@
40 </spacer> 41 </spacer>
41 </item> 42 </item>
42 <item> 43 <item>
43 <widget class="QLabel" name="logoLabel" > 44 <widget class="QLabel" name="logoLabel">
44 <property name="text" > 45 <property name="text">
45 <string comment="Welcome to Rockbox Utility, the installation and housekeeping tool for Rockbox." /> 46 <string comment="Welcome to Rockbox Utility, the installation and housekeeping tool for Rockbox."/>
46 </property> 47 </property>
47 <property name="pixmap" > 48 <property name="pixmap">
48 <pixmap resource="rbutilqt.qrc" >:/icons/rblogo.png</pixmap> 49 <pixmap resource="rbutilqt.qrc">:/icons/rblogo.png</pixmap>
49 </property> 50 </property>
50 </widget> 51 </widget>
51 </item> 52 </item>
52 <item> 53 <item>
53 <spacer> 54 <spacer>
54 <property name="orientation" > 55 <property name="orientation">
55 <enum>Qt::Horizontal</enum> 56 <enum>Qt::Horizontal</enum>
56 </property> 57 </property>
57 <property name="sizeHint" stdset="0" > 58 <property name="sizeHint" stdset="0">
58 <size> 59 <size>
59 <width>40</width> 60 <width>40</width>
60 <height>20</height> 61 <height>20</height>
@@ -64,38 +65,38 @@
64 </item> 65 </item>
65 </layout> 66 </layout>
66 </item> 67 </item>
67 <item row="1" column="0" > 68 <item row="1" column="0">
68 <widget class="QGroupBox" name="groupBox_3" > 69 <widget class="QGroupBox" name="groupBox_3">
69 <property name="title" > 70 <property name="title">
70 <string>Device</string> 71 <string>Device</string>
71 </property> 72 </property>
72 <layout class="QGridLayout" > 73 <layout class="QGridLayout">
73 <item row="0" column="0" > 74 <item row="0" column="0">
74 <widget class="QLabel" name="labelDeviceTitle" > 75 <widget class="QLabel" name="labelDeviceTitle">
75 <property name="sizePolicy" > 76 <property name="sizePolicy">
76 <sizepolicy vsizetype="Preferred" hsizetype="Preferred" > 77 <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
77 <horstretch>0</horstretch> 78 <horstretch>0</horstretch>
78 <verstretch>0</verstretch> 79 <verstretch>0</verstretch>
79 </sizepolicy> 80 </sizepolicy>
80 </property> 81 </property>
81 <property name="text" > 82 <property name="text">
82 <string>Selected device:</string> 83 <string>Selected device:</string>
83 </property> 84 </property>
84 </widget> 85 </widget>
85 </item> 86 </item>
86 <item row="0" column="1" > 87 <item row="0" column="1">
87 <widget class="QLabel" name="labelDevice" > 88 <widget class="QLabel" name="labelDevice">
88 <property name="text" > 89 <property name="text">
89 <string>device / mountpoint unknown or invalid</string> 90 <string>device / mountpoint unknown or invalid</string>
90 </property> 91 </property>
91 </widget> 92 </widget>
92 </item> 93 </item>
93 <item row="0" column="2" > 94 <item row="0" column="2">
94 <spacer> 95 <spacer>
95 <property name="orientation" > 96 <property name="orientation">
96 <enum>Qt::Horizontal</enum> 97 <enum>Qt::Horizontal</enum>
97 </property> 98 </property>
98 <property name="sizeHint" stdset="0" > 99 <property name="sizeHint" stdset="0">
99 <size> 100 <size>
100 <width>40</width> 101 <width>40</width>
101 <height>20</height> 102 <height>20</height>
@@ -103,13 +104,13 @@
103 </property> 104 </property>
104 </spacer> 105 </spacer>
105 </item> 106 </item>
106 <item row="0" column="3" > 107 <item row="0" column="3">
107 <widget class="QPushButton" name="buttonChangeDevice" > 108 <widget class="QPushButton" name="buttonChangeDevice">
108 <property name="text" > 109 <property name="text">
109 <string>&amp;Change</string> 110 <string>&amp;Change</string>
110 </property> 111 </property>
111 <property name="icon" > 112 <property name="icon">
112 <iconset resource="rbutilqt.qrc" > 113 <iconset resource="rbutilqt.qrc">
113 <normaloff>:/icons/edit-find.png</normaloff>:/icons/edit-find.png</iconset> 114 <normaloff>:/icons/edit-find.png</normaloff>:/icons/edit-find.png</iconset>
114 </property> 115 </property>
115 </widget> 116 </widget>
@@ -117,29 +118,29 @@
117 </layout> 118 </layout>
118 </widget> 119 </widget>
119 </item> 120 </item>
120 <item row="2" column="0" > 121 <item row="2" column="0">
121 <widget class="QTabWidget" name="tabWidget" > 122 <widget class="QTabWidget" name="tabWidget">
122 <property name="currentIndex" > 123 <property name="currentIndex">
123 <number>0</number> 124 <number>0</number>
124 </property> 125 </property>
125 <widget class="QWidget" name="quickStart" > 126 <widget class="QWidget" name="quickStart">
126 <attribute name="title" > 127 <attribute name="title">
127 <string>&amp;Quick Start</string> 128 <string>&amp;Quick Start</string>
128 </attribute> 129 </attribute>
129 <attribute name="toolTip" > 130 <attribute name="toolTip">
130 <string>Welcome</string> 131 <string>Welcome</string>
131 </attribute> 132 </attribute>
132 <layout class="QGridLayout" > 133 <layout class="QGridLayout">
133 <item row="0" column="0" > 134 <item row="0" column="0">
134 <widget class="QToolButton" name="buttonComplete" > 135 <widget class="QToolButton" name="buttonComplete">
135 <property name="text" > 136 <property name="text">
136 <string>Complete Installation</string> 137 <string>Complete Installation</string>
137 </property> 138 </property>
138 <property name="icon" > 139 <property name="icon">
139 <iconset resource="rbutilqt.qrc" > 140 <iconset resource="rbutilqt.qrc">
140 <normaloff>:/icons/bootloader_btn.png</normaloff>:/icons/bootloader_btn.png</iconset> 141 <normaloff>:/icons/bootloader_btn.png</normaloff>:/icons/bootloader_btn.png</iconset>
141 </property> 142 </property>
142 <property name="iconSize" > 143 <property name="iconSize">
143 <size> 144 <size>
144 <width>56</width> 145 <width>56</width>
145 <height>46</height> 146 <height>46</height>
@@ -147,29 +148,29 @@
147 </property> 148 </property>
148 </widget> 149 </widget>
149 </item> 150 </item>
150 <item row="0" column="1" > 151 <item row="0" column="1">
151 <widget class="QLabel" name="labelComplete" > 152 <widget class="QLabel" name="labelComplete">
152 <property name="text" > 153 <property name="text">
153 <string>&lt;b>Complete Installation&lt;/b>&lt;br/>This installs the bootloader, a current build and the extras package. This is the recommended method for new installations.</string> 154 <string>&lt;b&gt;Complete Installation&lt;/b&gt;&lt;br/&gt;This installs the bootloader, a current build and the extras package. This is the recommended method for new installations.</string>
154 </property> 155 </property>
155 <property name="textFormat" > 156 <property name="textFormat">
156 <enum>Qt::AutoText</enum> 157 <enum>Qt::AutoText</enum>
157 </property> 158 </property>
158 <property name="wordWrap" > 159 <property name="wordWrap">
159 <bool>true</bool> 160 <bool>true</bool>
160 </property> 161 </property>
161 </widget> 162 </widget>
162 </item> 163 </item>
163 <item row="1" column="0" > 164 <item row="1" column="0">
164 <widget class="QToolButton" name="buttonSmall" > 165 <widget class="QToolButton" name="buttonSmall">
165 <property name="text" > 166 <property name="text">
166 <string>Minimal Installation</string> 167 <string>Minimal Installation</string>
167 </property> 168 </property>
168 <property name="icon" > 169 <property name="icon">
169 <iconset resource="rbutilqt.qrc" > 170 <iconset resource="rbutilqt.qrc">
170 <normaloff>:/icons/rbinstall_btn.png</normaloff>:/icons/rbinstall_btn.png</iconset> 171 <normaloff>:/icons/rbinstall_btn.png</normaloff>:/icons/rbinstall_btn.png</iconset>
171 </property> 172 </property>
172 <property name="iconSize" > 173 <property name="iconSize">
173 <size> 174 <size>
174 <width>56</width> 175 <width>56</width>
175 <height>46</height> 176 <height>46</height>
@@ -177,25 +178,25 @@
177 </property> 178 </property>
178 </widget> 179 </widget>
179 </item> 180 </item>
180 <item row="1" column="1" > 181 <item row="1" column="1">
181 <widget class="QLabel" name="labelSmall" > 182 <widget class="QLabel" name="labelSmall">
182 <property name="text" > 183 <property name="text">
183 <string>&lt;b>Minimal installation&lt;/b>&lt;br/>This installs bootloader and the current build of Rockbox. If you don't want the extras package, choose this option.</string> 184 <string>&lt;b&gt;Minimal installation&lt;/b&gt;&lt;br/&gt;This installs bootloader and the current build of Rockbox. If you don't want the extras package, choose this option.</string>
184 </property> 185 </property>
185 <property name="wordWrap" > 186 <property name="wordWrap">
186 <bool>true</bool> 187 <bool>true</bool>
187 </property> 188 </property>
188 <property name="buddy" > 189 <property name="buddy">
189 <cstring>buttonRockbox</cstring> 190 <cstring>buttonRockbox</cstring>
190 </property> 191 </property>
191 </widget> 192 </widget>
192 </item> 193 </item>
193 <item row="2" column="0" > 194 <item row="2" column="0">
194 <spacer> 195 <spacer>
195 <property name="orientation" > 196 <property name="orientation">
196 <enum>Qt::Vertical</enum> 197 <enum>Qt::Vertical</enum>
197 </property> 198 </property>
198 <property name="sizeHint" stdset="0" > 199 <property name="sizeHint" stdset="0">
199 <size> 200 <size>
200 <width>20</width> 201 <width>20</width>
201 <height>91</height> 202 <height>91</height>
@@ -203,12 +204,12 @@
203 </property> 204 </property>
204 </spacer> 205 </spacer>
205 </item> 206 </item>
206 <item row="2" column="1" > 207 <item row="2" column="1">
207 <spacer> 208 <spacer>
208 <property name="orientation" > 209 <property name="orientation">
209 <enum>Qt::Vertical</enum> 210 <enum>Qt::Vertical</enum>
210 </property> 211 </property>
211 <property name="sizeHint" stdset="0" > 212 <property name="sizeHint" stdset="0">
212 <size> 213 <size>
213 <width>20</width> 214 <width>20</width>
214 <height>81</height> 215 <height>81</height>
@@ -218,24 +219,24 @@
218 </item> 219 </item>
219 </layout> 220 </layout>
220 </widget> 221 </widget>
221 <widget class="QWidget" name="installation" > 222 <widget class="QWidget" name="installation">
222 <attribute name="title" > 223 <attribute name="title">
223 <string>&amp;Installation</string> 224 <string>&amp;Installation</string>
224 </attribute> 225 </attribute>
225 <attribute name="toolTip" > 226 <attribute name="toolTip">
226 <string>Basic Rockbox installation</string> 227 <string>Basic Rockbox installation</string>
227 </attribute> 228 </attribute>
228 <layout class="QGridLayout" > 229 <layout class="QGridLayout">
229 <item row="0" column="0" > 230 <item row="0" column="0">
230 <widget class="QToolButton" name="buttonBootloader" > 231 <widget class="QToolButton" name="buttonBootloader">
231 <property name="text" > 232 <property name="text">
232 <string>Install Bootloader</string> 233 <string>Install Bootloader</string>
233 </property> 234 </property>
234 <property name="icon" > 235 <property name="icon">
235 <iconset resource="rbutilqt.qrc" > 236 <iconset resource="rbutilqt.qrc">
236 <normaloff>:/icons/bootloader_btn.png</normaloff>:/icons/bootloader_btn.png</iconset> 237 <normaloff>:/icons/bootloader_btn.png</normaloff>:/icons/bootloader_btn.png</iconset>
237 </property> 238 </property>
238 <property name="iconSize" > 239 <property name="iconSize">
239 <size> 240 <size>
240 <width>56</width> 241 <width>56</width>
241 <height>46</height> 242 <height>46</height>
@@ -243,26 +244,26 @@
243 </property> 244 </property>
244 </widget> 245 </widget>
245 </item> 246 </item>
246 <item row="0" column="1" > 247 <item row="0" column="1">
247 <widget class="QLabel" name="labelBootloader" > 248 <widget class="QLabel" name="labelBootloader">
248 <property name="text" > 249 <property name="text">
249 <string>&lt;b>Install the bootloader&lt;/b>&lt;br/>Before Rockbox can be run on your audio player, you may have to install a bootloader. This is only necessary the first time Rockbox is installed.</string> 250 <string>&lt;b&gt;Install the bootloader&lt;/b&gt;&lt;br/&gt;Before Rockbox can be run on your audio player, you may have to install a bootloader. This is only necessary the first time Rockbox is installed.</string>
250 </property> 251 </property>
251 <property name="wordWrap" > 252 <property name="wordWrap">
252 <bool>true</bool> 253 <bool>true</bool>
253 </property> 254 </property>
254 </widget> 255 </widget>
255 </item> 256 </item>
256 <item row="1" column="0" > 257 <item row="1" column="0">
257 <widget class="QToolButton" name="buttonRockbox" > 258 <widget class="QToolButton" name="buttonRockbox">
258 <property name="text" > 259 <property name="text">
259 <string>Install Rockbox</string> 260 <string>Install Rockbox</string>
260 </property> 261 </property>
261 <property name="icon" > 262 <property name="icon">
262 <iconset resource="rbutilqt.qrc" > 263 <iconset resource="rbutilqt.qrc">
263 <normaloff>:/icons/rbinstall_btn.png</normaloff>:/icons/rbinstall_btn.png</iconset> 264 <normaloff>:/icons/rbinstall_btn.png</normaloff>:/icons/rbinstall_btn.png</iconset>
264 </property> 265 </property>
265 <property name="iconSize" > 266 <property name="iconSize">
266 <size> 267 <size>
267 <width>56</width> 268 <width>56</width>
268 <height>46</height> 269 <height>46</height>
@@ -270,28 +271,28 @@
270 </property> 271 </property>
271 </widget> 272 </widget>
272 </item> 273 </item>
273 <item row="1" column="1" > 274 <item row="1" column="1">
274 <widget class="QLabel" name="labelInstall" > 275 <widget class="QLabel" name="labelInstall">
275 <property name="text" > 276 <property name="text">
276 <string>&lt;b>Install Rockbox&lt;/b> on your audio player</string> 277 <string>&lt;b&gt;Install Rockbox&lt;/b&gt; on your audio player</string>
277 </property> 278 </property>
278 <property name="alignment" > 279 <property name="alignment">
279 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> 280 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
280 </property> 281 </property>
281 <property name="wordWrap" > 282 <property name="wordWrap">
282 <bool>true</bool> 283 <bool>true</bool>
283 </property> 284 </property>
284 <property name="buddy" > 285 <property name="buddy">
285 <cstring>buttonRockbox</cstring> 286 <cstring>buttonRockbox</cstring>
286 </property> 287 </property>
287 </widget> 288 </widget>
288 </item> 289 </item>
289 <item row="2" column="0" > 290 <item row="2" column="0">
290 <spacer> 291 <spacer>
291 <property name="orientation" > 292 <property name="orientation">
292 <enum>Qt::Vertical</enum> 293 <enum>Qt::Vertical</enum>
293 </property> 294 </property>
294 <property name="sizeHint" stdset="0" > 295 <property name="sizeHint" stdset="0">
295 <size> 296 <size>
296 <width>20</width> 297 <width>20</width>
297 <height>91</height> 298 <height>91</height>
@@ -299,12 +300,12 @@
299 </property> 300 </property>
300 </spacer> 301 </spacer>
301 </item> 302 </item>
302 <item row="2" column="1" > 303 <item row="2" column="1">
303 <spacer> 304 <spacer>
304 <property name="orientation" > 305 <property name="orientation">
305 <enum>Qt::Vertical</enum> 306 <enum>Qt::Vertical</enum>
306 </property> 307 </property>
307 <property name="sizeHint" stdset="0" > 308 <property name="sizeHint" stdset="0">
308 <size> 309 <size>
309 <width>20</width> 310 <width>20</width>
310 <height>81</height> 311 <height>81</height>
@@ -314,24 +315,24 @@
314 </item> 315 </item>
315 </layout> 316 </layout>
316 </widget> 317 </widget>
317 <widget class="QWidget" name="extras" > 318 <widget class="QWidget" name="extras">
318 <attribute name="title" > 319 <attribute name="title">
319 <string>&amp;Extras</string> 320 <string>&amp;Extras</string>
320 </attribute> 321 </attribute>
321 <attribute name="toolTip" > 322 <attribute name="toolTip">
322 <string>Install extras for Rockbox</string> 323 <string>Install extras for Rockbox</string>
323 </attribute> 324 </attribute>
324 <layout class="QGridLayout" > 325 <layout class="QGridLayout">
325 <item row="0" column="0" > 326 <item row="0" column="0">
326 <widget class="QToolButton" name="buttonFonts" > 327 <widget class="QToolButton" name="buttonFonts">
327 <property name="text" > 328 <property name="text">
328 <string>Install Fonts package</string> 329 <string>Install Fonts package</string>
329 </property> 330 </property>
330 <property name="icon" > 331 <property name="icon">
331 <iconset resource="rbutilqt.qrc" > 332 <iconset resource="rbutilqt.qrc">
332 <normaloff>:/icons/font_btn.png</normaloff>:/icons/font_btn.png</iconset> 333 <normaloff>:/icons/font_btn.png</normaloff>:/icons/font_btn.png</iconset>
333 </property> 334 </property>
334 <property name="iconSize" > 335 <property name="iconSize">
335 <size> 336 <size>
336 <width>56</width> 337 <width>56</width>
337 <height>46</height> 338 <height>46</height>
@@ -339,26 +340,26 @@
339 </property> 340 </property>
340 </widget> 341 </widget>
341 </item> 342 </item>
342 <item row="0" column="1" > 343 <item row="0" column="1">
343 <widget class="QLabel" name="labelFonts" > 344 <widget class="QLabel" name="labelFonts">
344 <property name="text" > 345 <property name="text">
345 <string>&lt;b>Fonts Package&lt;/b>&lt;br/>The Fonts Package contains a couple of commonly used fonts. Installation is highly recommended.</string> 346 <string>&lt;b&gt;Fonts Package&lt;/b&gt;&lt;br/&gt;The Fonts Package contains a couple of commonly used fonts. Installation is highly recommended.</string>
346 </property> 347 </property>
347 <property name="wordWrap" > 348 <property name="wordWrap">
348 <bool>true</bool> 349 <bool>true</bool>
349 </property> 350 </property>
350 </widget> 351 </widget>
351 </item> 352 </item>
352 <item row="1" column="0" > 353 <item row="1" column="0">
353 <widget class="QToolButton" name="buttonThemes" > 354 <widget class="QToolButton" name="buttonThemes">
354 <property name="text" > 355 <property name="text">
355 <string>Install themes</string> 356 <string>Install themes</string>
356 </property> 357 </property>
357 <property name="icon" > 358 <property name="icon">
358 <iconset resource="rbutilqt.qrc" > 359 <iconset resource="rbutilqt.qrc">
359 <normaloff>:/icons/themes_btn.png</normaloff>:/icons/themes_btn.png</iconset> 360 <normaloff>:/icons/themes_btn.png</normaloff>:/icons/themes_btn.png</iconset>
360 </property> 361 </property>
361 <property name="iconSize" > 362 <property name="iconSize">
362 <size> 363 <size>
363 <width>56</width> 364 <width>56</width>
364 <height>46</height> 365 <height>46</height>
@@ -366,26 +367,26 @@
366 </property> 367 </property>
367 </widget> 368 </widget>
368 </item> 369 </item>
369 <item row="1" column="1" > 370 <item row="1" column="1">
370 <widget class="QLabel" name="labelThemes" > 371 <widget class="QLabel" name="labelThemes">
371 <property name="text" > 372 <property name="text">
372 <string>&lt;b>Install Themes&lt;/b>&lt;br/>Rockbox' look can be customized by themes. You can choose and install several officially distributed themes.</string> 373 <string>&lt;b&gt;Install Themes&lt;/b&gt;&lt;br/&gt;Rockbox' look can be customized by themes. You can choose and install several officially distributed themes.</string>
373 </property> 374 </property>
374 <property name="wordWrap" > 375 <property name="wordWrap">
375 <bool>true</bool> 376 <bool>true</bool>
376 </property> 377 </property>
377 </widget> 378 </widget>
378 </item> 379 </item>
379 <item row="2" column="0" > 380 <item row="2" column="0">
380 <widget class="QToolButton" name="buttonGames" > 381 <widget class="QToolButton" name="buttonGames">
381 <property name="text" > 382 <property name="text">
382 <string>Install game files</string> 383 <string>Install game files</string>
383 </property> 384 </property>
384 <property name="icon" > 385 <property name="icon">
385 <iconset resource="rbutilqt.qrc" > 386 <iconset resource="rbutilqt.qrc">
386 <normaloff>:/icons/doom_btn.png</normaloff>:/icons/doom_btn.png</iconset> 387 <normaloff>:/icons/doom_btn.png</normaloff>:/icons/doom_btn.png</iconset>
387 </property> 388 </property>
388 <property name="iconSize" > 389 <property name="iconSize">
389 <size> 390 <size>
390 <width>56</width> 391 <width>56</width>
391 <height>46</height> 392 <height>46</height>
@@ -393,22 +394,22 @@
393 </property> 394 </property>
394 </widget> 395 </widget>
395 </item> 396 </item>
396 <item row="2" column="1" > 397 <item row="2" column="1">
397 <widget class="QLabel" name="labelGames" > 398 <widget class="QLabel" name="labelGames">
398 <property name="text" > 399 <property name="text">
399 <string>&lt;b>Install Game Files&lt;/b>&lt;br/>Doom needs a base wad file to run.</string> 400 <string>&lt;b&gt;Install Game Files&lt;/b&gt;&lt;br/&gt;Doom needs a base wad file to run.</string>
400 </property> 401 </property>
401 <property name="openExternalLinks" > 402 <property name="openExternalLinks">
402 <bool>true</bool> 403 <bool>true</bool>
403 </property> 404 </property>
404 </widget> 405 </widget>
405 </item> 406 </item>
406 <item row="4" column="0" > 407 <item row="4" column="0">
407 <spacer> 408 <spacer>
408 <property name="orientation" > 409 <property name="orientation">
409 <enum>Qt::Vertical</enum> 410 <enum>Qt::Vertical</enum>
410 </property> 411 </property>
411 <property name="sizeHint" stdset="0" > 412 <property name="sizeHint" stdset="0">
412 <size> 413 <size>
413 <width>20</width> 414 <width>20</width>
414 <height>40</height> 415 <height>40</height>
@@ -416,12 +417,12 @@
416 </property> 417 </property>
417 </spacer> 418 </spacer>
418 </item> 419 </item>
419 <item row="4" column="1" > 420 <item row="4" column="1">
420 <spacer> 421 <spacer>
421 <property name="orientation" > 422 <property name="orientation">
422 <enum>Qt::Vertical</enum> 423 <enum>Qt::Vertical</enum>
423 </property> 424 </property>
424 <property name="sizeHint" stdset="0" > 425 <property name="sizeHint" stdset="0">
425 <size> 426 <size>
426 <width>20</width> 427 <width>20</width>
427 <height>40</height> 428 <height>40</height>
@@ -431,24 +432,24 @@
431 </item> 432 </item>
432 </layout> 433 </layout>
433 </widget> 434 </widget>
434 <widget class="QWidget" name="accessibility" > 435 <widget class="QWidget" name="accessibility">
435 <attribute name="title" > 436 <attribute name="title">
436 <string>&amp;Accessibility</string> 437 <string>&amp;Accessibility</string>
437 </attribute> 438 </attribute>
438 <attribute name="toolTip" > 439 <attribute name="toolTip">
439 <string>Install accessibility add-ons</string> 440 <string>Install accessibility add-ons</string>
440 </attribute> 441 </attribute>
441 <layout class="QGridLayout" > 442 <layout class="QGridLayout">
442 <item row="0" column="0" > 443 <item row="0" column="0">
443 <widget class="QToolButton" name="buttonVoice" > 444 <widget class="QToolButton" name="buttonVoice">
444 <property name="text" > 445 <property name="text">
445 <string>Install Voice files</string> 446 <string>Install Voice files</string>
446 </property> 447 </property>
447 <property name="icon" > 448 <property name="icon">
448 <iconset resource="rbutilqt.qrc" > 449 <iconset resource="rbutilqt.qrc">
449 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset> 450 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset>
450 </property> 451 </property>
451 <property name="iconSize" > 452 <property name="iconSize">
452 <size> 453 <size>
453 <width>56</width> 454 <width>56</width>
454 <height>46</height> 455 <height>46</height>
@@ -456,26 +457,26 @@
456 </property> 457 </property>
457 </widget> 458 </widget>
458 </item> 459 </item>
459 <item row="0" column="1" > 460 <item row="0" column="1">
460 <widget class="QLabel" name="labelVoice" > 461 <widget class="QLabel" name="labelVoice">
461 <property name="text" > 462 <property name="text">
462 <string>&lt;b>Install Voice file&lt;/b>&lt;br/>Voice files are needed to make Rockbox speak the user interface. Speaking is enabled by default, so if you installed the voice file Rockbox will speak.</string> 463 <string>&lt;b&gt;Install Voice file&lt;/b&gt;&lt;br/&gt;Voice files are needed to make Rockbox speak the user interface. Speaking is enabled by default, so if you installed the voice file Rockbox will speak.</string>
463 </property> 464 </property>
464 <property name="wordWrap" > 465 <property name="wordWrap">
465 <bool>true</bool> 466 <bool>true</bool>
466 </property> 467 </property>
467 </widget> 468 </widget>
468 </item> 469 </item>
469 <item row="2" column="0" > 470 <item row="2" column="0">
470 <widget class="QToolButton" name="buttonTalk" > 471 <widget class="QToolButton" name="buttonTalk">
471 <property name="text" > 472 <property name="text">
472 <string>Install Talk files</string> 473 <string>Install Talk files</string>
473 </property> 474 </property>
474 <property name="icon" > 475 <property name="icon">
475 <iconset resource="rbutilqt.qrc" > 476 <iconset resource="rbutilqt.qrc">
476 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset> 477 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset>
477 </property> 478 </property>
478 <property name="iconSize" > 479 <property name="iconSize">
479 <size> 480 <size>
480 <width>56</width> 481 <width>56</width>
481 <height>46</height> 482 <height>46</height>
@@ -483,19 +484,19 @@
483 </property> 484 </property>
484 </widget> 485 </widget>
485 </item> 486 </item>
486 <item row="2" column="1" > 487 <item row="2" column="1">
487 <widget class="QLabel" name="labelTalk" > 488 <widget class="QLabel" name="labelTalk">
488 <property name="text" > 489 <property name="text">
489 <string>&lt;b>Create Talk Files&lt;/b>&lt;br/>Talkfiles are needed to let Rockbox speak File and Foldernames</string> 490 <string>&lt;b&gt;Create Talk Files&lt;/b&gt;&lt;br/&gt;Talkfiles are needed to let Rockbox speak File and Foldernames</string>
490 </property> 491 </property>
491 </widget> 492 </widget>
492 </item> 493 </item>
493 <item row="3" column="0" > 494 <item row="3" column="0">
494 <spacer> 495 <spacer>
495 <property name="orientation" > 496 <property name="orientation">
496 <enum>Qt::Vertical</enum> 497 <enum>Qt::Vertical</enum>
497 </property> 498 </property>
498 <property name="sizeHint" stdset="0" > 499 <property name="sizeHint" stdset="0">
499 <size> 500 <size>
500 <width>20</width> 501 <width>20</width>
501 <height>51</height> 502 <height>51</height>
@@ -503,12 +504,12 @@
503 </property> 504 </property>
504 </spacer> 505 </spacer>
505 </item> 506 </item>
506 <item row="3" column="1" > 507 <item row="3" column="1">
507 <spacer> 508 <spacer>
508 <property name="orientation" > 509 <property name="orientation">
509 <enum>Qt::Vertical</enum> 510 <enum>Qt::Vertical</enum>
510 </property> 511 </property>
511 <property name="sizeHint" stdset="0" > 512 <property name="sizeHint" stdset="0">
512 <size> 513 <size>
513 <width>20</width> 514 <width>20</width>
514 <height>51</height> 515 <height>51</height>
@@ -516,16 +517,16 @@
516 </property> 517 </property>
517 </spacer> 518 </spacer>
518 </item> 519 </item>
519 <item row="1" column="0" > 520 <item row="1" column="0">
520 <widget class="QToolButton" name="buttonCreateVoice" > 521 <widget class="QToolButton" name="buttonCreateVoice">
521 <property name="text" > 522 <property name="text">
522 <string>Create Voice files</string> 523 <string>Create Voice files</string>
523 </property> 524 </property>
524 <property name="icon" > 525 <property name="icon">
525 <iconset resource="rbutilqt.qrc" > 526 <iconset resource="rbutilqt.qrc">
526 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset> 527 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset>
527 </property> 528 </property>
528 <property name="iconSize" > 529 <property name="iconSize">
529 <size> 530 <size>
530 <width>56</width> 531 <width>56</width>
531 <height>46</height> 532 <height>46</height>
@@ -533,37 +534,37 @@
533 </property> 534 </property>
534 </widget> 535 </widget>
535 </item> 536 </item>
536 <item row="1" column="1" > 537 <item row="1" column="1">
537 <widget class="QLabel" name="labelCreateVoice" > 538 <widget class="QLabel" name="labelCreateVoice">
538 <property name="text" > 539 <property name="text">
539 <string>&lt;b>Create Voice file&lt;/b>&lt;br/>Voice files are needed to make Rockbox speak the user interface. Speaking is enabled by default, so&#xd; 540 <string>&lt;b&gt;Create Voice file&lt;/b&gt;&lt;br/&gt;Voice files are needed to make Rockbox speak the user interface. Speaking is enabled by default, so
540 if you installed the voice file Rockbox will speak.</string> 541 if you installed the voice file Rockbox will speak.</string>
541 </property> 542 </property>
542 <property name="wordWrap" > 543 <property name="wordWrap">
543 <bool>true</bool> 544 <bool>true</bool>
544 </property> 545 </property>
545 </widget> 546 </widget>
546 </item> 547 </item>
547 </layout> 548 </layout>
548 </widget> 549 </widget>
549 <widget class="QWidget" name="uninstall" > 550 <widget class="QWidget" name="uninstall">
550 <attribute name="title" > 551 <attribute name="title">
551 <string>&amp;Uninstallation</string> 552 <string>&amp;Uninstallation</string>
552 </attribute> 553 </attribute>
553 <attribute name="toolTip" > 554 <attribute name="toolTip">
554 <string>Uninstall Rockbox</string> 555 <string>Uninstall Rockbox</string>
555 </attribute> 556 </attribute>
556 <layout class="QGridLayout" > 557 <layout class="QGridLayout">
557 <item row="0" column="0" > 558 <item row="0" column="0">
558 <widget class="QToolButton" name="buttonRemoveBootloader" > 559 <widget class="QToolButton" name="buttonRemoveBootloader">
559 <property name="text" > 560 <property name="text">
560 <string>Uninstall Bootloader</string> 561 <string>Uninstall Bootloader</string>
561 </property> 562 </property>
562 <property name="icon" > 563 <property name="icon">
563 <iconset resource="rbutilqt.qrc" > 564 <iconset resource="rbutilqt.qrc">
564 <normaloff>:/icons/rembootloader_btn.png</normaloff>:/icons/rembootloader_btn.png</iconset> 565 <normaloff>:/icons/rembootloader_btn.png</normaloff>:/icons/rembootloader_btn.png</iconset>
565 </property> 566 </property>
566 <property name="iconSize" > 567 <property name="iconSize">
567 <size> 568 <size>
568 <width>56</width> 569 <width>56</width>
569 <height>46</height> 570 <height>46</height>
@@ -571,26 +572,26 @@
571 </property> 572 </property>
572 </widget> 573 </widget>
573 </item> 574 </item>
574 <item row="0" column="1" > 575 <item row="0" column="1">
575 <widget class="QLabel" name="labelRemoveBootloader" > 576 <widget class="QLabel" name="labelRemoveBootloader">
576 <property name="text" > 577 <property name="text">
577 <string>&lt;b>Remove the bootloader&lt;/b>&lt;br/>After removing the bootloader you won't be able to start Rockbox.</string> 578 <string>&lt;b&gt;Remove the bootloader&lt;/b&gt;&lt;br/&gt;After removing the bootloader you won't be able to start Rockbox.</string>
578 </property> 579 </property>
579 <property name="wordWrap" > 580 <property name="wordWrap">
580 <bool>true</bool> 581 <bool>true</bool>
581 </property> 582 </property>
582 </widget> 583 </widget>
583 </item> 584 </item>
584 <item row="1" column="0" > 585 <item row="1" column="0">
585 <widget class="QToolButton" name="buttonRemoveRockbox" > 586 <widget class="QToolButton" name="buttonRemoveRockbox">
586 <property name="text" > 587 <property name="text">
587 <string>Uninstall Rockbox</string> 588 <string>Uninstall Rockbox</string>
588 </property> 589 </property>
589 <property name="icon" > 590 <property name="icon">
590 <iconset resource="rbutilqt.qrc" > 591 <iconset resource="rbutilqt.qrc">
591 <normaloff>:/icons/remrb_btn.png</normaloff>:/icons/remrb_btn.png</iconset> 592 <normaloff>:/icons/remrb_btn.png</normaloff>:/icons/remrb_btn.png</iconset>
592 </property> 593 </property>
593 <property name="iconSize" > 594 <property name="iconSize">
594 <size> 595 <size>
595 <width>56</width> 596 <width>56</width>
596 <height>46</height> 597 <height>46</height>
@@ -598,28 +599,28 @@
598 </property> 599 </property>
599 </widget> 600 </widget>
600 </item> 601 </item>
601 <item row="1" column="1" > 602 <item row="1" column="1">
602 <widget class="QLabel" name="labelUninstall" > 603 <widget class="QLabel" name="labelUninstall">
603 <property name="text" > 604 <property name="text">
604 <string>&lt;b>Uninstall Rockbox from your audio player.&lt;/b>&lt;br/>This will leave the bootloader in place (you need to remove it manually).</string> 605 <string>&lt;b&gt;Uninstall Rockbox from your audio player.&lt;/b&gt;&lt;br/&gt;This will leave the bootloader in place (you need to remove it manually).</string>
605 </property> 606 </property>
606 <property name="alignment" > 607 <property name="alignment">
607 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set> 608 <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
608 </property> 609 </property>
609 <property name="wordWrap" > 610 <property name="wordWrap">
610 <bool>true</bool> 611 <bool>true</bool>
611 </property> 612 </property>
612 <property name="buddy" > 613 <property name="buddy">
613 <cstring>buttonRockbox</cstring> 614 <cstring>buttonRockbox</cstring>
614 </property> 615 </property>
615 </widget> 616 </widget>
616 </item> 617 </item>
617 <item row="2" column="0" > 618 <item row="2" column="0">
618 <spacer> 619 <spacer>
619 <property name="orientation" > 620 <property name="orientation">
620 <enum>Qt::Vertical</enum> 621 <enum>Qt::Vertical</enum>
621 </property> 622 </property>
622 <property name="sizeHint" stdset="0" > 623 <property name="sizeHint" stdset="0">
623 <size> 624 <size>
624 <width>20</width> 625 <width>20</width>
625 <height>40</height> 626 <height>40</height>
@@ -627,12 +628,12 @@
627 </property> 628 </property>
628 </spacer> 629 </spacer>
629 </item> 630 </item>
630 <item row="2" column="1" > 631 <item row="2" column="1">
631 <spacer> 632 <spacer>
632 <property name="orientation" > 633 <property name="orientation">
633 <enum>Qt::Vertical</enum> 634 <enum>Qt::Vertical</enum>
634 </property> 635 </property>
635 <property name="sizeHint" stdset="0" > 636 <property name="sizeHint" stdset="0">
636 <size> 637 <size>
637 <width>20</width> 638 <width>20</width>
638 <height>40</height> 639 <height>40</height>
@@ -642,42 +643,42 @@
642 </item> 643 </item>
643 </layout> 644 </layout>
644 </widget> 645 </widget>
645 <widget class="QWidget" name="manual" > 646 <widget class="QWidget" name="manual">
646 <attribute name="title" > 647 <attribute name="title">
647 <string>&amp;Manual</string> 648 <string>&amp;Manual</string>
648 </attribute> 649 </attribute>
649 <attribute name="toolTip" > 650 <attribute name="toolTip">
650 <string>View and download the manual</string> 651 <string>View and download the manual</string>
651 </attribute> 652 </attribute>
652 <layout class="QGridLayout" > 653 <layout class="QGridLayout">
653 <item row="0" column="0" > 654 <item row="0" column="0">
654 <widget class="QGroupBox" name="groupBox_2" > 655 <widget class="QGroupBox" name="groupBox_2">
655 <property name="title" > 656 <property name="title">
656 <string>Read the manual</string> 657 <string>Read the manual</string>
657 </property> 658 </property>
658 <layout class="QGridLayout" > 659 <layout class="QGridLayout">
659 <item row="0" column="0" > 660 <item row="0" column="0">
660 <widget class="QLabel" name="labelPdfManual" > 661 <widget class="QLabel" name="labelPdfManual">
661 <property name="text" > 662 <property name="text">
662 <string>PDF manual</string> 663 <string>PDF manual</string>
663 </property> 664 </property>
664 <property name="openExternalLinks" > 665 <property name="openExternalLinks">
665 <bool>true</bool> 666 <bool>true</bool>
666 </property> 667 </property>
667 <property name="textInteractionFlags" > 668 <property name="textInteractionFlags">
668 <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set> 669 <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
669 </property> 670 </property>
670 </widget> 671 </widget>
671 </item> 672 </item>
672 <item row="1" column="0" > 673 <item row="1" column="0">
673 <widget class="QLabel" name="labelHtmlManual" > 674 <widget class="QLabel" name="labelHtmlManual">
674 <property name="text" > 675 <property name="text">
675 <string>HTML manual</string> 676 <string>HTML manual</string>
676 </property> 677 </property>
677 <property name="openExternalLinks" > 678 <property name="openExternalLinks">
678 <bool>true</bool> 679 <bool>true</bool>
679 </property> 680 </property>
680 <property name="textInteractionFlags" > 681 <property name="textInteractionFlags">
681 <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set> 682 <set>Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse</set>
682 </property> 683 </property>
683 </widget> 684 </widget>
@@ -685,36 +686,36 @@
685 </layout> 686 </layout>
686 </widget> 687 </widget>
687 </item> 688 </item>
688 <item row="1" column="0" > 689 <item row="1" column="0">
689 <widget class="QGroupBox" name="groupBox" > 690 <widget class="QGroupBox" name="groupBox">
690 <property name="title" > 691 <property name="title">
691 <string>Download the manual</string> 692 <string>Download the manual</string>
692 </property> 693 </property>
693 <layout class="QGridLayout" > 694 <layout class="QGridLayout">
694 <item row="0" column="0" > 695 <item row="0" column="0">
695 <layout class="QVBoxLayout" > 696 <layout class="QVBoxLayout">
696 <item> 697 <item>
697 <widget class="QRadioButton" name="radioPdf" > 698 <widget class="QRadioButton" name="radioPdf">
698 <property name="text" > 699 <property name="text">
699 <string>&amp;PDF version</string> 700 <string>&amp;PDF version</string>
700 </property> 701 </property>
701 </widget> 702 </widget>
702 </item> 703 </item>
703 <item> 704 <item>
704 <widget class="QRadioButton" name="radioHtmlzip" > 705 <widget class="QRadioButton" name="radioHtmlzip">
705 <property name="text" > 706 <property name="text">
706 <string>&amp;HTML version (zip file)</string> 707 <string>&amp;HTML version (zip file)</string>
707 </property> 708 </property>
708 </widget> 709 </widget>
709 </item> 710 </item>
710 </layout> 711 </layout>
711 </item> 712 </item>
712 <item row="0" column="1" > 713 <item row="0" column="1">
713 <spacer> 714 <spacer>
714 <property name="orientation" > 715 <property name="orientation">
715 <enum>Qt::Horizontal</enum> 716 <enum>Qt::Horizontal</enum>
716 </property> 717 </property>
717 <property name="sizeHint" stdset="0" > 718 <property name="sizeHint" stdset="0">
718 <size> 719 <size>
719 <width>40</width> 720 <width>40</width>
720 <height>20</height> 721 <height>20</height>
@@ -722,9 +723,9 @@
722 </property> 723 </property>
723 </spacer> 724 </spacer>
724 </item> 725 </item>
725 <item row="0" column="2" > 726 <item row="0" column="2">
726 <widget class="QPushButton" name="buttonDownloadManual" > 727 <widget class="QPushButton" name="buttonDownloadManual">
727 <property name="text" > 728 <property name="text">
728 <string>Down&amp;load</string> 729 <string>Down&amp;load</string>
729 </property> 730 </property>
730 </widget> 731 </widget>
@@ -732,12 +733,12 @@
732 </layout> 733 </layout>
733 </widget> 734 </widget>
734 </item> 735 </item>
735 <item row="2" column="0" > 736 <item row="2" column="0">
736 <spacer> 737 <spacer>
737 <property name="orientation" > 738 <property name="orientation">
738 <enum>Qt::Vertical</enum> 739 <enum>Qt::Vertical</enum>
739 </property> 740 </property>
740 <property name="sizeHint" stdset="0" > 741 <property name="sizeHint" stdset="0">
741 <size> 742 <size>
742 <width>20</width> 743 <width>20</width>
743 <height>40</height> 744 <height>40</height>
@@ -747,28 +748,28 @@
747 </item> 748 </item>
748 </layout> 749 </layout>
749 </widget> 750 </widget>
750 <widget class="QWidget" name="info" > 751 <widget class="QWidget" name="info">
751 <attribute name="title" > 752 <attribute name="title">
752 <string>Inf&amp;o</string> 753 <string>Inf&amp;o</string>
753 </attribute> 754 </attribute>
754 <layout class="QGridLayout" > 755 <layout class="QGridLayout">
755 <item row="0" column="0" > 756 <item row="0" column="0">
756 <widget class="QLabel" name="labelInfo" > 757 <widget class="QLabel" name="labelInfo">
757 <property name="text" > 758 <property name="text">
758 <string>Currently installed packages.&lt;br/>&lt;b>Note:&lt;/b> if you manually installed packages this might not be correct!</string> 759 <string>Currently installed packages.&lt;br/&gt;&lt;b&gt;Note:&lt;/b&gt; if you manually installed packages this might not be correct!</string>
759 </property> 760 </property>
760 <property name="textFormat" > 761 <property name="textFormat">
761 <enum>Qt::RichText</enum> 762 <enum>Qt::RichText</enum>
762 </property> 763 </property>
763 <property name="wordWrap" > 764 <property name="wordWrap">
764 <bool>true</bool> 765 <bool>true</bool>
765 </property> 766 </property>
766 </widget> 767 </widget>
767 </item> 768 </item>
768 <item row="1" column="0" > 769 <item row="1" column="0">
769 <widget class="QTreeWidget" name="treeInfo" > 770 <widget class="QTreeWidget" name="treeInfo">
770 <column> 771 <column>
771 <property name="text" > 772 <property name="text">
772 <string>1</string> 773 <string>1</string>
773 </property> 774 </property>
774 </column> 775 </column>
@@ -780,274 +781,274 @@
780 </item> 781 </item>
781 </layout> 782 </layout>
782 </widget> 783 </widget>
783 <widget class="QMenuBar" name="menubar" > 784 <widget class="QMenuBar" name="menubar">
784 <property name="geometry" > 785 <property name="geometry">
785 <rect> 786 <rect>
786 <x>0</x> 787 <x>0</x>
787 <y>0</y> 788 <y>0</y>
788 <width>650</width> 789 <width>650</width>
789 <height>31</height> 790 <height>18</height>
790 </rect> 791 </rect>
791 </property> 792 </property>
792 <widget class="QMenu" name="menu_File" > 793 <widget class="QMenu" name="menu_File">
793 <property name="title" > 794 <property name="title">
794 <string>&amp;File</string> 795 <string>&amp;File</string>
795 </property> 796 </property>
796 <addaction name="actionInstall_Rockbox_Utility_on_player" /> 797 <addaction name="actionInstall_Rockbox_Utility_on_player"/>
797 <addaction name="action_Configure" /> 798 <addaction name="action_Configure"/>
798 <addaction name="separator" /> 799 <addaction name="separator"/>
799 <addaction name="actionE_xit" /> 800 <addaction name="actionE_xit"/>
800 </widget> 801 </widget>
801 <widget class="QMenu" name="menuAbout" > 802 <widget class="QMenu" name="menuAbout">
802 <property name="title" > 803 <property name="title">
803 <string>&amp;Help</string> 804 <string>&amp;Help</string>
804 </property> 805 </property>
805 <widget class="QMenu" name="menu_Troubleshoot" > 806 <widget class="QMenu" name="menu_Troubleshoot">
806 <property name="title" > 807 <property name="title">
807 <string>&amp;Troubleshoot</string> 808 <string>&amp;Troubleshoot</string>
808 </property> 809 </property>
809 <addaction name="action_System_Info" /> 810 <addaction name="action_System_Info"/>
810 <addaction name="action_Trace" /> 811 <addaction name="action_Trace"/>
811 </widget> 812 </widget>
812 <addaction name="action_About" /> 813 <addaction name="action_About"/>
813 <addaction name="actionAbout_Qt" /> 814 <addaction name="actionAbout_Qt"/>
814 <addaction name="separator" /> 815 <addaction name="separator"/>
815 <addaction name="menu_Troubleshoot" /> 816 <addaction name="menu_Troubleshoot"/>
816 <addaction name="action_Help" /> 817 <addaction name="action_Help"/>
817 </widget> 818 </widget>
818 <widget class="QMenu" name="menuA_ctions" > 819 <widget class="QMenu" name="menuA_ctions">
819 <property name="title" > 820 <property name="title">
820 <string>Action&amp;s</string> 821 <string>Action&amp;s</string>
821 </property> 822 </property>
822 <widget class="QMenu" name="menuInstallation" > 823 <widget class="QMenu" name="menuInstallation">
823 <property name="title" > 824 <property name="title">
824 <string>&amp;Installation</string> 825 <string>&amp;Installation</string>
825 </property> 826 </property>
826 <addaction name="actionInstall_Bootloader" /> 827 <addaction name="actionInstall_Bootloader"/>
827 <addaction name="actionInstall_Rockbox" /> 828 <addaction name="actionInstall_Rockbox"/>
828 </widget> 829 </widget>
829 <widget class="QMenu" name="menuQuick_Start" > 830 <widget class="QMenu" name="menuQuick_Start">
830 <property name="title" > 831 <property name="title">
831 <string>&amp;Quick Start</string> 832 <string>&amp;Quick Start</string>
832 </property> 833 </property>
833 <addaction name="actionComplete_Installation" /> 834 <addaction name="actionComplete_Installation"/>
834 <addaction name="actionSmall_Installation" /> 835 <addaction name="actionSmall_Installation"/>
835 </widget> 836 </widget>
836 <widget class="QMenu" name="menuExtras" > 837 <widget class="QMenu" name="menuExtras">
837 <property name="title" > 838 <property name="title">
838 <string>&amp;Extras</string> 839 <string>&amp;Extras</string>
839 </property> 840 </property>
840 <addaction name="actionFonts_Package" /> 841 <addaction name="actionFonts_Package"/>
841 <addaction name="actionInstall_Themes" /> 842 <addaction name="actionInstall_Themes"/>
842 <addaction name="actionInstall_Game_Files" /> 843 <addaction name="actionInstall_Game_Files"/>
843 </widget> 844 </widget>
844 <widget class="QMenu" name="menuAccessibility" > 845 <widget class="QMenu" name="menuAccessibility">
845 <property name="title" > 846 <property name="title">
846 <string>&amp;Accessibility</string> 847 <string>&amp;Accessibility</string>
847 </property> 848 </property>
848 <addaction name="actionInstall_Voice_File" /> 849 <addaction name="actionInstall_Voice_File"/>
849 <addaction name="actionCreate_Voice_File" /> 850 <addaction name="actionCreate_Voice_File"/>
850 <addaction name="actionCreate_Talk_Files" /> 851 <addaction name="actionCreate_Talk_Files"/>
851 </widget> 852 </widget>
852 <widget class="QMenu" name="menuUninstallation" > 853 <widget class="QMenu" name="menuUninstallation">
853 <property name="title" > 854 <property name="title">
854 <string>&amp;Uninstallation</string> 855 <string>&amp;Uninstallation</string>
855 </property> 856 </property>
856 <addaction name="actionRemove_bootloader" /> 857 <addaction name="actionRemove_bootloader"/>
857 <addaction name="actionUninstall_Rockbox" /> 858 <addaction name="actionUninstall_Rockbox"/>
858 </widget> 859 </widget>
859 <addaction name="menuQuick_Start" /> 860 <addaction name="menuQuick_Start"/>
860 <addaction name="menuInstallation" /> 861 <addaction name="menuInstallation"/>
861 <addaction name="menuExtras" /> 862 <addaction name="menuExtras"/>
862 <addaction name="menuAccessibility" /> 863 <addaction name="menuAccessibility"/>
863 <addaction name="menuUninstallation" /> 864 <addaction name="menuUninstallation"/>
864 </widget> 865 </widget>
865 <addaction name="menu_File" /> 866 <addaction name="menu_File"/>
866 <addaction name="menuA_ctions" /> 867 <addaction name="menuA_ctions"/>
867 <addaction name="menuAbout" /> 868 <addaction name="menuAbout"/>
868 </widget> 869 </widget>
869 <widget class="QStatusBar" name="statusbar" /> 870 <widget class="QStatusBar" name="statusbar"/>
870 <action name="actionEmpty_local_download_cache" > 871 <action name="actionEmpty_local_download_cache">
871 <property name="text" > 872 <property name="text">
872 <string>Empty local download cache</string> 873 <string>Empty local download cache</string>
873 </property> 874 </property>
874 </action> 875 </action>
875 <action name="actionInstall_Rockbox_Utility_on_player" > 876 <action name="actionInstall_Rockbox_Utility_on_player">
876 <property name="text" > 877 <property name="text">
877 <string>Install Rockbox Utility on player</string> 878 <string>Install Rockbox Utility on player</string>
878 </property> 879 </property>
879 </action> 880 </action>
880 <action name="action_Configure" > 881 <action name="action_Configure">
881 <property name="text" > 882 <property name="text">
882 <string>&amp;Configure</string> 883 <string>&amp;Configure</string>
883 </property> 884 </property>
884 </action> 885 </action>
885 <action name="actionE_xit" > 886 <action name="actionE_xit">
886 <property name="text" > 887 <property name="text">
887 <string>E&amp;xit</string> 888 <string>E&amp;xit</string>
888 </property> 889 </property>
889 <property name="shortcut" > 890 <property name="shortcut">
890 <string>Ctrl+Q</string> 891 <string>Ctrl+Q</string>
891 </property> 892 </property>
892 </action> 893 </action>
893 <action name="action_About" > 894 <action name="action_About">
894 <property name="text" > 895 <property name="text">
895 <string>&amp;About</string> 896 <string>&amp;About</string>
896 </property> 897 </property>
897 </action> 898 </action>
898 <action name="actionAbout_Qt" > 899 <action name="actionAbout_Qt">
899 <property name="text" > 900 <property name="text">
900 <string>About &amp;Qt</string> 901 <string>About &amp;Qt</string>
901 </property> 902 </property>
902 </action> 903 </action>
903 <action name="action_Help" > 904 <action name="action_Help">
904 <property name="text" > 905 <property name="text">
905 <string>&amp;Help</string> 906 <string>&amp;Help</string>
906 </property> 907 </property>
907 </action> 908 </action>
908 <action name="actionInfo" > 909 <action name="actionInfo">
909 <property name="text" > 910 <property name="text">
910 <string>Info</string> 911 <string>Info</string>
911 </property> 912 </property>
912 </action> 913 </action>
913 <action name="actionComplete_Installation" > 914 <action name="actionComplete_Installation">
914 <property name="icon" > 915 <property name="icon">
915 <iconset resource="rbutilqt.qrc" > 916 <iconset resource="rbutilqt.qrc">
916 <normaloff>:/icons/bootloader_btn.png</normaloff>:/icons/bootloader_btn.png</iconset> 917 <normaloff>:/icons/bootloader_btn.png</normaloff>:/icons/bootloader_btn.png</iconset>
917 </property> 918 </property>
918 <property name="text" > 919 <property name="text">
919 <string>&amp;Complete Installation</string> 920 <string>&amp;Complete Installation</string>
920 </property> 921 </property>
921 </action> 922 </action>
922 <action name="actionSmall_Installation" > 923 <action name="actionSmall_Installation">
923 <property name="icon" > 924 <property name="icon">
924 <iconset resource="rbutilqt.qrc" > 925 <iconset resource="rbutilqt.qrc">
925 <normaloff>:/icons/rbinstall_btn.png</normaloff>:/icons/rbinstall_btn.png</iconset> 926 <normaloff>:/icons/rbinstall_btn.png</normaloff>:/icons/rbinstall_btn.png</iconset>
926 </property> 927 </property>
927 <property name="text" > 928 <property name="text">
928 <string>&amp;Minimal Installation</string> 929 <string>&amp;Minimal Installation</string>
929 </property> 930 </property>
930 </action> 931 </action>
931 <action name="actionInstall_Bootloader" > 932 <action name="actionInstall_Bootloader">
932 <property name="icon" > 933 <property name="icon">
933 <iconset resource="rbutilqt.qrc" > 934 <iconset resource="rbutilqt.qrc">
934 <normaloff>:/icons/bootloader_btn.png</normaloff>:/icons/bootloader_btn.png</iconset> 935 <normaloff>:/icons/bootloader_btn.png</normaloff>:/icons/bootloader_btn.png</iconset>
935 </property> 936 </property>
936 <property name="text" > 937 <property name="text">
937 <string>Install &amp;Bootloader</string> 938 <string>Install &amp;Bootloader</string>
938 </property> 939 </property>
939 </action> 940 </action>
940 <action name="actionInstall_Rockbox" > 941 <action name="actionInstall_Rockbox">
941 <property name="icon" > 942 <property name="icon">
942 <iconset resource="rbutilqt.qrc" > 943 <iconset resource="rbutilqt.qrc">
943 <normaloff>:/icons/rbinstall_btn.png</normaloff>:/icons/rbinstall_btn.png</iconset> 944 <normaloff>:/icons/rbinstall_btn.png</normaloff>:/icons/rbinstall_btn.png</iconset>
944 </property> 945 </property>
945 <property name="text" > 946 <property name="text">
946 <string>Install &amp;Rockbox</string> 947 <string>Install &amp;Rockbox</string>
947 </property> 948 </property>
948 </action> 949 </action>
949 <action name="actionFonts_Package" > 950 <action name="actionFonts_Package">
950 <property name="icon" > 951 <property name="icon">
951 <iconset resource="rbutilqt.qrc" > 952 <iconset resource="rbutilqt.qrc">
952 <normaloff>:/icons/font_btn.png</normaloff>:/icons/font_btn.png</iconset> 953 <normaloff>:/icons/font_btn.png</normaloff>:/icons/font_btn.png</iconset>
953 </property> 954 </property>
954 <property name="text" > 955 <property name="text">
955 <string>Install &amp;Fonts Package</string> 956 <string>Install &amp;Fonts Package</string>
956 </property> 957 </property>
957 </action> 958 </action>
958 <action name="actionInstall_Themes" > 959 <action name="actionInstall_Themes">
959 <property name="icon" > 960 <property name="icon">
960 <iconset resource="rbutilqt.qrc" > 961 <iconset resource="rbutilqt.qrc">
961 <normaloff>:/icons/themes_btn.png</normaloff>:/icons/themes_btn.png</iconset> 962 <normaloff>:/icons/themes_btn.png</normaloff>:/icons/themes_btn.png</iconset>
962 </property> 963 </property>
963 <property name="text" > 964 <property name="text">
964 <string>Install &amp;Themes</string> 965 <string>Install &amp;Themes</string>
965 </property> 966 </property>
966 </action> 967 </action>
967 <action name="actionInstall_Game_Files" > 968 <action name="actionInstall_Game_Files">
968 <property name="icon" > 969 <property name="icon">
969 <iconset resource="rbutilqt.qrc" > 970 <iconset resource="rbutilqt.qrc">
970 <normaloff>:/icons/doom_btn.png</normaloff>:/icons/doom_btn.png</iconset> 971 <normaloff>:/icons/doom_btn.png</normaloff>:/icons/doom_btn.png</iconset>
971 </property> 972 </property>
972 <property name="text" > 973 <property name="text">
973 <string>Install &amp;Game Files</string> 974 <string>Install &amp;Game Files</string>
974 </property> 975 </property>
975 </action> 976 </action>
976 <action name="actionInstall_Voice_File" > 977 <action name="actionInstall_Voice_File">
977 <property name="icon" > 978 <property name="icon">
978 <iconset resource="rbutilqt.qrc" > 979 <iconset resource="rbutilqt.qrc">
979 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset> 980 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset>
980 </property> 981 </property>
981 <property name="text" > 982 <property name="text">
982 <string>&amp;Install Voice File</string> 983 <string>&amp;Install Voice File</string>
983 </property> 984 </property>
984 </action> 985 </action>
985 <action name="actionCreate_Talk_Files" > 986 <action name="actionCreate_Talk_Files">
986 <property name="icon" > 987 <property name="icon">
987 <iconset resource="rbutilqt.qrc" > 988 <iconset resource="rbutilqt.qrc">
988 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset> 989 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset>
989 </property> 990 </property>
990 <property name="text" > 991 <property name="text">
991 <string>Create &amp;Talk Files</string> 992 <string>Create &amp;Talk Files</string>
992 </property> 993 </property>
993 </action> 994 </action>
994 <action name="actionRemove_bootloader" > 995 <action name="actionRemove_bootloader">
995 <property name="icon" > 996 <property name="icon">
996 <iconset resource="rbutilqt.qrc" > 997 <iconset resource="rbutilqt.qrc">
997 <normaloff>:/icons/rembootloader_btn.png</normaloff>:/icons/rembootloader_btn.png</iconset> 998 <normaloff>:/icons/rembootloader_btn.png</normaloff>:/icons/rembootloader_btn.png</iconset>
998 </property> 999 </property>
999 <property name="text" > 1000 <property name="text">
1000 <string>Remove &amp;bootloader</string> 1001 <string>Remove &amp;bootloader</string>
1001 </property> 1002 </property>
1002 </action> 1003 </action>
1003 <action name="actionUninstall_Rockbox" > 1004 <action name="actionUninstall_Rockbox">
1004 <property name="icon" > 1005 <property name="icon">
1005 <iconset resource="rbutilqt.qrc" > 1006 <iconset resource="rbutilqt.qrc">
1006 <normaloff>:/icons/remrb_btn.png</normaloff>:/icons/remrb_btn.png</iconset> 1007 <normaloff>:/icons/remrb_btn.png</normaloff>:/icons/remrb_btn.png</iconset>
1007 </property> 1008 </property>
1008 <property name="text" > 1009 <property name="text">
1009 <string>Uninstall &amp;Rockbox</string> 1010 <string>Uninstall &amp;Rockbox</string>
1010 </property> 1011 </property>
1011 </action> 1012 </action>
1012 <action name="actionRead_PDF_manual" > 1013 <action name="actionRead_PDF_manual">
1013 <property name="text" > 1014 <property name="text">
1014 <string>Read PDF manual</string> 1015 <string>Read PDF manual</string>
1015 </property> 1016 </property>
1016 </action> 1017 </action>
1017 <action name="actionRead_HTML_manual" > 1018 <action name="actionRead_HTML_manual">
1018 <property name="text" > 1019 <property name="text">
1019 <string>Read HTML manual</string> 1020 <string>Read HTML manual</string>
1020 </property> 1021 </property>
1021 </action> 1022 </action>
1022 <action name="actionDownload_PDF_manual" > 1023 <action name="actionDownload_PDF_manual">
1023 <property name="text" > 1024 <property name="text">
1024 <string>Download PDF manual</string> 1025 <string>Download PDF manual</string>
1025 </property> 1026 </property>
1026 </action> 1027 </action>
1027 <action name="actionDownload_HTML_manual_zip" > 1028 <action name="actionDownload_HTML_manual_zip">
1028 <property name="text" > 1029 <property name="text">
1029 <string>Download HTML manual (zip)</string> 1030 <string>Download HTML manual (zip)</string>
1030 </property> 1031 </property>
1031 </action> 1032 </action>
1032 <action name="actionCreate_Voice_File" > 1033 <action name="actionCreate_Voice_File">
1033 <property name="icon" > 1034 <property name="icon">
1034 <iconset resource="rbutilqt.qrc" > 1035 <iconset resource="rbutilqt.qrc">
1035 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset> 1036 <normaloff>:/icons/talkfile_btn.png</normaloff>:/icons/talkfile_btn.png</iconset>
1036 </property> 1037 </property>
1037 <property name="text" > 1038 <property name="text">
1038 <string>Create &amp;Voice File</string> 1039 <string>Create &amp;Voice File</string>
1039 </property> 1040 </property>
1040 <property name="iconText" > 1041 <property name="iconText">
1041 <string>Create Voice File</string> 1042 <string>Create Voice File</string>
1042 </property> 1043 </property>
1043 </action> 1044 </action>
1044 <action name="action_System_Info" > 1045 <action name="action_System_Info">
1045 <property name="text" > 1046 <property name="text">
1046 <string>&amp;System Info</string> 1047 <string>&amp;System Info</string>
1047 </property> 1048 </property>
1048 </action> 1049 </action>
1049 <action name="action_Trace" > 1050 <action name="action_Trace">
1050 <property name="text" > 1051 <property name="text">
1051 <string>System &amp;Trace</string> 1052 <string>System &amp;Trace</string>
1052 </property> 1053 </property>
1053 </action> 1054 </action>
@@ -1073,24 +1074,7 @@
1073 <tabstop>treeInfo</tabstop> 1074 <tabstop>treeInfo</tabstop>
1074 </tabstops> 1075 </tabstops>
1075 <resources> 1076 <resources>
1076 <include location="rbutilqt.qrc" /> 1077 <include location="rbutilqt.qrc"/>
1077 </resources> 1078 </resources>
1078 <connections> 1079 <connections/>
1079 <connection>
1080 <sender>actionE_xit</sender>
1081 <signal>triggered()</signal>
1082 <receiver>RbUtilQtFrm</receiver>
1083 <slot>close()</slot>
1084 <hints>
1085 <hint type="sourcelabel" >
1086 <x>-1</x>
1087 <y>-1</y>
1088 </hint>
1089 <hint type="destinationlabel" >
1090 <x>279</x>
1091 <y>315</y>
1092 </hint>
1093 </hints>
1094 </connection>
1095 </connections>
1096</ui> 1080</ui>