##// END OF EJS Templates
Para brobar checkeo manual
ralonso -
r92:93
parent child
Show More
@@ -1,794 +1,803
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 Ui_Parameters import Ui_Parameters No newline at end of file
12 12 from Ui_About import Ui_About No newline at end of file
13 13 from PyQt4 import QtGui No newline at end of file
14 14 from subprocess import * No newline at end of file
15 15 import sys No newline at end of file
16 16 import os No newline at end of file
17 17 #import subprocess No newline at end of file
18 18 import time No newline at end of file
19 19 import commands No newline at end of file
20 20 from functions import functions No newline at end of file
21 21 from functions import functions2 No newline at end of file
22 22 No newline at end of file
23 23 class MainWindow(QMainWindow, Ui_MainWindow): No newline at end of file
24 24 """ No newline at end of file
25 25 Class documentation goes here. No newline at end of file
26 26 """ No newline at end of file
27 27 No newline at end of file
28 28 def __init__(self, parent = None): No newline at end of file
29 29 QMainWindow.__init__(self, parent) No newline at end of file
30 30 self.setupUi(self) No newline at end of file
31 31 self.setupUi2() No newline at end of file
32 32 No newline at end of file
33 33 def setupUi2(self): No newline at end of file
34 34 No newline at end of file
35 35 self.txtInfo.append("cambio 1") No newline at end of file
36 36 No newline at end of file
37 37 self.allTrue = False No newline at end of file
38 38 No newline at end of file
39 39 if self.allTrue == True: No newline at end of file
40 40 self.var_real_principal = True No newline at end of file
41 41 self.var_real_detect_devices = True No newline at end of file
42 42 self.var_real_iso = True No newline at end of file
43 43 self.var_real_burn = True No newline at end of file
44 44 self.var_real_check = True No newline at end of file
45 45 self.var_real_eject = True No newline at end of file
46 46 self.var_real_manual_check = True No newline at end of file
47 47 self.var_real_show_cmd = True No newline at end of file
48 48 No newline at end of file
49 49 else: No newline at end of file
50 50 self.var_real_principal = False No newline at end of file
51 51 self.var_real_detect_devices = False No newline at end of file
52 52 self.var_real_iso = False No newline at end of file
53 53 self.var_real_burn = False No newline at end of file
54 54 self.var_real_check = False No newline at end of file
55 55 self.var_real_eject = False No newline at end of file
56 56 self.var_real_manual_check = True No newline at end of file
57 57 self.var_real_show_cmd = True No newline at end of file
58 58 No newline at end of file
59 59 if self.var_real_detect_devices == True: No newline at end of file
60 60 # Reconocimiento de los dispositivos de grabacion No newline at end of file
61 61 functions2.detect_devices(self) No newline at end of file
62 62 else: No newline at end of file
63 63 functions2.set_devices_test(self) No newline at end of file
64 64 No newline at end of file
65 65 #Inicialiazacion de variables No newline at end of file
66 66 self.var_Discs = 0 #Numero de discos del proyecto No newline at end of file
67 67 self.var_Copys = 0 #Numero de copias No newline at end of file
68 68 self.var_disc_n = 0 # disco actual No newline at end of file
69 69 self.var_copy_n = 0 # copia actual No newline at end of file
70 70 self.var_burned_discs = 0 #numero de discos ya grabados No newline at end of file
71 71 No newline at end of file
72 72 self.bool_first_iso = False No newline at end of file
73 73 self.var_step = 0 # numero de paso en el proceso No newline at end of file
74 74 self.bool_state_burning = False #si es True se puede grabar No newline at end of file
75 75 self.blank_discs = False # Si es true significa que se acaban de ingresar discos en blanco No newline at end of file
76 76 No newline at end of file
77 self.bool_state_manual_check = False
No newline at end of file
78 No newline at end of file
77 79 self.var_list=[] # Lista de DOYs No newline at end of file
78 80 self.var_sublist=[] # Sub-lista de DOYs seleccionados No newline at end of file
79 81 self.var_devices=[] #Lista de dispositivos seleccionados No newline at end of file
80 82 No newline at end of file
81 83 #Revisa si existe el archivo de confirguracion y lo carga No newline at end of file
82 84 if os.path.isfile("parameters.conf"): No newline at end of file
83 85 functions2.get_parameters_conf(self) No newline at end of file
84 86 self.bool_first_iso = True No newline at end of file
85 87 self.txtInfo.append("Parameters were loaded from configuration file") No newline at end of file
86 88 self.txtInfo.append("Total number of discs for recording: "+str(self.var_Discs * self.var_Copys)) No newline at end of file
87 89 No newline at end of file
88 90 elif self.var_real_principal == False: No newline at end of file
89 91 functions2.set_parameters_test(self) #Establece ciertos parametros, para pruebas No newline at end of file
90 92 No newline at end of file
91 93 functions2.set_vars(self) #Carga las variables de la clase con los parametros seleccionados No newline at end of file
92 94 No newline at end of file
93 95 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
94 96 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
95 97 functions.load_days(self) No newline at end of file
96 98 No newline at end of file
97 99 if os.path.isfile("parameters.conf"): No newline at end of file
98 100 functions2.enabled_items1(True, self) #Se bloquean los parametros de configuracion No newline at end of file
101 self.txtTDpath.setEnabled(False)
No newline at end of file
102 self.btnTDpath.setEnabled(False) No newline at end of file
99 103 No newline at end of file
100 104 if os.path.isfile("burning.conf"): No newline at end of file
101 105 functions2.get_burning_conf(self) No newline at end of file
102 106 self.txtInfo.append("Current disc: "+str(self.var_disc_n)) No newline at end of file
103 107 self.txtInfo.append("Current copy: "+str(self.var_copy_n)) No newline at end of file
104 108 self.txtInfo.append("Burned discs: "+str(self.var_burned_discs)) No newline at end of file
105 109 self.btnStartburn.setText("Continue") No newline at end of file
106 110 self.actionChange_Parameters.setEnabled(False) No newline at end of file
107 111 No newline at end of file
108 112 self.connect(self.actionChange_Parameters, QtCore.SIGNAL("triggered()"), self.changeParameters) No newline at end of file
109 113 self.connect(self.actionAbout, QtCore.SIGNAL("triggered()"), self.about) No newline at end of file
110 114 No newline at end of file
111 115 self.process_iso = QtCore.QProcess() No newline at end of file
112 116 self.connect(self.process_iso, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_iso) No newline at end of file
113 117 self.connect(self.process_iso, QtCore.SIGNAL('readyReadStandardError()'), self.readError_iso) No newline at end of file
114 118 self.connect(self.process_iso, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_iso) No newline at end of file
115 119 No newline at end of file
116 120 self.process_burn = QtCore.QProcess() No newline at end of file
117 121 self.connect(self.process_burn, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_burn) No newline at end of file
118 122 self.connect(self.process_burn, QtCore.SIGNAL('readyReadStandardError()'), self.readError_burn) No newline at end of file
119 123 self.connect(self.process_burn, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_burn) No newline at end of file
120 124 No newline at end of file
121 125 self.process_check = QtCore.QProcess() No newline at end of file
122 126 self.connect(self.process_check, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_check) No newline at end of file
123 127 self.connect(self.process_check, QtCore.SIGNAL('readyReadStandardError()'), self.readError_check) No newline at end of file
124 128 self.connect(self.process_check, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_check) No newline at end of file
125 129 No newline at end of file
126 130 self.process_manual_check = QtCore.QProcess() No newline at end of file
127 131 self.connect(self.process_manual_check, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_manual_check) No newline at end of file
128 132 self.connect(self.process_manual_check, QtCore.SIGNAL('readyReadStandardError()'), self.readError_manual_check) No newline at end of file
129 133 self.connect(self.process_manual_check, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_manual_check) No newline at end of file
130 134 No newline at end of file
131 135 def changeParameters(self): No newline at end of file
132 136 dlg=QtGui.QDialog() No newline at end of file
133 137 dlgui=Ui_Parameters() No newline at end of file
134 138 dlgui.setupUi(dlg) No newline at end of file
135 139 if (dlg.exec_() == QtGui.QDialog.Accepted): No newline at end of file
136 140 if dlgui.txtDisc.value() > self.var_Discs or dlgui.txtCopy.value() > dlgui.txtNcopys.value(): No newline at end of file
137 141 self.txtInfo.append("Wrong parameters") No newline at end of file
138 142 else: No newline at end of file
139 143 self.var_Copys = dlgui.txtNcopys.value() No newline at end of file
140 144 self.var_disc_n = dlgui.txtDisc.value() No newline at end of file
141 145 self.var_copy_n = dlgui.txtCopy.value() No newline at end of file
142 146 self.txtInfo.append("Changed parameters") No newline at end of file
143 147 self.var_burned_discs = ( ( (self.var_disc_n - 1) * self.var_Copys) + self.var_copy_n -1 ) No newline at end of file
144 148 self.bool_first_iso = True No newline at end of file
145 149 self.txtInfo.append("Current disc: "+str(self.var_disc_n)) No newline at end of file
146 150 self.txtInfo.append("Current copy: "+str(self.var_copy_n)) No newline at end of file
147 151 self.txtInfo.append("Nro Copys: "+str(self.var_Copys)) No newline at end of file
148 152 functions2.make_parameters_conf(self) No newline at end of file
149 153 self.txtCopys.setValue(self.var_Copys) #Actualizo mananualmente el valor Copys No newline at end of file
150 154 No newline at end of file
151 155 No newline at end of file
152 156 No newline at end of file
153 157 def about(self): No newline at end of file
154 158 dlg_about=QtGui.QDialog() No newline at end of file
155 159 dlgui_about=Ui_About() No newline at end of file
156 160 dlgui_about.setupUi(dlg_about) No newline at end of file
157 161 dlg_about.exec_() No newline at end of file
158 162 No newline at end of file
159 163 No newline at end of file
160 164 #============================================================================== No newline at end of file
161 165 # Manejo de los eventos No newline at end of file
162 166 #============================================================================== No newline at end of file
163 167 No newline at end of file
164 168 #----------------------------------------------------- Obtencion de la ruta de los datos --------------------------------------------------------------- No newline at end of file
165 169 No newline at end of file
166 170 @pyqtSignature("") No newline at end of file
167 171 def on_btnDpath_clicked(self): No newline at end of file
168 172 """ No newline at end of file
169 173 Permite seleccionar graficamente el direcorio de los datos a grabar No newline at end of file
170 174 """ No newline at end of file
171 175 self.var_Dpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
172 176 self.txtDpath.setText(self.var_Dpath) No newline at end of file
173 177 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
174 178 functions.load_days(self) No newline at end of file
175 179 No newline at end of file
176 180 No newline at end of file
177 181 @pyqtSignature("") No newline at end of file
178 182 def on_txtDpath_editingFinished(self): No newline at end of file
179 183 """ No newline at end of file
180 184 Carga la ruta editada y verifica que sea correcta y carga la lista de dias No newline at end of file
181 185 """ No newline at end of file
182 186 self.var_Dpath=str(self.txtDpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
183 187 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
184 188 functions.load_days(self) No newline at end of file
185 189 No newline at end of file
186 190 No newline at end of file
187 191 #----------------------------------------------------- Obtencion de las ruta del proyecto --------------------------------------------------------------- No newline at end of file
188 192 No newline at end of file
189 193 @pyqtSignature("") No newline at end of file
190 194 def on_btnRpath_clicked(self): No newline at end of file
191 195 """ No newline at end of file
192 196 Permite seleccionar graficamente el direcorio del proyecto No newline at end of file
193 197 """ No newline at end of file
194 198 self.var_Rpath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
195 199 self.txtRpath.setText(self.var_Rpath) No newline at end of file
196 200 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
197 201 No newline at end of file
198 202 No newline at end of file
199 203 @pyqtSignature("") No newline at end of file
200 204 def on_txtRpath_editingFinished(self): No newline at end of file
201 205 """ No newline at end of file
202 206 Valida la ruta del proyecto No newline at end of file
203 207 """ No newline at end of file
204 208 self.var_Rpath = str(self.txtRpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
205 209 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
206 210 No newline at end of file
207 211 No newline at end of file
208 212 #----------------------------------------------------- Tipo de datos --------------------------------------------------------------- No newline at end of file
209 213 No newline at end of file
210 214 @pyqtSignature("int") No newline at end of file
211 215 def on_lstDtype_activated(self, index): No newline at end of file
212 216 """ No newline at end of file
213 217 Permite elegir entre los tipos de archivos No newline at end of file
214 218 """ No newline at end of file
215 219 self.txtDtype.setReadOnly(True) No newline at end of file
216 220 if index == 0: No newline at end of file
217 221 self.var_Dtype ='r' No newline at end of file
218 222 elif index == 1: No newline at end of file
219 223 self.var_Dtype ='pdata' No newline at end of file
220 224 elif index == 2: No newline at end of file
221 225 self.var_Dtype ='sswma' No newline at end of file
222 226 else : No newline at end of file
223 227 self.var_Dtype ='' No newline at end of file
224 228 self.txtDtype.setReadOnly(False) No newline at end of file
225 229 No newline at end of file
226 230 self.txtDtype.setText(self.var_Dtype) No newline at end of file
227 231 functions.load_days(self) #llamada a funcion No newline at end of file
228 232 No newline at end of file
229 233 @pyqtSignature("") No newline at end of file
230 234 def on_txtDtype_editingFinished(self): No newline at end of file
231 235 self.var_Dtype=str(self.txtDtype.text()) No newline at end of file
232 236 functions.load_days(self) #llamada a funcion No newline at end of file
233 237 No newline at end of file
234 238 No newline at end of file
235 239 #----------------------------------------------------- Etiqueta --------------------------------------------------------------- No newline at end of file
236 240 No newline at end of file
237 241 @pyqtSignature("") No newline at end of file
238 242 def on_txtElabel_editingFinished(self): No newline at end of file
239 243 self.var_Elabel = str(self.txtElabel.text()) No newline at end of file
240 244 No newline at end of file
241 245 #----------------------------------------------------- Numero de copias --------------------------------------------------------------- No newline at end of file
242 246 @pyqtSignature("") No newline at end of file
243 247 def on_txtCopys_editingFinished(self): No newline at end of file
244 248 self.var_Copys = self.txtCopys.value() No newline at end of file
245 249 No newline at end of file
246 250 #----------------------------------------------------- Seleccion del rango de fechas --------------------------------------------------------------- No newline at end of file
247 251 No newline at end of file
248 252 @pyqtSignature("int") #CLOSED No newline at end of file
249 253 def on_lstStartDay_activated(self, index): No newline at end of file
250 254 """ No newline at end of file
251 255 Cambia la lista de opciones en lstStopDay No newline at end of file
252 256 """ No newline at end of file
253 257 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex() No newline at end of file
254 258 self.lstStopDay.clear() No newline at end of file
255 259 No newline at end of file
256 260 for i in self.var_list[index:]: No newline at end of file
257 261 self.lstStopDay.addItem(i) No newline at end of file
258 262 No newline at end of file
259 263 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index) No newline at end of file
260 264 No newline at end of file
261 265 functions.get_sub_list(self) No newline at end of file
262 266 No newline at end of file
263 267 No newline at end of file
264 268 @pyqtSignature("int") #CLOSED No newline at end of file
265 269 def on_lstStopDay_activated(self, index): No newline at end of file
266 270 """ No newline at end of file
267 271 Cambia la lista de opciones en lstStartDay No newline at end of file
268 272 """ No newline at end of file
269 273 var_StartDay_index=self.lstStartDay.currentIndex() No newline at end of file
270 274 var_end_index = self.lstStopDay.count() - index No newline at end of file
271 275 self.lstStartDay.clear() No newline at end of file
272 276 No newline at end of file
273 277 for i in self.var_list[:len(self.var_list) - var_end_index + 1]: No newline at end of file
274 278 self.lstStartDay.addItem(i) No newline at end of file
275 279 No newline at end of file
276 280 self.lstStartDay.setCurrentIndex(var_StartDay_index) No newline at end of file
277 281 No newline at end of file
278 282 functions.get_sub_list(self) No newline at end of file
279 283 No newline at end of file
280 284 No newline at end of file
281 285 #----------------------------------------------------- Capacidad del dispositivo de grabacion --------------------------------------------------------------- No newline at end of file
282 286 No newline at end of file
283 287 @pyqtSignature("") No newline at end of file
284 288 def on_txtDcapacity_editingFinished(self): No newline at end of file
285 289 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
286 290 No newline at end of file
287 291 No newline at end of file
288 292 @pyqtSignature("int") #CLOSED No newline at end of file
289 293 def on_lstDcapacity_activated(self, index): No newline at end of file
290 294 """ No newline at end of file
291 295 Permite elegir el tamaΓ±o del disco No newline at end of file
292 296 """ No newline at end of file
293 297 if index == 0: No newline at end of file
294 298 var_size=25.0 No newline at end of file
295 299 elif index == 1: No newline at end of file
296 300 var_size=8.5 No newline at end of file
297 301 elif index == 2: No newline at end of file
298 302 var_size=4.7 No newline at end of file
299 303 elif index == 3: No newline at end of file
300 304 var_size=0.7 No newline at end of file
301 305 No newline at end of file
302 306 if index != 4: No newline at end of file
303 307 self.txtDcapacity.setValue(var_size*10**9/1024**2) No newline at end of file
304 308 self.txtDcapacity.setReadOnly(True) No newline at end of file
305 309 else: No newline at end of file
306 310 self.txtDcapacity.setValue(100.0) No newline at end of file
307 311 self.txtDcapacity.setReadOnly(False) No newline at end of file
308 312 No newline at end of file
309 313 self.var_lstDcapacity = self.lstDcapacity.currentIndex() No newline at end of file
310 314 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
311 315 No newline at end of file
312 316 #----------------------------------------------------- Testeo de las unidades de grabacion --------------------------------------------------------------- No newline at end of file
313 317 No newline at end of file
314 318 @pyqtSignature("") No newline at end of file
315 319 def on_btnTdevA_clicked(self): No newline at end of file
316 320 var_dev = str(self.txtDeviceA.text()) No newline at end of file
317 321 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
318 322 commands.getstatusoutput(var_cmd) No newline at end of file
319 323 No newline at end of file
320 324 @pyqtSignature("") No newline at end of file
321 325 def on_btnTdevB_clicked(self): No newline at end of file
322 326 var_dev = str(self.txtDeviceB.text()) No newline at end of file
323 327 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
324 328 commands.getstatusoutput(var_cmd) No newline at end of file
325 329 No newline at end of file
326 330 @pyqtSignature("") No newline at end of file
327 331 def on_btnTdevC_clicked(self): No newline at end of file
328 332 var_dev = str(self.txtDeviceC.text()) No newline at end of file
329 333 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
330 334 commands.getstatusoutput(var_cmd) No newline at end of file
331 335 No newline at end of file
332 336 @pyqtSignature("") No newline at end of file
333 337 def on_btnTdevD_clicked(self): No newline at end of file
334 338 var_dev = str(self.txtDeviceD.text()) No newline at end of file
335 339 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
336 340 commands.getstatusoutput(var_cmd) No newline at end of file
337 341 No newline at end of file
338 342 No newline at end of file
339 343 #============================================================================== No newline at end of file
340 344 # Botones para la generacion de los archivos de configuracion No newline at end of file
341 345 #============================================================================== No newline at end of file
342 346 No newline at end of file
343 347 #----------------------------------------------------- Generacion de la configuracion usando los parametros --------------------------------------------------------------- No newline at end of file
344 348 No newline at end of file
345 349 @pyqtSignature("") No newline at end of file
346 350 def on_btnGbkp_clicked(self): No newline at end of file
347 351 """ No newline at end of file
348 352 Generacion de archivos de configuracion usando los parametros No newline at end of file
349 353 """ No newline at end of file
350 354 No newline at end of file
351 355 if self.bool_state_manual_check == True: No newline at end of file
352 356 self.txtInfo.append("First stop the manual check process") No newline at end of file
353 357 return No newline at end of file
354 358 No newline at end of file
355 359 No newline at end of file
356 360 if functions.validate_parameters(self) == False: No newline at end of file
357 361 return No newline at end of file
358 362 No newline at end of file
359 363 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente No newline at end of file
360 364 list_dirs=['gpath','iso','ppath', 'tmpdata'] No newline at end of file
361 365 bool_make_dirs = functions.make_dirs(list_dirs, self) No newline at end of file
362 366 if bool_make_dirs == False: No newline at end of file
363 367 return No newline at end of file
364 368 No newline at end of file
365 369 var_files_list = functions.list_files(self) #Se obtiene la lista de archivos a grabar No newline at end of file
366 370 No newline at end of file
367 371 self.var_Discs = functions.make_files_dat(var_files_list, self) #Se crean los archivos .dat No newline at end of file
368 372 No newline at end of file
369 373 functions.make_files_print(self) # Se crean los archivos .print No newline at end of file
370 374 No newline at end of file
371 375 functions2.make_parameters_conf(self) # se crea el archivo parameters.conf No newline at end of file
372 376 No newline at end of file
373 377 self.txtInfo.append("Total number of discs for recording: "+str(self.var_Discs * self.var_Copys)) No newline at end of file
374 378 No newline at end of file
375 379 #Se bloquean los parametros de configuracion No newline at end of file
376 380 functions2.enabled_items1(True, self) No newline at end of file
377 381 self.var_disc_n = 1 No newline at end of file
378 382 self.var_copy_n = 1 No newline at end of file
379 383 self.bool_first_iso = True No newline at end of file
380 384 self.var_burned_discs = 0 #numero de discos grabados No newline at end of file
381 385 No newline at end of file
382 386 No newline at end of file
383 387 #----------------------------------------------------- Permite reiniciar la configuracion --------------------------------------------------------------- No newline at end of file
384 388 No newline at end of file
385 389 @pyqtSignature("") No newline at end of file
386 390 def on_btnRestart_clicked(self): No newline at end of file
387 391 """ No newline at end of file
388 392 Permite que se puedan cambiar los parametros No newline at end of file
389 393 """ No newline at end of file
390 394 if os.path.isfile("parameters.conf"): No newline at end of file
391 395 os.remove("parameters.conf") No newline at end of file
392 396 if os.path.isfile("burning.conf"): No newline at end of file
393 397 os.remove("burning.conf") No newline at end of file
394 398 No newline at end of file
395 399 functions2.enabled_items1(False, self) No newline at end of file
396 400 self.btnStartburn.setText("Start Burn") No newline at end of file
397 401 self.txtInfo.clear() No newline at end of file
398 402 No newline at end of file
399 403 No newline at end of file
400 404 No newline at end of file
401 405 #============================================================================== No newline at end of file
402 406 # Acciones de los procesos No newline at end of file
403 407 #============================================================================== No newline at end of file
404 408 No newline at end of file
405 409 #------------------------------------------------ Funciones del proceso de creacion del iso ------------------------------------------------------ No newline at end of file
406 410 No newline at end of file
407 411 def readOuput_iso(self): No newline at end of file
408 412 self.txtProgress.setText("stdout iso: " + QtCore.QString(self.process_iso.readAllStandardOutput())) No newline at end of file
409 413 No newline at end of file
410 414 def readError_iso(self): No newline at end of file
411 415 self.txtProgress.setText("stderr iso: " + QtCore.QString(self.process_iso.readAllStandardError())) No newline at end of file
412 416 No newline at end of file
413 417 def finished_iso(self): No newline at end of file
414 418 self.txtProgress.clear() No newline at end of file
415 419 No newline at end of file
416 420 if not(self.bool_state_burning): No newline at end of file
417 421 return No newline at end of file
418 422 No newline at end of file
419 423 if self.process_iso.exitCode() == 0: No newline at end of file
420 424 self.txtInfo.append("------Iso file: "+functions.i2s(self.var_disc_n)+" created successfully\n") No newline at end of file
421 425 self.var_step = 1 No newline at end of file
422 426 self.function_burn() No newline at end of file
423 427 No newline at end of file
424 428 else: No newline at end of file
425 429 self.txtInfo.append("#####Error creating iso file "+functions.i2s(self.var_disc_n) No newline at end of file
426 430 +" , code "+QtCore.QString(self.process_iso.exitCode())) No newline at end of file
427 431 self.txtInfo.append("Please check the data") No newline at end of file
428 432 self.txtInfo.append("FATAL ERROR") No newline at end of file
429 433 No newline at end of file
430 434 #----------------------------------------------------- Funciones del proceso de grabado --------------------------------------------------------------- No newline at end of file
431 435 No newline at end of file
432 436 def readOuput_burn(self): No newline at end of file
433 437 self.txtProgress.setText("stdout burn: " + QtCore.QString(self.process_burn.readAllStandardOutput())) No newline at end of file
434 438 No newline at end of file
435 439 def readError_burn(self): No newline at end of file
436 440 self.txtProgress.setText("stderr burn: " + QtCore.QString(self.process_burn.readAllStandardError())) No newline at end of file
437 441 No newline at end of file
438 442 def finished_burn(self): No newline at end of file
439 443 self.txtProgress.clear() No newline at end of file
440 444 No newline at end of file
441 445 #Si se paro el proceso manualmente se termina No newline at end of file
442 446 if not(self.bool_state_burning): No newline at end of file
443 447 return No newline at end of file
444 448 No newline at end of file
445 449 if self.process_burn.exitCode() == 0: No newline at end of file
446 450 self.txtInfo.append("-----Complete recording, disc: "+str(self.var_disc_n)+" copy: "+str(self.var_copy_n)) No newline at end of file
447 451 functions2.update_message(1, "COMPLETED", self) No newline at end of file
448 452 self.var_step = 2 No newline at end of file
449 453 self.function_check() No newline at end of file
450 454 No newline at end of file
451 455 else: No newline at end of file
452 456 self.txtInfo.append("#######Error recording, disc: "+functions.i2s(self.var_disc_n)+" copy: " No newline at end of file
453 457 +functions.i2s(self.var_copy_n)+", code "+QtCore.QString(self.process_burn.exitCode())) No newline at end of file
454 458 functions2.update_message(1, "ERROR", self) No newline at end of file
455 459 No newline at end of file
456 460 functions.is_last_disc_and_copy(self) No newline at end of file
457 461 No newline at end of file
458 462 No newline at end of file
459 463 #----------------------------------------------------- Funciones del proceso de verificacion --------------------------------------------------------------- No newline at end of file
460 464 No newline at end of file
461 465 def readOuput_check(self): No newline at end of file
462 466 self.txtProgress.setText("stdout check: " + QtCore.QString(self.process_check.readAllStandardOutput())) No newline at end of file
463 467 No newline at end of file
464 468 def readError_check(self): No newline at end of file
465 469 self.txtProgress.setText("stderr check: " + QtCore.QString(self.process_check.readAllStandardError())) No newline at end of file
466 470 No newline at end of file
467 471 def finished_check(self): No newline at end of file
468 472 self.txtProgress.clear() No newline at end of file
469 473 No newline at end of file
470 474 if not(self.bool_state_burning): No newline at end of file
471 475 return No newline at end of file
472 476 No newline at end of file
473 477 if self.process_check.exitCode() == 0: No newline at end of file
474 478 self.txtInfo.append("--------Complete checking, disc: "+str(self.var_disc_n)+" copy: "+str(self.var_copy_n)) No newline at end of file
475 479 functions2.update_message(2, "CHECKED", self) No newline at end of file
476 480 No newline at end of file
477 481 else: No newline at end of file
478 482 self.txtInfo.append("#######Error checking, disc: "+functions.i2s(self.var_disc_n)+" copy: " No newline at end of file
479 483 +functions.i2s(self.var_copy_n)+", code "+QtCore.QString(self.process_check.exitCode())) No newline at end of file
480 484 functions2.update_message(2, "ERROR", self) No newline at end of file
481 485 No newline at end of file
482 486 #borrar el contenido de tmpdata No newline at end of file
483 487 var_tmpdata=self.var_Rpath+"/tmpdata" No newline at end of file
484 488 No newline at end of file
485 489 bool_return = functions.remove_dir(var_tmpdata, self) No newline at end of file
486 490 if not(bool_return): No newline at end of file
487 491 self.txtInfo.append("Error deleting directory: "+var_tmpdata) No newline at end of file
488 492 self.bool_state_burning = False No newline at end of file
489 493 return No newline at end of file
490 494 No newline at end of file
491 495 bool_return = functions.make_dir(var_tmpdata, self) No newline at end of file
492 496 if not(bool_return): No newline at end of file
493 497 self.txtInfo.append("Error creating directory:"+ var_tmpdata) No newline at end of file
494 498 self.bool_state_burning = False No newline at end of file
495 499 return No newline at end of file
496 500 No newline at end of file
497 501 functions.is_last_disc_and_copy(self) No newline at end of file
498 502 No newline at end of file
499 503 #----------------------------------------------------- Funciones del proceso de verificacion manual --------------------------------------------------------------- No newline at end of file
500 504 No newline at end of file
501 505 def readOuput_manual_check(self): No newline at end of file
502 506 self.txtProgress.setText("stdout check: " + QtCore.QString(self.process_manual_check.readAllStandardOutput())) No newline at end of file
503 507 No newline at end of file
504 508 def readError_manual_check(self): No newline at end of file
505 509 self.txtProgress.setText("stderr check: " + QtCore.QString(self.process_manual_check.readAllStandardError())) No newline at end of file
506 510 No newline at end of file
507 511 def finished_manual_check(self): No newline at end of file
508 512 self.txtProgress.clear() No newline at end of file
509 513 No newline at end of file
510 514 if not(self.bool_state_manual_check): No newline at end of file
511 515 return No newline at end of file
512 516 No newline at end of file
513 517 if self.process_manual_check.exitCode() == 0: No newline at end of file
514 518 self.txtInfo.append("--------Complete checking, disc: "+str(self.var_n_check_dirs + 1)) No newline at end of file
515 519 functions2.update_message(2, "CHECKED", self, index=self.var_n_check_dirs) No newline at end of file
516 520 No newline at end of file
517 521 else: No newline at end of file
518 522 self.txtInfo.append("#######Error checking, disc: "+str(self.var_n_check_dirs + 1) No newline at end of file
519 523 +", code "+QtCore.QString(self.process_manual_check.exitCode())) No newline at end of file
520 524 functions2.update_message(2, "ERROR", self, index=self.var_n_check_dirs) No newline at end of file
521 525 No newline at end of file
522 526 #borrar el contenido de tmpdata No newline at end of file
523 527 var_tmpdata=self.var_TDpath+"/tmpdata" No newline at end of file
524 528 No newline at end of file
525 529 bool_return = functions.remove_dir(var_tmpdata, self) No newline at end of file
526 530 if not(bool_return): No newline at end of file
527 531 self.txtInfo.append("Error deleting directory: "+var_tmpdata) No newline at end of file
528 532 self.bool_state_manual_check = False No newline at end of file
529 533 return No newline at end of file
530 534 No newline at end of file
531 535 self.var_n_check_dirs +=1 No newline at end of file
532 536 No newline at end of file
533 537 if self.var_n_check_dirs >= len(self.list_check_dirs) : No newline at end of file
534 538 self.bool_state_manual_check = False No newline at end of file
535 539 self.function_manual_check_final() No newline at end of file
536 540 return No newline at end of file
537 541 No newline at end of file
538 542 self.function_manual_check() No newline at end of file
539 543 No newline at end of file
540 544 No newline at end of file
541 545 #============================================================================== No newline at end of file
542 546 # Botones para el proceso de grabacion No newline at end of file
543 547 #============================================================================== No newline at end of file
544 548 No newline at end of file
545 549 #----------------------------------------------------- Iniciar proceso de grabacion --------------------------------------------------------------- No newline at end of file
546 550 No newline at end of file
547 551 @pyqtSignature("") No newline at end of file
548 552 def on_btnStartburn_clicked(self): No newline at end of file
549 553 """ No newline at end of file
550 554 Se inicia el proceso de grabacion No newline at end of file
551 555 """ No newline at end of file
552 556 #Verifica que exista algun dispositivo de grabacion seleccionado No newline at end of file
553 557 if not(functions2.selected_devices(self)): No newline at end of file
554 558 self.txtInfo.append("There is no recording device selected") No newline at end of file
555 559 return No newline at end of file
556 560 No newline at end of file
557 561 # #Lista los dispositivos de grabacion a usar No newline at end of file
558 562 # for dev in self.var_devices: No newline at end of file
559 563 # self.txtInfo.append("recording device :"+dev) No newline at end of file
560 564 No newline at end of file
561 565 self.bool_state_burning = True No newline at end of file
562 566 functions2.enabled_items2(True, self) No newline at end of file
563 567 No newline at end of file
564 568 if self.bool_first_iso == True: No newline at end of file
565 569 self.txtInfo.append("BUTTON: on_btnStartburn_clicked") No newline at end of file
566 570 self.var_step = 4 No newline at end of file
567 571 self.function_eject() No newline at end of file
568 572 return No newline at end of file
569 573 No newline at end of file
570 574 if self.var_step == 0: No newline at end of file
571 575 self.function_iso() No newline at end of file
572 576 return No newline at end of file
573 577 No newline at end of file
574 578 if self.var_step == 1: No newline at end of file
575 579 self.function_burn() No newline at end of file
576 580 return No newline at end of file
577 581 No newline at end of file
578 582 #----------------------------------------------------- Funcion para el grabado --------------------------------------------------------------- No newline at end of file
579 583 No newline at end of file
580 584 def function_iso(self): No newline at end of file
581 585 #Creacion del archivo.iso para la grabacion No newline at end of file
582 586 if self.var_step == 0: No newline at end of file
583 587 self.txtInfo.append("########## Disc number: "+str(self.var_disc_n)+"##########") No newline at end of file
584 588 self.txtInfo.append("------Creating iso file number: "+str(self.var_disc_n)) No newline at end of file
585 589 No newline at end of file
586 590 var_cmd = functions.cmd_iso(self) No newline at end of file
587 591 No newline at end of file
588 592 if self.var_real_show_cmd == True: No newline at end of file
589 593 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
590 594 No newline at end of file
591 595 if self.var_real_iso == False: No newline at end of file
592 596 self.txtInfo.append('**function_iso') No newline at end of file
593 597 var_cmd="echo 'function_iso'" No newline at end of file
594 598 No newline at end of file
595 599 self.process_iso.start(var_cmd) No newline at end of file
596 600 No newline at end of file
597 601 def function_burn(self): No newline at end of file
598 602 #Grabacion de los DVDs No newline at end of file
599 603 No newline at end of file
600 604 if self.var_step == 1: No newline at end of file
601 605 self.txtInfo.append("------Recording disc: "+str(self.var_disc_n)+", copy:"+str(self.var_copy_n)) No newline at end of file
602 606 functions2.update_message(1, "BURNING", self) No newline at end of file
603 607 No newline at end of file
604 608 var_cmd = functions.cmd_burn(self) No newline at end of file
605 609 No newline at end of file
606 610 if self.var_real_show_cmd == True: No newline at end of file
607 611 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
608 612 No newline at end of file
609 613 if self.var_real_burn == False: No newline at end of file
610 614 self.txtInfo.append('**function_burn') No newline at end of file
611 615 var_cmd="echo 'function_burn'" No newline at end of file
612 616 No newline at end of file
613 617 self.process_burn.start(var_cmd) No newline at end of file
614 618 No newline at end of file
615 619 def function_check(self): No newline at end of file
616 620 #Verificacion de los discos No newline at end of file
617 621 if self.var_step == 2: No newline at end of file
618 622 self.txtInfo.append("-----------checking disc:"+str(self.var_disc_n)+", copy:"+str(self.var_copy_n)) No newline at end of file
619 623 No newline at end of file
620 624 functions2.eject_one_device(self) No newline at end of file
621 625 functions2.eject_t_one_device(self) No newline at end of file
622 626 self.txtInfo.append("Waiting ...") No newline at end of file
623 627 time .sleep(20) No newline at end of file
624 628 No newline at end of file
625 629 functions2.update_message(2, "CHECKING", self) No newline at end of file
626 630 No newline at end of file
627 631 dev_sr = functions2.get_dev_sr(self) No newline at end of file
628 632 var_cmd = functions.cmd_check(dev_sr, self) No newline at end of file
629 633 No newline at end of file
630 634 if self.var_real_show_cmd == True: No newline at end of file
631 635 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
632 636 No newline at end of file
633 637 if self.var_real_check == False: No newline at end of file
634 638 self.txtInfo.append('**function_check') No newline at end of file
635 639 var_cmd="echo 'function_check'" No newline at end of file
636 640 No newline at end of file
637 641 self.process_check.start(var_cmd) No newline at end of file
638 642 No newline at end of file
639 643 #OK No newline at end of file
640 644 def function_eject(self): No newline at end of file
641 645 self.txtInfo.append("Ejecting recording devices") No newline at end of file
642 646 self.txtInfo.append("Please insert blank discs") No newline at end of file
643 647 No newline at end of file
644 648 if self.var_real_eject == True: No newline at end of file
645 649 functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion No newline at end of file
646 650 else: No newline at end of file
647 651 self.txtInfo.append("**functions2.eject_devices") No newline at end of file
648 652 No newline at end of file
649 653 self.btnStartburn.setText("Continue") No newline at end of file
650 654 self.btnStartburn.setEnabled(True) No newline at end of file
651 655 No newline at end of file
652 656 if self.bool_first_iso == True: No newline at end of file
653 657 self.bool_first_iso = False No newline at end of file
654 658 self.var_step = 0 No newline at end of file
655 659 No newline at end of file
656 660 elif self.var_copy_n == 1: No newline at end of file
657 661 self.var_step = 0 No newline at end of file
658 662 No newline at end of file
659 663 else: No newline at end of file
660 664 self.var_step = 1 No newline at end of file
661 665 No newline at end of file
662 666 def function_final(self): No newline at end of file
663 667 self.txtInfo.append("Recording process is complete") No newline at end of file
664 668 if os.path.isfile("parameters.conf"): No newline at end of file
665 669 os.remove("parameters.conf") No newline at end of file
666 670 if os.path.isfile("burning.conf"): No newline at end of file
667 671 os.remove("burning.conf") No newline at end of file
668 672 No newline at end of file
673 self.btnGbkp.setEnabled(False)
No newline at end of file
674 self.btnRestart.setEnabled(True)
No newline at end of file
675 self.btnStartburn.setEnabled(False)
No newline at end of file
676 self.btnStopburn.setEnabled(False)
No newline at end of file
677 No newline at end of file
669 678 functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion No newline at end of file
670 679 No newline at end of file
671 680 No newline at end of file
672 681 No newline at end of file
673 682 No newline at end of file
674 683 #----------------------------------------------------- Detener proceso de grabacion --------------------------------------------------------------- No newline at end of file
675 684 No newline at end of file
676 685 @pyqtSignature("") No newline at end of file
677 686 def on_btnStopburn_clicked(self): No newline at end of file
678 687 """ No newline at end of file
679 688 Slot documentation goes here. No newline at end of file
680 689 """ No newline at end of file
681 690 self.bool_state_burning = False No newline at end of file
682 691 No newline at end of file
683 692 if self.var_step == 0: No newline at end of file
684 693 self.process_iso.terminate() #Termina el proceso, si puede No newline at end of file
685 694 # self.process_iso.kill() #Mata el proceso, no es la forma adecuada, solo usar si terminate() no funciona No newline at end of file
686 695 elif self.var_step == 1: No newline at end of file
687 696 self.process_burn.terminate() No newline at end of file
688 697 elif self.var_step == 2: No newline at end of file
689 698 self.process_check.terminate() No newline at end of file
690 699 No newline at end of file
691 700 self.txtInfo.append("Stopped recording") No newline at end of file
692 701 functions2.enabled_items2(False, self) No newline at end of file
693 702 self.bool_first_iso = True No newline at end of file
694 703 No newline at end of file
695 704 No newline at end of file
696 705 No newline at end of file
697 706 #============================================================================== No newline at end of file
698 707 # Proceso verificacion manual No newline at end of file
699 708 #============================================================================== No newline at end of file
700 709 No newline at end of file
701 710 No newline at end of file
702 711 #----------------------------------------------------- Proceso de verificaion manual --------------------------------------------------------------- No newline at end of file
703 712 No newline at end of file
704 713 No newline at end of file
705 714 @pyqtSignature("") No newline at end of file
706 715 def on_btnTDpath_clicked(self): No newline at end of file
707 716 """ No newline at end of file
708 717 Slot documentation goes here. No newline at end of file
709 718 """ No newline at end of file
710 719 self.var_TDpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
711 720 self.txtTDpath.setText(self.var_TDpath) No newline at end of file
712 721 self.statusTDpath = functions.dir_exists(self.var_TDpath, self) No newline at end of file
713 722 if self.statusTDpath: No newline at end of file
714 723 self.btnCHstart.setEnabled(True) No newline at end of file
715 724 No newline at end of file
716 725 No newline at end of file
717 726 @pyqtSignature("") No newline at end of file
718 727 def on_btnCHstart_clicked(self): No newline at end of file
719 728 """ No newline at end of file
720 729 Slot documentation goes here. No newline at end of file
721 730 """ No newline at end of file
722 731 No newline at end of file
723 732 if self.btnCHstart.text() == "STOP": No newline at end of file
724 733 self.btnCHstart.setText("START") #Cambio el texto del boton No newline at end of file
725 734 self.bool_state_manual_check = False No newline at end of file
726 735 self.process_manual_check.terminate() No newline at end of file
727 736 No newline at end of file
728 737 #borrar el contenido de tmpdata No newline at end of file
729 738 var_tmpdata=self.var_TDpath+"/tmpdata" No newline at end of file
730 739 bool_return = functions.remove_dir(var_tmpdata, self) No newline at end of file
731 740 if not(bool_return): No newline at end of file
732 741 self.txtInfo.append("Error deleting directory: "+var_tmpdata) No newline at end of file
733 742 No newline at end of file
734 743 return No newline at end of file
735 744 No newline at end of file
736 745 No newline at end of file
737 746 list_dirs = functions2.mounted_devices() No newline at end of file
738 747 if list_dirs == "FATAL ERROR": No newline at end of file
739 748 self.txtInfo.append("ERROR") No newline at end of file
740 749 return No newline at end of file
741 750 No newline at end of file
742 751 for i in list_dirs: No newline at end of file
743 752 self.txtInfo.append(i) No newline at end of file
744 753 No newline at end of file
745 754 self.list_check_dirs = list_dirs #contiene los directorios donde estan montados los discos a verificar No newline at end of file
746 755 self.var_n_check_dirs = 0 No newline at end of file
747 756 self.bool_state_manual_check = True No newline at end of file
748 757 No newline at end of file
749 758 self.btnTDpath.setEnabled(False) #Deshabilito el boton que permite cambiar la ruta de verificacion No newline at end of file
750 759 self.btnCHstart.setText("STOP") #Cambio el texto del boton No newline at end of file
751 760 No newline at end of file
752 761 self.function_manual_check() No newline at end of file
753 762 No newline at end of file
754 763 No newline at end of file
755 764 def function_manual_check(self): No newline at end of file
756 765 No newline at end of file
757 766 #Verificacion de los discos No newline at end of file
758 767 if self.bool_state_manual_check == True: No newline at end of file
759 768 No newline at end of file
760 769 self.txtInfo.append("-----------manually checking disc: "+str(self.var_n_check_dirs + 1) No newline at end of file
761 770 +" directory: "+self.list_check_dirs[self.var_n_check_dirs]) No newline at end of file
762 771 No newline at end of file
763 772 functions2.update_message(2, "CHECKING", self, index=self.var_n_check_dirs) No newline at end of file
764 773 No newline at end of file
765 774 #Crea la carpeta tmpdata dentro de la ruta elegida No newline at end of file
766 775 var_tmpdata=self.var_TDpath+"/tmpdata" No newline at end of file
767 776 bool_return = functions.make_dir(var_tmpdata, self) No newline at end of file
768 777 if not(bool_return): No newline at end of file
769 778 self.txtInfo.append("Error creating directory:"+ var_tmpdata) No newline at end of file
770 779 self.bool_state_burning = False No newline at end of file
771 780 return No newline at end of file
772 781 No newline at end of file
773 782 var_data_dir = self.list_check_dirs[self.var_n_check_dirs] #Carpeta donde esta montado el disco actual No newline at end of file
774 783 No newline at end of file
775 784 var_cmd = functions.cmd_manual_check(var_data_dir, var_tmpdata) No newline at end of file
776 785 No newline at end of file
777 786 if self.var_real_show_cmd == True: No newline at end of file
778 787 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
779 788 No newline at end of file
780 789 if self.var_real_manual_check == False: No newline at end of file
781 790 self.txtInfo.append('**function_manual_check') No newline at end of file
782 791 var_cmd="echo 'function_manual_check'" No newline at end of file
783 792 No newline at end of file
784 793 self.process_manual_check.start(var_cmd) No newline at end of file
785 794 No newline at end of file
786 795 No newline at end of file
787 796 def function_manual_check_final(self): No newline at end of file
788 797 self.txtInfo.append("Manual check process is complete") No newline at end of file
789 798 self.btnCHstart.setText("START") #Cambio el texto del boton No newline at end of file
790 799 for var_mount_point in self.list_check_dirs: No newline at end of file
791 800 var_cmd = 'eject ' + var_mount_point No newline at end of file
792 801 commands.getstatusoutput(var_cmd) No newline at end of file
793 802 No newline at end of file
794 803 No newline at end of file
@@ -1,1408 +1,1408
1 1 <?xml version="1.0" encoding="UTF-8"?> No newline at end of file
2 2 <ui version="4.0"> No newline at end of file
3 3 <class>MainWindow</class> No newline at end of file
4 4 <widget class="QMainWindow" name="MainWindow"> No newline at end of file
5 5 <property name="geometry"> No newline at end of file
6 6 <rect> No newline at end of file
7 7 <x>0</x> No newline at end of file
8 8 <y>0</y> No newline at end of file
9 9 <width>824</width> No newline at end of file
10 10 <height>717</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">
30 No newline at end of file
30 <number>2</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="sizePolicy"> No newline at end of file
123 123 <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> No newline at end of file
124 124 <horstretch>0</horstretch> No newline at end of file
125 125 <verstretch>0</verstretch> No newline at end of file
126 126 </sizepolicy> No newline at end of file
127 127 </property> No newline at end of file
128 128 <property name="text"> No newline at end of file
129 129 <string>r</string> No newline at end of file
130 130 </property> No newline at end of file
131 131 <property name="readOnly"> No newline at end of file
132 132 <bool>true</bool> No newline at end of file
133 133 </property> No newline at end of file
134 134 </widget> No newline at end of file
135 135 </item> No newline at end of file
136 136 <item> No newline at end of file
137 137 <spacer name="horizontalSpacer"> No newline at end of file
138 138 <property name="orientation"> No newline at end of file
139 139 <enum>Qt::Horizontal</enum> No newline at end of file
140 140 </property> No newline at end of file
141 141 <property name="sizeType"> No newline at end of file
142 142 <enum>QSizePolicy::Expanding</enum> No newline at end of file
143 143 </property> No newline at end of file
144 144 <property name="sizeHint" stdset="0"> No newline at end of file
145 145 <size> No newline at end of file
146 146 <width>40</width> No newline at end of file
147 147 <height>20</height> No newline at end of file
148 148 </size> No newline at end of file
149 149 </property> No newline at end of file
150 150 </spacer> No newline at end of file
151 151 </item> No newline at end of file
152 152 </layout> No newline at end of file
153 153 </item> No newline at end of file
154 154 <item> No newline at end of file
155 155 <layout class="QHBoxLayout" name="horizontalLayout_6"> No newline at end of file
156 156 <item> No newline at end of file
157 157 <widget class="QLabel" name="lblElabel"> No newline at end of file
158 158 <property name="text"> No newline at end of file
159 159 <string>Exp. Label at device</string> No newline at end of file
160 160 </property> No newline at end of file
161 161 </widget> No newline at end of file
162 162 </item> No newline at end of file
163 163 <item> No newline at end of file
164 164 <widget class="QLabel" name="lblCopys"> No newline at end of file
165 165 <property name="text"> No newline at end of file
166 166 <string>Copys</string> No newline at end of file
167 167 </property> No newline at end of file
168 168 </widget> No newline at end of file
169 169 </item> No newline at end of file
170 170 </layout> No newline at end of file
171 171 </item> No newline at end of file
172 172 <item> No newline at end of file
173 173 <layout class="QHBoxLayout" name="horizontalLayout_5"> No newline at end of file
174 174 <item> No newline at end of file
175 175 <widget class="QLineEdit" name="txtElabel"/> No newline at end of file
176 176 </item> No newline at end of file
177 177 <item> No newline at end of file
178 178 <widget class="QSpinBox" name="txtCopys"> No newline at end of file
179 179 <property name="sizePolicy"> No newline at end of file
180 180 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
181 181 <horstretch>0</horstretch> No newline at end of file
182 182 <verstretch>0</verstretch> No newline at end of file
183 183 </sizepolicy> No newline at end of file
184 184 </property> No newline at end of file
185 185 <property name="minimum"> No newline at end of file
186 186 <number>1</number> 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_7"> No newline at end of file
194 194 <item> No newline at end of file
195 195 <widget class="QLabel" name="lblStartDay"> No newline at end of file
196 196 <property name="text"> No newline at end of file
197 197 <string>Start Day:</string> No newline at end of file
198 198 </property> No newline at end of file
199 199 </widget> No newline at end of file
200 200 </item> No newline at end of file
201 201 <item> No newline at end of file
202 202 <widget class="QLabel" name="lblStopDay"> No newline at end of file
203 203 <property name="text"> No newline at end of file
204 204 <string>Stop Day:</string> No newline at end of file
205 205 </property> No newline at end of file
206 206 </widget> No newline at end of file
207 207 </item> No newline at end of file
208 208 </layout> No newline at end of file
209 209 </item> No newline at end of file
210 210 <item> No newline at end of file
211 211 <layout class="QHBoxLayout" name="horizontalLayout_8"> No newline at end of file
212 212 <item> No newline at end of file
213 213 <widget class="QComboBox" name="lstStartDay"/> No newline at end of file
214 214 </item> No newline at end of file
215 215 <item> No newline at end of file
216 216 <widget class="QComboBox" name="lstStopDay"/> No newline at end of file
217 217 </item> No newline at end of file
218 218 </layout> No newline at end of file
219 219 </item> No newline at end of file
220 220 </layout> No newline at end of file
221 221 </widget> No newline at end of file
222 222 <widget class="QWidget" name="tabDconfig"> No newline at end of file
223 223 <property name="enabled"> No newline at end of file
224 224 <bool>true</bool> No newline at end of file
225 225 </property> No newline at end of file
226 226 <property name="sizePolicy"> No newline at end of file
227 227 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
228 228 <horstretch>0</horstretch> No newline at end of file
229 229 <verstretch>0</verstretch> No newline at end of file
230 230 </sizepolicy> No newline at end of file
231 231 </property> No newline at end of file
232 232 <attribute name="title"> No newline at end of file
233 233 <string>Device Config.</string> No newline at end of file
234 234 </attribute> No newline at end of file
235 235 <layout class="QVBoxLayout" name="verticalLayout_3"> No newline at end of file
236 236 <item> No newline at end of file
237 237 <layout class="QHBoxLayout" name="horizontalLayout_12"> No newline at end of file
238 238 <item> No newline at end of file
239 239 <layout class="QVBoxLayout" name="verticalLayout_15"> No newline at end of file
240 240 <item> No newline at end of file
241 241 <widget class="QCheckBox" name="chkDevA"> No newline at end of file
242 242 <property name="text"> No newline at end of file
243 243 <string>Dev A</string> No newline at end of file
244 244 </property> No newline at end of file
245 245 <property name="checked"> No newline at end of file
246 246 <bool>true</bool> No newline at end of file
247 247 </property> No newline at end of file
248 248 </widget> No newline at end of file
249 249 </item> No newline at end of file
250 250 <item> No newline at end of file
251 251 <widget class="QWidget" name="grpDevA" native="true"> No newline at end of file
252 252 <layout class="QVBoxLayout" name="verticalLayout_11"> No newline at end of file
253 253 <item> No newline at end of file
254 254 <widget class="QLineEdit" name="txtDeviceA"> No newline at end of file
255 255 <property name="readOnly"> No newline at end of file
256 256 <bool>true</bool> No newline at end of file
257 257 </property> No newline at end of file
258 258 </widget> No newline at end of file
259 259 </item> No newline at end of file
260 260 <item> No newline at end of file
261 261 <widget class="QSpinBox" name="txtBspeedA"> No newline at end of file
262 262 <property name="readOnly"> No newline at end of file
263 263 <bool>true</bool> No newline at end of file
264 264 </property> No newline at end of file
265 265 <property name="minimum"> No newline at end of file
266 266 <number>1</number> No newline at end of file
267 267 </property> No newline at end of file
268 268 <property name="value"> No newline at end of file
269 269 <number>16</number> No newline at end of file
270 270 </property> No newline at end of file
271 271 </widget> No newline at end of file
272 272 </item> No newline at end of file
273 273 <item> No newline at end of file
274 274 <widget class="QLineEdit" name="txtBmodeA"> No newline at end of file
275 275 <property name="text"> No newline at end of file
276 276 <string>-sao</string> No newline at end of file
277 277 </property> No newline at end of file
278 278 <property name="readOnly"> No newline at end of file
279 279 <bool>true</bool> No newline at end of file
280 280 </property> No newline at end of file
281 281 </widget> No newline at end of file
282 282 </item> No newline at end of file
283 283 <item> No newline at end of file
284 284 <widget class="QPushButton" name="btnTdevA"> No newline at end of file
285 285 <property name="text"> No newline at end of file
286 286 <string>Test DevA</string> No newline at end of file
287 287 </property> No newline at end of file
288 288 </widget> No newline at end of file
289 289 </item> No newline at end of file
290 290 </layout> No newline at end of file
291 291 </widget> No newline at end of file
292 292 </item> No newline at end of file
293 293 </layout> No newline at end of file
294 294 </item> No newline at end of file
295 295 <item> No newline at end of file
296 296 <layout class="QVBoxLayout" name="verticalLayout_16"> No newline at end of file
297 297 <item> No newline at end of file
298 298 <widget class="QCheckBox" name="chkDevB"> No newline at end of file
299 299 <property name="text"> No newline at end of file
300 300 <string>Dev B</string> No newline at end of file
301 301 </property> No newline at end of file
302 302 <property name="checked"> No newline at end of file
303 303 <bool>true</bool> No newline at end of file
304 304 </property> No newline at end of file
305 305 </widget> No newline at end of file
306 306 </item> No newline at end of file
307 307 <item> No newline at end of file
308 308 <widget class="QWidget" name="grpDevB" native="true"> No newline at end of file
309 309 <layout class="QVBoxLayout" name="verticalLayout_12"> No newline at end of file
310 310 <item> No newline at end of file
311 311 <widget class="QLineEdit" name="txtDeviceB"> No newline at end of file
312 312 <property name="readOnly"> No newline at end of file
313 313 <bool>true</bool> No newline at end of file
314 314 </property> No newline at end of file
315 315 </widget> No newline at end of file
316 316 </item> No newline at end of file
317 317 <item> No newline at end of file
318 318 <widget class="QSpinBox" name="txtBspeedB"> No newline at end of file
319 319 <property name="readOnly"> No newline at end of file
320 320 <bool>true</bool> No newline at end of file
321 321 </property> No newline at end of file
322 322 <property name="minimum"> No newline at end of file
323 323 <number>1</number> No newline at end of file
324 324 </property> No newline at end of file
325 325 <property name="value"> No newline at end of file
326 326 <number>16</number> No newline at end of file
327 327 </property> No newline at end of file
328 328 </widget> No newline at end of file
329 329 </item> No newline at end of file
330 330 <item> No newline at end of file
331 331 <widget class="QLineEdit" name="txtBmodeB"> No newline at end of file
332 332 <property name="text"> No newline at end of file
333 333 <string>-sao</string> No newline at end of file
334 334 </property> No newline at end of file
335 335 <property name="readOnly"> No newline at end of file
336 336 <bool>true</bool> 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="btnTdevB"> No newline at end of file
342 342 <property name="text"> No newline at end of file
343 343 <string>Test DevB</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> No newline at end of file
353 353 <layout class="QVBoxLayout" name="verticalLayout_17"> No newline at end of file
354 354 <item> No newline at end of file
355 355 <widget class="QCheckBox" name="chkDevC"> No newline at end of file
356 356 <property name="text"> No newline at end of file
357 357 <string>Dev C</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="grpDevC" native="true"> No newline at end of file
366 366 <layout class="QVBoxLayout" name="verticalLayout_13"> No newline at end of file
367 367 <item> No newline at end of file
368 368 <widget class="QLineEdit" name="txtDeviceC"> No newline at end of file
369 369 <property name="readOnly"> No newline at end of file
370 370 <bool>true</bool> No newline at end of file
371 371 </property> No newline at end of file
372 372 </widget> No newline at end of file
373 373 </item> No newline at end of file
374 374 <item> No newline at end of file
375 375 <widget class="QSpinBox" name="txtBspeedC"> No newline at end of file
376 376 <property name="readOnly"> No newline at end of file
377 377 <bool>true</bool> No newline at end of file
378 378 </property> No newline at end of file
379 379 <property name="minimum"> No newline at end of file
380 380 <number>1</number> No newline at end of file
381 381 </property> No newline at end of file
382 382 <property name="value"> No newline at end of file
383 383 <number>16</number> No newline at end of file
384 384 </property> No newline at end of file
385 385 </widget> No newline at end of file
386 386 </item> No newline at end of file
387 387 <item> No newline at end of file
388 388 <widget class="QLineEdit" name="txtBmodeC"> No newline at end of file
389 389 <property name="text"> No newline at end of file
390 390 <string>-sao</string> No newline at end of file
391 391 </property> No newline at end of file
392 392 <property name="readOnly"> No newline at end of file
393 393 <bool>true</bool> No newline at end of file
394 394 </property> No newline at end of file
395 395 </widget> No newline at end of file
396 396 </item> No newline at end of file
397 397 <item> No newline at end of file
398 398 <widget class="QPushButton" name="btnTdevC"> No newline at end of file
399 399 <property name="text"> No newline at end of file
400 400 <string>Test DevC</string> No newline at end of file
401 401 </property> No newline at end of file
402 402 </widget> No newline at end of file
403 403 </item> No newline at end of file
404 404 </layout> No newline at end of file
405 405 </widget> No newline at end of file
406 406 </item> No newline at end of file
407 407 </layout> No newline at end of file
408 408 </item> No newline at end of file
409 409 <item> No newline at end of file
410 410 <layout class="QVBoxLayout" name="verticalLayout_18"> No newline at end of file
411 411 <item> No newline at end of file
412 412 <widget class="QCheckBox" name="chkDevD"> No newline at end of file
413 413 <property name="text"> No newline at end of file
414 414 <string>Dev D</string> No newline at end of file
415 415 </property> No newline at end of file
416 416 <property name="checked"> No newline at end of file
417 417 <bool>true</bool> No newline at end of file
418 418 </property> No newline at end of file
419 419 </widget> No newline at end of file
420 420 </item> No newline at end of file
421 421 <item> No newline at end of file
422 422 <widget class="QWidget" name="grpDevD" native="true"> No newline at end of file
423 423 <layout class="QVBoxLayout" name="verticalLayout_14"> No newline at end of file
424 424 <item> No newline at end of file
425 425 <widget class="QLineEdit" name="txtDeviceD"> No newline at end of file
426 426 <property name="readOnly"> No newline at end of file
427 427 <bool>true</bool> No newline at end of file
428 428 </property> No newline at end of file
429 429 </widget> No newline at end of file
430 430 </item> No newline at end of file
431 431 <item> No newline at end of file
432 432 <widget class="QSpinBox" name="txtBspeedD"> No newline at end of file
433 433 <property name="readOnly"> No newline at end of file
434 434 <bool>true</bool> No newline at end of file
435 435 </property> No newline at end of file
436 436 <property name="minimum"> No newline at end of file
437 437 <number>1</number> No newline at end of file
438 438 </property> No newline at end of file
439 439 <property name="value"> No newline at end of file
440 440 <number>16</number> No newline at end of file
441 441 </property> No newline at end of file
442 442 </widget> No newline at end of file
443 443 </item> No newline at end of file
444 444 <item> No newline at end of file
445 445 <widget class="QLineEdit" name="txtBmodeD"> No newline at end of file
446 446 <property name="text"> No newline at end of file
447 447 <string>-sao</string> No newline at end of file
448 448 </property> No newline at end of file
449 449 <property name="readOnly"> No newline at end of file
450 450 <bool>true</bool> No newline at end of file
451 451 </property> No newline at end of file
452 452 </widget> No newline at end of file
453 453 </item> No newline at end of file
454 454 <item> No newline at end of file
455 455 <widget class="QPushButton" name="btnTdevD"> No newline at end of file
456 456 <property name="text"> No newline at end of file
457 457 <string>Test DevD</string> No newline at end of file
458 458 </property> No newline at end of file
459 459 </widget> No newline at end of file
460 460 </item> No newline at end of file
461 461 </layout> No newline at end of file
462 462 </widget> No newline at end of file
463 463 </item> No newline at end of file
464 464 </layout> No newline at end of file
465 465 </item> No newline at end of file
466 466 <item> No newline at end of file
467 467 <layout class="QVBoxLayout" name="verticalLayout_19"> No newline at end of file
468 468 <item> No newline at end of file
469 469 <spacer name="verticalSpacer_3"> No newline at end of file
470 470 <property name="orientation"> No newline at end of file
471 471 <enum>Qt::Vertical</enum> No newline at end of file
472 472 </property> No newline at end of file
473 473 <property name="sizeType"> No newline at end of file
474 474 <enum>QSizePolicy::Minimum</enum> No newline at end of file
475 475 </property> No newline at end of file
476 476 <property name="sizeHint" stdset="0"> No newline at end of file
477 477 <size> No newline at end of file
478 478 <width>20</width> No newline at end of file
479 479 <height>40</height> No newline at end of file
480 480 </size> No newline at end of file
481 481 </property> No newline at end of file
482 482 </spacer> No newline at end of file
483 483 </item> No newline at end of file
484 484 <item> No newline at end of file
485 485 <widget class="QWidget" name="grpDevD_2" native="true"> No newline at end of file
486 486 <layout class="QVBoxLayout" name="verticalLayout_20"> No newline at end of file
487 487 <item> No newline at end of file
488 488 <widget class="QLabel" name="lblDevice"> No newline at end of file
489 489 <property name="text"> No newline at end of file
490 490 <string>Device</string> No newline at end of file
491 491 </property> No newline at end of file
492 492 </widget> No newline at end of file
493 493 </item> No newline at end of file
494 494 <item> No newline at end of file
495 495 <widget class="QLabel" name="lblBspeed"> No newline at end of file
496 496 <property name="text"> No newline at end of file
497 497 <string>Burn Speed</string> No newline at end of file
498 498 </property> No newline at end of file
499 499 </widget> No newline at end of file
500 500 </item> No newline at end of file
501 501 <item> No newline at end of file
502 502 <widget class="QLabel" name="lblBmode"> No newline at end of file
503 503 <property name="text"> No newline at end of file
504 504 <string>Burn Mode</string> No newline at end of file
505 505 </property> No newline at end of file
506 506 </widget> No newline at end of file
507 507 </item> No newline at end of file
508 508 <item> No newline at end of file
509 509 <spacer name="verticalSpacer_4"> No newline at end of file
510 510 <property name="orientation"> No newline at end of file
511 511 <enum>Qt::Vertical</enum> No newline at end of file
512 512 </property> No newline at end of file
513 513 <property name="sizeType"> No newline at end of file
514 514 <enum>QSizePolicy::Fixed</enum> No newline at end of file
515 515 </property> No newline at end of file
516 516 <property name="sizeHint" stdset="0"> No newline at end of file
517 517 <size> No newline at end of file
518 518 <width>20</width> No newline at end of file
519 519 <height>40</height> No newline at end of file
520 520 </size> No newline at end of file
521 521 </property> No newline at end of file
522 522 </spacer> No newline at end of file
523 523 </item> No newline at end of file
524 524 </layout> No newline at end of file
525 525 </widget> No newline at end of file
526 526 </item> No newline at end of file
527 527 </layout> No newline at end of file
528 528 </item> No newline at end of file
529 529 </layout> No newline at end of file
530 530 </item> No newline at end of file
531 531 <item> No newline at end of file
532 532 <spacer name="verticalSpacer_2"> No newline at end of file
533 533 <property name="orientation"> No newline at end of file
534 534 <enum>Qt::Vertical</enum> No newline at end of file
535 535 </property> No newline at end of file
536 536 <property name="sizeType"> No newline at end of file
537 537 <enum>QSizePolicy::Minimum</enum> No newline at end of file
538 538 </property> No newline at end of file
539 539 <property name="sizeHint" stdset="0"> No newline at end of file
540 540 <size> No newline at end of file
541 541 <width>20</width> No newline at end of file
542 542 <height>40</height> No newline at end of file
543 543 </size> No newline at end of file
544 544 </property> No newline at end of file
545 545 </spacer> 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 <layout class="QHBoxLayout" name="horizontalLayout_11"> No newline at end of file
549 549 <property name="spacing"> No newline at end of file
550 550 <number>6</number> No newline at end of file
551 551 </property> No newline at end of file
552 552 <property name="sizeConstraint"> No newline at end of file
553 553 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
554 554 </property> No newline at end of file
555 555 <item> No newline at end of file
556 556 <widget class="QLabel" name="lblDcapacity"> No newline at end of file
557 557 <property name="sizePolicy"> No newline at end of file
558 558 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
559 559 <horstretch>0</horstretch> No newline at end of file
560 560 <verstretch>0</verstretch> No newline at end of file
561 561 </sizepolicy> No newline at end of file
562 562 </property> No newline at end of file
563 563 <property name="text"> No newline at end of file
564 564 <string>Device Capacity</string> No newline at end of file
565 565 </property> No newline at end of file
566 566 </widget> No newline at end of file
567 567 </item> No newline at end of file
568 568 <item> No newline at end of file
569 569 <spacer name="horizontalSpacer_2"> No newline at end of file
570 570 <property name="orientation"> No newline at end of file
571 571 <enum>Qt::Horizontal</enum> No newline at end of file
572 572 </property> No newline at end of file
573 573 <property name="sizeHint" stdset="0"> No newline at end of file
574 574 <size> No newline at end of file
575 575 <width>40</width> No newline at end of file
576 576 <height>20</height> No newline at end of file
577 577 </size> No newline at end of file
578 578 </property> No newline at end of file
579 579 </spacer> No newline at end of file
580 580 </item> No newline at end of file
581 581 </layout> No newline at end of file
582 582 </item> No newline at end of file
583 583 <item> No newline at end of file
584 584 <layout class="QHBoxLayout" name="horizontalLayout_10"> No newline at end of file
585 585 <property name="sizeConstraint"> No newline at end of file
586 586 <enum>QLayout::SetFixedSize</enum> No newline at end of file
587 587 </property> No newline at end of file
588 588 <item> No newline at end of file
589 589 <widget class="QComboBox" name="lstDcapacity"> No newline at end of file
590 590 <property name="currentIndex"> No newline at end of file
591 591 <number>2</number> No newline at end of file
592 592 </property> No newline at end of file
593 593 <item> No newline at end of file
594 594 <property name="text"> No newline at end of file
595 595 <string>BluRay [25.0 GB]</string> No newline at end of file
596 596 </property> No newline at end of file
597 597 </item> No newline at end of file
598 598 <item> No newline at end of file
599 599 <property name="text"> No newline at end of file
600 600 <string>DVD2 [8.5 GB]</string> No newline at end of file
601 601 </property> No newline at end of file
602 602 </item> No newline at end of file
603 603 <item> No newline at end of file
604 604 <property name="text"> No newline at end of file
605 605 <string>DVD1 [4.7 GB]</string> No newline at end of file
606 606 </property> No newline at end of file
607 607 </item> No newline at end of file
608 608 <item> No newline at end of file
609 609 <property name="text"> No newline at end of file
610 610 <string>CD [0.7 GB]</string> No newline at end of file
611 611 </property> No newline at end of file
612 612 </item> No newline at end of file
613 613 <item> No newline at end of file
614 614 <property name="text"> No newline at end of file
615 615 <string>Other [? MB]</string> No newline at end of file
616 616 </property> No newline at end of file
617 617 </item> No newline at end of file
618 618 </widget> No newline at end of file
619 619 </item> No newline at end of file
620 620 <item> No newline at end of file
621 621 <widget class="QDoubleSpinBox" name="txtDcapacity"> No newline at end of file
622 622 <property name="sizePolicy"> No newline at end of file
623 623 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
624 624 <horstretch>0</horstretch> No newline at end of file
625 625 <verstretch>0</verstretch> No newline at end of file
626 626 </sizepolicy> No newline at end of file
627 627 </property> No newline at end of file
628 628 <property name="readOnly"> No newline at end of file
629 629 <bool>true</bool> No newline at end of file
630 630 </property> No newline at end of file
631 631 <property name="minimum"> No newline at end of file
632 632 <double>100.000000000000000</double> No newline at end of file
633 633 </property> No newline at end of file
634 634 <property name="maximum"> No newline at end of file
635 635 <double>99999.990000000005239</double> No newline at end of file
636 636 </property> No newline at end of file
637 637 <property name="value"> No newline at end of file
638 638 <double>4482.270000000000437</double> No newline at end of file
639 639 </property> No newline at end of file
640 640 </widget> No newline at end of file
641 641 </item> No newline at end of file
642 642 <item> No newline at end of file
643 643 <spacer name="horizontalSpacer_3"> No newline at end of file
644 644 <property name="orientation"> No newline at end of file
645 645 <enum>Qt::Horizontal</enum> No newline at end of file
646 646 </property> No newline at end of file
647 647 <property name="sizeHint" stdset="0"> No newline at end of file
648 648 <size> No newline at end of file
649 649 <width>40</width> No newline at end of file
650 650 <height>20</height> No newline at end of file
651 651 </size> No newline at end of file
652 652 </property> No newline at end of file
653 653 </spacer> No newline at end of file
654 654 </item> No newline at end of file
655 655 <item> No newline at end of file
656 656 <widget class="QLabel" name="lblPSgraphic"> No newline at end of file
657 657 <property name="text"> No newline at end of file
658 658 <string>PS Graphic</string> No newline at end of file
659 659 </property> No newline at end of file
660 660 </widget> No newline at end of file
661 661 </item> No newline at end of file
662 662 <item> No newline at end of file
663 663 <widget class="QSpinBox" name="txtPSgraphic"> No newline at end of file
664 664 <property name="minimum"> No newline at end of file
665 665 <number>1</number> No newline at end of file
666 666 </property> No newline at end of file
667 667 <property name="maximum"> No newline at end of file
668 668 <number>33</number> No newline at end of file
669 669 </property> No newline at end of file
670 670 </widget> No newline at end of file
671 671 </item> No newline at end of file
672 672 </layout> No newline at end of file
673 673 </item> No newline at end of file
674 674 </layout> No newline at end of file
675 675 </widget> No newline at end of file
676 676 <widget class="QWidget" name="tabStatus"> No newline at end of file
677 677 <attribute name="title"> No newline at end of file
678 678 <string>Status Burn</string> No newline at end of file
679 679 </attribute> No newline at end of file
680 680 <layout class="QVBoxLayout" name="verticalLayout_4"> No newline at end of file
681 681 <item> No newline at end of file
682 682 <layout class="QHBoxLayout" name="horizontalLayout_18"> No newline at end of file
683 683 <item> No newline at end of file
684 684 <layout class="QVBoxLayout" name="verticalLayout_21"> No newline at end of file
685 685 <item> No newline at end of file
686 686 <widget class="QLabel" name="label_4"> No newline at end of file
687 687 <property name="text"> No newline at end of file
688 688 <string>BURN</string> 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> No newline at end of file
693 693 <spacer name="horizontalSpacer_9"> No newline at end of file
694 694 <property name="orientation"> No newline at end of file
695 695 <enum>Qt::Horizontal</enum> No newline at end of file
696 696 </property> No newline at end of file
697 697 <property name="sizeType"> No newline at end of file
698 698 <enum>QSizePolicy::Minimum</enum> No newline at end of file
699 699 </property> No newline at end of file
700 700 <property name="sizeHint" stdset="0"> No newline at end of file
701 701 <size> No newline at end of file
702 702 <width>40</width> No newline at end of file
703 703 <height>20</height> No newline at end of file
704 704 </size> No newline at end of file
705 705 </property> No newline at end of file
706 706 </spacer> No newline at end of file
707 707 </item> No newline at end of file
708 708 <item> No newline at end of file
709 709 <widget class="QLabel" name="lblSTATUS"> No newline at end of file
710 710 <property name="sizePolicy"> No newline at end of file
711 711 <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> No newline at end of file
712 712 <horstretch>0</horstretch> No newline at end of file
713 713 <verstretch>0</verstretch> No newline at end of file
714 714 </sizepolicy> No newline at end of file
715 715 </property> No newline at end of file
716 716 <property name="text"> No newline at end of file
717 717 <string>STATUS</string> No newline at end of file
718 718 </property> No newline at end of file
719 719 </widget> No newline at end of file
720 720 </item> No newline at end of file
721 721 <item> No newline at end of file
722 722 <widget class="QLabel" name="lblINFO"> No newline at end of file
723 723 <property name="text"> No newline at end of file
724 724 <string>DISC</string> No newline at end of file
725 725 </property> No newline at end of file
726 726 </widget> No newline at end of file
727 727 </item> No newline at end of file
728 728 <item> No newline at end of file
729 729 <widget class="QLabel" name="lblSET"> No newline at end of file
730 730 <property name="text"> No newline at end of file
731 731 <string>COPY</string> No newline at end of file
732 732 </property> No newline at end of file
733 733 </widget> No newline at end of file
734 734 </item> No newline at end of file
735 735 </layout> No newline at end of file
736 736 </item> No newline at end of file
737 737 <item> No newline at end of file
738 738 <layout class="QVBoxLayout" name="verticalLayout_22"> No newline at end of file
739 739 <item> No newline at end of file
740 740 <spacer name="horizontalSpacer_5"> No newline at end of file
741 741 <property name="orientation"> No newline at end of file
742 742 <enum>Qt::Horizontal</enum> No newline at end of file
743 743 </property> No newline at end of file
744 744 <property name="sizeType"> No newline at end of file
745 745 <enum>QSizePolicy::Minimum</enum> No newline at end of file
746 746 </property> No newline at end of file
747 747 <property name="sizeHint" stdset="0"> No newline at end of file
748 748 <size> No newline at end of file
749 749 <width>40</width> No newline at end of file
750 750 <height>20</height> No newline at end of file
751 751 </size> No newline at end of file
752 752 </property> No newline at end of file
753 753 </spacer> No newline at end of file
754 754 </item> No newline at end of file
755 755 <item> No newline at end of file
756 756 <widget class="QLabel" name="lblDevA"> No newline at end of file
757 757 <property name="text"> No newline at end of file
758 758 <string>DEV A</string> No newline at end of file
759 759 </property> No newline at end of file
760 760 <property name="alignment"> No newline at end of file
761 761 <set>Qt::AlignCenter</set> No newline at end of file
762 762 </property> No newline at end of file
763 763 </widget> No newline at end of file
764 764 </item> No newline at end of file
765 765 <item> No newline at end of file
766 766 <widget class="QLineEdit" name="txtBstatusA"> No newline at end of file
767 767 <property name="readOnly"> No newline at end of file
768 768 <bool>true</bool> No newline at end of file
769 769 </property> No newline at end of file
770 770 </widget> No newline at end of file
771 771 </item> No newline at end of file
772 772 <item> No newline at end of file
773 773 <widget class="QLineEdit" name="txtBdiscA"> No newline at end of file
774 774 <property name="readOnly"> No newline at end of file
775 775 <bool>true</bool> No newline at end of file
776 776 </property> No newline at end of file
777 777 </widget> No newline at end of file
778 778 </item> No newline at end of file
779 779 <item> No newline at end of file
780 780 <widget class="QLineEdit" name="txtBcopyA"> No newline at end of file
781 781 <property name="readOnly"> No newline at end of file
782 782 <bool>true</bool> No newline at end of file
783 783 </property> No newline at end of file
784 784 </widget> No newline at end of file
785 785 </item> No newline at end of file
786 786 </layout> No newline at end of file
787 787 </item> No newline at end of file
788 788 <item> No newline at end of file
789 789 <layout class="QVBoxLayout" name="verticalLayout_23"> No newline at end of file
790 790 <item> No newline at end of file
791 791 <spacer name="horizontalSpacer_6"> No newline at end of file
792 792 <property name="orientation"> No newline at end of file
793 793 <enum>Qt::Horizontal</enum> No newline at end of file
794 794 </property> No newline at end of file
795 795 <property name="sizeType"> No newline at end of file
796 796 <enum>QSizePolicy::Minimum</enum> No newline at end of file
797 797 </property> No newline at end of file
798 798 <property name="sizeHint" stdset="0"> No newline at end of file
799 799 <size> No newline at end of file
800 800 <width>40</width> No newline at end of file
801 801 <height>20</height> No newline at end of file
802 802 </size> No newline at end of file
803 803 </property> No newline at end of file
804 804 </spacer> 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="QLabel" name="lblDevB"> No newline at end of file
808 808 <property name="text"> No newline at end of file
809 809 <string>DEV B</string> No newline at end of file
810 810 </property> No newline at end of file
811 811 <property name="alignment"> No newline at end of file
812 812 <set>Qt::AlignCenter</set> 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="QLineEdit" name="txtBstatusB"> No newline at end of file
818 818 <property name="readOnly"> No newline at end of file
819 819 <bool>true</bool> No newline at end of file
820 820 </property> No newline at end of file
821 821 </widget> No newline at end of file
822 822 </item> No newline at end of file
823 823 <item> No newline at end of file
824 824 <widget class="QLineEdit" name="txtBdiscB"> No newline at end of file
825 825 <property name="readOnly"> No newline at end of file
826 826 <bool>true</bool> No newline at end of file
827 827 </property> No newline at end of file
828 828 </widget> No newline at end of file
829 829 </item> No newline at end of file
830 830 <item> No newline at end of file
831 831 <widget class="QLineEdit" name="txtBcopyB"> No newline at end of file
832 832 <property name="readOnly"> No newline at end of file
833 833 <bool>true</bool> No newline at end of file
834 834 </property> No newline at end of file
835 835 </widget> No newline at end of file
836 836 </item> No newline at end of file
837 837 </layout> No newline at end of file
838 838 </item> No newline at end of file
839 839 <item> No newline at end of file
840 840 <layout class="QVBoxLayout" name="verticalLayout_24"> No newline at end of file
841 841 <item> No newline at end of file
842 842 <spacer name="horizontalSpacer_7"> No newline at end of file
843 843 <property name="orientation"> No newline at end of file
844 844 <enum>Qt::Horizontal</enum> No newline at end of file
845 845 </property> No newline at end of file
846 846 <property name="sizeType"> No newline at end of file
847 847 <enum>QSizePolicy::Minimum</enum> No newline at end of file
848 848 </property> No newline at end of file
849 849 <property name="sizeHint" stdset="0"> No newline at end of file
850 850 <size> No newline at end of file
851 851 <width>40</width> No newline at end of file
852 852 <height>20</height> No newline at end of file
853 853 </size> No newline at end of file
854 854 </property> No newline at end of file
855 855 </spacer> No newline at end of file
856 856 </item> No newline at end of file
857 857 <item> No newline at end of file
858 858 <widget class="QLabel" name="lblDevC"> No newline at end of file
859 859 <property name="text"> No newline at end of file
860 860 <string>DEV C</string> No newline at end of file
861 861 </property> No newline at end of file
862 862 <property name="alignment"> No newline at end of file
863 863 <set>Qt::AlignCenter</set> No newline at end of file
864 864 </property> No newline at end of file
865 865 </widget> No newline at end of file
866 866 </item> No newline at end of file
867 867 <item> No newline at end of file
868 868 <widget class="QLineEdit" name="txtBstatusC"> No newline at end of file
869 869 <property name="readOnly"> No newline at end of file
870 870 <bool>true</bool> No newline at end of file
871 871 </property> No newline at end of file
872 872 </widget> No newline at end of file
873 873 </item> No newline at end of file
874 874 <item> No newline at end of file
875 875 <widget class="QLineEdit" name="txtBdiscC"> No newline at end of file
876 876 <property name="readOnly"> No newline at end of file
877 877 <bool>true</bool> No newline at end of file
878 878 </property> No newline at end of file
879 879 </widget> No newline at end of file
880 880 </item> No newline at end of file
881 881 <item> No newline at end of file
882 882 <widget class="QLineEdit" name="txtBcopyC"> No newline at end of file
883 883 <property name="readOnly"> No newline at end of file
884 884 <bool>true</bool> No newline at end of file
885 885 </property> No newline at end of file
886 886 </widget> No newline at end of file
887 887 </item> No newline at end of file
888 888 </layout> No newline at end of file
889 889 </item> No newline at end of file
890 890 <item> No newline at end of file
891 891 <layout class="QVBoxLayout" name="verticalLayout_25"> No newline at end of file
892 892 <item> No newline at end of file
893 893 <spacer name="horizontalSpacer_8"> No newline at end of file
894 894 <property name="orientation"> No newline at end of file
895 895 <enum>Qt::Horizontal</enum> No newline at end of file
896 896 </property> No newline at end of file
897 897 <property name="sizeType"> No newline at end of file
898 898 <enum>QSizePolicy::Minimum</enum> No newline at end of file
899 899 </property> No newline at end of file
900 900 <property name="sizeHint" stdset="0"> No newline at end of file
901 901 <size> No newline at end of file
902 902 <width>40</width> No newline at end of file
903 903 <height>20</height> No newline at end of file
904 904 </size> No newline at end of file
905 905 </property> No newline at end of file
906 906 </spacer> No newline at end of file
907 907 </item> No newline at end of file
908 908 <item> No newline at end of file
909 909 <widget class="QLabel" name="lblDevD"> No newline at end of file
910 910 <property name="text"> No newline at end of file
911 911 <string>DEV D</string> No newline at end of file
912 912 </property> No newline at end of file
913 913 <property name="alignment"> No newline at end of file
914 914 <set>Qt::AlignCenter</set> No newline at end of file
915 915 </property> No newline at end of file
916 916 </widget> No newline at end of file
917 917 </item> No newline at end of file
918 918 <item> No newline at end of file
919 919 <widget class="QLineEdit" name="txtBstatusD"> No newline at end of file
920 920 <property name="readOnly"> No newline at end of file
921 921 <bool>true</bool> No newline at end of file
922 922 </property> No newline at end of file
923 923 </widget> No newline at end of file
924 924 </item> No newline at end of file
925 925 <item> No newline at end of file
926 926 <widget class="QLineEdit" name="txtBdiscD"> No newline at end of file
927 927 <property name="readOnly"> No newline at end of file
928 928 <bool>true</bool> No newline at end of file
929 929 </property> No newline at end of file
930 930 </widget> No newline at end of file
931 931 </item> No newline at end of file
932 932 <item> No newline at end of file
933 933 <widget class="QLineEdit" name="txtBcopyD"> No newline at end of file
934 934 <property name="readOnly"> No newline at end of file
935 935 <bool>true</bool> No newline at end of file
936 936 </property> No newline at end of file
937 937 </widget> No newline at end of file
938 938 </item> No newline at end of file
939 939 </layout> No newline at end of file
940 940 </item> No newline at end of file
941 941 </layout> No newline at end of file
942 942 </item> No newline at end of file
943 943 <item> No newline at end of file
944 944 <spacer name="verticalSpacer"> No newline at end of file
945 945 <property name="orientation"> No newline at end of file
946 946 <enum>Qt::Vertical</enum> No newline at end of file
947 947 </property> No newline at end of file
948 948 <property name="sizeType"> No newline at end of file
949 949 <enum>QSizePolicy::Fixed</enum> No newline at end of file
950 950 </property> No newline at end of file
951 951 <property name="sizeHint" stdset="0"> No newline at end of file
952 952 <size> No newline at end of file
953 953 <width>20</width> No newline at end of file
954 954 <height>20</height> No newline at end of file
955 955 </size> No newline at end of file
956 956 </property> No newline at end of file
957 957 </spacer> No newline at end of file
958 958 </item> No newline at end of file
959 959 <item> No newline at end of file
960 960 <layout class="QHBoxLayout" name="horizontalLayout_16"> No newline at end of file
961 961 <item> No newline at end of file
962 962 <widget class="QLabel" name="label"> No newline at end of file
963 963 <property name="text"> No newline at end of file
964 964 <string>CHECK</string> No newline at end of file
965 965 </property> No newline at end of file
966 966 </widget> No newline at end of file
967 967 </item> No newline at end of file
968 968 <item> No newline at end of file
969 969 <spacer name="horizontalSpacer_14"> No newline at end of file
970 970 <property name="orientation"> No newline at end of file
971 971 <enum>Qt::Horizontal</enum> No newline at end of file
972 972 </property> No newline at end of file
973 973 <property name="sizeHint" stdset="0"> No newline at end of file
974 974 <size> No newline at end of file
975 975 <width>40</width> No newline at end of file
976 976 <height>20</height> No newline at end of file
977 977 </size> No newline at end of file
978 978 </property> No newline at end of file
979 979 </spacer> No newline at end of file
980 980 </item> No newline at end of file
981 981 </layout> No newline at end of file
982 982 </item> No newline at end of file
983 983 <item> No newline at end of file
984 984 <layout class="QHBoxLayout" name="horizontalLayout_17"> No newline at end of file
985 985 <item> No newline at end of file
986 986 <spacer name="horizontalSpacer_13"> No newline at end of file
987 987 <property name="orientation"> No newline at end of file
988 988 <enum>Qt::Horizontal</enum> No newline at end of file
989 989 </property> No newline at end of file
990 990 <property name="sizeType"> No newline at end of file
991 991 <enum>QSizePolicy::Fixed</enum> No newline at end of file
992 992 </property> No newline at end of file
993 993 <property name="sizeHint" stdset="0"> No newline at end of file
994 994 <size> No newline at end of file
995 995 <width>50</width> No newline at end of file
996 996 <height>20</height> No newline at end of file
997 997 </size> No newline at end of file
998 998 </property> No newline at end of file
999 999 </spacer> No newline at end of file
1000 1000 </item> No newline at end of file
1001 1001 <item> No newline at end of file
1002 1002 <widget class="QLineEdit" name="txtTDpath"> No newline at end of file
1003 1003 <property name="enabled"> No newline at end of file
1004 1004 <bool>true</bool> No newline at end of file
1005 1005 </property> No newline at end of file
1006 1006 <property name="readOnly"> No newline at end of file
1007 1007 <bool>true</bool> No newline at end of file
1008 1008 </property> No newline at end of file
1009 1009 </widget> No newline at end of file
1010 1010 </item> No newline at end of file
1011 1011 <item> No newline at end of file
1012 1012 <widget class="QPushButton" name="btnTDpath"> No newline at end of file
1013 1013 <property name="enabled"> No newline at end of file
1014 1014 <bool>true</bool> No newline at end of file
1015 1015 </property> No newline at end of file
1016 1016 <property name="text"> No newline at end of file
1017 1017 <string>Temp Data Path</string> No newline at end of file
1018 1018 </property> No newline at end of file
1019 1019 </widget> No newline at end of file
1020 1020 </item> No newline at end of file
1021 1021 </layout> No newline at end of file
1022 1022 </item> No newline at end of file
1023 1023 <item> No newline at end of file
1024 1024 <layout class="QHBoxLayout" name="horizontalLayout_19"> No newline at end of file
1025 1025 <item> No newline at end of file
1026 1026 <layout class="QVBoxLayout" name="verticalLayout_26"> No newline at end of file
1027 1027 <item> No newline at end of file
1028 1028 <spacer name="horizontalSpacer_10"> No newline at end of file
1029 1029 <property name="orientation"> No newline at end of file
1030 1030 <enum>Qt::Horizontal</enum> No newline at end of file
1031 1031 </property> No newline at end of file
1032 1032 <property name="sizeType"> No newline at end of file
1033 1033 <enum>QSizePolicy::Minimum</enum> No newline at end of file
1034 1034 </property> No newline at end of file
1035 1035 <property name="sizeHint" stdset="0"> No newline at end of file
1036 1036 <size> No newline at end of file
1037 1037 <width>40</width> No newline at end of file
1038 1038 <height>20</height> No newline at end of file
1039 1039 </size> No newline at end of file
1040 1040 </property> No newline at end of file
1041 1041 </spacer> No newline at end of file
1042 1042 </item> No newline at end of file
1043 1043 <item> No newline at end of file
1044 1044 <widget class="QLabel" name="lblSTATUS_2"> No newline at end of file
1045 1045 <property name="sizePolicy"> No newline at end of file
1046 1046 <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> No newline at end of file
1047 1047 <horstretch>0</horstretch> No newline at end of file
1048 1048 <verstretch>0</verstretch> No newline at end of file
1049 1049 </sizepolicy> No newline at end of file
1050 1050 </property> No newline at end of file
1051 1051 <property name="text"> No newline at end of file
1052 1052 <string>STATUS</string> No newline at end of file
1053 1053 </property> No newline at end of file
1054 1054 </widget> No newline at end of file
1055 1055 </item> No newline at end of file
1056 1056 </layout> No newline at end of file
1057 1057 </item> No newline at end of file
1058 1058 <item> No newline at end of file
1059 1059 <layout class="QVBoxLayout" name="verticalLayout_27"> No newline at end of file
1060 1060 <item> No newline at end of file
1061 1061 <widget class="QLabel" name="lblDevA_2"> No newline at end of file
1062 1062 <property name="text"> No newline at end of file
1063 1063 <string>DEV A</string> No newline at end of file
1064 1064 </property> No newline at end of file
1065 1065 <property name="alignment"> No newline at end of file
1066 1066 <set>Qt::AlignCenter</set> No newline at end of file
1067 1067 </property> No newline at end of file
1068 1068 </widget> No newline at end of file
1069 1069 </item> No newline at end of file
1070 1070 <item> No newline at end of file
1071 1071 <widget class="QLineEdit" name="txtCHstatusA"> No newline at end of file
1072 1072 <property name="readOnly"> No newline at end of file
1073 1073 <bool>true</bool> No newline at end of file
1074 1074 </property> No newline at end of file
1075 1075 </widget> No newline at end of file
1076 1076 </item> No newline at end of file
1077 1077 </layout> No newline at end of file
1078 1078 </item> No newline at end of file
1079 1079 <item> No newline at end of file
1080 1080 <layout class="QVBoxLayout" name="verticalLayout_28"> No newline at end of file
1081 1081 <item> No newline at end of file
1082 1082 <widget class="QLabel" name="lblDevB_2"> No newline at end of file
1083 1083 <property name="text"> No newline at end of file
1084 1084 <string>DEV B</string> No newline at end of file
1085 1085 </property> No newline at end of file
1086 1086 <property name="alignment"> No newline at end of file
1087 1087 <set>Qt::AlignCenter</set> No newline at end of file
1088 1088 </property> No newline at end of file
1089 1089 </widget> No newline at end of file
1090 1090 </item> No newline at end of file
1091 1091 <item> No newline at end of file
1092 1092 <widget class="QLineEdit" name="txtCHstatusB"> No newline at end of file
1093 1093 <property name="readOnly"> No newline at end of file
1094 1094 <bool>true</bool> No newline at end of file
1095 1095 </property> No newline at end of file
1096 1096 </widget> No newline at end of file
1097 1097 </item> No newline at end of file
1098 1098 </layout> No newline at end of file
1099 1099 </item> No newline at end of file
1100 1100 <item> No newline at end of file
1101 1101 <layout class="QVBoxLayout" name="verticalLayout_29"> No newline at end of file
1102 1102 <item> No newline at end of file
1103 1103 <widget class="QLabel" name="lblDevC_2"> No newline at end of file
1104 1104 <property name="text"> No newline at end of file
1105 1105 <string>DEV C</string> No newline at end of file
1106 1106 </property> No newline at end of file
1107 1107 <property name="alignment"> No newline at end of file
1108 1108 <set>Qt::AlignCenter</set> No newline at end of file
1109 1109 </property> No newline at end of file
1110 1110 </widget> No newline at end of file
1111 1111 </item> No newline at end of file
1112 1112 <item> No newline at end of file
1113 1113 <widget class="QLineEdit" name="txtCHstatusC"> No newline at end of file
1114 1114 <property name="readOnly"> No newline at end of file
1115 1115 <bool>true</bool> No newline at end of file
1116 1116 </property> No newline at end of file
1117 1117 </widget> No newline at end of file
1118 1118 </item> No newline at end of file
1119 1119 </layout> No newline at end of file
1120 1120 </item> No newline at end of file
1121 1121 <item> No newline at end of file
1122 1122 <layout class="QVBoxLayout" name="verticalLayout_30"> No newline at end of file
1123 1123 <item> No newline at end of file
1124 1124 <widget class="QLabel" name="lblDevD_2"> No newline at end of file
1125 1125 <property name="text"> No newline at end of file
1126 1126 <string>DEV D</string> No newline at end of file
1127 1127 </property> No newline at end of file
1128 1128 <property name="alignment"> No newline at end of file
1129 1129 <set>Qt::AlignCenter</set> No newline at end of file
1130 1130 </property> No newline at end of file
1131 1131 </widget> No newline at end of file
1132 1132 </item> No newline at end of file
1133 1133 <item> No newline at end of file
1134 1134 <widget class="QLineEdit" name="txtCHstatusD"> No newline at end of file
1135 1135 <property name="readOnly"> No newline at end of file
1136 1136 <bool>true</bool> No newline at end of file
1137 1137 </property> No newline at end of file
1138 1138 </widget> No newline at end of file
1139 1139 </item> No newline at end of file
1140 1140 </layout> No newline at end of file
1141 1141 </item> No newline at end of file
1142 1142 </layout> No newline at end of file
1143 1143 </item> No newline at end of file
1144 1144 <item> No newline at end of file
1145 1145 <layout class="QHBoxLayout" name="horizontalLayout_20"> No newline at end of file
1146 1146 <item> No newline at end of file
1147 1147 <spacer name="horizontalSpacer_12"> No newline at end of file
1148 1148 <property name="orientation"> No newline at end of file
1149 1149 <enum>Qt::Horizontal</enum> No newline at end of file
1150 1150 </property> No newline at end of file
1151 1151 <property name="sizeType"> No newline at end of file
1152 1152 <enum>QSizePolicy::Minimum</enum> No newline at end of file
1153 1153 </property> No newline at end of file
1154 1154 <property name="sizeHint" stdset="0"> No newline at end of file
1155 1155 <size> No newline at end of file
1156 1156 <width>50</width> No newline at end of file
1157 1157 <height>20</height> No newline at end of file
1158 1158 </size> No newline at end of file
1159 1159 </property> No newline at end of file
1160 1160 </spacer> No newline at end of file
1161 1161 </item> No newline at end of file
1162 1162 <item> No newline at end of file
1163 1163 <spacer name="horizontalSpacer_15"> No newline at end of file
1164 1164 <property name="orientation"> No newline at end of file
1165 1165 <enum>Qt::Horizontal</enum> No newline at end of file
1166 1166 </property> No newline at end of file
1167 1167 <property name="sizeHint" stdset="0"> No newline at end of file
1168 1168 <size> No newline at end of file
1169 1169 <width>40</width> No newline at end of file
1170 1170 <height>20</height> No newline at end of file
1171 1171 </size> No newline at end of file
1172 1172 </property> No newline at end of file
1173 1173 </spacer> No newline at end of file
1174 1174 </item> No newline at end of file
1175 1175 <item> No newline at end of file
1176 1176 <widget class="QPushButton" name="btnCHstart"> No newline at end of file
1177 1177 <property name="enabled"> No newline at end of file
1178 1178 <bool>false</bool> No newline at end of file
1179 1179 </property> No newline at end of file
1180 1180 <property name="text"> No newline at end of file
1181 1181 <string>START</string> No newline at end of file
1182 1182 </property> No newline at end of file
1183 1183 </widget> No newline at end of file
1184 1184 </item> No newline at end of file
1185 1185 </layout> No newline at end of file
1186 1186 </item> No newline at end of file
1187 1187 </layout> No newline at end of file
1188 1188 </widget> No newline at end of file
1189 1189 </widget> No newline at end of file
1190 1190 </item> No newline at end of file
1191 1191 <item> No newline at end of file
1192 1192 <widget class="QTextEdit" name="txtInfo"> No newline at end of file
1193 1193 <property name="readOnly"> No newline at end of file
1194 1194 <bool>true</bool> No newline at end of file
1195 1195 </property> No newline at end of file
1196 1196 </widget> No newline at end of file
1197 1197 </item> No newline at end of file
1198 1198 <item> No newline at end of file
1199 1199 <widget class="QLineEdit" name="txtProgress"> No newline at end of file
1200 1200 <property name="sizePolicy"> No newline at end of file
1201 1201 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> No newline at end of file
1202 1202 <horstretch>0</horstretch> No newline at end of file
1203 1203 <verstretch>0</verstretch> No newline at end of file
1204 1204 </sizepolicy> No newline at end of file
1205 1205 </property> No newline at end of file
1206 1206 </widget> No newline at end of file
1207 1207 </item> No newline at end of file
1208 1208 <item> No newline at end of file
1209 1209 <layout class="QHBoxLayout" name="horizontalLayout_2"> No newline at end of file
1210 1210 <property name="sizeConstraint"> No newline at end of file
1211 1211 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
1212 1212 </property> No newline at end of file
1213 1213 <item> No newline at end of file
1214 1214 <widget class="QPushButton" name="btnGbkp"> No newline at end of file
1215 1215 <property name="enabled"> No newline at end of file
1216 1216 <bool>false</bool> No newline at end of file
1217 1217 </property> No newline at end of file
1218 1218 <property name="text"> No newline at end of file
1219 1219 <string>Generate Bkp</string> No newline at end of file
1220 1220 </property> No newline at end of file
1221 1221 </widget> No newline at end of file
1222 1222 </item> No newline at end of file
1223 1223 <item> No newline at end of file
1224 1224 <widget class="QPushButton" name="btnRestart"> No newline at end of file
1225 1225 <property name="enabled"> No newline at end of file
1226 1226 <bool>false</bool> No newline at end of file
1227 1227 </property> No newline at end of file
1228 1228 <property name="text"> No newline at end of file
1229 1229 <string>Restart</string> No newline at end of file
1230 1230 </property> No newline at end of file
1231 1231 </widget> No newline at end of file
1232 1232 </item> No newline at end of file
1233 1233 <item> No newline at end of file
1234 1234 <widget class="QPushButton" name="btnStartburn"> No newline at end of file
1235 1235 <property name="enabled"> No newline at end of file
1236 1236 <bool>false</bool> No newline at end of file
1237 1237 </property> No newline at end of file
1238 1238 <property name="text"> No newline at end of file
1239 1239 <string>Start Burn</string> No newline at end of file
1240 1240 </property> No newline at end of file
1241 1241 </widget> No newline at end of file
1242 1242 </item> No newline at end of file
1243 1243 <item> No newline at end of file
1244 1244 <widget class="QPushButton" name="btnStopburn"> No newline at end of file
1245 1245 <property name="enabled"> No newline at end of file
1246 1246 <bool>false</bool> No newline at end of file
1247 1247 </property> No newline at end of file
1248 1248 <property name="text"> No newline at end of file
1249 1249 <string>Stop Burn</string> No newline at end of file
1250 1250 </property> No newline at end of file
1251 1251 </widget> No newline at end of file
1252 1252 </item> No newline at end of file
1253 1253 </layout> No newline at end of file
1254 1254 </item> No newline at end of file
1255 1255 </layout> No newline at end of file
1256 1256 </widget> No newline at end of file
1257 1257 <widget class="QMenuBar" name="menubar"> No newline at end of file
1258 1258 <property name="geometry"> No newline at end of file
1259 1259 <rect> No newline at end of file
1260 1260 <x>0</x> No newline at end of file
1261 1261 <y>0</y> No newline at end of file
1262 1262 <width>824</width> No newline at end of file
1263 1263 <height>25</height> No newline at end of file
1264 1264 </rect> No newline at end of file
1265 1265 </property> No newline at end of file
1266 1266 <widget class="QMenu" name="menuFile"> No newline at end of file
1267 1267 <property name="title"> No newline at end of file
1268 1268 <string>File</string> No newline at end of file
1269 1269 </property> No newline at end of file
1270 1270 <addaction name="actionQuit"/> No newline at end of file
1271 1271 </widget> No newline at end of file
1272 1272 <widget class="QMenu" name="menuHelp"> No newline at end of file
1273 1273 <property name="title"> No newline at end of file
1274 1274 <string>Help</string> No newline at end of file
1275 1275 </property> No newline at end of file
1276 1276 <addaction name="actionAbout"/> No newline at end of file
1277 1277 </widget> No newline at end of file
1278 1278 <widget class="QMenu" name="menuParameters"> No newline at end of file
1279 1279 <property name="title"> No newline at end of file
1280 1280 <string>Parameters</string> No newline at end of file
1281 1281 </property> No newline at end of file
1282 1282 <addaction name="actionChange_Parameters"/> No newline at end of file
1283 1283 </widget> No newline at end of file
1284 1284 <addaction name="menuFile"/> No newline at end of file
1285 1285 <addaction name="menuParameters"/> No newline at end of file
1286 1286 <addaction name="menuHelp"/> No newline at end of file
1287 1287 </widget> No newline at end of file
1288 1288 <widget class="QStatusBar" name="statusbar"/> No newline at end of file
1289 1289 <action name="actionChange_Parameters"> No newline at end of file
1290 1290 <property name="enabled"> No newline at end of file
1291 1291 <bool>false</bool> No newline at end of file
1292 1292 </property> No newline at end of file
1293 1293 <property name="text"> No newline at end of file
1294 1294 <string>Change Parameters</string> No newline at end of file
1295 1295 </property> No newline at end of file
1296 1296 </action> No newline at end of file
1297 1297 <action name="actionQuit"> No newline at end of file
1298 1298 <property name="text"> No newline at end of file
1299 1299 <string>Quit</string> No newline at end of file
1300 1300 </property> No newline at end of file
1301 1301 </action> No newline at end of file
1302 1302 <action name="actionAbout"> No newline at end of file
1303 1303 <property name="text"> No newline at end of file
1304 1304 <string>About</string> No newline at end of file
1305 1305 </property> No newline at end of file
1306 1306 </action> No newline at end of file
1307 1307 </widget> No newline at end of file
1308 1308 <tabstops> No newline at end of file
1309 1309 <tabstop>txtDpath</tabstop> No newline at end of file
1310 1310 <tabstop>btnDpath</tabstop> No newline at end of file
1311 1311 <tabstop>txtRpath</tabstop> No newline at end of file
1312 1312 <tabstop>btnRpath</tabstop> No newline at end of file
1313 1313 <tabstop>lstDtype</tabstop> No newline at end of file
1314 1314 <tabstop>txtDtype</tabstop> No newline at end of file
1315 1315 <tabstop>txtElabel</tabstop> No newline at end of file
1316 1316 <tabstop>lstStartDay</tabstop> No newline at end of file
1317 1317 <tabstop>lstStopDay</tabstop> No newline at end of file
1318 1318 <tabstop>lstDcapacity</tabstop> No newline at end of file
1319 1319 <tabstop>tabWidget</tabstop> No newline at end of file
1320 1320 <tabstop>btnGbkp</tabstop> No newline at end of file
1321 1321 <tabstop>btnRestart</tabstop> No newline at end of file
1322 1322 <tabstop>btnStartburn</tabstop> No newline at end of file
1323 1323 <tabstop>btnStopburn</tabstop> No newline at end of file
1324 1324 </tabstops> No newline at end of file
1325 1325 <resources/> No newline at end of file
1326 1326 <connections> No newline at end of file
1327 1327 <connection> No newline at end of file
1328 1328 <sender>actionQuit</sender> No newline at end of file
1329 1329 <signal>triggered()</signal> No newline at end of file
1330 1330 <receiver>MainWindow</receiver> No newline at end of file
1331 1331 <slot>close()</slot> No newline at end of file
1332 1332 <hints> No newline at end of file
1333 1333 <hint type="sourcelabel"> No newline at end of file
1334 1334 <x>-1</x> No newline at end of file
1335 1335 <y>-1</y> No newline at end of file
1336 1336 </hint> No newline at end of file
1337 1337 <hint type="destinationlabel"> No newline at end of file
1338 1338 <x>306</x> No newline at end of file
1339 1339 <y>358</y> No newline at end of file
1340 1340 </hint> No newline at end of file
1341 1341 </hints> No newline at end of file
1342 1342 </connection> No newline at end of file
1343 1343 <connection> No newline at end of file
1344 1344 <sender>chkDevD</sender> No newline at end of file
1345 1345 <signal>toggled(bool)</signal> No newline at end of file
1346 1346 <receiver>grpDevD</receiver> No newline at end of file
1347 1347 <slot>setEnabled(bool)</slot> No newline at end of file
1348 1348 <hints> No newline at end of file
1349 1349 <hint type="sourcelabel"> No newline at end of file
1350 1350 <x>119</x> No newline at end of file
1351 1351 <y>103</y> No newline at end of file
1352 1352 </hint> No newline at end of file
1353 1353 <hint type="destinationlabel"> No newline at end of file
1354 1354 <x>119</x> No newline at end of file
1355 1355 <y>103</y> No newline at end of file
1356 1356 </hint> No newline at end of file
1357 1357 </hints> No newline at end of file
1358 1358 </connection> No newline at end of file
1359 1359 <connection> No newline at end of file
1360 1360 <sender>chkDevB</sender> No newline at end of file
1361 1361 <signal>toggled(bool)</signal> No newline at end of file
1362 1362 <receiver>grpDevB</receiver> No newline at end of file
1363 1363 <slot>setEnabled(bool)</slot> No newline at end of file
1364 1364 <hints> No newline at end of file
1365 1365 <hint type="sourcelabel"> No newline at end of file
1366 1366 <x>119</x> No newline at end of file
1367 1367 <y>103</y> No newline at end of file
1368 1368 </hint> No newline at end of file
1369 1369 <hint type="destinationlabel"> No newline at end of file
1370 1370 <x>119</x> No newline at end of file
1371 1371 <y>103</y> No newline at end of file
1372 1372 </hint> No newline at end of file
1373 1373 </hints> No newline at end of file
1374 1374 </connection> No newline at end of file
1375 1375 <connection> No newline at end of file
1376 1376 <sender>chkDevC</sender> No newline at end of file
1377 1377 <signal>toggled(bool)</signal> No newline at end of file
1378 1378 <receiver>grpDevC</receiver> No newline at end of file
1379 1379 <slot>setEnabled(bool)</slot> No newline at end of file
1380 1380 <hints> No newline at end of file
1381 1381 <hint type="sourcelabel"> No newline at end of file
1382 1382 <x>119</x> No newline at end of file
1383 1383 <y>103</y> No newline at end of file
1384 1384 </hint> No newline at end of file
1385 1385 <hint type="destinationlabel"> No newline at end of file
1386 1386 <x>119</x> No newline at end of file
1387 1387 <y>103</y> No newline at end of file
1388 1388 </hint> No newline at end of file
1389 1389 </hints> No newline at end of file
1390 1390 </connection> No newline at end of file
1391 1391 <connection> No newline at end of file
1392 1392 <sender>chkDevA</sender> No newline at end of file
1393 1393 <signal>toggled(bool)</signal> No newline at end of file
1394 1394 <receiver>grpDevA</receiver> No newline at end of file
1395 1395 <slot>setEnabled(bool)</slot> No newline at end of file
1396 1396 <hints> No newline at end of file
1397 1397 <hint type="sourcelabel"> No newline at end of file
1398 1398 <x>105</x> No newline at end of file
1399 1399 <y>79</y> No newline at end of file
1400 1400 </hint> No newline at end of file
1401 1401 <hint type="destinationlabel"> No newline at end of file
1402 1402 <x>106</x> No newline at end of file
1403 1403 <y>103</y> No newline at end of file
1404 1404 </hint> No newline at end of file
1405 1405 </hints> No newline at end of file
1406 1406 </connection> No newline at end of file
1407 1407 </connections> No newline at end of file
1408 1408 </ui> No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now