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