##// END OF EJS Templates
prueba 1 ok
ralonso -
r60:61
parent child
Show More
@@ -1,395 +1,397
1 1 # -*- coding: utf-8 -*- No newline at end of file
2 2 No newline at end of file
3 3 """ No newline at end of file
4 4 Module implementing MainWindow. No newline at end of file
5 5 """ No newline at end of file
6 6 No newline at end of file
7 7 from PyQt4.QtGui import QMainWindow No newline at end of file
8 8 from PyQt4.QtCore import pyqtSignature No newline at end of file
9 9 from PyQt4 import QtCore No newline at end of file
10 10 from Ui_MainWindow import Ui_MainWindow No newline at end of file
11 11 from PyQt4 import QtGui No newline at end of file
12 12 from subprocess import * No newline at end of file
13 13 import sys No newline at end of file
14 14 import os No newline at end of file
15 15 #import subprocess No newline at end of file
16 16 import commands No newline at end of file
17 17 from functions import functions No newline at end of file
18 18 from functions import functions2 No newline at end of file
19 19 No newline at end of file
20 20 class MainWindow(QMainWindow, Ui_MainWindow): No newline at end of file
21 21 """ No newline at end of file
22 22 Class documentation goes here. No newline at end of file
23 23 """ No newline at end of file
24 24 No newline at end of file
25 25 def __init__(self, parent = None): No newline at end of file
26 26 QMainWindow.__init__(self, parent) No newline at end of file
27 27 self.setupUi(self) No newline at end of file
28 28 self.setupUi2() No newline at end of file
29 29 #sys.stdout = self #redirige salida estandar No newline at end of file
30 30 No newline at end of file
31 31 def setupUi2(self): No newline at end of file
32 32 No newline at end of file
33 33 functions2.detect_devices(self) #busca los dispositivos de grabacion No newline at end of file
34 34 No newline at end of file
35 35 self.var_Discs = 0 #Numero de discos del proyecto No newline at end of file
36 36 self.var_Copys = 0 #Numero de copias No newline at end of file
37 37 self.var_disc_n = 0 No newline at end of file
38 38 self.var_copy_n = 0 No newline at end of file
39 39 No newline at end of file
40 40 self.var_list=[] No newline at end of file
41 41 self.var_sublist=[] No newline at end of file
42 42 No newline at end of file
43 43 self.var_devices=[] No newline at end of file
44 44 No newline at end of file
45 45 self.var_step = 0 No newline at end of file
46 46 self.bool_state_burning = False No newline at end of file
47 47 No newline at end of file
48 48 No newline at end of file
49 49 #Revisa si existe el archivo de confirguracion No newline at end of file
50 50 if os.path.isfile("parameters.conf"): No newline at end of file
51 51 self.txtInfo.append("Archivo de configuracion encontrado") No newline at end of file
52 52 functions2.get_parameters_conf(self) No newline at end of file
53 53 self.txtInfo.append("El proyecto es de "+str(self.var_Discs)+" discos") No newline at end of file
54 54 else: No newline at end of file
55 55 self.txtInfo.append("Elija los parametros de configuracion") No newline at end of file
56 56 functions2.set_parameters_test(self) #Establece ciertos parametros, para pruebas No newline at end of file
57 57 No newline at end of file
58 58 functions2.set_vars(self) #Carga las variables de la clase con los parametros seleccionados No newline at end of file
59 59 No newline at end of file
60 60 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
61 61 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
62 62 functions.load_days(self) No newline at end of file
63 63 No newline at end of file
64 64 if os.path.isfile("parameters.conf"): No newline at end of file
65 65 functions2.enabled_items1(True, self) #Se bloquean los parametros de configuracion No newline at end of file
66 66 No newline at end of file
67 67 No newline at end of file
68 68 self.var_process = QtCore.QProcess() No newline at end of file
69 69 self.connect(self.var_process, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput) No newline at end of file
70 70 self.connect(self.var_process, QtCore.SIGNAL('readyReadStandardError()'), self.readError) No newline at end of file
71 71 self.connect(self.var_process, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished) No newline at end of file
72 72 No newline at end of file
73 73 No newline at end of file
74 74 def write(self, txt): No newline at end of file
75 75 self.txtInfo.append(str(txt)) No newline at end of file
76 76 No newline at end of file
77 77 No newline at end of file
78 78 #----------------------------------------------------- Funciones del proceso --------------------------------------------------------------- No newline at end of file
79 79 No newline at end of file
80 80 def readOuput(self): No newline at end of file
81 81 self.txtSburn.insertPlainText("stdout: " + QtCore.QString(self.var_process.readAllStandardOutput())) No newline at end of file
82 82 No newline at end of file
83 83 def readError(self): No newline at end of file
84 84 self.txtSburn.insertPlainText("stderr: " + QtCore.QString(self.var_process.readAllStandardError())) No newline at end of file
85 85 No newline at end of file
86 86 def finished(self): No newline at end of file
87 87 self.txtInfo.append("proceso terminado finished() "+QtCore.QString(self.var_process.exitCode())) No newline at end of file
88 88 if self.var_disc_n <= self.var_Discs and self.bool_state_burning: No newline at end of file
89 89 self.burning() No newline at end of file
90 90 No newline at end of file
91 91 No newline at end of file
92 92 #----------------------------------------------------- Obtencion de la ruta de los datos --------------------------------------------------------------- No newline at end of file
93 93 No newline at end of file
94 94 @pyqtSignature("") No newline at end of file
95 95 def on_btnDpath_clicked(self): No newline at end of file
96 96 """ No newline at end of file
97 97 Permite seleccionar graficamente el direcorio de los datos a grabar No newline at end of file
98 98 """ No newline at end of file
99 99 self.var_Dpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
100 100 self.txtDpath.setText(self.var_Dpath) No newline at end of file
101 101 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
102 102 functions.load_days(self) No newline at end of file
103 103 No newline at end of file
104 104 No newline at end of file
105 105 @pyqtSignature("") No newline at end of file
106 106 def on_txtDpath_editingFinished(self): No newline at end of file
107 107 """ No newline at end of file
108 108 Carga la ruta editada y verifica que sea correcta y carga la lista de dias No newline at end of file
109 109 """ No newline at end of file
110 110 self.var_Dpath=str(self.txtDpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
111 111 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
112 112 functions.load_days(self) No newline at end of file
113 113 No newline at end of file
114 114 No newline at end of file
115 115 #----------------------------------------------------- Obtencion de las ruta del proyecto --------------------------------------------------------------- No newline at end of file
116 116 No newline at end of file
117 117 @pyqtSignature("") No newline at end of file
118 118 def on_btnRpath_clicked(self): No newline at end of file
119 119 """ No newline at end of file
120 120 Permite seleccionar graficamente el direcorio del proyecto No newline at end of file
121 121 """ No newline at end of file
122 122 self.var_Rpath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
123 123 self.txtRpath.setText(self.var_Rpath) No newline at end of file
124 124 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
125 125 No newline at end of file
126 126 No newline at end of file
127 127 @pyqtSignature("") No newline at end of file
128 128 def on_txtRpath_editingFinished(self): No newline at end of file
129 129 """ No newline at end of file
130 130 Valida la ruta del proyecto No newline at end of file
131 131 """ No newline at end of file
132 132 self.var_Rpath = str(self.txtRpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
133 133 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
134 134 No newline at end of file
135 135 No newline at end of file
136 136 #----------------------------------------------------- Tipo de datos --------------------------------------------------------------- No newline at end of file
137 137 No newline at end of file
138 138 @pyqtSignature("int") No newline at end of file
139 139 def on_lstDtype_activated(self, index): No newline at end of file
140 140 """ No newline at end of file
141 141 Permite elegir entre los tipos de archivos No newline at end of file
142 142 """ No newline at end of file
143 143 self.txtDtype.setReadOnly(True) No newline at end of file
144 144 if index == 0: No newline at end of file
145 145 self.var_Dtype ='r' No newline at end of file
146 146 elif index == 1: No newline at end of file
147 147 self.var_Dtype ='pdata' No newline at end of file
148 148 elif index == 2: No newline at end of file
149 149 self.var_Dtype ='sswma' No newline at end of file
150 150 else : No newline at end of file
151 151 self.var_Dtype ='' No newline at end of file
152 152 self.txtDtype.setReadOnly(False) No newline at end of file
153 153 No newline at end of file
154 154 self.txtDtype.setText(self.var_Dtype) No newline at end of file
155 155 functions.load_days(self) #llamada a funcion No newline at end of file
156 156 No newline at end of file
157 157 @pyqtSignature("") No newline at end of file
158 158 def on_txtDtype_editingFinished(self): No newline at end of file
159 159 self.var_Dtype=str(self.txtDtype.text()) No newline at end of file
160 160 functions.load_days(self) #llamada a funcion No newline at end of file
161 161 No newline at end of file
162 162 No newline at end of file
163 163 #----------------------------------------------------- Etiqueta --------------------------------------------------------------- No newline at end of file
164 164 No newline at end of file
165 165 @pyqtSignature("") No newline at end of file
166 166 def on_txtElabel_editingFinished(self): No newline at end of file
167 167 self.var_Elabel = str(self.txtElabel.text()) No newline at end of file
168 168 No newline at end of file
169 169 #----------------------------------------------------- Numero de copias --------------------------------------------------------------- No newline at end of file
170 170 @pyqtSignature("") No newline at end of file
171 171 def on_txtCopys_editingFinished(self): No newline at end of file
172 172 self.var_Copys = self.txtCopys.value() No newline at end of file
173 173 No newline at end of file
174 174 #----------------------------------------------------- Seleccion del rango de fechas --------------------------------------------------------------- No newline at end of file
175 175 No newline at end of file
176 176 @pyqtSignature("int") #CLOSED No newline at end of file
177 177 def on_lstStartDay_activated(self, index): No newline at end of file
178 178 """ No newline at end of file
179 179 Cambia la lista de opciones en lstStopDay No newline at end of file
180 180 """ No newline at end of file
181 181 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex() No newline at end of file
182 182 self.lstStopDay.clear() No newline at end of file
183 183 No newline at end of file
184 184 for i in self.var_list[index:]: No newline at end of file
185 185 self.lstStopDay.addItem(i) No newline at end of file
186 186 No newline at end of file
187 187 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index) No newline at end of file
188 188 No newline at end of file
189 189 functions.get_sub_list(self) No newline at end of file
190 190 No newline at end of file
191 191 No newline at end of file
192 192 @pyqtSignature("int") #CLOSED No newline at end of file
193 193 def on_lstStopDay_activated(self, index): No newline at end of file
194 194 """ No newline at end of file
195 195 Cambia la lista de opciones en lstStartDay No newline at end of file
196 196 """ No newline at end of file
197 197 var_StartDay_index=self.lstStartDay.currentIndex() No newline at end of file
198 198 var_end_index = self.lstStopDay.count() - index No newline at end of file
199 199 self.lstStartDay.clear() No newline at end of file
200 200 No newline at end of file
201 201 for i in self.var_list[:len(self.var_list) - var_end_index + 1]: No newline at end of file
202 202 self.lstStartDay.addItem(i) No newline at end of file
203 203 No newline at end of file
204 204 self.lstStartDay.setCurrentIndex(var_StartDay_index) No newline at end of file
205 205 No newline at end of file
206 206 functions.get_sub_list(self) No newline at end of file
207 207 No newline at end of file
208 208 No newline at end of file
209 209 #----------------------------------------------------- Capacidad del dispositivo de grabacion --------------------------------------------------------------- No newline at end of file
210 210 No newline at end of file
211 211 @pyqtSignature("") No newline at end of file
212 212 def on_txtDcapacity_editingFinished(self): No newline at end of file
213 213 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
214 214 No newline at end of file
215 215 No newline at end of file
216 216 @pyqtSignature("int") #CLOSED No newline at end of file
217 217 def on_lstDcapacity_activated(self, index): No newline at end of file
218 218 """ No newline at end of file
219 219 Permite elegir el tamaΓ±o del disco No newline at end of file
220 220 """ No newline at end of file
221 221 if index == 0: No newline at end of file
222 222 var_size=25.0 No newline at end of file
223 223 elif index == 1: No newline at end of file
224 224 var_size=8.5 No newline at end of file
225 225 elif index == 2: No newline at end of file
226 226 var_size=4.7 No newline at end of file
227 227 elif index == 3: No newline at end of file
228 228 var_size=0.7 No newline at end of file
229 229 No newline at end of file
230 230 if index != 4: No newline at end of file
231 231 self.txtDcapacity.setValue(var_size*10**9/1024**2) No newline at end of file
232 232 self.txtDcapacity.setReadOnly(True) No newline at end of file
233 233 else: No newline at end of file
234 234 self.txtDcapacity.setValue(100.0) No newline at end of file
235 235 self.txtDcapacity.setReadOnly(False) No newline at end of file
236 236 No newline at end of file
237 237 self.var_lstDcapacity = self.lstDcapacity.currentIndex() No newline at end of file
238 238 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
239 239 No newline at end of file
240 240 No newline at end of file
241 241 #============================================================================== No newline at end of file
242 242 # Botones para la generacion de los archivos de configuracion y el proceso de grabacion No newline at end of file
243 243 #============================================================================== No newline at end of file
244 244 No newline at end of file
245 245 #----------------------------------------------------- Generacion de la configuracion usando los parametros --------------------------------------------------------------- No newline at end of file
246 246 No newline at end of file
247 247 @pyqtSignature("") No newline at end of file
248 248 def on_btnGbkp_clicked(self): No newline at end of file
249 249 """ No newline at end of file
250 250 Generacion de archivos de configuracion usando los parametros No newline at end of file
251 251 """ No newline at end of file
252 252 No newline at end of file
253 253 if functions.validate_parameters(self) == False: No newline at end of file
254 254 return No newline at end of file
255 255 No newline at end of file
256 256 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente No newline at end of file
257 257 list_dirs=['gpath','iso','ppath'] No newline at end of file
258 258 bool_make_dirs = functions.make_dirs(list_dirs, self) No newline at end of file
259 259 if bool_make_dirs == False: No newline at end of file
260 260 return No newline at end of file
261 261 No newline at end of file
262 262 var_files_list = functions.list_files(self) #Se obtiene la lista de archivos a grabar No newline at end of file
263 263 self.var_Discs = functions.make_files_dat(var_files_list, self) #Se crean los archivos .dat No newline at end of file
264 264 functions.make_files_print(self) # Se crean los archivos .print No newline at end of file
265 265 functions2.make_parameters_conf(self) # se crea el archivo parameters.conf No newline at end of file
266 266 No newline at end of file
267 267 #Se bloquean los parametros de configuracion No newline at end of file
268 268 functions2.enabled_items1(True, self) No newline at end of file
269 269 No newline at end of file
270 270 No newline at end of file
271 271 No newline at end of file
272 272 #----------------------------------------------------- Permite reiniciar la configuracion --------------------------------------------------------------- No newline at end of file
273 273 No newline at end of file
274 274 @pyqtSignature("") No newline at end of file
275 275 def on_btnRestart_clicked(self): No newline at end of file
276 276 """ No newline at end of file
277 277 Permite que se puedan cambiar los parametros No newline at end of file
278 278 """ No newline at end of file
279 279 functions2.enabled_items1(False, self) No newline at end of file
280 280 os.remove("parameters.conf") No newline at end of file
281 281 No newline at end of file
282 282 No newline at end of file
283 283 #----------------------------------------------------- Iniciar proceso de grabacion --------------------------------------------------------------- No newline at end of file
284 284 No newline at end of file
285 285 @pyqtSignature("") No newline at end of file
286 286 def on_btnStartburn_clicked(self): No newline at end of file
287 287 """ No newline at end of file
288 288 Se inicia el proceso de grabacion No newline at end of file
289 289 """ No newline at end of file
290 290 No newline at end of file
291 291 #Verifica que exista algun dispositivo de grabacion seleccionado No newline at end of file
292 292 if not(functions2.selected_devices(self)): No newline at end of file
293 293 self.txtInfo.append("No hay ningun dispositivo de grabacion seleccionado ") No newline at end of file
294 294 return No newline at end of file
295 295 No newline at end of file
296 296 #Lista los dispositivos de grabacion a usar No newline at end of file
297 297 for dev in self.var_devices: No newline at end of file
298 298 self.txtInfo.append("dispositivo :"+dev) No newline at end of file
299 299 No newline at end of file
300 300 #Asigna las variables con los valores iniciales No newline at end of file
301 301 self.var_disc_n = 0 # numero de disco actual para grabacion No newline at end of file
302 302 self.var_copy_n = 0 No newline at end of file
303 303 self.var_step = 0 No newline at end of file
304 304 self.bool_state_burning = True No newline at end of file
305 305 No newline at end of file
306 306 functions2.enabled_items2(True, self) No newline at end of file
307 307 self.burning() No newline at end of file
308 308 No newline at end of file
309 309 def burning(self): No newline at end of file
310 310 No newline at end of file
311 311 var_Rpath_ppath=self.var_Rpath+"/ppath" No newline at end of file
312 312 var_Rpath_iso=self.var_Rpath+"/iso" No newline at end of file
313 313 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso" No newline at end of file
314 314 No newline at end of file
315 315 #Creacion del archivo.iso para la grabacion No newline at end of file
316 316 if self.var_step == 0: No newline at end of file
317 317 self.var_disc_n += 1 # numero de disco actual para grabacion
No newline at end of file
318 self.txtInfo.append("Creando el iso del disco numero: "+self.var_disc_n) No newline at end of file
319 318 No newline at end of file
320 319 #Si ya se grabaron todos los discos No newline at end of file
321 320 if self.var_disc_n > self.var_Discs: No newline at end of file
322 321 self.bool_state_burning = False No newline at end of file
323 322 self.txtInfo.append("GRABACION TERMINADA") No newline at end of file
324 323 return No newline at end of file
324 return
No newline at end of file
325 No newline at end of file
325 326 No newline at end of file
326 327 #comando para la creacion del archivo.iso No newline at end of file
327 328 file_dat=var_Rpath_ppath+"/"+self.var_Elabel+"_"+functions.i2s(self.var_disc_n)+".dat" No newline at end of file
328 329 var_cmd = 'genisoimage -hide-joliet-trans-tbl -joliet-long -r ' No newline at end of file
329 330 var_cmd += ' -A '+self.var_Elabel+' -V '+self.var_Elabel No newline at end of file
330 331 var_cmd += ' -graft-points -path-list '+ file_dat+' -o '+file_iso No newline at end of file
331 332 self.var_step = 1 #Se ira al paso de la grabacion en la siguiente llamada No newline at end of file
332 333 No newline at end of file
333 334 #Grabacion de los DVDs No newline at end of file
334 335 elif self.var_step == 1: No newline at end of file
335 336 self.var_copy_n += 1 # numero de copia actual
337 No newline at end of file
336 self.txtInfo.append("Grabando la copia numero: "+self.var_copy_n) No newline at end of file
337 338 No newline at end of file
338 339 #Si esta es la ultima copia se pasara al siguiente disco en la siguiente llamada a la funcion No newline at end of file
339 340 if self.var_copy_n == self.var_Copys: No newline at end of file
340 341 self.var_step = 0 No newline at end of file
341 342 No newline at end of file
342 343 var_index = (((self.var_disc_n - 1) * self.var_Discs) + self.var_copy_n) % len(self.var_devices) No newline at end of file
343 344 No newline at end of file
344 345 if var_index == 0: No newline at end of file
345 346 self.txtInfo.append("EXPULSANDO BANDEJAS") No newline at end of file
346 347 No newline at end of file
347 348 var_dev_tmp=self.var_devices[var_index] No newline at end of file
348 349 var_cmd = "wodim -v dev="+var_dev_tmp+" speed=16 "+ file_iso No newline at end of file
349 350 No newline at end of file
350 351 No newline at end of file
351 352 self.var_process.start('ls') No newline at end of file
352 353 self.txtInfo.append(var_cmd) No newline at end of file
353 354 No newline at end of file
354 355 # self.txtInfo.append("creando iso") No newline at end of file
355 356 # self.var_process.start(var_cmd) No newline at end of file
356 357 No newline at end of file
357 358 No newline at end of file
358 359 #----------------------------------------------------- Detener proceso de grabacion --------------------------------------------------------------- No newline at end of file
359 360 No newline at end of file
360 361 @pyqtSignature("") No newline at end of file
361 362 def on_btnStopburn_clicked(self): No newline at end of file
362 363 """ No newline at end of file
363 364 Slot documentation goes here. No newline at end of file
364 365 """ No newline at end of file
365 366 self.bool_state_burning = False No newline at end of file
366 367 self.var_process.terminate() #Termina el proceso, si puede No newline at end of file
367 368 # self.var_process.kill() #Mata el proceso, no es la forma adecuada No newline at end of file
368 369 functions2.enabled_items2(False, self) No newline at end of file
369 370 No newline at end of file
370 371 No newline at end of file
371 372 #----------------------------------------------------- Testeo de las unidades de grabacion --------------------------------------------------------------- No newline at end of file
372 373 No newline at end of file
373 374 @pyqtSignature("") No newline at end of file
374 375 def on_btnTdevA_clicked(self): No newline at end of file
375 376 var_dev = str(self.txtDeviceA.text()) No newline at end of file
376 377 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
377 378 commands.getstatusoutput(var_cmd) No newline at end of file
378 379 No newline at end of file
379 380 @pyqtSignature("") No newline at end of file
380 381 def on_btnTdevB_clicked(self): No newline at end of file
381 382 var_dev = str(self.txtDeviceB.text()) No newline at end of file
382 383 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
383 384 commands.getstatusoutput(var_cmd) No newline at end of file
384 385 No newline at end of file
385 386 @pyqtSignature("") No newline at end of file
386 387 def on_btnTdevC_clicked(self): No newline at end of file
387 388 var_dev = str(self.txtDeviceC.text()) No newline at end of file
388 389 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
389 390 commands.getstatusoutput(var_cmd) No newline at end of file
390 391 No newline at end of file
391 392 @pyqtSignature("") No newline at end of file
392 393 def on_btnTdevD_clicked(self): No newline at end of file
393 394 var_dev = str(self.txtDeviceD.text()) No newline at end of file
394 395 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
395 396 commands.getstatusoutput(var_cmd) No newline at end of file
396 397
@@ -1,1019 +1,1022
1 1 <?xml version="1.0" encoding="UTF-8"?> No newline at end of file
2 2 <ui version="4.0"> No newline at end of file
3 3 <class>MainWindow</class> No newline at end of file
4 4 <widget class="QMainWindow" name="MainWindow"> No newline at end of file
5 5 <property name="geometry"> No newline at end of file
6 6 <rect> No newline at end of file
7 7 <x>0</x> No newline at end of file
8 8 <y>0</y> No newline at end of file
9 9 <width>809</width> No newline at end of file
10 10 <height>737</height> No newline at end of file
11 11 </rect> No newline at end of file
12 12 </property> No newline at end of file
13 13 <property name="windowTitle"> No newline at end of file
14 14 <string>JRO BACKUP MANAGER</string> No newline at end of file
15 15 </property> No newline at end of file
16 16 <widget class="QWidget" name="centralwidget"> No newline at end of file
17 17 <layout class="QVBoxLayout" name="verticalLayout"> No newline at end of file
18 18 <item> No newline at end of file
19 19 <widget class="QTabWidget" name="tabWidget"> No newline at end of file
20 20 <property name="enabled"> No newline at end of file
21 21 <bool>true</bool> No newline at end of file
22 22 </property> No newline at end of file
23 23 <property name="sizePolicy"> No newline at end of file
24 24 <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> No newline at end of file
25 25 <horstretch>0</horstretch> No newline at end of file
26 26 <verstretch>0</verstretch> No newline at end of file
27 27 </sizepolicy> No newline at end of file
28 28 </property> No newline at end of file
29 29 <property name="currentIndex"> No newline at end of file
30 30 <number>0</number> No newline at end of file
31 31 </property> No newline at end of file
32 32 <widget class="QWidget" name="tabParameters"> No newline at end of file
33 33 <property name="enabled"> No newline at end of file
34 34 <bool>true</bool> No newline at end of file
35 35 </property> No newline at end of file
36 36 <attribute name="title"> No newline at end of file
37 37 <string>Parameters</string> No newline at end of file
38 38 </attribute> No newline at end of file
39 39 <layout class="QVBoxLayout" name="verticalLayout_2"> No newline at end of file
40 40 <item> No newline at end of file
41 41 <layout class="QHBoxLayout" name="horizontalLayout"> No newline at end of file
42 42 <property name="sizeConstraint"> No newline at end of file
43 43 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
44 44 </property> No newline at end of file
45 45 <item> No newline at end of file
46 46 <widget class="QLineEdit" name="txtDpath"> No newline at end of file
47 47 <property name="sizePolicy"> No newline at end of file
48 48 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> No newline at end of file
49 49 <horstretch>0</horstretch> No newline at end of file
50 50 <verstretch>0</verstretch> No newline at end of file
51 51 </sizepolicy> No newline at end of file
52 52 </property> No newline at end of file
53 53 </widget> No newline at end of file
54 54 </item> No newline at end of file
55 55 <item> No newline at end of file
56 56 <widget class="QPushButton" name="btnDpath"> No newline at end of file
57 57 <property name="sizePolicy"> No newline at end of file
58 58 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
59 59 <horstretch>0</horstretch> No newline at end of file
60 60 <verstretch>0</verstretch> No newline at end of file
61 61 </sizepolicy> No newline at end of file
62 62 </property> No newline at end of file
63 63 <property name="text"> No newline at end of file
64 64 <string>Data Path</string> No newline at end of file
65 65 </property> No newline at end of file
66 66 <property name="checkable"> No newline at end of file
67 67 <bool>false</bool> No newline at end of file
68 68 </property> No newline at end of file
69 69 </widget> No newline at end of file
70 70 </item> No newline at end of file
71 71 </layout> No newline at end of file
72 72 </item> No newline at end of file
73 73 <item> No newline at end of file
74 74 <layout class="QHBoxLayout" name="horizontalLayout_3"> No newline at end of file
75 75 <item> No newline at end of file
76 76 <widget class="QLineEdit" name="txtRpath"/> No newline at end of file
77 77 </item> No newline at end of file
78 78 <item> No newline at end of file
79 79 <widget class="QPushButton" name="btnRpath"> No newline at end of file
80 80 <property name="text"> No newline at end of file
81 81 <string>Resource Path</string> No newline at end of file
82 82 </property> No newline at end of file
83 83 </widget> No newline at end of file
84 84 </item> No newline at end of file
85 85 </layout> No newline at end of file
86 86 </item> No newline at end of file
87 87 <item> No newline at end of file
88 88 <widget class="QLabel" name="lblDtype"> No newline at end of file
89 89 <property name="text"> No newline at end of file
90 90 <string>Data Type</string> No newline at end of file
91 91 </property> No newline at end of file
92 92 </widget> No newline at end of file
93 93 </item> No newline at end of file
94 94 <item> No newline at end of file
95 95 <layout class="QHBoxLayout" name="horizontalLayout_4"> No newline at end of file
96 96 <item> No newline at end of file
97 97 <widget class="QComboBox" name="lstDtype"> No newline at end of file
98 98 <item> No newline at end of file
99 99 <property name="text"> No newline at end of file
100 100 <string>Raw Data</string> No newline at end of file
101 101 </property> No newline at end of file
102 102 </item> No newline at end of file
103 103 <item> No newline at end of file
104 104 <property name="text"> No newline at end of file
105 105 <string>Process Data</string> No newline at end of file
106 106 </property> No newline at end of file
107 107 </item> No newline at end of file
108 108 <item> No newline at end of file
109 109 <property name="text"> No newline at end of file
110 110 <string>BLTR Data</string> No newline at end of file
111 111 </property> No newline at end of file
112 112 </item> No newline at end of file
113 113 <item> No newline at end of file
114 114 <property name="text"> No newline at end of file
115 115 <string>Other</string> No newline at end of file
116 116 </property> No newline at end of file
117 117 </item> No newline at end of file
118 118 </widget> No newline at end of file
119 119 </item> No newline at end of file
120 120 <item> No newline at end of file
121 121 <widget class="QLineEdit" name="txtDtype"> No newline at end of file
122 122 <property name="text"> No newline at end of file
123 123 <string>r</string> No newline at end of file
124 124 </property> No newline at end of file
125 125 <property name="readOnly"> No newline at end of file
126 126 <bool>true</bool> No newline at end of file
127 127 </property> No newline at end of file
128 128 </widget> No newline at end of file
129 129 </item> No newline at end of file
130 130 <item> No newline at end of file
131 131 <widget class="QCheckBox" name="chkMST"> No newline at end of file
132 132 <property name="text"> No newline at end of file
133 133 <string>MST-ISR Data</string> No newline at end of file
134 134 </property> No newline at end of file
135 135 </widget> No newline at end of file
136 136 </item> No newline at end of file
137 137 </layout> No newline at end of file
138 138 </item> No newline at end of file
139 139 <item> No newline at end of file
140 140 <layout class="QHBoxLayout" name="horizontalLayout_6"> No newline at end of file
141 141 <item> No newline at end of file
142 142 <widget class="QLabel" name="lblElabel"> No newline at end of file
143 143 <property name="text"> No newline at end of file
144 144 <string>Exp. Label at device</string> No newline at end of file
145 145 </property> No newline at end of file
146 146 </widget> No newline at end of file
147 147 </item> No newline at end of file
148 148 <item> No newline at end of file
149 149 <widget class="QLabel" name="lblCopys"> No newline at end of file
150 150 <property name="text"> No newline at end of file
151 151 <string>Copys</string> No newline at end of file
152 152 </property> No newline at end of file
153 153 </widget> No newline at end of file
154 154 </item> No newline at end of file
155 155 </layout> No newline at end of file
156 156 </item> No newline at end of file
157 157 <item> No newline at end of file
158 158 <layout class="QHBoxLayout" name="horizontalLayout_5"> No newline at end of file
159 159 <item> No newline at end of file
160 160 <widget class="QLineEdit" name="txtElabel"/> No newline at end of file
161 161 </item> No newline at end of file
162 162 <item> No newline at end of file
163 163 <widget class="QSpinBox" name="txtCopys"> No newline at end of file
164 164 <property name="sizePolicy"> No newline at end of file
165 165 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
166 166 <horstretch>0</horstretch> No newline at end of file
167 167 <verstretch>0</verstretch> No newline at end of file
168 168 </sizepolicy> No newline at end of file
169 169 </property> No newline at end of file
170 <property name="minimum">
No newline at end of file
171 <number>1</number>
No newline at end of file
172 </property> No newline at end of file
170 173 </widget> No newline at end of file
171 174 </item> No newline at end of file
172 175 </layout> No newline at end of file
173 176 </item> No newline at end of file
174 177 <item> No newline at end of file
175 178 <layout class="QHBoxLayout" name="horizontalLayout_7"> No newline at end of file
176 179 <item> No newline at end of file
177 180 <widget class="QLabel" name="lblStartDay"> No newline at end of file
178 181 <property name="text"> No newline at end of file
179 182 <string>Start Day:</string> No newline at end of file
180 183 </property> No newline at end of file
181 184 </widget> No newline at end of file
182 185 </item> No newline at end of file
183 186 <item> No newline at end of file
184 187 <widget class="QLabel" name="lblStopDay"> No newline at end of file
185 188 <property name="text"> No newline at end of file
186 189 <string>Stop Day:</string> No newline at end of file
187 190 </property> No newline at end of file
188 191 </widget> No newline at end of file
189 192 </item> No newline at end of file
190 193 </layout> No newline at end of file
191 194 </item> No newline at end of file
192 195 <item> No newline at end of file
193 196 <layout class="QHBoxLayout" name="horizontalLayout_8"> No newline at end of file
194 197 <item> No newline at end of file
195 198 <widget class="QComboBox" name="lstStartDay"/> No newline at end of file
196 199 </item> No newline at end of file
197 200 <item> No newline at end of file
198 201 <widget class="QComboBox" name="lstStopDay"/> No newline at end of file
199 202 </item> No newline at end of file
200 203 </layout> No newline at end of file
201 204 </item> No newline at end of file
202 205 </layout> No newline at end of file
203 206 </widget> No newline at end of file
204 207 <widget class="QWidget" name="tabDconfig"> No newline at end of file
205 208 <property name="enabled"> No newline at end of file
206 209 <bool>true</bool> No newline at end of file
207 210 </property> No newline at end of file
208 211 <property name="sizePolicy"> No newline at end of file
209 212 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
210 213 <horstretch>0</horstretch> No newline at end of file
211 214 <verstretch>0</verstretch> No newline at end of file
212 215 </sizepolicy> No newline at end of file
213 216 </property> No newline at end of file
214 217 <attribute name="title"> No newline at end of file
215 218 <string>Device Config.</string> No newline at end of file
216 219 </attribute> No newline at end of file
217 220 <layout class="QVBoxLayout" name="verticalLayout_3"> No newline at end of file
218 221 <item> No newline at end of file
219 222 <layout class="QGridLayout" name="gridLayout"> No newline at end of file
220 223 <item row="0" column="0"> No newline at end of file
221 224 <layout class="QVBoxLayout" name="verticalLayout_15"> No newline at end of file
222 225 <item> No newline at end of file
223 226 <widget class="QCheckBox" name="chkDevA"> No newline at end of file
224 227 <property name="text"> No newline at end of file
225 228 <string>Dev A</string> No newline at end of file
226 229 </property> No newline at end of file
227 230 <property name="checked"> No newline at end of file
228 231 <bool>true</bool> No newline at end of file
229 232 </property> No newline at end of file
230 233 </widget> No newline at end of file
231 234 </item> No newline at end of file
232 235 <item> No newline at end of file
233 236 <widget class="QWidget" name="grpDevA" native="true"> No newline at end of file
234 237 <layout class="QVBoxLayout" name="verticalLayout_11"> No newline at end of file
235 238 <item> No newline at end of file
236 239 <widget class="QLineEdit" name="txtDeviceA"/> No newline at end of file
237 240 </item> No newline at end of file
238 241 <item> No newline at end of file
239 242 <widget class="QLineEdit" name="txtBspeedA"> No newline at end of file
240 243 <property name="text"> No newline at end of file
241 244 <string>16</string> No newline at end of file
242 245 </property> No newline at end of file
243 246 </widget> No newline at end of file
244 247 </item> No newline at end of file
245 248 <item> No newline at end of file
246 249 <widget class="QLineEdit" name="txtBmodeA"> No newline at end of file
247 250 <property name="text"> No newline at end of file
248 251 <string>-sao</string> No newline at end of file
249 252 </property> No newline at end of file
250 253 </widget> No newline at end of file
251 254 </item> No newline at end of file
252 255 <item> No newline at end of file
253 256 <widget class="QPushButton" name="btnTdevA"> No newline at end of file
254 257 <property name="text"> No newline at end of file
255 258 <string>Test DevA</string> No newline at end of file
256 259 </property> No newline at end of file
257 260 </widget> No newline at end of file
258 261 </item> No newline at end of file
259 262 </layout> No newline at end of file
260 263 </widget> No newline at end of file
261 264 </item> No newline at end of file
262 265 </layout> No newline at end of file
263 266 </item> No newline at end of file
264 267 <item row="0" column="1"> No newline at end of file
265 268 <layout class="QVBoxLayout" name="verticalLayout_16"> No newline at end of file
266 269 <item> No newline at end of file
267 270 <widget class="QCheckBox" name="chkDevB"> No newline at end of file
268 271 <property name="text"> No newline at end of file
269 272 <string>Dev B</string> No newline at end of file
270 273 </property> No newline at end of file
271 274 <property name="checked"> No newline at end of file
272 275 <bool>true</bool> No newline at end of file
273 276 </property> No newline at end of file
274 277 </widget> No newline at end of file
275 278 </item> No newline at end of file
276 279 <item> No newline at end of file
277 280 <widget class="QWidget" name="grpDevB" native="true"> No newline at end of file
278 281 <layout class="QVBoxLayout" name="verticalLayout_12"> No newline at end of file
279 282 <item> No newline at end of file
280 283 <widget class="QLineEdit" name="txtDeviceB"/> No newline at end of file
281 284 </item> No newline at end of file
282 285 <item> No newline at end of file
283 286 <widget class="QLineEdit" name="txtBspeedB"> No newline at end of file
284 287 <property name="text"> No newline at end of file
285 288 <string>16</string> No newline at end of file
286 289 </property> No newline at end of file
287 290 </widget> No newline at end of file
288 291 </item> No newline at end of file
289 292 <item> No newline at end of file
290 293 <widget class="QLineEdit" name="txtBmodeB"> No newline at end of file
291 294 <property name="text"> No newline at end of file
292 295 <string>-sao</string> No newline at end of file
293 296 </property> No newline at end of file
294 297 </widget> No newline at end of file
295 298 </item> No newline at end of file
296 299 <item> No newline at end of file
297 300 <widget class="QPushButton" name="btnTdevB"> No newline at end of file
298 301 <property name="text"> No newline at end of file
299 302 <string>Test DevB</string> No newline at end of file
300 303 </property> No newline at end of file
301 304 </widget> No newline at end of file
302 305 </item> No newline at end of file
303 306 </layout> No newline at end of file
304 307 </widget> No newline at end of file
305 308 </item> No newline at end of file
306 309 </layout> No newline at end of file
307 310 </item> No newline at end of file
308 311 <item row="0" column="2"> No newline at end of file
309 312 <layout class="QVBoxLayout" name="verticalLayout_17"> No newline at end of file
310 313 <item> No newline at end of file
311 314 <widget class="QCheckBox" name="chkDevC"> No newline at end of file
312 315 <property name="text"> No newline at end of file
313 316 <string>Dev C</string> No newline at end of file
314 317 </property> No newline at end of file
315 318 <property name="checked"> No newline at end of file
316 319 <bool>true</bool> No newline at end of file
317 320 </property> No newline at end of file
318 321 </widget> No newline at end of file
319 322 </item> No newline at end of file
320 323 <item> No newline at end of file
321 324 <widget class="QWidget" name="grpDevC" native="true"> No newline at end of file
322 325 <layout class="QVBoxLayout" name="verticalLayout_13"> No newline at end of file
323 326 <item> No newline at end of file
324 327 <widget class="QLineEdit" name="txtDeviceC"/> No newline at end of file
325 328 </item> No newline at end of file
326 329 <item> No newline at end of file
327 330 <widget class="QLineEdit" name="txtBspeedC"> No newline at end of file
328 331 <property name="text"> No newline at end of file
329 332 <string>16</string> No newline at end of file
330 333 </property> No newline at end of file
331 334 </widget> No newline at end of file
332 335 </item> No newline at end of file
333 336 <item> No newline at end of file
334 337 <widget class="QLineEdit" name="txtBmodeC"> No newline at end of file
335 338 <property name="text"> No newline at end of file
336 339 <string>-sao</string> No newline at end of file
337 340 </property> No newline at end of file
338 341 </widget> No newline at end of file
339 342 </item> No newline at end of file
340 343 <item> No newline at end of file
341 344 <widget class="QPushButton" name="btnTdevC"> No newline at end of file
342 345 <property name="text"> No newline at end of file
343 346 <string>Test DevC</string> No newline at end of file
344 347 </property> No newline at end of file
345 348 </widget> No newline at end of file
346 349 </item> No newline at end of file
347 350 </layout> No newline at end of file
348 351 </widget> No newline at end of file
349 352 </item> No newline at end of file
350 353 </layout> No newline at end of file
351 354 </item> No newline at end of file
352 355 <item row="0" column="3"> No newline at end of file
353 356 <layout class="QVBoxLayout" name="verticalLayout_18"> No newline at end of file
354 357 <item> No newline at end of file
355 358 <widget class="QCheckBox" name="chkDevD"> No newline at end of file
356 359 <property name="text"> No newline at end of file
357 360 <string>Dev D</string> No newline at end of file
358 361 </property> No newline at end of file
359 362 <property name="checked"> No newline at end of file
360 363 <bool>true</bool> No newline at end of file
361 364 </property> No newline at end of file
362 365 </widget> No newline at end of file
363 366 </item> No newline at end of file
364 367 <item> No newline at end of file
365 368 <widget class="QWidget" name="grpDevD" native="true"> No newline at end of file
366 369 <layout class="QVBoxLayout" name="verticalLayout_14"> No newline at end of file
367 370 <item> No newline at end of file
368 371 <widget class="QLineEdit" name="txtDeviceD"/> No newline at end of file
369 372 </item> No newline at end of file
370 373 <item> No newline at end of file
371 374 <widget class="QLineEdit" name="txtBspeedD"> No newline at end of file
372 375 <property name="text"> No newline at end of file
373 376 <string>16</string> No newline at end of file
374 377 </property> No newline at end of file
375 378 </widget> No newline at end of file
376 379 </item> No newline at end of file
377 380 <item> No newline at end of file
378 381 <widget class="QLineEdit" name="txtBmodeD"> No newline at end of file
379 382 <property name="text"> No newline at end of file
380 383 <string>-sao</string> No newline at end of file
381 384 </property> No newline at end of file
382 385 </widget> No newline at end of file
383 386 </item> No newline at end of file
384 387 <item> No newline at end of file
385 388 <widget class="QPushButton" name="btnTdevD"> No newline at end of file
386 389 <property name="text"> No newline at end of file
387 390 <string>Test DevD</string> No newline at end of file
388 391 </property> No newline at end of file
389 392 </widget> No newline at end of file
390 393 </item> No newline at end of file
391 394 </layout> No newline at end of file
392 395 </widget> No newline at end of file
393 396 </item> No newline at end of file
394 397 </layout> No newline at end of file
395 398 </item> No newline at end of file
396 399 <item row="0" column="4"> No newline at end of file
397 400 <layout class="QVBoxLayout" name="verticalLayout_19"> No newline at end of file
398 401 <item> No newline at end of file
399 402 <widget class="QLabel" name="label_2"> No newline at end of file
400 403 <property name="text"> No newline at end of file
401 404 <string/> No newline at end of file
402 405 </property> No newline at end of file
403 406 </widget> No newline at end of file
404 407 </item> No newline at end of file
405 408 <item> No newline at end of file
406 409 <widget class="QLabel" name="lblDevice"> No newline at end of file
407 410 <property name="text"> No newline at end of file
408 411 <string>Device</string> No newline at end of file
409 412 </property> No newline at end of file
410 413 </widget> No newline at end of file
411 414 </item> No newline at end of file
412 415 <item> No newline at end of file
413 416 <widget class="QLabel" name="lblBspeed"> No newline at end of file
414 417 <property name="text"> No newline at end of file
415 418 <string>Burn Speed</string> No newline at end of file
416 419 </property> No newline at end of file
417 420 </widget> No newline at end of file
418 421 </item> No newline at end of file
419 422 <item> No newline at end of file
420 423 <widget class="QLabel" name="lblBmode"> No newline at end of file
421 424 <property name="text"> No newline at end of file
422 425 <string>Burn Mode</string> No newline at end of file
423 426 </property> No newline at end of file
424 427 </widget> No newline at end of file
425 428 </item> No newline at end of file
426 429 <item> No newline at end of file
427 430 <widget class="QLabel" name="label"> No newline at end of file
428 431 <property name="text"> No newline at end of file
429 432 <string/> No newline at end of file
430 433 </property> No newline at end of file
431 434 </widget> No newline at end of file
432 435 </item> No newline at end of file
433 436 </layout> No newline at end of file
434 437 </item> No newline at end of file
435 438 </layout> No newline at end of file
436 439 </item> No newline at end of file
437 440 <item> No newline at end of file
438 441 <layout class="QHBoxLayout" name="horizontalLayout_9"> No newline at end of file
439 442 <property name="sizeConstraint"> No newline at end of file
440 443 <enum>QLayout::SetFixedSize</enum> No newline at end of file
441 444 </property> No newline at end of file
442 445 <item> No newline at end of file
443 446 <widget class="QLabel" name="lblBprocess"> No newline at end of file
444 447 <property name="sizePolicy"> No newline at end of file
445 448 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
446 449 <horstretch>0</horstretch> No newline at end of file
447 450 <verstretch>0</verstretch> No newline at end of file
448 451 </sizepolicy> No newline at end of file
449 452 </property> No newline at end of file
450 453 <property name="text"> No newline at end of file
451 454 <string>Burning process</string> No newline at end of file
452 455 </property> No newline at end of file
453 456 </widget> No newline at end of file
454 457 </item> No newline at end of file
455 458 <item> No newline at end of file
456 459 <widget class="QCheckBox" name="chkSimultaneously"> No newline at end of file
457 460 <property name="sizePolicy"> No newline at end of file
458 461 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
459 462 <horstretch>0</horstretch> No newline at end of file
460 463 <verstretch>0</verstretch> No newline at end of file
461 464 </sizepolicy> No newline at end of file
462 465 </property> No newline at end of file
463 466 <property name="text"> No newline at end of file
464 467 <string>Simultaneously</string> No newline at end of file
465 468 </property> No newline at end of file
466 469 </widget> No newline at end of file
467 470 </item> No newline at end of file
468 471 <item> No newline at end of file
469 472 <widget class="QCheckBox" name="chkSequentially"> No newline at end of file
470 473 <property name="sizePolicy"> No newline at end of file
471 474 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
472 475 <horstretch>0</horstretch> No newline at end of file
473 476 <verstretch>0</verstretch> No newline at end of file
474 477 </sizepolicy> No newline at end of file
475 478 </property> No newline at end of file
476 479 <property name="text"> No newline at end of file
477 480 <string>Sequentially</string> No newline at end of file
478 481 </property> No newline at end of file
479 482 <property name="checked"> No newline at end of file
480 483 <bool>true</bool> No newline at end of file
481 484 </property> No newline at end of file
482 485 </widget> No newline at end of file
483 486 </item> No newline at end of file
484 487 </layout> No newline at end of file
485 488 </item> No newline at end of file
486 489 <item> No newline at end of file
487 490 <layout class="QHBoxLayout" name="horizontalLayout_11"> No newline at end of file
488 491 <property name="spacing"> No newline at end of file
489 492 <number>6</number> No newline at end of file
490 493 </property> No newline at end of file
491 494 <property name="sizeConstraint"> No newline at end of file
492 495 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
493 496 </property> No newline at end of file
494 497 <item> No newline at end of file
495 498 <widget class="QLabel" name="lblDcapacity"> No newline at end of file
496 499 <property name="sizePolicy"> No newline at end of file
497 500 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
498 501 <horstretch>0</horstretch> No newline at end of file
499 502 <verstretch>0</verstretch> No newline at end of file
500 503 </sizepolicy> No newline at end of file
501 504 </property> No newline at end of file
502 505 <property name="text"> No newline at end of file
503 506 <string>Device Capacity (MB)</string> No newline at end of file
504 507 </property> No newline at end of file
505 508 </widget> No newline at end of file
506 509 </item> No newline at end of file
507 510 <item> No newline at end of file
508 511 <widget class="QCheckBox" name="chkSalert"> No newline at end of file
509 512 <property name="sizePolicy"> No newline at end of file
510 513 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
511 514 <horstretch>0</horstretch> No newline at end of file
512 515 <verstretch>0</verstretch> No newline at end of file
513 516 </sizepolicy> No newline at end of file
514 517 </property> No newline at end of file
515 518 <property name="text"> No newline at end of file
516 519 <string>Sound Alert</string> No newline at end of file
517 520 </property> No newline at end of file
518 521 </widget> No newline at end of file
519 522 </item> No newline at end of file
520 523 </layout> No newline at end of file
521 524 </item> No newline at end of file
522 525 <item> No newline at end of file
523 526 <layout class="QHBoxLayout" name="horizontalLayout_10"> No newline at end of file
524 527 <property name="sizeConstraint"> No newline at end of file
525 528 <enum>QLayout::SetFixedSize</enum> No newline at end of file
526 529 </property> No newline at end of file
527 530 <item> No newline at end of file
528 531 <widget class="QComboBox" name="lstDcapacity"> No newline at end of file
529 532 <property name="currentIndex"> No newline at end of file
530 533 <number>2</number> No newline at end of file
531 534 </property> No newline at end of file
532 535 <item> No newline at end of file
533 536 <property name="text"> No newline at end of file
534 537 <string>BluRay [25.0 GB]</string> No newline at end of file
535 538 </property> No newline at end of file
536 539 </item> No newline at end of file
537 540 <item> No newline at end of file
538 541 <property name="text"> No newline at end of file
539 542 <string>DVD2 [8.5 GB]</string> No newline at end of file
540 543 </property> No newline at end of file
541 544 </item> No newline at end of file
542 545 <item> No newline at end of file
543 546 <property name="text"> No newline at end of file
544 547 <string>DVD1 [4.7 GB]</string> No newline at end of file
545 548 </property> No newline at end of file
546 549 </item> No newline at end of file
547 550 <item> No newline at end of file
548 551 <property name="text"> No newline at end of file
549 552 <string>CD [0.7 GB]</string> No newline at end of file
550 553 </property> No newline at end of file
551 554 </item> No newline at end of file
552 555 <item> No newline at end of file
553 556 <property name="text"> No newline at end of file
554 557 <string>Other [? GB]</string> No newline at end of file
555 558 </property> No newline at end of file
556 559 </item> No newline at end of file
557 560 </widget> No newline at end of file
558 561 </item> No newline at end of file
559 562 <item> No newline at end of file
560 563 <widget class="QDoubleSpinBox" name="txtDcapacity"> No newline at end of file
561 564 <property name="sizePolicy"> No newline at end of file
562 565 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
563 566 <horstretch>0</horstretch> No newline at end of file
564 567 <verstretch>0</verstretch> No newline at end of file
565 568 </sizepolicy> No newline at end of file
566 569 </property> No newline at end of file
567 570 <property name="readOnly"> No newline at end of file
568 571 <bool>true</bool> No newline at end of file
569 572 </property> No newline at end of file
570 573 <property name="minimum"> No newline at end of file
571 574 <double>100.000000000000000</double> No newline at end of file
572 575 </property> No newline at end of file
573 576 <property name="maximum"> No newline at end of file
574 577 <double>99999.990000000005239</double> No newline at end of file
575 578 </property> No newline at end of file
576 579 <property name="value"> No newline at end of file
577 580 <double>4482.270000000000437</double> No newline at end of file
578 581 </property> No newline at end of file
579 582 </widget> No newline at end of file
580 583 </item> No newline at end of file
581 584 <item> No newline at end of file
582 585 <widget class="QCheckBox" name="chkPSgraphic"> No newline at end of file
583 586 <property name="text"> No newline at end of file
584 587 <string>PS Graphic</string> No newline at end of file
585 588 </property> No newline at end of file
586 589 </widget> No newline at end of file
587 590 </item> No newline at end of file
588 591 <item> No newline at end of file
589 592 <widget class="QLineEdit" name="lineEdit_17"/> No newline at end of file
590 593 </item> No newline at end of file
591 594 </layout> No newline at end of file
592 595 </item> No newline at end of file
593 596 </layout> No newline at end of file
594 597 </widget> No newline at end of file
595 598 <widget class="QWidget" name="tabSburn"> No newline at end of file
596 599 <attribute name="title"> No newline at end of file
597 600 <string>Status Burn</string> No newline at end of file
598 601 </attribute> No newline at end of file
599 602 <layout class="QVBoxLayout" name="verticalLayout_4"> No newline at end of file
600 603 <item> No newline at end of file
601 604 <widget class="QWidget" name="widget_2" native="true"> No newline at end of file
602 605 <property name="sizePolicy"> No newline at end of file
603 606 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
604 607 <horstretch>0</horstretch> No newline at end of file
605 608 <verstretch>0</verstretch> No newline at end of file
606 609 </sizepolicy> No newline at end of file
607 610 </property> No newline at end of file
608 611 <property name="maximumSize"> No newline at end of file
609 612 <size> No newline at end of file
610 613 <width>500</width> No newline at end of file
611 614 <height>16777215</height> No newline at end of file
612 615 </size> No newline at end of file
613 616 </property> No newline at end of file
614 617 <layout class="QGridLayout" name="gridLayout_2"> No newline at end of file
615 618 <item row="3" column="2"> No newline at end of file
616 619 <widget class="QLineEdit" name="txtSTATUSb"> No newline at end of file
617 620 <property name="readOnly"> No newline at end of file
618 621 <bool>true</bool> No newline at end of file
619 622 </property> No newline at end of file
620 623 </widget> No newline at end of file
621 624 </item> No newline at end of file
622 625 <item row="5" column="1"> No newline at end of file
623 626 <widget class="QLineEdit" name="txtINFOa"> No newline at end of file
624 627 <property name="readOnly"> No newline at end of file
625 628 <bool>true</bool> No newline at end of file
626 629 </property> No newline at end of file
627 630 </widget> No newline at end of file
628 631 </item> No newline at end of file
629 632 <item row="3" column="1"> No newline at end of file
630 633 <widget class="QLineEdit" name="txtSTATUSa"> No newline at end of file
631 634 <property name="readOnly"> No newline at end of file
632 635 <bool>true</bool> No newline at end of file
633 636 </property> No newline at end of file
634 637 </widget> No newline at end of file
635 638 </item> No newline at end of file
636 639 <item row="5" column="2"> No newline at end of file
637 640 <widget class="QLineEdit" name="txtINFOb"> No newline at end of file
638 641 <property name="readOnly"> No newline at end of file
639 642 <bool>true</bool> No newline at end of file
640 643 </property> No newline at end of file
641 644 </widget> No newline at end of file
642 645 </item> No newline at end of file
643 646 <item row="3" column="3"> No newline at end of file
644 647 <widget class="QLineEdit" name="txtSTATUSc"> No newline at end of file
645 648 <property name="readOnly"> No newline at end of file
646 649 <bool>true</bool> No newline at end of file
647 650 </property> No newline at end of file
648 651 </widget> No newline at end of file
649 652 </item> No newline at end of file
650 653 <item row="3" column="4"> No newline at end of file
651 654 <widget class="QLineEdit" name="txtSTATUSd"> No newline at end of file
652 655 <property name="readOnly"> No newline at end of file
653 656 <bool>true</bool> No newline at end of file
654 657 </property> No newline at end of file
655 658 </widget> No newline at end of file
656 659 </item> No newline at end of file
657 660 <item row="5" column="4"> No newline at end of file
658 661 <widget class="QLineEdit" name="txtINFOd"> No newline at end of file
659 662 <property name="readOnly"> No newline at end of file
660 663 <bool>true</bool> No newline at end of file
661 664 </property> No newline at end of file
662 665 </widget> No newline at end of file
663 666 </item> No newline at end of file
664 667 <item row="6" column="1"> No newline at end of file
665 668 <widget class="QLineEdit" name="txtSETa"> No newline at end of file
666 669 <property name="readOnly"> No newline at end of file
667 670 <bool>true</bool> No newline at end of file
668 671 </property> No newline at end of file
669 672 </widget> No newline at end of file
670 673 </item> No newline at end of file
671 674 <item row="6" column="2"> No newline at end of file
672 675 <widget class="QLineEdit" name="txtSETb"> No newline at end of file
673 676 <property name="readOnly"> No newline at end of file
674 677 <bool>true</bool> No newline at end of file
675 678 </property> No newline at end of file
676 679 </widget> No newline at end of file
677 680 </item> No newline at end of file
678 681 <item row="6" column="3"> No newline at end of file
679 682 <widget class="QLineEdit" name="txtSETc"> No newline at end of file
680 683 <property name="readOnly"> No newline at end of file
681 684 <bool>true</bool> No newline at end of file
682 685 </property> No newline at end of file
683 686 </widget> No newline at end of file
684 687 </item> No newline at end of file
685 688 <item row="6" column="4"> No newline at end of file
686 689 <widget class="QLineEdit" name="txtSETd"> No newline at end of file
687 690 <property name="readOnly"> No newline at end of file
688 691 <bool>true</bool> No newline at end of file
689 692 </property> No newline at end of file
690 693 </widget> No newline at end of file
691 694 </item> No newline at end of file
692 695 <item row="3" column="0"> No newline at end of file
693 696 <widget class="QLabel" name="lblSTATUS"> No newline at end of file
694 697 <property name="text"> No newline at end of file
695 698 <string>STATUS</string> No newline at end of file
696 699 </property> No newline at end of file
697 700 </widget> No newline at end of file
698 701 </item> No newline at end of file
699 702 <item row="5" column="0"> No newline at end of file
700 703 <widget class="QLabel" name="lblINFO"> No newline at end of file
701 704 <property name="text"> No newline at end of file
702 705 <string>INFO</string> No newline at end of file
703 706 </property> No newline at end of file
704 707 </widget> No newline at end of file
705 708 </item> No newline at end of file
706 709 <item row="6" column="0"> No newline at end of file
707 710 <widget class="QLabel" name="lblSET"> No newline at end of file
708 711 <property name="text"> No newline at end of file
709 712 <string>SET</string> No newline at end of file
710 713 </property> No newline at end of file
711 714 </widget> No newline at end of file
712 715 </item> No newline at end of file
713 716 <item row="0" column="1"> No newline at end of file
714 717 <widget class="QLabel" name="lblDevA"> No newline at end of file
715 718 <property name="text"> No newline at end of file
716 719 <string>DEV A</string> No newline at end of file
717 720 </property> No newline at end of file
718 721 <property name="alignment"> No newline at end of file
719 722 <set>Qt::AlignCenter</set> No newline at end of file
720 723 </property> No newline at end of file
721 724 </widget> No newline at end of file
722 725 </item> No newline at end of file
723 726 <item row="0" column="2"> No newline at end of file
724 727 <widget class="QLabel" name="lblDevB"> No newline at end of file
725 728 <property name="text"> No newline at end of file
726 729 <string>DEV B</string> No newline at end of file
727 730 </property> No newline at end of file
728 731 <property name="alignment"> No newline at end of file
729 732 <set>Qt::AlignCenter</set> No newline at end of file
730 733 </property> No newline at end of file
731 734 </widget> No newline at end of file
732 735 </item> No newline at end of file
733 736 <item row="0" column="3"> No newline at end of file
734 737 <widget class="QLabel" name="lblDevC"> No newline at end of file
735 738 <property name="text"> No newline at end of file
736 739 <string>DEV C</string> No newline at end of file
737 740 </property> No newline at end of file
738 741 <property name="alignment"> No newline at end of file
739 742 <set>Qt::AlignCenter</set> No newline at end of file
740 743 </property> No newline at end of file
741 744 </widget> No newline at end of file
742 745 </item> No newline at end of file
743 746 <item row="0" column="4"> No newline at end of file
744 747 <widget class="QLabel" name="lblDevD"> No newline at end of file
745 748 <property name="text"> No newline at end of file
746 749 <string>DEV D</string> No newline at end of file
747 750 </property> No newline at end of file
748 751 <property name="alignment"> No newline at end of file
749 752 <set>Qt::AlignCenter</set> No newline at end of file
750 753 </property> No newline at end of file
751 754 </widget> No newline at end of file
752 755 </item> No newline at end of file
753 756 <item row="5" column="3"> No newline at end of file
754 757 <widget class="QLineEdit" name="txtINFOc"> No newline at end of file
755 758 <property name="readOnly"> No newline at end of file
756 759 <bool>true</bool> No newline at end of file
757 760 </property> No newline at end of file
758 761 </widget> No newline at end of file
759 762 </item> No newline at end of file
760 763 </layout> No newline at end of file
761 764 </widget> No newline at end of file
762 765 </item> No newline at end of file
763 766 <item> No newline at end of file
764 767 <widget class="QTextEdit" name="txtSburn"> No newline at end of file
765 768 <property name="readOnly"> No newline at end of file
766 769 <bool>true</bool> No newline at end of file
767 770 </property> No newline at end of file
768 771 </widget> No newline at end of file
769 772 </item> No newline at end of file
770 773 </layout> No newline at end of file
771 774 </widget> No newline at end of file
772 775 </widget> No newline at end of file
773 776 </item> No newline at end of file
774 777 <item> No newline at end of file
775 778 <widget class="QTextEdit" name="txtInfo"> No newline at end of file
776 779 <property name="readOnly"> No newline at end of file
777 780 <bool>true</bool> No newline at end of file
778 781 </property> No newline at end of file
779 782 </widget> No newline at end of file
780 783 </item> No newline at end of file
781 784 <item> No newline at end of file
782 785 <layout class="QHBoxLayout" name="horizontalLayout_2"> No newline at end of file
783 786 <property name="sizeConstraint"> No newline at end of file
784 787 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
785 788 </property> No newline at end of file
786 789 <item> No newline at end of file
787 790 <widget class="QPushButton" name="btnGbkp"> No newline at end of file
788 791 <property name="enabled"> No newline at end of file
789 792 <bool>false</bool> No newline at end of file
790 793 </property> No newline at end of file
791 794 <property name="text"> No newline at end of file
792 795 <string>Generate Bkp</string> No newline at end of file
793 796 </property> No newline at end of file
794 797 </widget> No newline at end of file
795 798 </item> No newline at end of file
796 799 <item> No newline at end of file
797 800 <widget class="QPushButton" name="btnRestart"> No newline at end of file
798 801 <property name="enabled"> No newline at end of file
799 802 <bool>false</bool> No newline at end of file
800 803 </property> No newline at end of file
801 804 <property name="text"> No newline at end of file
802 805 <string>Restart</string> No newline at end of file
803 806 </property> No newline at end of file
804 807 </widget> No newline at end of file
805 808 </item> No newline at end of file
806 809 <item> No newline at end of file
807 810 <widget class="QPushButton" name="btnStartburn"> No newline at end of file
808 811 <property name="enabled"> No newline at end of file
809 812 <bool>false</bool> No newline at end of file
810 813 </property> No newline at end of file
811 814 <property name="text"> No newline at end of file
812 815 <string>Start Burn</string> No newline at end of file
813 816 </property> No newline at end of file
814 817 </widget> No newline at end of file
815 818 </item> No newline at end of file
816 819 <item> No newline at end of file
817 820 <widget class="QPushButton" name="btnStopburn"> No newline at end of file
818 821 <property name="enabled"> No newline at end of file
819 822 <bool>false</bool> No newline at end of file
820 823 </property> No newline at end of file
821 824 <property name="text"> No newline at end of file
822 825 <string>Stop Burn</string> No newline at end of file
823 826 </property> No newline at end of file
824 827 </widget> No newline at end of file
825 828 </item> No newline at end of file
826 829 </layout> No newline at end of file
827 830 </item> No newline at end of file
828 831 </layout> No newline at end of file
829 832 </widget> No newline at end of file
830 833 <widget class="QMenuBar" name="menubar"> No newline at end of file
831 834 <property name="geometry"> No newline at end of file
832 835 <rect> No newline at end of file
833 836 <x>0</x> No newline at end of file
834 837 <y>0</y> No newline at end of file
835 838 <width>809</width> No newline at end of file
836 839 <height>21</height> No newline at end of file
837 840 </rect> No newline at end of file
838 841 </property> No newline at end of file
842 <widget class="QMenu" name="menuParameters">
No newline at end of file
843 <property name="title">
No newline at end of file
844 <string>Parameters</string>
No newline at end of file
845 </property>
No newline at end of file
846 <addaction name="actionChange_Parameters"/>
No newline at end of file
847 </widget>
No newline at end of file
848 <widget class="QMenu" name="menuHelp">
No newline at end of file
849 <property name="title">
No newline at end of file
850 <string>Help</string>
No newline at end of file
851 </property>
No newline at end of file
852 <addaction name="actionAbout"/>
No newline at end of file
853 </widget> No newline at end of file
839 854 <widget class="QMenu" name="menuFile"> No newline at end of file
840 855 <property name="title"> No newline at end of file
841 856 <string>File</string> No newline at end of file
842 857 </property> No newline at end of file
843 858 <addaction name="actionSave_Config"/> No newline at end of file
844 859 <addaction name="actionQuit"/>
No newline at end of file
845 </widget>
No newline at end of file
846 <widget class="QMenu" name="menuParameters">
No newline at end of file
847 <property name="title">
No newline at end of file
848 <string>Parameters</string>
No newline at end of file
849 </property>
No newline at end of file
850 <addaction name="actionChange_Parameters"/>
No newline at end of file
851 </widget>
No newline at end of file
852 <widget class="QMenu" name="menuHelp">
No newline at end of file
853 <property name="title">
No newline at end of file
854 <string>Help</string>
No newline at end of file
855 </property>
No newline at end of file
856 <addaction name="actionAbout"/> No newline at end of file
857 860 </widget> No newline at end of file
858 861 <addaction name="menuFile"/> No newline at end of file
859 862 <addaction name="menuParameters"/> No newline at end of file
860 863 <addaction name="menuHelp"/> No newline at end of file
861 864 </widget> No newline at end of file
862 865 <widget class="QStatusBar" name="statusbar"/> No newline at end of file
863 866 <action name="actionChange_Parameters"> No newline at end of file
864 867 <property name="text"> No newline at end of file
865 868 <string>Change Parameters</string> No newline at end of file
866 869 </property> No newline at end of file
867 870 </action> No newline at end of file
868 871 <action name="actionSave_Config"> No newline at end of file
869 872 <property name="text"> No newline at end of file
870 873 <string>Save Config</string> No newline at end of file
871 874 </property> No newline at end of file
872 875 </action> No newline at end of file
873 876 <action name="actionQuit"> No newline at end of file
874 877 <property name="text"> No newline at end of file
875 878 <string>Quit</string> No newline at end of file
876 879 </property> No newline at end of file
877 880 </action> No newline at end of file
878 881 <action name="actionAbout"> No newline at end of file
879 882 <property name="text"> No newline at end of file
880 883 <string>About</string> No newline at end of file
881 884 </property> No newline at end of file
882 885 </action> No newline at end of file
883 886 </widget> No newline at end of file
884 887 <tabstops> No newline at end of file
885 888 <tabstop>txtDpath</tabstop> No newline at end of file
886 889 <tabstop>btnDpath</tabstop> No newline at end of file
887 890 <tabstop>txtRpath</tabstop> No newline at end of file
888 891 <tabstop>btnRpath</tabstop> No newline at end of file
889 892 <tabstop>lstDtype</tabstop> No newline at end of file
890 893 <tabstop>txtDtype</tabstop> No newline at end of file
891 894 <tabstop>chkMST</tabstop> No newline at end of file
892 895 <tabstop>txtElabel</tabstop> No newline at end of file
893 896 <tabstop>lstStartDay</tabstop> No newline at end of file
894 897 <tabstop>lstStopDay</tabstop> No newline at end of file
895 898 <tabstop>chkSimultaneously</tabstop> No newline at end of file
896 899 <tabstop>chkSequentially</tabstop> No newline at end of file
897 900 <tabstop>chkSalert</tabstop> No newline at end of file
898 901 <tabstop>lstDcapacity</tabstop> No newline at end of file
899 902 <tabstop>chkPSgraphic</tabstop> No newline at end of file
900 903 <tabstop>lineEdit_17</tabstop> No newline at end of file
901 904 <tabstop>txtSTATUSa</tabstop> No newline at end of file
902 905 <tabstop>txtSTATUSb</tabstop> No newline at end of file
903 906 <tabstop>txtSTATUSc</tabstop> No newline at end of file
904 907 <tabstop>txtSTATUSd</tabstop> No newline at end of file
905 908 <tabstop>txtINFOa</tabstop> No newline at end of file
906 909 <tabstop>txtINFOb</tabstop> No newline at end of file
907 910 <tabstop>txtINFOc</tabstop> No newline at end of file
908 911 <tabstop>txtINFOd</tabstop> No newline at end of file
909 912 <tabstop>txtSETa</tabstop> No newline at end of file
910 913 <tabstop>txtSETb</tabstop> No newline at end of file
911 914 <tabstop>txtSETc</tabstop> No newline at end of file
912 915 <tabstop>txtSETd</tabstop> No newline at end of file
913 916 <tabstop>tabWidget</tabstop> No newline at end of file
914 917 <tabstop>txtSburn</tabstop> No newline at end of file
915 918 <tabstop>btnGbkp</tabstop> No newline at end of file
916 919 <tabstop>btnRestart</tabstop> No newline at end of file
917 920 <tabstop>btnStartburn</tabstop> No newline at end of file
918 921 <tabstop>btnStopburn</tabstop> No newline at end of file
919 922 </tabstops> No newline at end of file
920 923 <resources/> No newline at end of file
921 924 <connections> No newline at end of file
922 925 <connection> No newline at end of file
923 926 <sender>chkSequentially</sender> No newline at end of file
924 927 <signal>clicked()</signal> No newline at end of file
925 928 <receiver>chkSimultaneously</receiver> No newline at end of file
926 929 <slot>toggle()</slot> No newline at end of file
927 930 <hints> No newline at end of file
928 931 <hint type="sourcelabel"> No newline at end of file
929 932 <x>635</x> No newline at end of file
930 933 <y>276</y> No newline at end of file
931 934 </hint> No newline at end of file
932 935 <hint type="destinationlabel"> No newline at end of file
933 936 <x>350</x> No newline at end of file
934 937 <y>269</y> No newline at end of file
935 938 </hint> No newline at end of file
936 939 </hints> No newline at end of file
937 940 </connection> No newline at end of file
938 941 <connection> No newline at end of file
939 942 <sender>chkSimultaneously</sender> No newline at end of file
940 943 <signal>clicked()</signal> No newline at end of file
941 944 <receiver>chkSequentially</receiver> No newline at end of file
942 945 <slot>toggle()</slot> No newline at end of file
943 946 <hints> No newline at end of file
944 947 <hint type="sourcelabel"> No newline at end of file
945 948 <x>433</x> No newline at end of file
946 949 <y>276</y> No newline at end of file
947 950 </hint> No newline at end of file
948 951 <hint type="destinationlabel"> No newline at end of file
949 952 <x>635</x> No newline at end of file
950 953 <y>276</y> No newline at end of file
951 954 </hint> No newline at end of file
952 955 </hints> No newline at end of file
953 956 </connection> No newline at end of file
954 957 <connection> No newline at end of file
955 958 <sender>chkDevA</sender> No newline at end of file
956 959 <signal>toggled(bool)</signal> No newline at end of file
957 960 <receiver>grpDevA</receiver> No newline at end of file
958 961 <slot>setEnabled(bool)</slot> No newline at end of file
959 962 <hints> No newline at end of file
960 963 <hint type="sourcelabel"> No newline at end of file
961 964 <x>95</x> No newline at end of file
962 965 <y>86</y> No newline at end of file
963 966 </hint> No newline at end of file
964 967 <hint type="destinationlabel"> No newline at end of file
965 968 <x>95</x> No newline at end of file
966 969 <y>167</y> No newline at end of file
967 970 </hint> No newline at end of file
968 971 </hints> No newline at end of file
969 972 </connection> No newline at end of file
970 973 <connection> No newline at end of file
971 974 <sender>chkDevB</sender> No newline at end of file
972 975 <signal>toggled(bool)</signal> No newline at end of file
973 976 <receiver>grpDevB</receiver> No newline at end of file
974 977 <slot>setEnabled(bool)</slot> No newline at end of file
975 978 <hints> No newline at end of file
976 979 <hint type="sourcelabel"> No newline at end of file
977 980 <x>251</x> No newline at end of file
978 981 <y>86</y> No newline at end of file
979 982 </hint> No newline at end of file
980 983 <hint type="destinationlabel"> No newline at end of file
981 984 <x>251</x> No newline at end of file
982 985 <y>167</y> No newline at end of file
983 986 </hint> No newline at end of file
984 987 </hints> No newline at end of file
985 988 </connection> No newline at end of file
986 989 <connection> No newline at end of file
987 990 <sender>chkDevC</sender> No newline at end of file
988 991 <signal>toggled(bool)</signal> No newline at end of file
989 992 <receiver>grpDevC</receiver> No newline at end of file
990 993 <slot>setEnabled(bool)</slot> No newline at end of file
991 994 <hints> No newline at end of file
992 995 <hint type="sourcelabel"> No newline at end of file
993 996 <x>407</x> No newline at end of file
994 997 <y>86</y> No newline at end of file
995 998 </hint> No newline at end of file
996 999 <hint type="destinationlabel"> No newline at end of file
997 1000 <x>407</x> No newline at end of file
998 1001 <y>167</y> No newline at end of file
999 1002 </hint> No newline at end of file
1000 1003 </hints> No newline at end of file
1001 1004 </connection> No newline at end of file
1002 1005 <connection> No newline at end of file
1003 1006 <sender>chkDevD</sender> No newline at end of file
1004 1007 <signal>toggled(bool)</signal> No newline at end of file
1005 1008 <receiver>grpDevD</receiver> No newline at end of file
1006 1009 <slot>setEnabled(bool)</slot> No newline at end of file
1007 1010 <hints> No newline at end of file
1008 1011 <hint type="sourcelabel"> No newline at end of file
1009 1012 <x>563</x> No newline at end of file
1010 1013 <y>86</y> No newline at end of file
1011 1014 </hint> No newline at end of file
1012 1015 <hint type="destinationlabel"> No newline at end of file
1013 1016 <x>563</x> No newline at end of file
1014 1017 <y>167</y> No newline at end of file
1015 1018 </hint> No newline at end of file
1016 1019 </hints> No newline at end of file
1017 1020 </connection> No newline at end of file
1018 1021 </connections> No newline at end of file
1019 1022 </ui> No newline at end of file
@@ -1,603 +1,604
1 1 # -*- coding: utf-8 -*- No newline at end of file
2 2 No newline at end of file
3 3 # Form implementation generated from reading ui file '/home/ricardoar/JRO_SVN/eric4/jro_backup_manager/ui/MainWindow.ui' No newline at end of file
4 4 #
5 No newline at end of file
5 # Created: Tue May 18 22:39:04 2010 No newline at end of file
6 6 # by: PyQt4 UI code generator 4.7.2 No newline at end of file
7 7 # No newline at end of file
8 8 # WARNING! All changes made in this file will be lost! No newline at end of file
9 9 No newline at end of file
10 10 from PyQt4 import QtCore, QtGui No newline at end of file
11 11 No newline at end of file
12 12 class Ui_MainWindow(object): No newline at end of file
13 13 def setupUi(self, MainWindow): No newline at end of file
14 14 MainWindow.setObjectName("MainWindow") No newline at end of file
15 15 MainWindow.resize(809, 737) No newline at end of file
16 16 self.centralwidget = QtGui.QWidget(MainWindow) No newline at end of file
17 17 self.centralwidget.setObjectName("centralwidget") No newline at end of file
18 18 self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget) No newline at end of file
19 19 self.verticalLayout.setObjectName("verticalLayout") No newline at end of file
20 20 self.tabWidget = QtGui.QTabWidget(self.centralwidget) No newline at end of file
21 21 self.tabWidget.setEnabled(True) No newline at end of file
22 22 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) No newline at end of file
23 23 sizePolicy.setHorizontalStretch(0) No newline at end of file
24 24 sizePolicy.setVerticalStretch(0) No newline at end of file
25 25 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth()) No newline at end of file
26 26 self.tabWidget.setSizePolicy(sizePolicy) No newline at end of file
27 27 self.tabWidget.setObjectName("tabWidget") No newline at end of file
28 28 self.tabParameters = QtGui.QWidget() No newline at end of file
29 29 self.tabParameters.setEnabled(True) No newline at end of file
30 30 self.tabParameters.setObjectName("tabParameters") No newline at end of file
31 31 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters) No newline at end of file
32 32 self.verticalLayout_2.setObjectName("verticalLayout_2") No newline at end of file
33 33 self.horizontalLayout = QtGui.QHBoxLayout() No newline at end of file
34 34 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
35 35 self.horizontalLayout.setObjectName("horizontalLayout") No newline at end of file
36 36 self.txtDpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
37 37 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) No newline at end of file
38 38 sizePolicy.setHorizontalStretch(0) No newline at end of file
39 39 sizePolicy.setVerticalStretch(0) No newline at end of file
40 40 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
41 41 self.txtDpath.setSizePolicy(sizePolicy) No newline at end of file
42 42 self.txtDpath.setObjectName("txtDpath") No newline at end of file
43 43 self.horizontalLayout.addWidget(self.txtDpath) No newline at end of file
44 44 self.btnDpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
45 45 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
46 46 sizePolicy.setHorizontalStretch(0) No newline at end of file
47 47 sizePolicy.setVerticalStretch(0) No newline at end of file
48 48 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
49 49 self.btnDpath.setSizePolicy(sizePolicy) No newline at end of file
50 50 self.btnDpath.setCheckable(False) No newline at end of file
51 51 self.btnDpath.setObjectName("btnDpath") No newline at end of file
52 52 self.horizontalLayout.addWidget(self.btnDpath) No newline at end of file
53 53 self.verticalLayout_2.addLayout(self.horizontalLayout) No newline at end of file
54 54 self.horizontalLayout_3 = QtGui.QHBoxLayout() No newline at end of file
55 55 self.horizontalLayout_3.setObjectName("horizontalLayout_3") No newline at end of file
56 56 self.txtRpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
57 57 self.txtRpath.setObjectName("txtRpath") No newline at end of file
58 58 self.horizontalLayout_3.addWidget(self.txtRpath) No newline at end of file
59 59 self.btnRpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
60 60 self.btnRpath.setObjectName("btnRpath") No newline at end of file
61 61 self.horizontalLayout_3.addWidget(self.btnRpath) No newline at end of file
62 62 self.verticalLayout_2.addLayout(self.horizontalLayout_3) No newline at end of file
63 63 self.lblDtype = QtGui.QLabel(self.tabParameters) No newline at end of file
64 64 self.lblDtype.setObjectName("lblDtype") No newline at end of file
65 65 self.verticalLayout_2.addWidget(self.lblDtype) No newline at end of file
66 66 self.horizontalLayout_4 = QtGui.QHBoxLayout() No newline at end of file
67 67 self.horizontalLayout_4.setObjectName("horizontalLayout_4") No newline at end of file
68 68 self.lstDtype = QtGui.QComboBox(self.tabParameters) No newline at end of file
69 69 self.lstDtype.setObjectName("lstDtype") No newline at end of file
70 70 self.lstDtype.addItem("") No newline at end of file
71 71 self.lstDtype.addItem("") No newline at end of file
72 72 self.lstDtype.addItem("") No newline at end of file
73 73 self.lstDtype.addItem("") No newline at end of file
74 74 self.horizontalLayout_4.addWidget(self.lstDtype) No newline at end of file
75 75 self.txtDtype = QtGui.QLineEdit(self.tabParameters) No newline at end of file
76 76 self.txtDtype.setReadOnly(True) No newline at end of file
77 77 self.txtDtype.setObjectName("txtDtype") No newline at end of file
78 78 self.horizontalLayout_4.addWidget(self.txtDtype) No newline at end of file
79 79 self.chkMST = QtGui.QCheckBox(self.tabParameters) No newline at end of file
80 80 self.chkMST.setObjectName("chkMST") No newline at end of file
81 81 self.horizontalLayout_4.addWidget(self.chkMST) No newline at end of file
82 82 self.verticalLayout_2.addLayout(self.horizontalLayout_4) No newline at end of file
83 83 self.horizontalLayout_6 = QtGui.QHBoxLayout() No newline at end of file
84 84 self.horizontalLayout_6.setObjectName("horizontalLayout_6") No newline at end of file
85 85 self.lblElabel = QtGui.QLabel(self.tabParameters) No newline at end of file
86 86 self.lblElabel.setObjectName("lblElabel") No newline at end of file
87 87 self.horizontalLayout_6.addWidget(self.lblElabel) No newline at end of file
88 88 self.lblCopys = QtGui.QLabel(self.tabParameters) No newline at end of file
89 89 self.lblCopys.setObjectName("lblCopys") No newline at end of file
90 90 self.horizontalLayout_6.addWidget(self.lblCopys) No newline at end of file
91 91 self.verticalLayout_2.addLayout(self.horizontalLayout_6) No newline at end of file
92 92 self.horizontalLayout_5 = QtGui.QHBoxLayout() No newline at end of file
93 93 self.horizontalLayout_5.setObjectName("horizontalLayout_5") No newline at end of file
94 94 self.txtElabel = QtGui.QLineEdit(self.tabParameters) No newline at end of file
95 95 self.txtElabel.setObjectName("txtElabel") No newline at end of file
96 96 self.horizontalLayout_5.addWidget(self.txtElabel) No newline at end of file
97 97 self.txtCopys = QtGui.QSpinBox(self.tabParameters) No newline at end of file
98 98 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) No newline at end of file
99 99 sizePolicy.setHorizontalStretch(0) No newline at end of file
100 100 sizePolicy.setVerticalStretch(0) No newline at end of file
101 101 sizePolicy.setHeightForWidth(self.txtCopys.sizePolicy().hasHeightForWidth()) No newline at end of file
102 102 self.txtCopys.setSizePolicy(sizePolicy) No newline at end of file
103 self.txtCopys.setMinimum(1) No newline at end of file
103 104 self.txtCopys.setObjectName("txtCopys") No newline at end of file
104 105 self.horizontalLayout_5.addWidget(self.txtCopys) No newline at end of file
105 106 self.verticalLayout_2.addLayout(self.horizontalLayout_5) No newline at end of file
106 107 self.horizontalLayout_7 = QtGui.QHBoxLayout() No newline at end of file
107 108 self.horizontalLayout_7.setObjectName("horizontalLayout_7") No newline at end of file
108 109 self.lblStartDay = QtGui.QLabel(self.tabParameters) No newline at end of file
109 110 self.lblStartDay.setObjectName("lblStartDay") No newline at end of file
110 111 self.horizontalLayout_7.addWidget(self.lblStartDay) No newline at end of file
111 112 self.lblStopDay = QtGui.QLabel(self.tabParameters) No newline at end of file
112 113 self.lblStopDay.setObjectName("lblStopDay") No newline at end of file
113 114 self.horizontalLayout_7.addWidget(self.lblStopDay) No newline at end of file
114 115 self.verticalLayout_2.addLayout(self.horizontalLayout_7) No newline at end of file
115 116 self.horizontalLayout_8 = QtGui.QHBoxLayout() No newline at end of file
116 117 self.horizontalLayout_8.setObjectName("horizontalLayout_8") No newline at end of file
117 118 self.lstStartDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
118 119 self.lstStartDay.setObjectName("lstStartDay") No newline at end of file
119 120 self.horizontalLayout_8.addWidget(self.lstStartDay) No newline at end of file
120 121 self.lstStopDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
121 122 self.lstStopDay.setObjectName("lstStopDay") No newline at end of file
122 123 self.horizontalLayout_8.addWidget(self.lstStopDay) No newline at end of file
123 124 self.verticalLayout_2.addLayout(self.horizontalLayout_8) No newline at end of file
124 125 self.tabWidget.addTab(self.tabParameters, "") No newline at end of file
125 126 self.tabDconfig = QtGui.QWidget() No newline at end of file
126 127 self.tabDconfig.setEnabled(True) No newline at end of file
127 128 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
128 129 sizePolicy.setHorizontalStretch(0) No newline at end of file
129 130 sizePolicy.setVerticalStretch(0) No newline at end of file
130 131 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth()) No newline at end of file
131 132 self.tabDconfig.setSizePolicy(sizePolicy) No newline at end of file
132 133 self.tabDconfig.setObjectName("tabDconfig") No newline at end of file
133 134 self.verticalLayout_3 = QtGui.QVBoxLayout(self.tabDconfig) No newline at end of file
134 135 self.verticalLayout_3.setObjectName("verticalLayout_3") No newline at end of file
135 136 self.gridLayout = QtGui.QGridLayout() No newline at end of file
136 137 self.gridLayout.setObjectName("gridLayout") No newline at end of file
137 138 self.verticalLayout_15 = QtGui.QVBoxLayout() No newline at end of file
138 139 self.verticalLayout_15.setObjectName("verticalLayout_15") No newline at end of file
139 140 self.chkDevA = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
140 141 self.chkDevA.setChecked(True) No newline at end of file
141 142 self.chkDevA.setObjectName("chkDevA") No newline at end of file
142 143 self.verticalLayout_15.addWidget(self.chkDevA) No newline at end of file
143 144 self.grpDevA = QtGui.QWidget(self.tabDconfig) No newline at end of file
144 145 self.grpDevA.setObjectName("grpDevA") No newline at end of file
145 146 self.verticalLayout_11 = QtGui.QVBoxLayout(self.grpDevA) No newline at end of file
146 147 self.verticalLayout_11.setObjectName("verticalLayout_11") No newline at end of file
147 148 self.txtDeviceA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
148 149 self.txtDeviceA.setObjectName("txtDeviceA") No newline at end of file
149 150 self.verticalLayout_11.addWidget(self.txtDeviceA) No newline at end of file
150 151 self.txtBspeedA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
151 152 self.txtBspeedA.setObjectName("txtBspeedA") No newline at end of file
152 153 self.verticalLayout_11.addWidget(self.txtBspeedA) No newline at end of file
153 154 self.txtBmodeA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
154 155 self.txtBmodeA.setObjectName("txtBmodeA") No newline at end of file
155 156 self.verticalLayout_11.addWidget(self.txtBmodeA) No newline at end of file
156 157 self.btnTdevA = QtGui.QPushButton(self.grpDevA) No newline at end of file
157 158 self.btnTdevA.setObjectName("btnTdevA") No newline at end of file
158 159 self.verticalLayout_11.addWidget(self.btnTdevA) No newline at end of file
159 160 self.verticalLayout_15.addWidget(self.grpDevA) No newline at end of file
160 161 self.gridLayout.addLayout(self.verticalLayout_15, 0, 0, 1, 1) No newline at end of file
161 162 self.verticalLayout_16 = QtGui.QVBoxLayout() No newline at end of file
162 163 self.verticalLayout_16.setObjectName("verticalLayout_16") No newline at end of file
163 164 self.chkDevB = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
164 165 self.chkDevB.setChecked(True) No newline at end of file
165 166 self.chkDevB.setObjectName("chkDevB") No newline at end of file
166 167 self.verticalLayout_16.addWidget(self.chkDevB) No newline at end of file
167 168 self.grpDevB = QtGui.QWidget(self.tabDconfig) No newline at end of file
168 169 self.grpDevB.setObjectName("grpDevB") No newline at end of file
169 170 self.verticalLayout_12 = QtGui.QVBoxLayout(self.grpDevB) No newline at end of file
170 171 self.verticalLayout_12.setObjectName("verticalLayout_12") No newline at end of file
171 172 self.txtDeviceB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
172 173 self.txtDeviceB.setObjectName("txtDeviceB") No newline at end of file
173 174 self.verticalLayout_12.addWidget(self.txtDeviceB) No newline at end of file
174 175 self.txtBspeedB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
175 176 self.txtBspeedB.setObjectName("txtBspeedB") No newline at end of file
176 177 self.verticalLayout_12.addWidget(self.txtBspeedB) No newline at end of file
177 178 self.txtBmodeB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
178 179 self.txtBmodeB.setObjectName("txtBmodeB") No newline at end of file
179 180 self.verticalLayout_12.addWidget(self.txtBmodeB) No newline at end of file
180 181 self.btnTdevB = QtGui.QPushButton(self.grpDevB) No newline at end of file
181 182 self.btnTdevB.setObjectName("btnTdevB") No newline at end of file
182 183 self.verticalLayout_12.addWidget(self.btnTdevB) No newline at end of file
183 184 self.verticalLayout_16.addWidget(self.grpDevB) No newline at end of file
184 185 self.gridLayout.addLayout(self.verticalLayout_16, 0, 1, 1, 1) No newline at end of file
185 186 self.verticalLayout_17 = QtGui.QVBoxLayout() No newline at end of file
186 187 self.verticalLayout_17.setObjectName("verticalLayout_17") No newline at end of file
187 188 self.chkDevC = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
188 189 self.chkDevC.setChecked(True) No newline at end of file
189 190 self.chkDevC.setObjectName("chkDevC") No newline at end of file
190 191 self.verticalLayout_17.addWidget(self.chkDevC) No newline at end of file
191 192 self.grpDevC = QtGui.QWidget(self.tabDconfig) No newline at end of file
192 193 self.grpDevC.setObjectName("grpDevC") No newline at end of file
193 194 self.verticalLayout_13 = QtGui.QVBoxLayout(self.grpDevC) No newline at end of file
194 195 self.verticalLayout_13.setObjectName("verticalLayout_13") No newline at end of file
195 196 self.txtDeviceC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
196 197 self.txtDeviceC.setObjectName("txtDeviceC") No newline at end of file
197 198 self.verticalLayout_13.addWidget(self.txtDeviceC) No newline at end of file
198 199 self.txtBspeedC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
199 200 self.txtBspeedC.setObjectName("txtBspeedC") No newline at end of file
200 201 self.verticalLayout_13.addWidget(self.txtBspeedC) No newline at end of file
201 202 self.txtBmodeC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
202 203 self.txtBmodeC.setObjectName("txtBmodeC") No newline at end of file
203 204 self.verticalLayout_13.addWidget(self.txtBmodeC) No newline at end of file
204 205 self.btnTdevC = QtGui.QPushButton(self.grpDevC) No newline at end of file
205 206 self.btnTdevC.setObjectName("btnTdevC") No newline at end of file
206 207 self.verticalLayout_13.addWidget(self.btnTdevC) No newline at end of file
207 208 self.verticalLayout_17.addWidget(self.grpDevC) No newline at end of file
208 209 self.gridLayout.addLayout(self.verticalLayout_17, 0, 2, 1, 1) No newline at end of file
209 210 self.verticalLayout_18 = QtGui.QVBoxLayout() No newline at end of file
210 211 self.verticalLayout_18.setObjectName("verticalLayout_18") No newline at end of file
211 212 self.chkDevD = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
212 213 self.chkDevD.setChecked(True) No newline at end of file
213 214 self.chkDevD.setObjectName("chkDevD") No newline at end of file
214 215 self.verticalLayout_18.addWidget(self.chkDevD) No newline at end of file
215 216 self.grpDevD = QtGui.QWidget(self.tabDconfig) No newline at end of file
216 217 self.grpDevD.setObjectName("grpDevD") No newline at end of file
217 218 self.verticalLayout_14 = QtGui.QVBoxLayout(self.grpDevD) No newline at end of file
218 219 self.verticalLayout_14.setObjectName("verticalLayout_14") No newline at end of file
219 220 self.txtDeviceD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
220 221 self.txtDeviceD.setObjectName("txtDeviceD") No newline at end of file
221 222 self.verticalLayout_14.addWidget(self.txtDeviceD) No newline at end of file
222 223 self.txtBspeedD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
223 224 self.txtBspeedD.setObjectName("txtBspeedD") No newline at end of file
224 225 self.verticalLayout_14.addWidget(self.txtBspeedD) No newline at end of file
225 226 self.txtBmodeD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
226 227 self.txtBmodeD.setObjectName("txtBmodeD") No newline at end of file
227 228 self.verticalLayout_14.addWidget(self.txtBmodeD) No newline at end of file
228 229 self.btnTdevD = QtGui.QPushButton(self.grpDevD) No newline at end of file
229 230 self.btnTdevD.setObjectName("btnTdevD") No newline at end of file
230 231 self.verticalLayout_14.addWidget(self.btnTdevD) No newline at end of file
231 232 self.verticalLayout_18.addWidget(self.grpDevD) No newline at end of file
232 233 self.gridLayout.addLayout(self.verticalLayout_18, 0, 3, 1, 1) No newline at end of file
233 234 self.verticalLayout_19 = QtGui.QVBoxLayout() No newline at end of file
234 235 self.verticalLayout_19.setObjectName("verticalLayout_19") No newline at end of file
235 236 self.label_2 = QtGui.QLabel(self.tabDconfig) No newline at end of file
236 237 self.label_2.setText("") No newline at end of file
237 238 self.label_2.setObjectName("label_2") No newline at end of file
238 239 self.verticalLayout_19.addWidget(self.label_2) No newline at end of file
239 240 self.lblDevice = QtGui.QLabel(self.tabDconfig) No newline at end of file
240 241 self.lblDevice.setObjectName("lblDevice") No newline at end of file
241 242 self.verticalLayout_19.addWidget(self.lblDevice) No newline at end of file
242 243 self.lblBspeed = QtGui.QLabel(self.tabDconfig) No newline at end of file
243 244 self.lblBspeed.setObjectName("lblBspeed") No newline at end of file
244 245 self.verticalLayout_19.addWidget(self.lblBspeed) No newline at end of file
245 246 self.lblBmode = QtGui.QLabel(self.tabDconfig) No newline at end of file
246 247 self.lblBmode.setObjectName("lblBmode") No newline at end of file
247 248 self.verticalLayout_19.addWidget(self.lblBmode) No newline at end of file
248 249 self.label = QtGui.QLabel(self.tabDconfig) No newline at end of file
249 250 self.label.setText("") No newline at end of file
250 251 self.label.setObjectName("label") No newline at end of file
251 252 self.verticalLayout_19.addWidget(self.label) No newline at end of file
252 253 self.gridLayout.addLayout(self.verticalLayout_19, 0, 4, 1, 1) No newline at end of file
253 254 self.verticalLayout_3.addLayout(self.gridLayout) No newline at end of file
254 255 self.horizontalLayout_9 = QtGui.QHBoxLayout() No newline at end of file
255 256 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
256 257 self.horizontalLayout_9.setObjectName("horizontalLayout_9") No newline at end of file
257 258 self.lblBprocess = QtGui.QLabel(self.tabDconfig) No newline at end of file
258 259 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
259 260 sizePolicy.setHorizontalStretch(0) No newline at end of file
260 261 sizePolicy.setVerticalStretch(0) No newline at end of file
261 262 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth()) No newline at end of file
262 263 self.lblBprocess.setSizePolicy(sizePolicy) No newline at end of file
263 264 self.lblBprocess.setObjectName("lblBprocess") No newline at end of file
264 265 self.horizontalLayout_9.addWidget(self.lblBprocess) No newline at end of file
265 266 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
266 267 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
267 268 sizePolicy.setHorizontalStretch(0) No newline at end of file
268 269 sizePolicy.setVerticalStretch(0) No newline at end of file
269 270 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth()) No newline at end of file
270 271 self.chkSimultaneously.setSizePolicy(sizePolicy) No newline at end of file
271 272 self.chkSimultaneously.setObjectName("chkSimultaneously") No newline at end of file
272 273 self.horizontalLayout_9.addWidget(self.chkSimultaneously) No newline at end of file
273 274 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
274 275 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
275 276 sizePolicy.setHorizontalStretch(0) No newline at end of file
276 277 sizePolicy.setVerticalStretch(0) No newline at end of file
277 278 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth()) No newline at end of file
278 279 self.chkSequentially.setSizePolicy(sizePolicy) No newline at end of file
279 280 self.chkSequentially.setChecked(True) No newline at end of file
280 281 self.chkSequentially.setObjectName("chkSequentially") No newline at end of file
281 282 self.horizontalLayout_9.addWidget(self.chkSequentially) No newline at end of file
282 283 self.verticalLayout_3.addLayout(self.horizontalLayout_9) No newline at end of file
283 284 self.horizontalLayout_11 = QtGui.QHBoxLayout() No newline at end of file
284 285 self.horizontalLayout_11.setSpacing(6) No newline at end of file
285 286 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
286 287 self.horizontalLayout_11.setObjectName("horizontalLayout_11") No newline at end of file
287 288 self.lblDcapacity = QtGui.QLabel(self.tabDconfig) No newline at end of file
288 289 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
289 290 sizePolicy.setHorizontalStretch(0) No newline at end of file
290 291 sizePolicy.setVerticalStretch(0) No newline at end of file
291 292 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
292 293 self.lblDcapacity.setSizePolicy(sizePolicy) No newline at end of file
293 294 self.lblDcapacity.setObjectName("lblDcapacity") No newline at end of file
294 295 self.horizontalLayout_11.addWidget(self.lblDcapacity) No newline at end of file
295 296 self.chkSalert = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
296 297 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
297 298 sizePolicy.setHorizontalStretch(0) No newline at end of file
298 299 sizePolicy.setVerticalStretch(0) No newline at end of file
299 300 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth()) No newline at end of file
300 301 self.chkSalert.setSizePolicy(sizePolicy) No newline at end of file
301 302 self.chkSalert.setObjectName("chkSalert") No newline at end of file
302 303 self.horizontalLayout_11.addWidget(self.chkSalert) No newline at end of file
303 304 self.verticalLayout_3.addLayout(self.horizontalLayout_11) No newline at end of file
304 305 self.horizontalLayout_10 = QtGui.QHBoxLayout() No newline at end of file
305 306 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
306 307 self.horizontalLayout_10.setObjectName("horizontalLayout_10") No newline at end of file
307 308 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig) No newline at end of file
308 309 self.lstDcapacity.setObjectName("lstDcapacity") No newline at end of file
309 310 self.lstDcapacity.addItem("") No newline at end of file
310 311 self.lstDcapacity.addItem("") No newline at end of file
311 312 self.lstDcapacity.addItem("") No newline at end of file
312 313 self.lstDcapacity.addItem("") No newline at end of file
313 314 self.lstDcapacity.addItem("") No newline at end of file
314 315 self.horizontalLayout_10.addWidget(self.lstDcapacity) No newline at end of file
315 316 self.txtDcapacity = QtGui.QDoubleSpinBox(self.tabDconfig) No newline at end of file
316 317 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) No newline at end of file
317 318 sizePolicy.setHorizontalStretch(0) No newline at end of file
318 319 sizePolicy.setVerticalStretch(0) No newline at end of file
319 320 sizePolicy.setHeightForWidth(self.txtDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
320 321 self.txtDcapacity.setSizePolicy(sizePolicy) No newline at end of file
321 322 self.txtDcapacity.setReadOnly(True) No newline at end of file
322 323 self.txtDcapacity.setMinimum(100.0) No newline at end of file
323 324 self.txtDcapacity.setMaximum(99999.99) No newline at end of file
324 325 self.txtDcapacity.setProperty("value", 4482.27) No newline at end of file
325 326 self.txtDcapacity.setObjectName("txtDcapacity") No newline at end of file
326 327 self.horizontalLayout_10.addWidget(self.txtDcapacity) No newline at end of file
327 328 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
328 329 self.chkPSgraphic.setObjectName("chkPSgraphic") No newline at end of file
329 330 self.horizontalLayout_10.addWidget(self.chkPSgraphic) No newline at end of file
330 331 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
331 332 self.lineEdit_17.setObjectName("lineEdit_17") No newline at end of file
332 333 self.horizontalLayout_10.addWidget(self.lineEdit_17) No newline at end of file
333 334 self.verticalLayout_3.addLayout(self.horizontalLayout_10) No newline at end of file
334 335 self.tabWidget.addTab(self.tabDconfig, "") No newline at end of file
335 336 self.tabSburn = QtGui.QWidget() No newline at end of file
336 337 self.tabSburn.setObjectName("tabSburn") No newline at end of file
337 338 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn) No newline at end of file
338 339 self.verticalLayout_4.setObjectName("verticalLayout_4") No newline at end of file
339 340 self.widget_2 = QtGui.QWidget(self.tabSburn) No newline at end of file
340 341 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
341 342 sizePolicy.setHorizontalStretch(0) No newline at end of file
342 343 sizePolicy.setVerticalStretch(0) No newline at end of file
343 344 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth()) No newline at end of file
344 345 self.widget_2.setSizePolicy(sizePolicy) No newline at end of file
345 346 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
346 347 self.widget_2.setObjectName("widget_2") No newline at end of file
347 348 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2) No newline at end of file
348 349 self.gridLayout_2.setObjectName("gridLayout_2") No newline at end of file
349 350 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2) No newline at end of file
350 351 self.txtSTATUSb.setReadOnly(True) No newline at end of file
351 352 self.txtSTATUSb.setObjectName("txtSTATUSb") No newline at end of file
352 353 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1) No newline at end of file
353 354 self.txtINFOa = QtGui.QLineEdit(self.widget_2) No newline at end of file
354 355 self.txtINFOa.setReadOnly(True) No newline at end of file
355 356 self.txtINFOa.setObjectName("txtINFOa") No newline at end of file
356 357 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1) No newline at end of file
357 358 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2) No newline at end of file
358 359 self.txtSTATUSa.setReadOnly(True) No newline at end of file
359 360 self.txtSTATUSa.setObjectName("txtSTATUSa") No newline at end of file
360 361 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1) No newline at end of file
361 362 self.txtINFOb = QtGui.QLineEdit(self.widget_2) No newline at end of file
362 363 self.txtINFOb.setReadOnly(True) No newline at end of file
363 364 self.txtINFOb.setObjectName("txtINFOb") No newline at end of file
364 365 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1) No newline at end of file
365 366 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2) No newline at end of file
366 367 self.txtSTATUSc.setReadOnly(True) No newline at end of file
367 368 self.txtSTATUSc.setObjectName("txtSTATUSc") No newline at end of file
368 369 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1) No newline at end of file
369 370 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2) No newline at end of file
370 371 self.txtSTATUSd.setReadOnly(True) No newline at end of file
371 372 self.txtSTATUSd.setObjectName("txtSTATUSd") No newline at end of file
372 373 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1) No newline at end of file
373 374 self.txtINFOd = QtGui.QLineEdit(self.widget_2) No newline at end of file
374 375 self.txtINFOd.setReadOnly(True) No newline at end of file
375 376 self.txtINFOd.setObjectName("txtINFOd") No newline at end of file
376 377 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1) No newline at end of file
377 378 self.txtSETa = QtGui.QLineEdit(self.widget_2) No newline at end of file
378 379 self.txtSETa.setReadOnly(True) No newline at end of file
379 380 self.txtSETa.setObjectName("txtSETa") No newline at end of file
380 381 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1) No newline at end of file
381 382 self.txtSETb = QtGui.QLineEdit(self.widget_2) No newline at end of file
382 383 self.txtSETb.setReadOnly(True) No newline at end of file
383 384 self.txtSETb.setObjectName("txtSETb") No newline at end of file
384 385 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1) No newline at end of file
385 386 self.txtSETc = QtGui.QLineEdit(self.widget_2) No newline at end of file
386 387 self.txtSETc.setReadOnly(True) No newline at end of file
387 388 self.txtSETc.setObjectName("txtSETc") No newline at end of file
388 389 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1) No newline at end of file
389 390 self.txtSETd = QtGui.QLineEdit(self.widget_2) No newline at end of file
390 391 self.txtSETd.setReadOnly(True) No newline at end of file
391 392 self.txtSETd.setObjectName("txtSETd") No newline at end of file
392 393 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1) No newline at end of file
393 394 self.lblSTATUS = QtGui.QLabel(self.widget_2) No newline at end of file
394 395 self.lblSTATUS.setObjectName("lblSTATUS") No newline at end of file
395 396 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1) No newline at end of file
396 397 self.lblINFO = QtGui.QLabel(self.widget_2) No newline at end of file
397 398 self.lblINFO.setObjectName("lblINFO") No newline at end of file
398 399 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1) No newline at end of file
399 400 self.lblSET = QtGui.QLabel(self.widget_2) No newline at end of file
400 401 self.lblSET.setObjectName("lblSET") No newline at end of file
401 402 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1) No newline at end of file
402 403 self.lblDevA = QtGui.QLabel(self.widget_2) No newline at end of file
403 404 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
404 405 self.lblDevA.setObjectName("lblDevA") No newline at end of file
405 406 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1) No newline at end of file
406 407 self.lblDevB = QtGui.QLabel(self.widget_2) No newline at end of file
407 408 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
408 409 self.lblDevB.setObjectName("lblDevB") No newline at end of file
409 410 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1) No newline at end of file
410 411 self.lblDevC = QtGui.QLabel(self.widget_2) No newline at end of file
411 412 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
412 413 self.lblDevC.setObjectName("lblDevC") No newline at end of file
413 414 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1) No newline at end of file
414 415 self.lblDevD = QtGui.QLabel(self.widget_2) No newline at end of file
415 416 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
416 417 self.lblDevD.setObjectName("lblDevD") No newline at end of file
417 418 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1) No newline at end of file
418 419 self.txtINFOc = QtGui.QLineEdit(self.widget_2) No newline at end of file
419 420 self.txtINFOc.setReadOnly(True) No newline at end of file
420 421 self.txtINFOc.setObjectName("txtINFOc") No newline at end of file
421 422 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1) No newline at end of file
422 423 self.verticalLayout_4.addWidget(self.widget_2) No newline at end of file
423 424 self.txtSburn = QtGui.QTextEdit(self.tabSburn) No newline at end of file
424 425 self.txtSburn.setReadOnly(True) No newline at end of file
425 426 self.txtSburn.setObjectName("txtSburn") No newline at end of file
426 427 self.verticalLayout_4.addWidget(self.txtSburn) No newline at end of file
427 428 self.tabWidget.addTab(self.tabSburn, "") No newline at end of file
428 429 self.verticalLayout.addWidget(self.tabWidget) No newline at end of file
429 430 self.txtInfo = QtGui.QTextEdit(self.centralwidget) No newline at end of file
430 431 self.txtInfo.setReadOnly(True) No newline at end of file
431 432 self.txtInfo.setObjectName("txtInfo") No newline at end of file
432 433 self.verticalLayout.addWidget(self.txtInfo) No newline at end of file
433 434 self.horizontalLayout_2 = QtGui.QHBoxLayout() No newline at end of file
434 435 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
435 436 self.horizontalLayout_2.setObjectName("horizontalLayout_2") No newline at end of file
436 437 self.btnGbkp = QtGui.QPushButton(self.centralwidget) No newline at end of file
437 438 self.btnGbkp.setEnabled(False) No newline at end of file
438 439 self.btnGbkp.setObjectName("btnGbkp") No newline at end of file
439 440 self.horizontalLayout_2.addWidget(self.btnGbkp) No newline at end of file
440 441 self.btnRestart = QtGui.QPushButton(self.centralwidget) No newline at end of file
441 442 self.btnRestart.setEnabled(False) No newline at end of file
442 443 self.btnRestart.setObjectName("btnRestart") No newline at end of file
443 444 self.horizontalLayout_2.addWidget(self.btnRestart) No newline at end of file
444 445 self.btnStartburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
445 446 self.btnStartburn.setEnabled(False) No newline at end of file
446 447 self.btnStartburn.setObjectName("btnStartburn") No newline at end of file
447 448 self.horizontalLayout_2.addWidget(self.btnStartburn) No newline at end of file
448 449 self.btnStopburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
449 450 self.btnStopburn.setEnabled(False) No newline at end of file
450 451 self.btnStopburn.setObjectName("btnStopburn") No newline at end of file
451 452 self.horizontalLayout_2.addWidget(self.btnStopburn) No newline at end of file
452 453 self.verticalLayout.addLayout(self.horizontalLayout_2) No newline at end of file
453 454 MainWindow.setCentralWidget(self.centralwidget) No newline at end of file
454 455 self.menubar = QtGui.QMenuBar(MainWindow) No newline at end of file
455 456 self.menubar.setGeometry(QtCore.QRect(0, 0, 809, 21)) No newline at end of file
456 457 self.menubar.setObjectName("menubar")
No newline at end of file
457 self.menuFile = QtGui.QMenu(self.menubar)
No newline at end of file
458 self.menuFile.setObjectName("menuFile") No newline at end of file
459 458 self.menuParameters = QtGui.QMenu(self.menubar) No newline at end of file
460 459 self.menuParameters.setObjectName("menuParameters") No newline at end of file
461 460 self.menuHelp = QtGui.QMenu(self.menubar) No newline at end of file
462 461 self.menuHelp.setObjectName("menuHelp") No newline at end of file
462 self.menuFile = QtGui.QMenu(self.menubar)
No newline at end of file
463 self.menuFile.setObjectName("menuFile") No newline at end of file
463 464 MainWindow.setMenuBar(self.menubar) No newline at end of file
464 465 self.statusbar = QtGui.QStatusBar(MainWindow) No newline at end of file
465 466 self.statusbar.setObjectName("statusbar") No newline at end of file
466 467 MainWindow.setStatusBar(self.statusbar) No newline at end of file
467 468 self.actionChange_Parameters = QtGui.QAction(MainWindow) No newline at end of file
468 469 self.actionChange_Parameters.setObjectName("actionChange_Parameters") No newline at end of file
469 470 self.actionSave_Config = QtGui.QAction(MainWindow) No newline at end of file
470 471 self.actionSave_Config.setObjectName("actionSave_Config") No newline at end of file
471 472 self.actionQuit = QtGui.QAction(MainWindow) No newline at end of file
472 473 self.actionQuit.setObjectName("actionQuit") No newline at end of file
473 474 self.actionAbout = QtGui.QAction(MainWindow) No newline at end of file
474 475 self.actionAbout.setObjectName("actionAbout") No newline at end of file
476 self.menuParameters.addAction(self.actionChange_Parameters)
No newline at end of file
477 self.menuHelp.addAction(self.actionAbout) No newline at end of file
475 478 self.menuFile.addAction(self.actionSave_Config) No newline at end of file
476 479 self.menuFile.addAction(self.actionQuit)
No newline at end of file
477 self.menuParameters.addAction(self.actionChange_Parameters)
No newline at end of file
478 self.menuHelp.addAction(self.actionAbout) No newline at end of file
479 480 self.menubar.addAction(self.menuFile.menuAction()) No newline at end of file
480 481 self.menubar.addAction(self.menuParameters.menuAction()) No newline at end of file
481 482 self.menubar.addAction(self.menuHelp.menuAction()) No newline at end of file
482 483 No newline at end of file
483 484 self.retranslateUi(MainWindow) No newline at end of file
484 485 self.tabWidget.setCurrentIndex(0) No newline at end of file
485 486 self.lstDcapacity.setCurrentIndex(2) No newline at end of file
486 487 QtCore.QObject.connect(self.chkSequentially, QtCore.SIGNAL("clicked()"), self.chkSimultaneously.toggle) No newline at end of file
487 488 QtCore.QObject.connect(self.chkSimultaneously, QtCore.SIGNAL("clicked()"), self.chkSequentially.toggle) No newline at end of file
488 489 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.grpDevA.setEnabled) No newline at end of file
489 490 QtCore.QObject.connect(self.chkDevB, QtCore.SIGNAL("toggled(bool)"), self.grpDevB.setEnabled) No newline at end of file
490 491 QtCore.QObject.connect(self.chkDevC, QtCore.SIGNAL("toggled(bool)"), self.grpDevC.setEnabled) No newline at end of file
491 492 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled) No newline at end of file
492 493 QtCore.QMetaObject.connectSlotsByName(MainWindow) No newline at end of file
493 494 MainWindow.setTabOrder(self.txtDpath, self.btnDpath) No newline at end of file
494 495 MainWindow.setTabOrder(self.btnDpath, self.txtRpath) No newline at end of file
495 496 MainWindow.setTabOrder(self.txtRpath, self.btnRpath) No newline at end of file
496 497 MainWindow.setTabOrder(self.btnRpath, self.lstDtype) No newline at end of file
497 498 MainWindow.setTabOrder(self.lstDtype, self.txtDtype) No newline at end of file
498 499 MainWindow.setTabOrder(self.txtDtype, self.chkMST) No newline at end of file
499 500 MainWindow.setTabOrder(self.chkMST, self.txtElabel) No newline at end of file
500 501 MainWindow.setTabOrder(self.txtElabel, self.lstStartDay) No newline at end of file
501 502 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay) No newline at end of file
502 503 MainWindow.setTabOrder(self.lstStopDay, self.chkSimultaneously) No newline at end of file
503 504 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially) No newline at end of file
504 505 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert) No newline at end of file
505 506 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity) No newline at end of file
506 507 MainWindow.setTabOrder(self.lstDcapacity, self.chkPSgraphic) No newline at end of file
507 508 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17) No newline at end of file
508 509 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa) No newline at end of file
509 510 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb) No newline at end of file
510 511 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc) No newline at end of file
511 512 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd) No newline at end of file
512 513 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa) No newline at end of file
513 514 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb) No newline at end of file
514 515 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc) No newline at end of file
515 516 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd) No newline at end of file
516 517 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa) No newline at end of file
517 518 MainWindow.setTabOrder(self.txtSETa, self.txtSETb) No newline at end of file
518 519 MainWindow.setTabOrder(self.txtSETb, self.txtSETc) No newline at end of file
519 520 MainWindow.setTabOrder(self.txtSETc, self.txtSETd) No newline at end of file
520 521 MainWindow.setTabOrder(self.txtSETd, self.tabWidget) No newline at end of file
521 522 MainWindow.setTabOrder(self.tabWidget, self.txtSburn) No newline at end of file
522 523 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp) No newline at end of file
523 524 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart) No newline at end of file
524 525 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn) No newline at end of file
525 526 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn) No newline at end of file
526 527 No newline at end of file
527 528 def retranslateUi(self, MainWindow): No newline at end of file
528 529 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
529 530 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
530 531 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
531 532 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
532 533 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
533 534 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
534 535 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
535 536 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
536 537 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
537 538 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
538 539 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
539 540 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
540 541 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
541 542 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
542 543 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
543 544 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
544 545 self.txtBspeedA.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
545 546 self.txtBmodeA.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
546 547 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
547 548 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
548 549 self.txtBspeedB.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
549 550 self.txtBmodeB.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
550 551 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
551 552 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
552 553 self.txtBspeedC.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
553 554 self.txtBmodeC.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
554 555 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
555 556 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
556 557 self.txtBspeedD.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
557 558 self.txtBmodeD.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
558 559 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
559 560 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
560 561 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
561 562 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
562 563 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
563 564 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
564 565 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
565 566 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity (MB)", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
566 567 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
567 568 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
568 569 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
569 570 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
570 571 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
571 572 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
572 573 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
573 574 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
574 575 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
575 576 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
576 577 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
577 578 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
578 579 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
579 580 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
580 581 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
581 582 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
582 583 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
583 584 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
584 585 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
585 586 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
586 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
587 587 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
588 588 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
589 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
589 590 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
590 591 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
591 592 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
592 593 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
593 594 No newline at end of file
594 595 No newline at end of file
595 596 if __name__ == "__main__": No newline at end of file
596 597 import sys No newline at end of file
597 598 app = QtGui.QApplication(sys.argv) No newline at end of file
598 599 MainWindow = QtGui.QMainWindow() No newline at end of file
599 600 ui = Ui_MainWindow() No newline at end of file
600 601 ui.setupUi(MainWindow) No newline at end of file
601 602 MainWindow.show() No newline at end of file
602 603 sys.exit(app.exec_()) No newline at end of file
603 604 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now