##// END OF EJS Templates
***
ralonso -
r26:27
parent child
Show More
@@ -1,14 +1,16
1 1 #!/usr/bin/python No newline at end of file
2 2 No newline at end of file
3 3 from PyQt4.QtGui import QApplication No newline at end of file
4 4 from ui.MainWindow import MainWindow No newline at end of file
5 5 No newline at end of file
6 6 def main(): No newline at end of file
7 7 import sys No newline at end of file
8 8 app = QApplication(sys.argv) No newline at end of file
9 9 wnd = MainWindow() No newline at end of file
10 sys.stdout=wnd No newline at end of file
10 11 wnd.show() No newline at end of file
11 12 sys.exit(app.exec_()) No newline at end of file
12 13 No newline at end of file
13 14 if __name__ == '__main__': No newline at end of file
14 15 main() No newline at end of file
15 16
@@ -1,330 +1,339
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 Ui_MainWindow import Ui_MainWindow No newline at end of file
10 10 from PyQt4 import QtGui No newline at end of file
11 11 from subprocess import * No newline at end of file
12 12 import sys No newline at end of file
13 13 import os No newline at end of file
14 14 import subprocess No newline at end of file
15 15 import commands No newline at end of file
16 16 No newline at end of file
17 17 class MainWindow(QMainWindow, Ui_MainWindow): No newline at end of file
18 18 """ No newline at end of file
19 19 Class documentation goes here. No newline at end of file
20 20 """ No newline at end of file
21 21 No newline at end of file
22 22 def __init__(self, parent = None): No newline at end of file
23 23 QMainWindow.__init__(self, parent) No newline at end of file
24 24 self.setupUi(self) No newline at end of file
25 25 self.setupUi2()
26 No newline at end of file
26 #sys.stdout = obj No newline at end of file
27 27 No newline at end of file
28 28 No newline at end of file
29 29 def setupUi2(self): No newline at end of file
30 30 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS') No newline at end of file
31 31 self.txtRpath.setText('/home/ricardoar/optional/STORAGE/prueba1_jro_backup_manager') No newline at end of file
32 32 self.txtElabel.setText('EW_DRIFTS') No newline at end of file
33
No newline at end of file
34 def write(self, txt):
No newline at end of file
35 self.txtInfo.append(str(txt)) No newline at end of file
33 36 No newline at end of file
34 37 No newline at end of file
35 38 @pyqtSignature("") No newline at end of file
36 39 def on_btnDpath_clicked(self): No newline at end of file
37 40 """ No newline at end of file
38 41 Slot documentation goes here. No newline at end of file
39 42 """ No newline at end of file
40 43 var_Dpath= QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly) No newline at end of file
41 44 self.txtDpath.setText(var_Dpath) No newline at end of file
42 45 self.on_txtDpath_editingFinished() No newline at end of file
43 46 No newline at end of file
44 47 No newline at end of file
45 48 @pyqtSignature("") No newline at end of file
46 49 def on_btnRpath_clicked(self): No newline at end of file
47 50 """ No newline at end of file
48 51 Slot documentation goes here. No newline at end of file
49 52 """ No newline at end of file
50 53 var_Rpath = QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly) No newline at end of file
51 54 self.txtRpath.setText(var_Rpath) No newline at end of file
52 55 self.on_txtRpath_editingFinished() No newline at end of file
53 56 No newline at end of file
54 57 No newline at end of file
55 58 @pyqtSignature("") No newline at end of file
56 59 def on_txtDpath_editingFinished(self): No newline at end of file
57 60 No newline at end of file
58 61 #Usando el modulo "subprocess", eric4 pide seleccion del tipo de subproceso (padre o hijo) No newline at end of file
59 62 #por ello se prefiere usar el modulo "commands" No newline at end of file
60 63 #p1= Popen(['find', var_Dpath, '-name', '*.r'], stdout=PIPE) No newline at end of file
61 64 #p2= Popen(['awk', '-F/', '{print substr($NF,2,7)}'], stdin=p1.stdout, stdout=PIPE) No newline at end of file
62 65 #output_p2= p2.communicate()[0] No newline at end of file
63 66 #self.txtInfo.setText(output_p2) No newline at end of file
64 67 No newline at end of file
65 68 var_Dpath=self.txtDpath.text() No newline at end of file
66 69 No newline at end of file
67 70 #Se verifica que la ruta exista y sea un directorio No newline at end of file
68 71 var_cmd="test -d "+str(var_Dpath) No newline at end of file
69 72 var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
70 73 if var_output != 0: No newline at end of file
71 74 self.txtInfo.setText("Ruta no valida, output_error:" + str(var_output)) No newline at end of file
72 75 return No newline at end of file
73 76 No newline at end of file
74 77 #Se buscan los archivos del tipo especificado No newline at end of file
75 78 var_Dtype=self.txtDtype.text() No newline at end of file
76 79 var_cmd="find " + str(var_Dpath) + " -name *."+ str(var_Dtype) +" | awk -F/ '{print substr($NF,2,7)}' | sort| uniq" No newline at end of file
77 80 output_p2=commands.getstatusoutput(var_cmd)[1] No newline at end of file
78 81 No newline at end of file
79 82 #INFO: Muestra los dias que se encontraron
83 No newline at end of file
80 self.txtInfo.append(output_p2) No newline at end of file
81 84 No newline at end of file
82 85 #Se cargan las listas para seleccionar StartDay y StopDay No newline at end of file
83 86 self.var_list=[] No newline at end of file
84 87 for i in range(0, (len(output_p2)+1)/8): No newline at end of file
85 88 self.var_list.append(output_p2[8*i:8*(i+1)-1]) No newline at end of file
86 89 No newline at end of file
87 90 self.lstStartDay.clear() No newline at end of file
88 91 self.lstStopDay.clear() No newline at end of file
89 92 No newline at end of file
90 93 for i in self.var_list: No newline at end of file
91 94 self.lstStartDay.addItem(i) No newline at end of file
92 95 self.lstStopDay.addItem(i) No newline at end of file
93 96 No newline at end of file
94 97 self.lstStopDay.setCurrentIndex(self.lstStartDay.count()-1) No newline at end of file
95 98 No newline at end of file
96 99 #INFO: Muestra cuantos dias se encontraron No newline at end of file
97 100 #self.txtInfo.setText(str(self.lstStartDay.count())) No newline at end of file
98 101 No newline at end of file
99 102 No newline at end of file
100 103 @pyqtSignature("") No newline at end of file
101 104 def on_txtRpath_editingFinished(self): No newline at end of file
102 105 """ No newline at end of file
103 106 Slot documentation goes here. No newline at end of file
104 107 """ No newline at end of file
105 108 var_Rpath=self.txtRpath.text() No newline at end of file
106 109 No newline at end of file
107 110 #Se verifica que la ruta exista y sea un directorio No newline at end of file
108 111 var_cmd="test -d "+str(var_Rpath) No newline at end of file
109 112 var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
110 113 if var_output != 0: No newline at end of file
111 114 self.txtInfo.append("Ruta no valida, output_error:" + str(var_output)) No newline at end of file
112 115 return No newline at end of file
113 116 else: No newline at end of file
114 117 self.txtInfo.append("Ruta valida, sin error") No newline at end of file
115 118 No newline at end of file
116 119 No newline at end of file
117 120 @pyqtSignature("int") No newline at end of file
118 121 def on_lstDtype_activated(self, index): No newline at end of file
119 122 """ No newline at end of file
120 123 Permite elegir entre los tipos de archivos No newline at end of file
121 124 """ No newline at end of file
122 125 if index == 0: No newline at end of file
123 126 var_type='r' No newline at end of file
124 127 elif index == 1: No newline at end of file
125 128 var_type='pdata' No newline at end of file
126 129 elif index == 2: No newline at end of file
127 130 var_type='sswma' No newline at end of file
128 131 No newline at end of file
129 132 if index != 3: No newline at end of file
130 133 self.txtDtype.setText(var_type) No newline at end of file
131 134 self.txtDtype.setReadOnly(True) No newline at end of file
132 135 self.on_txtDpath_editingFinished() No newline at end of file
133 136 else: No newline at end of file
134 137 self.txtDtype.setText('') No newline at end of file
135 138 self.txtDtype.setReadOnly(False) No newline at end of file
136 139 No newline at end of file
137 140 No newline at end of file
138 141 @pyqtSignature("") No newline at end of file
139 142 def on_txtDtype_editingFinished(self): No newline at end of file
140 143 """ No newline at end of file
141 144 Se activa cuando el tipo de archivo es ingresado manualmente No newline at end of file
142 145 """ No newline at end of file
143 146 self.on_txtDpath_editingFinished() No newline at end of file
144 147 No newline at end of file
145 148 No newline at end of file
146 149 @pyqtSignature("int") #CLOSED No newline at end of file
147 150 def on_lstStartDay_activated(self, index): No newline at end of file
148 151 """ No newline at end of file
149 152 Cambia la lista de opciones en lstStopDay No newline at end of file
150 153 """ No newline at end of file
151 154 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex() No newline at end of file
152 155 self.lstStopDay.clear() No newline at end of file
153 156 No newline at end of file
154 157 for i in self.var_list[index:]: No newline at end of file
155 158 self.lstStopDay.addItem(i) No newline at end of file
156 159 No newline at end of file
157 160 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index) No newline at end of file
158 161 No newline at end of file
159 162 No newline at end of file
160 163 @pyqtSignature("int") #CLOSED No newline at end of file
161 164 def on_lstStopDay_activated(self, index): No newline at end of file
162 165 """ No newline at end of file
163 166 Cambia la lista de opciones en lstStartDay No newline at end of file
164 167 """ No newline at end of file
165 168 var_StartDay_index=self.lstStartDay.currentIndex() No newline at end of file
166 169 var_end_index = self.lstStopDay.count() - index No newline at end of file
167 170 self.lstStartDay.clear() No newline at end of file
168 171 No newline at end of file
169 172 for i in self.var_list[:len(self.var_list) - var_end_index + 1]: No newline at end of file
170 173 self.lstStartDay.addItem(i) No newline at end of file
171 174 No newline at end of file
172 175 self.lstStartDay.setCurrentIndex(var_StartDay_index) No newline at end of file
173 176 No newline at end of file
174 177 No newline at end of file
175 178 @pyqtSignature("int") #CLOSED No newline at end of file
176 179 def on_lstDcapacity_activated(self, index): No newline at end of file
177 180 """ No newline at end of file
178 181 Permite elegir el tamaΓ±o del disco No newline at end of file
179 182 """ No newline at end of file
180 183 if index == 0: No newline at end of file
181 184 var_size=25.0 No newline at end of file
182 185 elif index == 1: No newline at end of file
183 186 var_size=8.5 No newline at end of file
184 187 elif index == 2: No newline at end of file
185 188 var_size=4.7 No newline at end of file
186 189 elif index == 3: No newline at end of file
187 190 var_size=0.7 No newline at end of file
188 191 No newline at end of file
189 192 if index != 4: No newline at end of file
190 193 self.txtDcapacity.setText(str(var_size*10**9/1024**2)) No newline at end of file
191 194 self.txtDcapacity.setReadOnly(True) No newline at end of file
192 195 else: No newline at end of file
193 196 self.txtDcapacity.setText('') No newline at end of file
194 197 self.txtDcapacity.setReadOnly(False) No newline at end of file
195 198 No newline at end of file
196 199 No newline at end of file
197 200 @pyqtSignature("") No newline at end of file
198 201 def on_btnGbkp_clicked(self): No newline at end of file
199 202 """ No newline at end of file
200 203 Cuando se presiona el boton Generate Bkp No newline at end of file
201 204 """ No newline at end of file
202 205 No newline at end of file
203 206 #CREA LAS CARPETAS "COMENTADO TEMPORALMENTE" No newline at end of file
204 207 var_dirs='/{gpath,iso,ppath}' No newline at end of file
205 208 var_Rpath=self.txtRpath.text() No newline at end of file
206 209 var_cmd="mkdir "+str(var_Rpath)+str(var_dirs) No newline at end of file
207 210 self.txtInfo.append(var_cmd) No newline at end of file
208 211 #var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
209 212 #if var_output != 0: No newline at end of file
210 213 # self.txtInfo.setText("No se pudieron crear los directorios, output_error:" + str(var_output)) No newline at end of file
211 214 # return No newline at end of file
212 215 #else: No newline at end of file
213 216 # self.txtInfo.append('Carpetas creadas correctamente') No newline at end of file
214 217 No newline at end of file
215 218 No newline at end of file
216 219 var_sublist=[] No newline at end of file
217 220 for i in self.var_list[self.lstStartDay.currentIndex():self.lstStartDay.currentIndex() + self.lstStopDay.currentIndex()+1]: No newline at end of file
218 221 self.txtInfo.append(i) No newline at end of file
219 222 var_sublist.append(i) No newline at end of file
220 223 No newline at end of file
221 224 #Cargando los parametros de busqueda No newline at end of file
222 225 var_Dpath=self.txtDpath.text() No newline at end of file
223 226 var_Dtype=self.txtDtype.text() No newline at end of file
224 227 No newline at end of file
225 228 var_files_list=[] No newline at end of file
226 229 for var_doy in var_sublist: No newline at end of file
227 230 var_cmd="find " + str(var_Dpath) + " -name ?"+var_doy+"???."+ str(var_Dtype) No newline at end of file
228 231 var_output=commands.getstatusoutput(var_cmd)[1] No newline at end of file
229 232 for var_file in var_output.split(): No newline at end of file
230 233 var_files_list.append(var_file) No newline at end of file
231 234 No newline at end of file
232 235 var_Dcapacity=float(self.txtDcapacity.text())*1024 #tamaΓ±o en KB No newline at end of file
233 236 self.txtInfo.append(str(var_Dcapacity)) No newline at end of file
234 237 No newline at end of file
235 238 # self.txtInfo.append('Lista de archivos') No newline at end of file
236 239 # var_n=0 No newline at end of file
237 240 # for i in var_files_list: No newline at end of file
238 241 #self.txtInfo.append(str(os.path.getsize(i)/1024)+'KB') No newline at end of file
239 242 #self.txtInfo.append(i) No newline at end of file
240 243 #var_n += 1 No newline at end of file
241 244 #self.txtInfo.append(str(var_n)) No newline at end of file
242 245 No newline at end of file
243 246 #lista de archivos a grabar en archivos . No newline at end of file
244 247 No newline at end of file
245 248 #Ruta de los archivos a grabar No newline at end of file
246 249 var_Rpath=self.txtRpath.text() No newline at end of file
247 250 var_Rpath_ppath=var_Rpath+"/ppath" No newline at end of file
248 251 var_Dpath=self.txtDpath.text() No newline at end of file
249 252 No newline at end of file
250 253 var_n=0 No newline at end of file
251 254 var_n_files=0 No newline at end of file
252 255 var_tmp=0 No newline at end of file
253 256 var_files_list_2=[] No newline at end of file
254 257 self.txtInfo.append(str(len(var_files_list))) No newline at end of file
255 258 No newline at end of file
256 259 for i in var_files_list: No newline at end of file
257 260 var_size_i=os.path.getsize(i)/1024+1 #tamaΓ±o en KB, se suma 1 KB para evitar problemas al momento de sumar No newline at end of file
258 261 var_tmp += var_size_i No newline at end of file
259 262 No newline at end of file
260 263 if var_tmp > var_Dcapacity: No newline at end of file
261 264 var_tmp -= var_size_i #se quita el tamaΓ±o sumado para mostrar el tamaΓ±o real No newline at end of file
262 265 #muestra info No newline at end of file
263 266 self.txtInfo.append(str(len(var_files_list_2))+" size:"+str(var_tmp)) No newline at end of file
264 267 No newline at end of file
265 268 #se crea un archivo con numeral en el sufijo, y se aΓ±aden la lista de archivos No newline at end of file
266 269 var_file = open(var_Rpath_ppath+"/"+self.txtElabel.text()+"_"+str(var_n)+".dat","w") No newline at end of file
267 270 for line in var_files_list_2: No newline at end of file
268 271 var_file.write(line.split(var_Dpath)[1]+'=') No newline at end of file
269 272 var_file.write(line+'\n') No newline at end of file
270 273 var_file.close() No newline at end of file
271 274 No newline at end of file
272 275 var_n_files += len(var_files_list_2) No newline at end of file
273 276 var_tmp = var_size_i No newline at end of file
274 277 var_files_list_2=[] No newline at end of file
275 278 var_files_list_2.append(i) No newline at end of file
276 279 var_n += 1 No newline at end of file
277 280 No newline at end of file
278 281 else: No newline at end of file
279 282 var_files_list_2.append(i) No newline at end of file
280 283 No newline at end of file
281 284 #muestra info No newline at end of file
282 285 self.txtInfo.append(str(len(var_files_list_2))+" size:"+str(var_tmp)) No newline at end of file
283 286 No newline at end of file
284 287 var_file = open(var_Rpath_ppath+"/"+self.txtElabel.text()+"_"+str(var_n)+".dat","w") No newline at end of file
285 288 for line in var_files_list_2: No newline at end of file
286 289 var_file.write(line.split(var_Dpath)[1]+'=') No newline at end of file
287 290 var_file.write(line+'\n') No newline at end of file
288 291 var_file.close() No newline at end of file
289 292 No newline at end of file
290 293 var_n_files += len(var_files_list_2) No newline at end of file
291 294 self.txtInfo.append(str(var_n_files)) No newline at end of file
292 295 self.tabParameters.setEnabled(False) No newline at end of file
296 self.btnGbkp.setEnabled(False)
No newline at end of file
297 self.txtDtype.setText('tipo INV') No newline at end of file
293 298 No newline at end of file
294 299 No newline at end of file
295 300 @pyqtSignature("") No newline at end of file
296 301 def on_btnStartburn_clicked(self): No newline at end of file
297 302 """ No newline at end of file
298 303 Slot documentation goes here. No newline at end of file
299 304 """ No newline at end of file
305 sys.stdout = self
No newline at end of file
306 #sys.stderr = self
No newline at end of file
307 print "stdout_!!!" No newline at end of file
300 308 var_Rpath=self.txtRpath.text() No newline at end of file
301 309 var_Rpath_ppath=var_Rpath+"/ppath" No newline at end of file
302 310 var_Rpath_iso=var_Rpath+"/iso" No newline at end of file
303 311 No newline at end of file
304 312 var_label=self.txtElabel.text() No newline at end of file
305 313 No newline at end of file
306 314 file_iso=var_Rpath_iso+'/2.iso' No newline at end of file
307 315 file_dat=var_Rpath_ppath+'/EW_DRIFTS_1.dat' No newline at end of file
308 316 No newline at end of file
309 317 var_cmd = 'genisoimage -hide-joliet-trans-tbl -joliet-long -r ' No newline at end of file
310 318 var_cmd += ' -A '+var_label+' -V '+var_label No newline at end of file
311 319 var_cmd += ' -graft-points -path-list '+ file_dat+' -o '+file_iso No newline at end of file
312 320 self.txtInfo.append(var_cmd) No newline at end of file
313 321 No newline at end of file
314 322 #var_output=commands.getstatusoutput(str(var_cmd))[1] No newline at end of file
315 323 #self.txtInfo.append(var_output) No newline at end of file
316 324 No newline at end of file
317 325 #os.system(str(var_cmd))
326 No newline at end of file
318 p = subprocess.Popen(str(var_cmd), shell=True) No newline at end of file
319 327 #os.waitpid(p.pid, 0)
328 No newline at end of file
320 self.txtInfo.append(str(p.pid)) No newline at end of file
321 329 No newline at end of file
322 330 #timer.time = 10 No newline at end of file
323 331 #timer.init() No newline at end of file
324 332 No newline at end of file
325 333 @pyqtSignature("") No newline at end of file
326 334 def on_btnRestart_clicked(self): No newline at end of file
327 335 """ No newline at end of file
328 336 Slot documentation goes here. No newline at end of file
329 337 """ No newline at end of file
330 338 self.tabParameters.setEnabled(True) No newline at end of file
339 self.btnGbkp.setEnabled(True) No newline at end of file
This diff has been collapsed as it changes many lines, (670 lines changed) Show them Hide them
@@ -1,791 +1,833
1 1 <?xml version="1.0" encoding="UTF-8"?> No newline at end of file
2 2 <ui version="4.0"> No newline at end of file
3 3 <class>MainWindow</class> No newline at end of file
4 4 <widget class="QMainWindow" name="MainWindow"> No newline at end of file
5 5 <property name="geometry"> No newline at end of file
6 6 <rect> No newline at end of file
7 7 <x>0</x> No newline at end of file
8 8 <y>0</y>
9 No newline at end of file
9 <width>593</width> No newline at end of file
10 10 <height>787</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">
17 No newline at end of file
17 <layout class="QVBoxLayout" name="verticalLayout_3"> 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>0</number> No newline at end of file
31 31 </property> No newline at end of file
32 32 <widget class="QWidget" name="tabParameters"> No newline at end of file
33 33 <property name="enabled"> No newline at end of file
34 34 <bool>true</bool> No newline at end of file
35 35 </property> No newline at end of file
36 36 <attribute name="title"> No newline at end of file
37 37 <string>Parameters</string> No newline at end of file
38 38 </attribute> No newline at end of file
39 39 <layout class="QVBoxLayout" name="verticalLayout_2"> No newline at end of file
40 40 <item> No newline at end of file
41 41 <layout class="QHBoxLayout" name="horizontalLayout"> No newline at end of file
42 42 <property name="sizeConstraint"> No newline at end of file
43 43 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
44 44 </property> No newline at end of file
45 45 <item> No newline at end of file
46 46 <widget class="QLineEdit" name="txtDpath"> No newline at end of file
47 47 <property name="sizePolicy"> No newline at end of file
48 48 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> No newline at end of file
49 49 <horstretch>0</horstretch> No newline at end of file
50 50 <verstretch>0</verstretch> No newline at end of file
51 51 </sizepolicy> No newline at end of file
52 52 </property> No newline at end of file
53 53 </widget> No newline at end of file
54 54 </item> No newline at end of file
55 55 <item> No newline at end of file
56 56 <widget class="QPushButton" name="btnDpath"> No newline at end of file
57 57 <property name="sizePolicy"> No newline at end of file
58 58 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
59 59 <horstretch>0</horstretch> No newline at end of file
60 60 <verstretch>0</verstretch> No newline at end of file
61 61 </sizepolicy> No newline at end of file
62 62 </property> No newline at end of file
63 63 <property name="text"> No newline at end of file
64 64 <string>Data Path</string> No newline at end of file
65 65 </property> No newline at end of file
66 66 <property name="checkable"> No newline at end of file
67 67 <bool>false</bool> No newline at end of file
68 68 </property> No newline at end of file
69 69 </widget> No newline at end of file
70 70 </item> No newline at end of file
71 71 </layout> No newline at end of file
72 72 </item> No newline at end of file
73 73 <item> No newline at end of file
74 74 <layout class="QHBoxLayout" name="horizontalLayout_3"> No newline at end of file
75 75 <item> No newline at end of file
76 76 <widget class="QLineEdit" name="txtRpath"/> No newline at end of file
77 77 </item> No newline at end of file
78 78 <item> No newline at end of file
79 79 <widget class="QPushButton" name="btnRpath"> No newline at end of file
80 80 <property name="text"> No newline at end of file
81 81 <string>Resource Path</string> No newline at end of file
82 82 </property> No newline at end of file
83 83 </widget> No newline at end of file
84 84 </item> No newline at end of file
85 85 </layout> No newline at end of file
86 86 </item> No newline at end of file
87 87 <item> No newline at end of file
88 88 <widget class="QLabel" name="lblDtype"> No newline at end of file
89 89 <property name="text"> No newline at end of file
90 90 <string>Data Type</string> No newline at end of file
91 91 </property> No newline at end of file
92 92 </widget> No newline at end of file
93 93 </item> No newline at end of file
94 94 <item> No newline at end of file
95 95 <layout class="QHBoxLayout" name="horizontalLayout_4"> No newline at end of file
96 96 <item> No newline at end of file
97 97 <widget class="QComboBox" name="lstDtype"> No newline at end of file
98 98 <item> No newline at end of file
99 99 <property name="text"> No newline at end of file
100 100 <string>Raw Data</string> No newline at end of file
101 101 </property> No newline at end of file
102 102 </item> No newline at end of file
103 103 <item> No newline at end of file
104 104 <property name="text"> No newline at end of file
105 105 <string>Process Data</string> No newline at end of file
106 106 </property> No newline at end of file
107 107 </item> No newline at end of file
108 108 <item> No newline at end of file
109 109 <property name="text"> No newline at end of file
110 110 <string>BLTR Data</string> No newline at end of file
111 111 </property> No newline at end of file
112 112 </item> No newline at end of file
113 113 <item> No newline at end of file
114 114 <property name="text"> No newline at end of file
115 115 <string>Other</string> No newline at end of file
116 116 </property> No newline at end of file
117 117 </item> No newline at end of file
118 118 </widget> No newline at end of file
119 119 </item> No newline at end of file
120 120 <item> No newline at end of file
121 121 <widget class="QLineEdit" name="txtDtype"> No newline at end of file
122 122 <property name="text"> No newline at end of file
123 123 <string>r</string> No newline at end of file
124 124 </property> No newline at end of file
125 125 <property name="readOnly"> No newline at end of file
126 126 <bool>true</bool> No newline at end of file
127 127 </property> No newline at end of file
128 128 </widget> No newline at end of file
129 129 </item> No newline at end of file
130 130 <item> No newline at end of file
131 131 <widget class="QCheckBox" name="chkMST"> No newline at end of file
132 132 <property name="text"> No newline at end of file
133 133 <string>MST-ISR Data</string> No newline at end of file
134 134 </property> No newline at end of file
135 135 </widget> No newline at end of file
136 136 </item> No newline at end of file
137 137 </layout> No newline at end of file
138 138 </item> No newline at end of file
139 139 <item> No newline at end of file
140 140 <layout class="QHBoxLayout" name="horizontalLayout_6"> No newline at end of file
141 141 <item> No newline at end of file
142 142 <widget class="QLabel" name="lblElabel"> No newline at end of file
143 143 <property name="text"> No newline at end of file
144 144 <string>Exp. Label at device</string> No newline at end of file
145 145 </property> No newline at end of file
146 146 </widget> No newline at end of file
147 147 </item> No newline at end of file
148 148 <item> No newline at end of file
149 149 <widget class="QLabel" name="lblCopys"> No newline at end of file
150 150 <property name="text"> No newline at end of file
151 151 <string>Copys</string> No newline at end of file
152 152 </property> No newline at end of file
153 153 </widget> No newline at end of file
154 154 </item> No newline at end of file
155 155 </layout> No newline at end of file
156 156 </item> No newline at end of file
157 157 <item> No newline at end of file
158 158 <layout class="QHBoxLayout" name="horizontalLayout_5"> No newline at end of file
159 159 <item> No newline at end of file
160 160 <widget class="QLineEdit" name="txtElabel"/> No newline at end of file
161 161 </item> No newline at end of file
162 162 <item> No newline at end of file
163 163 <widget class="QLineEdit" name="txtCopys"> No newline at end of file
164 164 <property name="text"> No newline at end of file
165 165 <string>0</string> No newline at end of file
166 166 </property> No newline at end of file
167 167 </widget> No newline at end of file
168 168 </item> No newline at end of file
169 169 </layout> No newline at end of file
170 170 </item> No newline at end of file
171 171 <item> No newline at end of file
172 172 <layout class="QHBoxLayout" name="horizontalLayout_7"> No newline at end of file
173 173 <item> No newline at end of file
174 174 <widget class="QLabel" name="lblStartDay"> No newline at end of file
175 175 <property name="text"> No newline at end of file
176 176 <string>Start Day:</string> No newline at end of file
177 177 </property> No newline at end of file
178 178 </widget> No newline at end of file
179 179 </item> No newline at end of file
180 180 <item> No newline at end of file
181 181 <widget class="QLabel" name="lblStopDay"> No newline at end of file
182 182 <property name="text"> No newline at end of file
183 183 <string>Stop Day:</string> No newline at end of file
184 184 </property> No newline at end of file
185 185 </widget> No newline at end of file
186 186 </item> No newline at end of file
187 187 </layout> No newline at end of file
188 188 </item> No newline at end of file
189 189 <item> No newline at end of file
190 190 <layout class="QHBoxLayout" name="horizontalLayout_8"> No newline at end of file
191 191 <item> No newline at end of file
192 192 <widget class="QComboBox" name="lstStartDay"/> No newline at end of file
193 193 </item> No newline at end of file
194 194 <item> No newline at end of file
195 195 <widget class="QComboBox" name="lstStopDay"/> No newline at end of file
196 196 </item> No newline at end of file
197 197 </layout> No newline at end of file
198 198 </item> No newline at end of file
199 199 </layout> No newline at end of file
200 200 </widget> No newline at end of file
201 201 <widget class="QWidget" name="tabDconfig"> No newline at end of file
202 202 <property name="enabled"> No newline at end of file
203 203 <bool>true</bool> No newline at end of file
204 204 </property> No newline at end of file
205 205 <property name="sizePolicy"> No newline at end of file
206 206 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
207 207 <horstretch>0</horstretch> No newline at end of file
208 208 <verstretch>0</verstretch> No newline at end of file
209 209 </sizepolicy> No newline at end of file
210 210 </property> No newline at end of file
211 211 <attribute name="title"> No newline at end of file
212 212 <string>Device Config.</string> No newline at end of file
213 213 </attribute>
214 No newline at end of file
214 <layout class="QVBoxLayout" name="verticalLayout">
No newline at end of file
215 No newline at end of file
215 <item>
No newline at end of file
216 No newline at end of file
216 <widget class="QWidget" name="widget" native="true"> No newline at end of file
No newline at end of file
217 <item row="0" column="0">
No newline at end of file
218 <layout class="QVBoxLayout" name="verticalLayout_15">
No newline at end of file
219 <item>
No newline at end of file
220 <widget class="QCheckBox" name="chkDevA">
No newline at end of file
221 <property name="text">
No newline at end of file
222 <string>Dev A</string>
No newline at end of file
223 </property>
No newline at end of file
224 </widget>
No newline at end of file
225 </item>
No newline at end of file
226 <item>
No newline at end of file
227 <layout class="QVBoxLayout" name="verticalLayout_11">
No newline at end of file
228 <item>
No newline at end of file
229 <widget class="QLineEdit" name="txtDeviceA"/>
No newline at end of file
230 </item>
No newline at end of file
231 <item>
No newline at end of file
232 <widget class="QLineEdit" name="txtBspeedA"/>
No newline at end of file
233 </item>
No newline at end of file
234 <item>
No newline at end of file
235 <widget class="QLineEdit" name="txtBmodeA"/>
No newline at end of file
236 </item>
No newline at end of file
237 <item>
No newline at end of file
238 <widget class="QPushButton" name="btnTdevA">
No newline at end of file
239 <property name="text">
No newline at end of file
240 <string>Test DevA</string>
No newline at end of file
241 </property>
No newline at end of file
242 </widget>
No newline at end of file
243 </item>
No newline at end of file
244 </layout>
No newline at end of file
245 </item>
No newline at end of file
246 </layout>
No newline at end of file
247 </item>
No newline at end of file
248 <item row="0" column="1">
No newline at end of file
249 <layout class="QVBoxLayout" name="verticalLayout_16">
No newline at end of file
250 <item>
No newline at end of file
251 <widget class="QCheckBox" name="chkDevB">
No newline at end of file
252 <property name="text">
No newline at end of file
253 <string>Dev B</string>
No newline at end of file
254 </property>
No newline at end of file
255 </widget>
No newline at end of file
256 </item>
No newline at end of file
257 <item>
No newline at end of file
258 <layout class="QVBoxLayout" name="verticalLayout_12">
No newline at end of file
259 <item>
No newline at end of file
260 <widget class="QLineEdit" name="txtDeviceB"/>
No newline at end of file
261 </item>
No newline at end of file
262 <item>
No newline at end of file
263 <widget class="QLineEdit" name="txtBspeedB"/>
No newline at end of file
264 </item>
No newline at end of file
265 <item>
No newline at end of file
266 <widget class="QLineEdit" name="txtBmodeB"/>
No newline at end of file
267 </item>
No newline at end of file
268 <item>
No newline at end of file
269 <widget class="QPushButton" name="btnTdevB">
No newline at end of file
270 <property name="text">
No newline at end of file
271 <string>Test DevB</string>
No newline at end of file
272 </property>
No newline at end of file
273 </widget>
No newline at end of file
274 </item>
No newline at end of file
275 </layout>
No newline at end of file
276 </item>
No newline at end of file
277 </layout>
No newline at end of file
278 </item>
No newline at end of file
279 <item row="0" column="2">
No newline at end of file
280 <layout class="QVBoxLayout" name="verticalLayout_17">
No newline at end of file
281 <item>
No newline at end of file
282 <widget class="QCheckBox" name="chkDevC">
No newline at end of file
283 <property name="text">
No newline at end of file
284 <string>Dev C</string>
No newline at end of file
285 </property>
No newline at end of file
286 </widget>
No newline at end of file
287 </item>
No newline at end of file
288 <item>
No newline at end of file
289 <layout class="QVBoxLayout" name="verticalLayout_13">
No newline at end of file
290 <item>
No newline at end of file
291 <widget class="QLineEdit" name="txtDeviceC"/>
No newline at end of file
292 </item>
No newline at end of file
293 <item>
No newline at end of file
294 <widget class="QLineEdit" name="txtBspeedC"/>
No newline at end of file
295 </item>
No newline at end of file
296 <item>
No newline at end of file
297 <widget class="QLineEdit" name="txtBmodeC"/>
No newline at end of file
298 </item>
No newline at end of file
299 <item>
No newline at end of file
300 <widget class="QPushButton" name="btnTdevC">
No newline at end of file
301 <property name="text">
No newline at end of file
302 <string>Test DevC</string>
No newline at end of file
303 </property>
No newline at end of file
304 </widget>
No newline at end of file
305 </item>
No newline at end of file
306 </layout>
No newline at end of file
307 </item>
No newline at end of file
308 </layout>
No newline at end of file
309 </item>
No newline at end of file
310 <item row="0" column="3">
No newline at end of file
311 <layout class="QVBoxLayout" name="verticalLayout_18">
No newline at end of file
312 <item>
No newline at end of file
313 <widget class="QCheckBox" name="chkDevD">
No newline at end of file
314 <property name="text">
No newline at end of file
315 <string>Dev D</string>
No newline at end of file
316 </property>
No newline at end of file
317 </widget>
No newline at end of file
318 </item>
No newline at end of file
319 <item>
No newline at end of file
320 <layout class="QVBoxLayout" name="verticalLayout_14">
No newline at end of file
321 <item>
No newline at end of file
322 <widget class="QLineEdit" name="txtDeviceD"/>
No newline at end of file
323 </item>
No newline at end of file
324 <item>
No newline at end of file
325 <widget class="QLineEdit" name="txtBspeedD"/>
No newline at end of file
326 </item>
No newline at end of file
327 <item>
No newline at end of file
328 <widget class="QLineEdit" name="txtBmodeD"/>
No newline at end of file
329 </item>
No newline at end of file
330 <item>
No newline at end of file
331 <widget class="QPushButton" name="btnTdevD">
No newline at end of file
332 <property name="text">
No newline at end of file
333 <string>Test DevD</string>
No newline at end of file
334 </property>
No newline at end of file
335 </widget>
No newline at end of file
336 </item>
No newline at end of file
337 </layout>
No newline at end of file
338 </item>
No newline at end of file
339 </layout>
No newline at end of file
340 </item>
No newline at end of file
341 <item row="0" column="4">
No newline at end of file
342 <layout class="QVBoxLayout" name="verticalLayout_19">
No newline at end of file
343 <item>
No newline at end of file
344 <widget class="QLabel" name="label_2">
No newline at end of file
345 <property name="text">
No newline at end of file
346 <string/>
No newline at end of file
347 </property>
No newline at end of file
348 </widget>
No newline at end of file
349 </item>
No newline at end of file
350 <item>
No newline at end of file
351 <widget class="QLabel" name="lblDevice">
No newline at end of file
352 <property name="text">
No newline at end of file
353 <string>Device</string>
No newline at end of file
354 </property>
No newline at end of file
355 </widget>
No newline at end of file
356 </item>
No newline at end of file
357 <item>
No newline at end of file
358 <widget class="QLabel" name="lblBspeed">
No newline at end of file
359 <property name="text">
No newline at end of file
360 <string>Burn Speed</string>
No newline at end of file
361 </property>
No newline at end of file
362 </widget>
No newline at end of file
363 </item>
No newline at end of file
364 <item>
No newline at end of file
365 <widget class="QLabel" name="lblBmode">
No newline at end of file
366 <property name="text">
No newline at end of file
367 <string>Burn Mode</string>
No newline at end of file
368 </property>
No newline at end of file
369 </widget>
No newline at end of file
370 </item>
No newline at end of file
371 <item>
No newline at end of file
372 <widget class="QLabel" name="label">
No newline at end of file
373 <property name="text">
No newline at end of file
374 <string/>
No newline at end of file
375 </property>
No newline at end of file
376 </widget>
No newline at end of file
377 </item>
No newline at end of file
378 </layout>
No newline at end of file
379 </item>
No newline at end of file
380 </layout>
No newline at end of file
381 </item>
No newline at end of file
382 <item>
No newline at end of file
383 <layout class="QHBoxLayout" name="horizontalLayout_9">
No newline at end of file
384 <property name="sizeConstraint">
No newline at end of file
385 <enum>QLayout::SetFixedSize</enum>
No newline at end of file
386 </property>
No newline at end of file
387 <item>
No newline at end of file
388 <widget class="QLabel" name="lblBprocess">
No newline at end of file
389 <property name="sizePolicy">
No newline at end of file
390 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
391 <horstretch>0</horstretch>
No newline at end of file
392 <verstretch>0</verstretch>
No newline at end of file
393 </sizepolicy>
No newline at end of file
394 </property>
No newline at end of file
395 <property name="text">
No newline at end of file
396 <string>Burning process</string>
No newline at end of file
397 </property>
No newline at end of file
398 </widget>
No newline at end of file
399 </item>
No newline at end of file
400 <item>
No newline at end of file
401 <widget class="QCheckBox" name="chkSimultaneously">
No newline at end of file
402 <property name="sizePolicy">
No newline at end of file
403 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
404 <horstretch>0</horstretch>
No newline at end of file
405 <verstretch>0</verstretch>
No newline at end of file
406 </sizepolicy>
No newline at end of file
407 </property>
No newline at end of file
408 <property name="text">
No newline at end of file
409 <string>Simultaneously</string>
No newline at end of file
410 </property>
No newline at end of file
411 </widget>
No newline at end of file
412 </item>
No newline at end of file
413 <item>
No newline at end of file
414 <widget class="QCheckBox" name="chkSequentially">
No newline at end of file
415 <property name="sizePolicy">
No newline at end of file
416 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
417 <horstretch>0</horstretch>
No newline at end of file
418 <verstretch>0</verstretch>
No newline at end of file
419 </sizepolicy>
No newline at end of file
420 </property>
No newline at end of file
421 <property name="text">
No newline at end of file
422 <string>Sequentially</string>
No newline at end of file
423 </property>
No newline at end of file
424 <property name="checked">
No newline at end of file
425 <bool>true</bool>
No newline at end of file
426 </property>
No newline at end of file
427 </widget>
No newline at end of file
428 </item>
No newline at end of file
429 </layout>
No newline at end of file
430 </item>
No newline at end of file
431 <item>
No newline at end of file
432 <layout class="QHBoxLayout" name="horizontalLayout_11">
No newline at end of file
433 <property name="spacing">
No newline at end of file
434 <number>6</number>
No newline at end of file
435 </property>
No newline at end of file
436 <property name="sizeConstraint">
No newline at end of file
437 <enum>QLayout::SetDefaultConstraint</enum>
No newline at end of file
438 </property>
No newline at end of file
439 <item>
No newline at end of file
440 <widget class="QLabel" name="lblDcapacity">
No newline at end of file
441 <property name="sizePolicy">
No newline at end of file
442 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
443 <horstretch>0</horstretch>
No newline at end of file
444 <verstretch>0</verstretch>
No newline at end of file
445 </sizepolicy>
No newline at end of file
446 </property>
No newline at end of file
447 <property name="text">
No newline at end of file
448 <string>Device Capacity</string>
No newline at end of file
449 </property>
No newline at end of file
450 </widget>
No newline at end of file
451 </item>
No newline at end of file
452 <item>
No newline at end of file
453 <widget class="QCheckBox" name="chkSalert">
No newline at end of file
454 <property name="sizePolicy">
No newline at end of file
455 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
456 <horstretch>0</horstretch>
No newline at end of file
457 <verstretch>0</verstretch>
No newline at end of file
458 </sizepolicy>
No newline at end of file
459 </property>
No newline at end of file
460 <property name="text">
No newline at end of file
461 <string>Sound Alert</string>
No newline at end of file
462 </property>
No newline at end of file
463 </widget>
No newline at end of file
464 </item>
No newline at end of file
465 </layout>
No newline at end of file
466 </item>
No newline at end of file
467 <item>
No newline at end of file
468 <layout class="QHBoxLayout" name="horizontalLayout_10">
No newline at end of file
469 <property name="sizeConstraint">
No newline at end of file
470 <enum>QLayout::SetFixedSize</enum>
No newline at end of file
471 </property>
No newline at end of file
472 <item>
No newline at end of file
473 <widget class="QComboBox" name="lstDcapacity">
No newline at end of file
474 <property name="currentIndex">
No newline at end of file
475 <number>2</number>
No newline at end of file
476 </property>
No newline at end of file
477 <item>
No newline at end of file
478 <property name="text">
No newline at end of file
479 <string>BluRay [25.0 GB]</string>
No newline at end of file
480 </property>
No newline at end of file
481 </item>
No newline at end of file
482 <item>
No newline at end of file
483 <property name="text">
No newline at end of file
484 <string>DVD2 [8.5 GB]</string>
No newline at end of file
485 </property>
No newline at end of file
486 </item>
No newline at end of file
487 <item>
No newline at end of file
488 <property name="text">
No newline at end of file
489 <string>DVD1 [4.7 GB]</string>
No newline at end of file
490 </property>
No newline at end of file
491 </item>
No newline at end of file
492 <item>
No newline at end of file
493 <property name="text">
No newline at end of file
494 <string>CD [0.7 GB]</string>
No newline at end of file
495 </property>
No newline at end of file
496 </item>
No newline at end of file
497 <item>
No newline at end of file
498 <property name="text">
No newline at end of file
499 <string>Other [? GB]</string>
No newline at end of file
500 </property>
No newline at end of file
501 </item>
No newline at end of file
502 </widget>
No newline at end of file
503 </item>
No newline at end of file
504 <item>
No newline at end of file
505 <widget class="QLineEdit" name="txtDcapacity">
No newline at end of file
506 <property name="text">
No newline at end of file
507 <string>4482.26928711</string>
No newline at end of file
508 </property>
No newline at end of file
509 <property name="readOnly">
No newline at end of file
510 <bool>true</bool>
No newline at end of file
511 </property>
No newline at end of file
512 </widget>
No newline at end of file
513 </item>
No newline at end of file
514 <item>
No newline at end of file
515 <widget class="QCheckBox" name="chkPSgraphic">
No newline at end of file
516 <property name="text">
No newline at end of file
517 <string>PS Graphic</string>
No newline at end of file
518 </property>
No newline at end of file
519 </widget>
No newline at end of file
520 </item>
No newline at end of file
521 <item>
No newline at end of file
522 <widget class="QLineEdit" name="lineEdit_17"/>
No newline at end of file
523 </item>
No newline at end of file
524 </layout>
No newline at end of file
525 </item>
No newline at end of file
526 </layout>
No newline at end of file
527 <zorder>horizontalLayoutWidget</zorder>
No newline at end of file
528 <zorder>layoutWidget</zorder>
No newline at end of file
529 <zorder>layoutWidget_2</zorder>
No newline at end of file
530 <zorder>layoutWidget_3</zorder>
No newline at end of file
531 <zorder>layoutWidget_4</zorder>
No newline at end of file
532 <zorder>layoutWidget_5</zorder>
No newline at end of file
533 <zorder>chkDevA</zorder>
No newline at end of file
534 </widget>
No newline at end of file
535 <widget class="QWidget" name="tabSburn">
No newline at end of file
536 <attribute name="title">
No newline at end of file
537 <string>Status Burn</string>
No newline at end of file
538 </attribute>
No newline at end of file
539 <layout class="QVBoxLayout" name="verticalLayout_4">
No newline at end of file
540 <item>
No newline at end of file
541 <widget class="QWidget" name="widget_2" native="true"> No newline at end of file
217 542 <property name="sizePolicy"> No newline at end of file
218 543 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
219 544 <horstretch>0</horstretch> No newline at end of file
220 545 <verstretch>0</verstretch> No newline at end of file
221 546 </sizepolicy> No newline at end of file
222 547 </property> No newline at end of file
223 548 <property name="maximumSize"> No newline at end of file
224 549 <size> No newline at end of file
225 550 <width>500</width> No newline at end of file
226 551 <height>16777215</height> No newline at end of file
227 552 </size> No newline at end of file
228 553 </property>
No newline at end of file
229 <layout class="QGridLayout" name="gridLayout">
No newline at end of file
230 <item row="0" column="0">
No newline at end of file
231 <widget class="QCheckBox" name="chkDevA">
No newline at end of file
232 <property name="text">
No newline at end of file
233 <string>Dev A</string>
No newline at end of file
234 </property>
No newline at end of file
235 </widget>
No newline at end of file
236 </item>
No newline at end of file
237 <item row="0" column="1">
No newline at end of file
238 <widget class="QCheckBox" name="chkDevB">
No newline at end of file
239 <property name="text">
No newline at end of file
240 <string>Dev B</string>
No newline at end of file
241 </property>
No newline at end of file
242 </widget>
No newline at end of file
243 </item>
No newline at end of file
244 <item row="0" column="2">
No newline at end of file
245 <widget class="QCheckBox" name="chkDevC">
No newline at end of file
246 <property name="text">
No newline at end of file
247 <string>Dev C</string>
No newline at end of file
248 </property>
No newline at end of file
249 </widget>
No newline at end of file
250 </item>
No newline at end of file
251 <item row="0" column="3">
No newline at end of file
252 <widget class="QCheckBox" name="chkDevD">
No newline at end of file
253 <property name="text">
No newline at end of file
254 <string>Dev D</string>
No newline at end of file
255 </property>
No newline at end of file
256 </widget>
No newline at end of file
257 </item>
No newline at end of file
258 <item row="2" column="1">
No newline at end of file
259 <widget class="QLineEdit" name="txtDeviceB"/>
No newline at end of file
260 </item>
No newline at end of file
261 <item row="4" column="0">
No newline at end of file
262 <widget class="QLineEdit" name="txtBspeedA"/>
No newline at end of file
263 </item>
No newline at end of file
264 <item row="2" column="0">
No newline at end of file
265 <widget class="QLineEdit" name="txtDeviceA"/>
No newline at end of file
266 </item>
No newline at end of file
267 <item row="4" column="1">
No newline at end of file
268 <widget class="QLineEdit" name="txtBspeedB"/>
No newline at end of file
269 </item>
No newline at end of file
270 <item row="2" column="4">
No newline at end of file
271 <widget class="QLabel" name="lblDevice">
No newline at end of file
272 <property name="text">
No newline at end of file
273 <string>Device</string>
No newline at end of file
274 </property>
No newline at end of file
275 </widget>
No newline at end of file
276 </item>
No newline at end of file
277 <item row="2" column="2">
No newline at end of file
278 <widget class="QLineEdit" name="txtDeviceC"/>
No newline at end of file
279 </item>
No newline at end of file
280 <item row="2" column="3">
No newline at end of file
281 <widget class="QLineEdit" name="txtDeviceD"/>
No newline at end of file
282 </item>
No newline at end of file
283 <item row="4" column="3">
No newline at end of file
284 <widget class="QLineEdit" name="txtBspeedD"/>
No newline at end of file
285 </item>
No newline at end of file
286 <item row="5" column="0">
No newline at end of file
287 <widget class="QLineEdit" name="txtBmodeA"/>
No newline at end of file
288 </item>
No newline at end of file
289 <item row="5" column="1">
No newline at end of file
290 <widget class="QLineEdit" name="txtBmodeB"/>
No newline at end of file
291 </item>
No newline at end of file
292 <item row="4" column="4">
No newline at end of file
293 <widget class="QLabel" name="lblBspeed">
No newline at end of file
294 <property name="text">
No newline at end of file
295 <string>Burn Speed</string>
No newline at end of file
296 </property>
No newline at end of file
297 </widget>
No newline at end of file
298 </item>
No newline at end of file
299 <item row="5" column="4">
No newline at end of file
300 <widget class="QLabel" name="lblBmode">
No newline at end of file
301 <property name="text">
No newline at end of file
302 <string>Burn Mode</string>
No newline at end of file
303 </property>
No newline at end of file
304 </widget>
No newline at end of file
305 </item>
No newline at end of file
306 <item row="5" column="2">
No newline at end of file
307 <widget class="QLineEdit" name="txtBmodeC"/>
No newline at end of file
308 </item>
No newline at end of file
309 <item row="5" column="3">
No newline at end of file
310 <widget class="QLineEdit" name="txtBmodeD"/>
No newline at end of file
311 </item>
No newline at end of file
312 <item row="6" column="0">
No newline at end of file
313 <widget class="QPushButton" name="btnTdevA">
No newline at end of file
314 <property name="text">
No newline at end of file
315 <string>Test DevA</string>
No newline at end of file
316 </property>
No newline at end of file
317 </widget>
No newline at end of file
318 </item>
No newline at end of file
319 <item row="6" column="1">
No newline at end of file
320 <widget class="QPushButton" name="btnTdevB">
No newline at end of file
321 <property name="text">
No newline at end of file
322 <string>Test DevB</string>
No newline at end of file
323 </property>
No newline at end of file
324 </widget>
No newline at end of file
325 </item>
No newline at end of file
326 <item row="6" column="2">
No newline at end of file
327 <widget class="QPushButton" name="btnTdevC">
No newline at end of file
328 <property name="text">
No newline at end of file
329 <string>Test DevC</string>
No newline at end of file
330 </property>
No newline at end of file
331 </widget>
No newline at end of file
332 </item>
No newline at end of file
333 <item row="6" column="3">
No newline at end of file
334 <widget class="QPushButton" name="btnTdevD">
No newline at end of file
335 <property name="text">
No newline at end of file
336 <string>Test DevD</string>
No newline at end of file
337 </property>
No newline at end of file
338 </widget>
No newline at end of file
339 </item>
No newline at end of file
340 <item row="4" column="2">
No newline at end of file
341 <widget class="QLineEdit" name="txtBspeedC"/>
No newline at end of file
342 </item>
No newline at end of file
343 </layout>
No newline at end of file
344 </widget>
No newline at end of file
345 </item>
No newline at end of file
346 <item>
No newline at end of file
347 <layout class="QHBoxLayout" name="horizontalLayout_9">
No newline at end of file
348 <property name="sizeConstraint">
No newline at end of file
349 <enum>QLayout::SetFixedSize</enum>
No newline at end of file
350 </property>
No newline at end of file
351 <item>
No newline at end of file
352 <widget class="QLabel" name="lblBprocess">
No newline at end of file
353 <property name="sizePolicy">
No newline at end of file
354 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
355 <horstretch>0</horstretch>
No newline at end of file
356 <verstretch>0</verstretch>
No newline at end of file
357 </sizepolicy>
No newline at end of file
358 </property>
No newline at end of file
359 <property name="text">
No newline at end of file
360 <string>Burning process</string>
No newline at end of file
361 </property>
No newline at end of file
362 </widget>
No newline at end of file
363 </item>
No newline at end of file
364 <item>
No newline at end of file
365 <widget class="QCheckBox" name="chkSimultaneously">
No newline at end of file
366 <property name="sizePolicy">
No newline at end of file
367 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
368 <horstretch>0</horstretch>
No newline at end of file
369 <verstretch>0</verstretch>
No newline at end of file
370 </sizepolicy>
No newline at end of file
371 </property>
No newline at end of file
372 <property name="text">
No newline at end of file
373 <string>Simultaneously</string>
No newline at end of file
374 </property>
No newline at end of file
375 </widget>
No newline at end of file
376 </item>
No newline at end of file
377 <item>
No newline at end of file
378 <widget class="QCheckBox" name="chkSequentially">
No newline at end of file
379 <property name="sizePolicy">
No newline at end of file
380 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
381 <horstretch>0</horstretch>
No newline at end of file
382 <verstretch>0</verstretch>
No newline at end of file
383 </sizepolicy>
No newline at end of file
384 </property>
No newline at end of file
385 <property name="text">
No newline at end of file
386 <string>Sequentially</string>
No newline at end of file
387 </property>
No newline at end of file
388 </widget>
No newline at end of file
389 </item>
No newline at end of file
390 </layout>
No newline at end of file
391 </item>
No newline at end of file
392 <item>
No newline at end of file
393 <layout class="QHBoxLayout" name="horizontalLayout_11">
No newline at end of file
394 <property name="spacing">
No newline at end of file
395 <number>6</number>
No newline at end of file
396 </property>
No newline at end of file
397 <property name="sizeConstraint">
No newline at end of file
398 <enum>QLayout::SetDefaultConstraint</enum>
No newline at end of file
399 </property>
No newline at end of file
400 <item>
No newline at end of file
401 <widget class="QLabel" name="lblDcapacity">
No newline at end of file
402 <property name="sizePolicy">
No newline at end of file
403 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
404 <horstretch>0</horstretch>
No newline at end of file
405 <verstretch>0</verstretch>
No newline at end of file
406 </sizepolicy>
No newline at end of file
407 </property>
No newline at end of file
408 <property name="text">
No newline at end of file
409 <string>Device Capacity</string>
No newline at end of file
410 </property>
No newline at end of file
411 </widget>
No newline at end of file
412 </item>
No newline at end of file
413 <item>
No newline at end of file
414 <widget class="QCheckBox" name="chkSalert">
No newline at end of file
415 <property name="sizePolicy">
No newline at end of file
416 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
417 <horstretch>0</horstretch>
No newline at end of file
418 <verstretch>0</verstretch>
No newline at end of file
419 </sizepolicy>
No newline at end of file
420 </property>
No newline at end of file
421 <property name="text">
No newline at end of file
422 <string>Sound Alert</string>
No newline at end of file
423 </property>
No newline at end of file
424 </widget>
No newline at end of file
425 </item>
No newline at end of file
426 </layout>
No newline at end of file
427 </item>
No newline at end of file
428 <item>
No newline at end of file
429 <layout class="QHBoxLayout" name="horizontalLayout_10">
No newline at end of file
430 <property name="sizeConstraint">
No newline at end of file
431 <enum>QLayout::SetFixedSize</enum>
No newline at end of file
432 </property>
No newline at end of file
433 <item>
No newline at end of file
434 <widget class="QComboBox" name="lstDcapacity">
No newline at end of file
435 <property name="currentIndex">
No newline at end of file
436 <number>2</number>
No newline at end of file
437 </property>
No newline at end of file
438 <item>
No newline at end of file
439 <property name="text">
No newline at end of file
440 <string>BluRay [25.0 GB]</string>
No newline at end of file
441 </property>
No newline at end of file
442 </item>
No newline at end of file
443 <item>
No newline at end of file
444 <property name="text">
No newline at end of file
445 <string>DVD2 [8.5 GB]</string>
No newline at end of file
446 </property>
No newline at end of file
447 </item>
No newline at end of file
448 <item>
No newline at end of file
449 <property name="text">
No newline at end of file
450 <string>DVD1 [4.7 GB]</string>
No newline at end of file
451 </property>
No newline at end of file
452 </item>
No newline at end of file
453 <item>
No newline at end of file
454 <property name="text">
No newline at end of file
455 <string>CD [0.7 GB]</string>
No newline at end of file
456 </property>
No newline at end of file
457 </item>
No newline at end of file
458 <item>
No newline at end of file
459 <property name="text">
No newline at end of file
460 <string>Other [? GB]</string>
No newline at end of file
461 </property>
No newline at end of file
462 </item>
No newline at end of file
463 </widget>
No newline at end of file
464 </item>
No newline at end of file
465 <item>
No newline at end of file
466 <widget class="QLineEdit" name="txtDcapacity">
No newline at end of file
467 <property name="text">
No newline at end of file
468 <string>4482.26928711</string>
No newline at end of file
469 </property>
No newline at end of file
470 <property name="readOnly">
No newline at end of file
471 <bool>true</bool>
No newline at end of file
472 </property>
No newline at end of file
473 </widget>
No newline at end of file
474 </item>
No newline at end of file
475 <item>
No newline at end of file
476 <widget class="QCheckBox" name="chkPSgraphic">
No newline at end of file
477 <property name="text">
No newline at end of file
478 <string>PS Graphic</string>
No newline at end of file
479 </property>
No newline at end of file
480 </widget>
No newline at end of file
481 </item>
No newline at end of file
482 <item>
No newline at end of file
483 <widget class="QLineEdit" name="lineEdit_17"/>
No newline at end of file
484 </item>
No newline at end of file
485 </layout>
No newline at end of file
486 </item>
No newline at end of file
487 </layout>
No newline at end of file
488 </widget>
No newline at end of file
489 <widget class="QWidget" name="tabSburn">
No newline at end of file
490 <attribute name="title">
No newline at end of file
491 <string>Status Burn</string>
No newline at end of file
492 </attribute>
No newline at end of file
493 <layout class="QVBoxLayout" name="verticalLayout_4">
No newline at end of file
494 <item>
No newline at end of file
495 <widget class="QWidget" name="widget_2" native="true">
No newline at end of file
496 <property name="sizePolicy">
No newline at end of file
497 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
No newline at end of file
498 <horstretch>0</horstretch>
No newline at end of file
499 <verstretch>0</verstretch>
No newline at end of file
500 </sizepolicy>
No newline at end of file
501 </property>
No newline at end of file
502 <property name="maximumSize">
No newline at end of file
503 <size>
No newline at end of file
504 <width>500</width>
No newline at end of file
505 <height>16777215</height>
No newline at end of file
506 </size>
No newline at end of file
507 </property> No newline at end of file
508 554 <layout class="QGridLayout" name="gridLayout_2"> No newline at end of file
509 555 <item row="3" column="2"> No newline at end of file
510 556 <widget class="QLineEdit" name="txtSTATUSb"/> No newline at end of file
511 557 </item> No newline at end of file
512 558 <item row="5" column="1"> No newline at end of file
513 559 <widget class="QLineEdit" name="txtINFOa"/> No newline at end of file
514 560 </item> No newline at end of file
515 561 <item row="3" column="1"> No newline at end of file
516 562 <widget class="QLineEdit" name="txtSTATUSa"/> No newline at end of file
517 563 </item> No newline at end of file
518 564 <item row="5" column="2"> No newline at end of file
519 565 <widget class="QLineEdit" name="txtINFOb"/> No newline at end of file
520 566 </item> No newline at end of file
521 567 <item row="3" column="3"> No newline at end of file
522 568 <widget class="QLineEdit" name="txtSTATUSc"/> No newline at end of file
523 569 </item> No newline at end of file
524 570 <item row="3" column="4"> No newline at end of file
525 571 <widget class="QLineEdit" name="txtSTATUSd"/> No newline at end of file
526 572 </item> No newline at end of file
527 573 <item row="5" column="4"> No newline at end of file
528 574 <widget class="QLineEdit" name="txtINFOd"/> No newline at end of file
529 575 </item> No newline at end of file
530 576 <item row="6" column="1"> No newline at end of file
531 577 <widget class="QLineEdit" name="txtSETa"/> No newline at end of file
532 578 </item> No newline at end of file
533 579 <item row="6" column="2"> No newline at end of file
534 580 <widget class="QLineEdit" name="txtSETb"/> No newline at end of file
535 581 </item> No newline at end of file
536 582 <item row="6" column="3"> No newline at end of file
537 583 <widget class="QLineEdit" name="txtSETc"/> No newline at end of file
538 584 </item> No newline at end of file
539 585 <item row="6" column="4"> No newline at end of file
540 586 <widget class="QLineEdit" name="txtSETd"/> No newline at end of file
541 587 </item> No newline at end of file
542 588 <item row="3" column="0"> No newline at end of file
543 589 <widget class="QLabel" name="lblSTATUS"> No newline at end of file
544 590 <property name="text"> No newline at end of file
545 591 <string>STATUS</string> No newline at end of file
546 592 </property> No newline at end of file
547 593 </widget> No newline at end of file
548 594 </item> No newline at end of file
549 595 <item row="5" column="0"> No newline at end of file
550 596 <widget class="QLabel" name="lblINFO"> No newline at end of file
551 597 <property name="text"> No newline at end of file
552 598 <string>INFO</string> No newline at end of file
553 599 </property> No newline at end of file
554 600 </widget> No newline at end of file
555 601 </item> No newline at end of file
556 602 <item row="6" column="0"> No newline at end of file
557 603 <widget class="QLabel" name="lblSET"> No newline at end of file
558 604 <property name="text"> No newline at end of file
559 605 <string>SET</string> No newline at end of file
560 606 </property> No newline at end of file
561 607 </widget> No newline at end of file
562 608 </item> No newline at end of file
563 609 <item row="0" column="1"> No newline at end of file
564 610 <widget class="QLabel" name="lblDevA"> No newline at end of file
565 611 <property name="text"> No newline at end of file
566 612 <string>DEV A</string> No newline at end of file
567 613 </property> No newline at end of file
568 614 <property name="alignment"> No newline at end of file
569 615 <set>Qt::AlignCenter</set> No newline at end of file
570 616 </property> No newline at end of file
571 617 </widget> No newline at end of file
572 618 </item> No newline at end of file
573 619 <item row="0" column="2"> No newline at end of file
574 620 <widget class="QLabel" name="lblDevB"> No newline at end of file
575 621 <property name="text"> No newline at end of file
576 622 <string>DEV B</string> No newline at end of file
577 623 </property> No newline at end of file
578 624 <property name="alignment"> No newline at end of file
579 625 <set>Qt::AlignCenter</set> No newline at end of file
580 626 </property> No newline at end of file
581 627 </widget> No newline at end of file
582 628 </item> No newline at end of file
583 629 <item row="0" column="3"> No newline at end of file
584 630 <widget class="QLabel" name="lblDevC"> No newline at end of file
585 631 <property name="text"> No newline at end of file
586 632 <string>DEV C</string> No newline at end of file
587 633 </property> No newline at end of file
588 634 <property name="alignment"> No newline at end of file
589 635 <set>Qt::AlignCenter</set> No newline at end of file
590 636 </property> No newline at end of file
591 637 </widget> No newline at end of file
592 638 </item> No newline at end of file
593 639 <item row="0" column="4"> No newline at end of file
594 640 <widget class="QLabel" name="lblDevD"> No newline at end of file
595 641 <property name="text"> No newline at end of file
596 642 <string>DEV D</string> No newline at end of file
597 643 </property> No newline at end of file
598 644 <property name="alignment"> No newline at end of file
599 645 <set>Qt::AlignCenter</set> No newline at end of file
600 646 </property> No newline at end of file
601 647 </widget> No newline at end of file
602 648 </item> No newline at end of file
603 649 <item row="5" column="3"> No newline at end of file
604 650 <widget class="QLineEdit" name="txtINFOc"/> No newline at end of file
605 651 </item> No newline at end of file
606 652 </layout> No newline at end of file
607 653 </widget> No newline at end of file
608 654 </item> No newline at end of file
609 655 <item> No newline at end of file
610 656 <widget class="QTextEdit" name="txtSburn"/> No newline at end of file
611 657 </item> No newline at end of file
612 658 </layout> No newline at end of file
613 659 </widget> No newline at end of file
614 660 </widget> No newline at end of file
615 661 </item> No newline at end of file
616 662 <item> No newline at end of file
617 663 <widget class="QTextEdit" name="txtInfo"> No newline at end of file
618 664 <property name="readOnly"> No newline at end of file
619 665 <bool>true</bool> No newline at end of file
620 666 </property> No newline at end of file
621 667 </widget> No newline at end of file
622 668 </item> No newline at end of file
623 669 <item> No newline at end of file
624 670 <layout class="QHBoxLayout" name="horizontalLayout_2"> No newline at end of file
625 671 <property name="sizeConstraint"> No newline at end of file
626 672 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
627 673 </property> No newline at end of file
628 674 <item> No newline at end of file
629 675 <widget class="QPushButton" name="btnGbkp"> No newline at end of file
630 676 <property name="text"> No newline at end of file
631 677 <string>Generate Bkp</string> No newline at end of file
632 678 </property> No newline at end of file
633 679 </widget> No newline at end of file
634 680 </item> No newline at end of file
635 681 <item> No newline at end of file
636 682 <widget class="QPushButton" name="btnRestart"> No newline at end of file
637 683 <property name="text"> No newline at end of file
638 684 <string>Restart</string> No newline at end of file
639 685 </property> No newline at end of file
640 686 </widget> No newline at end of file
641 687 </item> No newline at end of file
642 688 <item> No newline at end of file
643 689 <widget class="QPushButton" name="btnStartburn"> No newline at end of file
644 690 <property name="text"> No newline at end of file
645 691 <string>Start Burn</string> No newline at end of file
646 692 </property> No newline at end of file
647 693 </widget> No newline at end of file
648 694 </item> No newline at end of file
649 695 <item> No newline at end of file
650 696 <widget class="QPushButton" name="btnStopburn"> No newline at end of file
651 697 <property name="text"> No newline at end of file
652 698 <string>Stop Burn</string> No newline at end of file
653 699 </property> No newline at end of file
654 700 </widget> No newline at end of file
655 701 </item> No newline at end of file
656 702 </layout> No newline at end of file
657 703 </item> No newline at end of file
658 704 </layout> No newline at end of file
659 705 </widget> No newline at end of file
660 706 <widget class="QMenuBar" name="menubar"> No newline at end of file
661 707 <property name="geometry"> No newline at end of file
662 708 <rect> No newline at end of file
663 709 <x>0</x> No newline at end of file
664 710 <y>0</y>
711 No newline at end of file
665 <width>593</width> No newline at end of file
666 712 <height>25</height> No newline at end of file
667 713 </rect> No newline at end of file
668 714 </property> No newline at end of file
669 715 <widget class="QMenu" name="menuFile"> No newline at end of file
670 716 <property name="title"> No newline at end of file
671 717 <string>File</string> No newline at end of file
672 718 </property> No newline at end of file
673 719 <addaction name="actionSave_Config"/> No newline at end of file
674 720 <addaction name="actionQuit"/> No newline at end of file
675 721 </widget> No newline at end of file
676 722 <widget class="QMenu" name="menuParameters"> No newline at end of file
677 723 <property name="title"> No newline at end of file
678 724 <string>Parameters</string> No newline at end of file
679 725 </property> No newline at end of file
680 726 <addaction name="actionChange_Parameters"/> No newline at end of file
681 727 </widget> No newline at end of file
682 728 <widget class="QMenu" name="menuHelp"> No newline at end of file
683 729 <property name="title"> No newline at end of file
684 730 <string>Help</string> No newline at end of file
685 731 </property> No newline at end of file
686 732 <addaction name="actionAbout"/> No newline at end of file
687 733 </widget> No newline at end of file
688 734 <addaction name="menuFile"/> No newline at end of file
689 735 <addaction name="menuParameters"/> No newline at end of file
690 736 <addaction name="menuHelp"/> No newline at end of file
691 737 </widget> No newline at end of file
692 738 <widget class="QStatusBar" name="statusbar"/> No newline at end of file
693 739 <action name="actionChange_Parameters"> No newline at end of file
694 740 <property name="text"> No newline at end of file
695 741 <string>Change Parameters</string> No newline at end of file
696 742 </property> No newline at end of file
697 743 </action> No newline at end of file
698 744 <action name="actionSave_Config"> No newline at end of file
699 745 <property name="text"> No newline at end of file
700 746 <string>Save Config</string> No newline at end of file
701 747 </property> No newline at end of file
702 748 </action> No newline at end of file
703 749 <action name="actionQuit"> No newline at end of file
704 750 <property name="text"> No newline at end of file
705 751 <string>Quit</string> No newline at end of file
706 752 </property> No newline at end of file
707 753 </action> No newline at end of file
708 754 <action name="actionAbout"> No newline at end of file
709 755 <property name="text"> No newline at end of file
710 756 <string>About</string> No newline at end of file
711 757 </property> No newline at end of file
712 758 </action> No newline at end of file
713 759 </widget> No newline at end of file
714 760 <tabstops> No newline at end of file
715 761 <tabstop>txtDpath</tabstop> No newline at end of file
716 762 <tabstop>btnDpath</tabstop> No newline at end of file
717 763 <tabstop>txtRpath</tabstop> No newline at end of file
718 764 <tabstop>btnRpath</tabstop> No newline at end of file
719 765 <tabstop>lstDtype</tabstop> No newline at end of file
720 766 <tabstop>txtDtype</tabstop> No newline at end of file
721 767 <tabstop>chkMST</tabstop> No newline at end of file
722 768 <tabstop>txtElabel</tabstop> No newline at end of file
723 769 <tabstop>txtCopys</tabstop> No newline at end of file
724 770 <tabstop>lstStartDay</tabstop> No newline at end of file
725 771 <tabstop>lstStopDay</tabstop>
No newline at end of file
726 <tabstop>chkDevA</tabstop>
No newline at end of file
727 <tabstop>chkDevB</tabstop>
No newline at end of file
728 <tabstop>chkDevC</tabstop>
No newline at end of file
729 <tabstop>chkDevD</tabstop>
No newline at end of file
730 <tabstop>txtDeviceA</tabstop>
No newline at end of file
731 <tabstop>txtDeviceB</tabstop>
No newline at end of file
732 <tabstop>txtDeviceC</tabstop>
No newline at end of file
733 <tabstop>txtDeviceD</tabstop>
No newline at end of file
734 <tabstop>txtBspeedA</tabstop>
No newline at end of file
735 <tabstop>txtBspeedB</tabstop>
No newline at end of file
736 <tabstop>txtBspeedC</tabstop>
No newline at end of file
737 <tabstop>txtBspeedD</tabstop>
No newline at end of file
738 <tabstop>txtBmodeA</tabstop>
No newline at end of file
739 <tabstop>txtBmodeB</tabstop>
No newline at end of file
740 <tabstop>txtBmodeC</tabstop>
No newline at end of file
741 <tabstop>txtBmodeD</tabstop>
No newline at end of file
742 <tabstop>btnTdevA</tabstop>
No newline at end of file
743 <tabstop>btnTdevB</tabstop>
No newline at end of file
744 <tabstop>btnTdevC</tabstop>
No newline at end of file
745 <tabstop>btnTdevD</tabstop> No newline at end of file
746 772 <tabstop>chkSimultaneously</tabstop> No newline at end of file
747 773 <tabstop>chkSequentially</tabstop> No newline at end of file
748 774 <tabstop>chkSalert</tabstop> No newline at end of file
749 775 <tabstop>lstDcapacity</tabstop> No newline at end of file
750 776 <tabstop>txtDcapacity</tabstop> No newline at end of file
751 777 <tabstop>chkPSgraphic</tabstop> No newline at end of file
752 778 <tabstop>lineEdit_17</tabstop> No newline at end of file
753 779 <tabstop>txtSTATUSa</tabstop> No newline at end of file
754 780 <tabstop>txtSTATUSb</tabstop> No newline at end of file
755 781 <tabstop>txtSTATUSc</tabstop> No newline at end of file
756 782 <tabstop>txtSTATUSd</tabstop> No newline at end of file
757 783 <tabstop>txtINFOa</tabstop> No newline at end of file
758 784 <tabstop>txtINFOb</tabstop> No newline at end of file
759 785 <tabstop>txtINFOc</tabstop> No newline at end of file
760 786 <tabstop>txtINFOd</tabstop> No newline at end of file
761 787 <tabstop>txtSETa</tabstop> No newline at end of file
762 788 <tabstop>txtSETb</tabstop> No newline at end of file
763 789 <tabstop>txtSETc</tabstop> No newline at end of file
764 790 <tabstop>txtSETd</tabstop> No newline at end of file
765 791 <tabstop>tabWidget</tabstop> No newline at end of file
766 792 <tabstop>txtSburn</tabstop> No newline at end of file
767 793 <tabstop>btnGbkp</tabstop> No newline at end of file
768 794 <tabstop>btnRestart</tabstop> No newline at end of file
769 795 <tabstop>btnStartburn</tabstop> No newline at end of file
770 796 <tabstop>btnStopburn</tabstop> No newline at end of file
771 797 </tabstops> No newline at end of file
772 798 <resources/> No newline at end of file
773 799 <connections> No newline at end of file
774 800 <connection>
801 No newline at end of file
775 <sender>chkDevA</sender>
No newline at end of file
802 No newline at end of file
776 <signal>toggled(bool)</signal>
No newline at end of file
803 No newline at end of file
777 <receiver>txtDeviceA</receiver>
No newline at end of file
804 No newline at end of file
778 <slot>setEnabled(bool)</slot> No newline at end of file
779 805 <hints> No newline at end of file
780 806 <hint type="sourcelabel">
807 No newline at end of file
781 <x>102</x>
No newline at end of file
808 No newline at end of file
782 <y>93</y> No newline at end of file
783 809 </hint> No newline at end of file
784 810 <hint type="destinationlabel">
811 No newline at end of file
785 <x>102</x>
No newline at end of file
812 No newline at end of file
786 <y>135</y> No newline at end of file
No newline at end of file
813 </hint>
No newline at end of file
814 </hints>
No newline at end of file
815 </connection>
No newline at end of file
816 <connection>
No newline at end of file
817 <sender>chkSimultaneously</sender>
No newline at end of file
818 <signal>clicked()</signal>
No newline at end of file
819 <receiver>chkSequentially</receiver>
No newline at end of file
820 <slot>toggle()</slot>
No newline at end of file
821 <hints>
No newline at end of file
822 <hint type="sourcelabel">
No newline at end of file
823 <x>350</x>
No newline at end of file
824 <y>282</y>
No newline at end of file
825 </hint>
No newline at end of file
826 <hint type="destinationlabel">
No newline at end of file
827 <x>436</x>
No newline at end of file
828 <y>278</y> No newline at end of file
787 829 </hint> No newline at end of file
788 830 </hints> No newline at end of file
789 831 </connection> No newline at end of file
790 832 </connections> No newline at end of file
791 833 </ui> No newline at end of file
@@ -1,544 +1,553
1 1 # -*- coding: utf-8 -*- No newline at end of file
2 2 No newline at end of file
3 3 # Form implementation generated from reading ui file '/home/ricardoar/principal/JRO_SVN/eric4/jro_backup_manager/ui/MainWindow.ui' No newline at end of file
4 4 #
5 No newline at end of file
5 # Created: Tue Apr 27 17:26:12 2010
No newline at end of file
6 No newline at end of file
6 # by: PyQt4 UI code generator 4.7.2 No newline at end of file
7 7 # No newline at end of file
8 8 # WARNING! All changes made in this file will be lost! No newline at end of file
9 9 No newline at end of file
10 10 from PyQt4 import QtCore, QtGui No newline at end of file
11 11 No newline at end of file
12 12 class Ui_MainWindow(object): No newline at end of file
13 13 def setupUi(self, MainWindow): No newline at end of file
14 14 MainWindow.setObjectName("MainWindow")
15 No newline at end of file
15 MainWindow.resize(593, 787) No newline at end of file
16 16 self.centralwidget = QtGui.QWidget(MainWindow) No newline at end of file
17 17 self.centralwidget.setObjectName("centralwidget")
18 No newline at end of file
18 self.verticalLayout_3 = QtGui.QVBoxLayout(self.centralwidget)
No newline at end of file
19 No newline at end of file
19 self.verticalLayout_3.setObjectName("verticalLayout_3") No newline at end of file
20 20 self.tabWidget = QtGui.QTabWidget(self.centralwidget) No newline at end of file
21 21 self.tabWidget.setEnabled(True) No newline at end of file
22 22 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) No newline at end of file
23 23 sizePolicy.setHorizontalStretch(0) No newline at end of file
24 24 sizePolicy.setVerticalStretch(0) No newline at end of file
25 25 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth()) No newline at end of file
26 26 self.tabWidget.setSizePolicy(sizePolicy) No newline at end of file
27 27 self.tabWidget.setObjectName("tabWidget") No newline at end of file
28 28 self.tabParameters = QtGui.QWidget() No newline at end of file
29 29 self.tabParameters.setEnabled(True) No newline at end of file
30 30 self.tabParameters.setObjectName("tabParameters") No newline at end of file
31 31 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters) No newline at end of file
32 32 self.verticalLayout_2.setObjectName("verticalLayout_2") No newline at end of file
33 33 self.horizontalLayout = QtGui.QHBoxLayout() No newline at end of file
34 34 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
35 35 self.horizontalLayout.setObjectName("horizontalLayout") No newline at end of file
36 36 self.txtDpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
37 37 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) No newline at end of file
38 38 sizePolicy.setHorizontalStretch(0) No newline at end of file
39 39 sizePolicy.setVerticalStretch(0) No newline at end of file
40 40 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
41 41 self.txtDpath.setSizePolicy(sizePolicy) No newline at end of file
42 42 self.txtDpath.setObjectName("txtDpath") No newline at end of file
43 43 self.horizontalLayout.addWidget(self.txtDpath) No newline at end of file
44 44 self.btnDpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
45 45 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
46 46 sizePolicy.setHorizontalStretch(0) No newline at end of file
47 47 sizePolicy.setVerticalStretch(0) No newline at end of file
48 48 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
49 49 self.btnDpath.setSizePolicy(sizePolicy) No newline at end of file
50 50 self.btnDpath.setCheckable(False) No newline at end of file
51 51 self.btnDpath.setObjectName("btnDpath") No newline at end of file
52 52 self.horizontalLayout.addWidget(self.btnDpath) No newline at end of file
53 53 self.verticalLayout_2.addLayout(self.horizontalLayout) No newline at end of file
54 54 self.horizontalLayout_3 = QtGui.QHBoxLayout() No newline at end of file
55 55 self.horizontalLayout_3.setObjectName("horizontalLayout_3") No newline at end of file
56 56 self.txtRpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
57 57 self.txtRpath.setObjectName("txtRpath") No newline at end of file
58 58 self.horizontalLayout_3.addWidget(self.txtRpath) No newline at end of file
59 59 self.btnRpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
60 60 self.btnRpath.setObjectName("btnRpath") No newline at end of file
61 61 self.horizontalLayout_3.addWidget(self.btnRpath) No newline at end of file
62 62 self.verticalLayout_2.addLayout(self.horizontalLayout_3) No newline at end of file
63 63 self.lblDtype = QtGui.QLabel(self.tabParameters) No newline at end of file
64 64 self.lblDtype.setObjectName("lblDtype") No newline at end of file
65 65 self.verticalLayout_2.addWidget(self.lblDtype) No newline at end of file
66 66 self.horizontalLayout_4 = QtGui.QHBoxLayout() No newline at end of file
67 67 self.horizontalLayout_4.setObjectName("horizontalLayout_4") No newline at end of file
68 68 self.lstDtype = QtGui.QComboBox(self.tabParameters) No newline at end of file
69 69 self.lstDtype.setObjectName("lstDtype") No newline at end of file
70 70 self.lstDtype.addItem("") No newline at end of file
71 71 self.lstDtype.addItem("") No newline at end of file
72 72 self.lstDtype.addItem("") No newline at end of file
73 73 self.lstDtype.addItem("") No newline at end of file
74 74 self.horizontalLayout_4.addWidget(self.lstDtype) No newline at end of file
75 75 self.txtDtype = QtGui.QLineEdit(self.tabParameters) No newline at end of file
76 76 self.txtDtype.setReadOnly(True) No newline at end of file
77 77 self.txtDtype.setObjectName("txtDtype") No newline at end of file
78 78 self.horizontalLayout_4.addWidget(self.txtDtype) No newline at end of file
79 79 self.chkMST = QtGui.QCheckBox(self.tabParameters) No newline at end of file
80 80 self.chkMST.setObjectName("chkMST") No newline at end of file
81 81 self.horizontalLayout_4.addWidget(self.chkMST) No newline at end of file
82 82 self.verticalLayout_2.addLayout(self.horizontalLayout_4) No newline at end of file
83 83 self.horizontalLayout_6 = QtGui.QHBoxLayout() No newline at end of file
84 84 self.horizontalLayout_6.setObjectName("horizontalLayout_6") No newline at end of file
85 85 self.lblElabel = QtGui.QLabel(self.tabParameters) No newline at end of file
86 86 self.lblElabel.setObjectName("lblElabel") No newline at end of file
87 87 self.horizontalLayout_6.addWidget(self.lblElabel) No newline at end of file
88 88 self.lblCopys = QtGui.QLabel(self.tabParameters) No newline at end of file
89 89 self.lblCopys.setObjectName("lblCopys") No newline at end of file
90 90 self.horizontalLayout_6.addWidget(self.lblCopys) No newline at end of file
91 91 self.verticalLayout_2.addLayout(self.horizontalLayout_6) No newline at end of file
92 92 self.horizontalLayout_5 = QtGui.QHBoxLayout() No newline at end of file
93 93 self.horizontalLayout_5.setObjectName("horizontalLayout_5") No newline at end of file
94 94 self.txtElabel = QtGui.QLineEdit(self.tabParameters) No newline at end of file
95 95 self.txtElabel.setObjectName("txtElabel") No newline at end of file
96 96 self.horizontalLayout_5.addWidget(self.txtElabel) No newline at end of file
97 97 self.txtCopys = QtGui.QLineEdit(self.tabParameters) No newline at end of file
98 98 self.txtCopys.setObjectName("txtCopys") No newline at end of file
99 99 self.horizontalLayout_5.addWidget(self.txtCopys) No newline at end of file
100 100 self.verticalLayout_2.addLayout(self.horizontalLayout_5) No newline at end of file
101 101 self.horizontalLayout_7 = QtGui.QHBoxLayout() No newline at end of file
102 102 self.horizontalLayout_7.setObjectName("horizontalLayout_7") No newline at end of file
103 103 self.lblStartDay = QtGui.QLabel(self.tabParameters) No newline at end of file
104 104 self.lblStartDay.setObjectName("lblStartDay") No newline at end of file
105 105 self.horizontalLayout_7.addWidget(self.lblStartDay) No newline at end of file
106 106 self.lblStopDay = QtGui.QLabel(self.tabParameters) No newline at end of file
107 107 self.lblStopDay.setObjectName("lblStopDay") No newline at end of file
108 108 self.horizontalLayout_7.addWidget(self.lblStopDay) No newline at end of file
109 109 self.verticalLayout_2.addLayout(self.horizontalLayout_7) No newline at end of file
110 110 self.horizontalLayout_8 = QtGui.QHBoxLayout() No newline at end of file
111 111 self.horizontalLayout_8.setObjectName("horizontalLayout_8") No newline at end of file
112 112 self.lstStartDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
113 113 self.lstStartDay.setObjectName("lstStartDay") No newline at end of file
114 114 self.horizontalLayout_8.addWidget(self.lstStartDay) No newline at end of file
115 115 self.lstStopDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
116 116 self.lstStopDay.setObjectName("lstStopDay") No newline at end of file
117 117 self.horizontalLayout_8.addWidget(self.lstStopDay) No newline at end of file
118 118 self.verticalLayout_2.addLayout(self.horizontalLayout_8) No newline at end of file
119 119 self.tabWidget.addTab(self.tabParameters, "") No newline at end of file
120 120 self.tabDconfig = QtGui.QWidget() No newline at end of file
121 121 self.tabDconfig.setEnabled(True) No newline at end of file
122 122 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
123 123 sizePolicy.setHorizontalStretch(0) No newline at end of file
124 124 sizePolicy.setVerticalStretch(0) No newline at end of file
125 125 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth()) No newline at end of file
126 126 self.tabDconfig.setSizePolicy(sizePolicy) No newline at end of file
127 127 self.tabDconfig.setObjectName("tabDconfig")
128 No newline at end of file
128 self.verticalLayout = QtGui.QVBoxLayout(self.tabDconfig)
No newline at end of file
129 No newline at end of file
129 self.verticalLayout.setObjectName("verticalLayout")
No newline at end of file
130 No newline at end of file
130 self.widget = QtGui.QWidget(self.tabDconfig)
No newline at end of file
131 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
No newline at end of file
132 sizePolicy.setHorizontalStretch(0)
No newline at end of file
133 sizePolicy.setVerticalStretch(0)
No newline at end of file
134 sizePolicy.setHeightForWidth(self.widget.sizePolicy().hasHeightForWidth())
No newline at end of file
135 self.widget.setSizePolicy(sizePolicy)
No newline at end of file
136 self.widget.setMaximumSize(QtCore.QSize(500, 16777215))
No newline at end of file
137 self.widget.setObjectName("widget")
No newline at end of file
138 self.gridLayout = QtGui.QGridLayout(self.widget) No newline at end of file
139 131 self.gridLayout.setObjectName("gridLayout")
132 No newline at end of file
140 self.chkDevA = QtGui.QCheckBox(self.widget) No newline at end of file
No newline at end of file
133 self.verticalLayout_15.setObjectName("verticalLayout_15")
No newline at end of file
134 self.chkDevA = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
141 135 self.chkDevA.setObjectName("chkDevA")
136 No newline at end of file
142 self.gridLayout.addWidget(self.chkDevA, 0, 0, 1, 1)
No newline at end of file
137 No newline at end of file
143 self.chkDevB = QtGui.QCheckBox(self.widget) No newline at end of file
No newline at end of file
138 self.verticalLayout_11.setObjectName("verticalLayout_11")
No newline at end of file
139 self.txtDeviceA = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
140 self.txtDeviceA.setObjectName("txtDeviceA")
No newline at end of file
141 self.verticalLayout_11.addWidget(self.txtDeviceA)
No newline at end of file
142 self.txtBspeedA = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
143 self.txtBspeedA.setObjectName("txtBspeedA")
No newline at end of file
144 self.verticalLayout_11.addWidget(self.txtBspeedA)
No newline at end of file
145 self.txtBmodeA = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
146 self.txtBmodeA.setObjectName("txtBmodeA")
No newline at end of file
147 self.verticalLayout_11.addWidget(self.txtBmodeA)
No newline at end of file
148 self.btnTdevA = QtGui.QPushButton(self.tabDconfig)
No newline at end of file
149 self.btnTdevA.setObjectName("btnTdevA")
No newline at end of file
150 self.verticalLayout_11.addWidget(self.btnTdevA)
No newline at end of file
151 self.verticalLayout_15.addLayout(self.verticalLayout_11)
No newline at end of file
152 self.gridLayout.addLayout(self.verticalLayout_15, 0, 0, 1, 1)
No newline at end of file
153 self.verticalLayout_16 = QtGui.QVBoxLayout()
No newline at end of file
154 self.verticalLayout_16.setObjectName("verticalLayout_16")
No newline at end of file
155 self.chkDevB = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
144 156 self.chkDevB.setObjectName("chkDevB")
157 No newline at end of file
145 self.gridLayout.addWidget(self.chkDevB, 0, 1, 1, 1)
No newline at end of file
158 No newline at end of file
146 self.chkDevC = QtGui.QCheckBox(self.widget) No newline at end of file
No newline at end of file
159 self.verticalLayout_12.setObjectName("verticalLayout_12")
No newline at end of file
160 self.txtDeviceB = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
161 self.txtDeviceB.setObjectName("txtDeviceB")
No newline at end of file
162 self.verticalLayout_12.addWidget(self.txtDeviceB)
No newline at end of file
163 self.txtBspeedB = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
164 self.txtBspeedB.setObjectName("txtBspeedB")
No newline at end of file
165 self.verticalLayout_12.addWidget(self.txtBspeedB)
No newline at end of file
166 self.txtBmodeB = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
167 self.txtBmodeB.setObjectName("txtBmodeB")
No newline at end of file
168 self.verticalLayout_12.addWidget(self.txtBmodeB)
No newline at end of file
169 self.btnTdevB = QtGui.QPushButton(self.tabDconfig)
No newline at end of file
170 self.btnTdevB.setObjectName("btnTdevB")
No newline at end of file
171 self.verticalLayout_12.addWidget(self.btnTdevB)
No newline at end of file
172 self.verticalLayout_16.addLayout(self.verticalLayout_12)
No newline at end of file
173 self.gridLayout.addLayout(self.verticalLayout_16, 0, 1, 1, 1)
No newline at end of file
174 self.verticalLayout_17 = QtGui.QVBoxLayout()
No newline at end of file
175 self.verticalLayout_17.setObjectName("verticalLayout_17")
No newline at end of file
176 self.chkDevC = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
147 177 self.chkDevC.setObjectName("chkDevC")
178 No newline at end of file
148 self.gridLayout.addWidget(self.chkDevC, 0, 2, 1, 1)
No newline at end of file
179 No newline at end of file
149 self.chkDevD = QtGui.QCheckBox(self.widget) No newline at end of file
No newline at end of file
180 self.verticalLayout_13.setObjectName("verticalLayout_13")
No newline at end of file
181 self.txtDeviceC = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
182 self.txtDeviceC.setObjectName("txtDeviceC")
No newline at end of file
183 self.verticalLayout_13.addWidget(self.txtDeviceC)
No newline at end of file
184 self.txtBspeedC = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
185 self.txtBspeedC.setObjectName("txtBspeedC")
No newline at end of file
186 self.verticalLayout_13.addWidget(self.txtBspeedC)
No newline at end of file
187 self.txtBmodeC = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
188 self.txtBmodeC.setObjectName("txtBmodeC")
No newline at end of file
189 self.verticalLayout_13.addWidget(self.txtBmodeC)
No newline at end of file
190 self.btnTdevC = QtGui.QPushButton(self.tabDconfig)
No newline at end of file
191 self.btnTdevC.setObjectName("btnTdevC")
No newline at end of file
192 self.verticalLayout_13.addWidget(self.btnTdevC)
No newline at end of file
193 self.verticalLayout_17.addLayout(self.verticalLayout_13)
No newline at end of file
194 self.gridLayout.addLayout(self.verticalLayout_17, 0, 2, 1, 1)
No newline at end of file
195 self.verticalLayout_18 = QtGui.QVBoxLayout()
No newline at end of file
196 self.verticalLayout_18.setObjectName("verticalLayout_18")
No newline at end of file
197 self.chkDevD = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
150 198 self.chkDevD.setObjectName("chkDevD")
199 No newline at end of file
151 self.gridLayout.addWidget(self.chkDevD, 0, 3, 1, 1)
No newline at end of file
200 No newline at end of file
152 self.txtDeviceB = QtGui.QLineEdit(self.widget)
No newline at end of file
201 No newline at end of file
153 self.txtDeviceB.setObjectName("txtDeviceB")
No newline at end of file
202 No newline at end of file
154 self.gridLayout.addWidget(self.txtDeviceB, 2, 1, 1, 1)
No newline at end of file
203 No newline at end of file
155 self.txtBspeedA = QtGui.QLineEdit(self.widget)
No newline at end of file
204 No newline at end of file
156 self.txtBspeedA.setObjectName("txtBspeedA")
No newline at end of file
205 No newline at end of file
157 self.gridLayout.addWidget(self.txtBspeedA, 4, 0, 1, 1)
No newline at end of file
206 No newline at end of file
158 self.txtDeviceA = QtGui.QLineEdit(self.widget)
No newline at end of file
207 No newline at end of file
159 self.txtDeviceA.setObjectName("txtDeviceA")
No newline at end of file
208 No newline at end of file
160 self.gridLayout.addWidget(self.txtDeviceA, 2, 0, 1, 1)
No newline at end of file
209 No newline at end of file
161 self.txtBspeedB = QtGui.QLineEdit(self.widget)
No newline at end of file
210 No newline at end of file
162 self.txtBspeedB.setObjectName("txtBspeedB")
No newline at end of file
211 No newline at end of file
163 self.gridLayout.addWidget(self.txtBspeedB, 4, 1, 1, 1)
No newline at end of file
212 No newline at end of file
164 self.lblDevice = QtGui.QLabel(self.widget) No newline at end of file
No newline at end of file
213 self.verticalLayout_14.addWidget(self.btnTdevD)
No newline at end of file
214 self.verticalLayout_18.addLayout(self.verticalLayout_14)
No newline at end of file
215 self.gridLayout.addLayout(self.verticalLayout_18, 0, 3, 1, 1)
No newline at end of file
216 self.verticalLayout_19 = QtGui.QVBoxLayout()
No newline at end of file
217 self.verticalLayout_19.setObjectName("verticalLayout_19")
No newline at end of file
218 self.label_2 = QtGui.QLabel(self.tabDconfig)
No newline at end of file
219 self.label_2.setText("")
No newline at end of file
220 self.label_2.setObjectName("label_2")
No newline at end of file
221 self.verticalLayout_19.addWidget(self.label_2)
No newline at end of file
222 self.lblDevice = QtGui.QLabel(self.tabDconfig) No newline at end of file
165 223 self.lblDevice.setObjectName("lblDevice")
224 No newline at end of file
166 self.gridLayout.addWidget(self.lblDevice, 2, 4, 1, 1)
No newline at end of file
225 No newline at end of file
167 self.txtDeviceC = QtGui.QLineEdit(self.widget)
No newline at end of file
168 self.txtDeviceC.setObjectName("txtDeviceC")
No newline at end of file
169 self.gridLayout.addWidget(self.txtDeviceC, 2, 2, 1, 1)
No newline at end of file
170 self.txtDeviceD = QtGui.QLineEdit(self.widget)
No newline at end of file
171 self.txtDeviceD.setObjectName("txtDeviceD")
No newline at end of file
172 self.gridLayout.addWidget(self.txtDeviceD, 2, 3, 1, 1)
No newline at end of file
173 self.txtBspeedD = QtGui.QLineEdit(self.widget)
No newline at end of file
174 self.txtBspeedD.setObjectName("txtBspeedD")
No newline at end of file
175 self.gridLayout.addWidget(self.txtBspeedD, 4, 3, 1, 1)
No newline at end of file
176 self.txtBmodeA = QtGui.QLineEdit(self.widget)
No newline at end of file
177 self.txtBmodeA.setObjectName("txtBmodeA")
No newline at end of file
178 self.gridLayout.addWidget(self.txtBmodeA, 5, 0, 1, 1)
No newline at end of file
179 self.txtBmodeB = QtGui.QLineEdit(self.widget)
No newline at end of file
180 self.txtBmodeB.setObjectName("txtBmodeB")
No newline at end of file
181 self.gridLayout.addWidget(self.txtBmodeB, 5, 1, 1, 1)
No newline at end of file
182 self.lblBspeed = QtGui.QLabel(self.widget) No newline at end of file
183 226 self.lblBspeed.setObjectName("lblBspeed")
227 No newline at end of file
184 self.gridLayout.addWidget(self.lblBspeed, 4, 4, 1, 1)
No newline at end of file
228 No newline at end of file
185 self.lblBmode = QtGui.QLabel(self.widget) No newline at end of file
186 229 self.lblBmode.setObjectName("lblBmode")
230 No newline at end of file
187 self.gridLayout.addWidget(self.lblBmode, 5, 4, 1, 1)
No newline at end of file
231 No newline at end of file
188 self.txtBmodeC = QtGui.QLineEdit(self.widget)
No newline at end of file
232 No newline at end of file
189 self.txtBmodeC.setObjectName("txtBmodeC")
No newline at end of file
233 No newline at end of file
190 self.gridLayout.addWidget(self.txtBmodeC, 5, 2, 1, 1)
No newline at end of file
234 No newline at end of file
191 self.txtBmodeD = QtGui.QLineEdit(self.widget)
No newline at end of file
235 No newline at end of file
192 self.txtBmodeD.setObjectName("txtBmodeD")
No newline at end of file
236 No newline at end of file
193 self.gridLayout.addWidget(self.txtBmodeD, 5, 3, 1, 1)
No newline at end of file
194 self.btnTdevA = QtGui.QPushButton(self.widget)
No newline at end of file
195 self.btnTdevA.setObjectName("btnTdevA")
No newline at end of file
196 self.gridLayout.addWidget(self.btnTdevA, 6, 0, 1, 1)
No newline at end of file
197 self.btnTdevB = QtGui.QPushButton(self.widget)
No newline at end of file
198 self.btnTdevB.setObjectName("btnTdevB")
No newline at end of file
199 self.gridLayout.addWidget(self.btnTdevB, 6, 1, 1, 1)
No newline at end of file
200 self.btnTdevC = QtGui.QPushButton(self.widget)
No newline at end of file
201 self.btnTdevC.setObjectName("btnTdevC")
No newline at end of file
202 self.gridLayout.addWidget(self.btnTdevC, 6, 2, 1, 1)
No newline at end of file
203 self.btnTdevD = QtGui.QPushButton(self.widget)
No newline at end of file
204 self.btnTdevD.setObjectName("btnTdevD")
No newline at end of file
205 self.gridLayout.addWidget(self.btnTdevD, 6, 3, 1, 1)
No newline at end of file
206 self.txtBspeedC = QtGui.QLineEdit(self.widget)
No newline at end of file
207 self.txtBspeedC.setObjectName("txtBspeedC")
No newline at end of file
208 self.gridLayout.addWidget(self.txtBspeedC, 4, 2, 1, 1)
No newline at end of file
209 self.verticalLayout.addWidget(self.widget) No newline at end of file
210 237 self.horizontalLayout_9 = QtGui.QHBoxLayout() No newline at end of file
211 238 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
212 239 self.horizontalLayout_9.setObjectName("horizontalLayout_9") No newline at end of file
213 240 self.lblBprocess = QtGui.QLabel(self.tabDconfig) No newline at end of file
214 241 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
215 242 sizePolicy.setHorizontalStretch(0) No newline at end of file
216 243 sizePolicy.setVerticalStretch(0) No newline at end of file
217 244 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth()) No newline at end of file
218 245 self.lblBprocess.setSizePolicy(sizePolicy) No newline at end of file
219 246 self.lblBprocess.setObjectName("lblBprocess") No newline at end of file
220 247 self.horizontalLayout_9.addWidget(self.lblBprocess) No newline at end of file
221 248 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
222 249 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
223 250 sizePolicy.setHorizontalStretch(0) No newline at end of file
224 251 sizePolicy.setVerticalStretch(0) No newline at end of file
225 252 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth()) No newline at end of file
226 253 self.chkSimultaneously.setSizePolicy(sizePolicy) No newline at end of file
227 254 self.chkSimultaneously.setObjectName("chkSimultaneously") No newline at end of file
228 255 self.horizontalLayout_9.addWidget(self.chkSimultaneously) No newline at end of file
229 256 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
230 257 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
231 258 sizePolicy.setHorizontalStretch(0) No newline at end of file
232 259 sizePolicy.setVerticalStretch(0) No newline at end of file
233 260 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth()) No newline at end of file
234 261 self.chkSequentially.setSizePolicy(sizePolicy) No newline at end of file
262 self.chkSequentially.setChecked(True) No newline at end of file
235 263 self.chkSequentially.setObjectName("chkSequentially") No newline at end of file
236 264 self.horizontalLayout_9.addWidget(self.chkSequentially)
265 No newline at end of file
237 self.verticalLayout.addLayout(self.horizontalLayout_9) No newline at end of file
238 266 self.horizontalLayout_11 = QtGui.QHBoxLayout() No newline at end of file
239 267 self.horizontalLayout_11.setSpacing(6) No newline at end of file
240 268 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
241 269 self.horizontalLayout_11.setObjectName("horizontalLayout_11") No newline at end of file
242 270 self.lblDcapacity = QtGui.QLabel(self.tabDconfig) No newline at end of file
243 271 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
244 272 sizePolicy.setHorizontalStretch(0) No newline at end of file
245 273 sizePolicy.setVerticalStretch(0) No newline at end of file
246 274 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
247 275 self.lblDcapacity.setSizePolicy(sizePolicy) No newline at end of file
248 276 self.lblDcapacity.setObjectName("lblDcapacity") No newline at end of file
249 277 self.horizontalLayout_11.addWidget(self.lblDcapacity) No newline at end of file
250 278 self.chkSalert = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
251 279 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
252 280 sizePolicy.setHorizontalStretch(0) No newline at end of file
253 281 sizePolicy.setVerticalStretch(0) No newline at end of file
254 282 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth()) No newline at end of file
255 283 self.chkSalert.setSizePolicy(sizePolicy) No newline at end of file
256 284 self.chkSalert.setObjectName("chkSalert") No newline at end of file
257 285 self.horizontalLayout_11.addWidget(self.chkSalert)
286 No newline at end of file
258 self.verticalLayout.addLayout(self.horizontalLayout_11) No newline at end of file
259 287 self.horizontalLayout_10 = QtGui.QHBoxLayout() No newline at end of file
260 288 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
261 289 self.horizontalLayout_10.setObjectName("horizontalLayout_10") No newline at end of file
262 290 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig) No newline at end of file
263 291 self.lstDcapacity.setObjectName("lstDcapacity") No newline at end of file
264 292 self.lstDcapacity.addItem("") No newline at end of file
265 293 self.lstDcapacity.addItem("") No newline at end of file
266 294 self.lstDcapacity.addItem("") No newline at end of file
267 295 self.lstDcapacity.addItem("") No newline at end of file
268 296 self.lstDcapacity.addItem("") No newline at end of file
269 297 self.horizontalLayout_10.addWidget(self.lstDcapacity) No newline at end of file
270 298 self.txtDcapacity = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
271 299 self.txtDcapacity.setReadOnly(True) No newline at end of file
272 300 self.txtDcapacity.setObjectName("txtDcapacity") No newline at end of file
273 301 self.horizontalLayout_10.addWidget(self.txtDcapacity) No newline at end of file
274 302 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
275 303 self.chkPSgraphic.setObjectName("chkPSgraphic") No newline at end of file
276 304 self.horizontalLayout_10.addWidget(self.chkPSgraphic) No newline at end of file
277 305 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
278 306 self.lineEdit_17.setObjectName("lineEdit_17") No newline at end of file
279 307 self.horizontalLayout_10.addWidget(self.lineEdit_17)
308 No newline at end of file
280 self.verticalLayout.addLayout(self.horizontalLayout_10) No newline at end of file
281 309 self.tabWidget.addTab(self.tabDconfig, "") No newline at end of file
282 310 self.tabSburn = QtGui.QWidget() No newline at end of file
283 311 self.tabSburn.setObjectName("tabSburn") No newline at end of file
284 312 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn) No newline at end of file
285 313 self.verticalLayout_4.setObjectName("verticalLayout_4") No newline at end of file
286 314 self.widget_2 = QtGui.QWidget(self.tabSburn) No newline at end of file
287 315 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
288 316 sizePolicy.setHorizontalStretch(0) No newline at end of file
289 317 sizePolicy.setVerticalStretch(0) No newline at end of file
290 318 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth()) No newline at end of file
291 319 self.widget_2.setSizePolicy(sizePolicy) No newline at end of file
292 320 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
293 321 self.widget_2.setObjectName("widget_2") No newline at end of file
294 322 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2) No newline at end of file
295 323 self.gridLayout_2.setObjectName("gridLayout_2") No newline at end of file
296 324 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2) No newline at end of file
297 325 self.txtSTATUSb.setObjectName("txtSTATUSb") No newline at end of file
298 326 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1) No newline at end of file
299 327 self.txtINFOa = QtGui.QLineEdit(self.widget_2) No newline at end of file
300 328 self.txtINFOa.setObjectName("txtINFOa") No newline at end of file
301 329 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1) No newline at end of file
302 330 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2) No newline at end of file
303 331 self.txtSTATUSa.setObjectName("txtSTATUSa") No newline at end of file
304 332 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1) No newline at end of file
305 333 self.txtINFOb = QtGui.QLineEdit(self.widget_2) No newline at end of file
306 334 self.txtINFOb.setObjectName("txtINFOb") No newline at end of file
307 335 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1) No newline at end of file
308 336 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2) No newline at end of file
309 337 self.txtSTATUSc.setObjectName("txtSTATUSc") No newline at end of file
310 338 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1) No newline at end of file
311 339 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2) No newline at end of file
312 340 self.txtSTATUSd.setObjectName("txtSTATUSd") No newline at end of file
313 341 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1) No newline at end of file
314 342 self.txtINFOd = QtGui.QLineEdit(self.widget_2) No newline at end of file
315 343 self.txtINFOd.setObjectName("txtINFOd") No newline at end of file
316 344 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1) No newline at end of file
317 345 self.txtSETa = QtGui.QLineEdit(self.widget_2) No newline at end of file
318 346 self.txtSETa.setObjectName("txtSETa") No newline at end of file
319 347 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1) No newline at end of file
320 348 self.txtSETb = QtGui.QLineEdit(self.widget_2) No newline at end of file
321 349 self.txtSETb.setObjectName("txtSETb") No newline at end of file
322 350 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1) No newline at end of file
323 351 self.txtSETc = QtGui.QLineEdit(self.widget_2) No newline at end of file
324 352 self.txtSETc.setObjectName("txtSETc") No newline at end of file
325 353 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1) No newline at end of file
326 354 self.txtSETd = QtGui.QLineEdit(self.widget_2) No newline at end of file
327 355 self.txtSETd.setObjectName("txtSETd") No newline at end of file
328 356 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1) No newline at end of file
329 357 self.lblSTATUS = QtGui.QLabel(self.widget_2) No newline at end of file
330 358 self.lblSTATUS.setObjectName("lblSTATUS") No newline at end of file
331 359 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1) No newline at end of file
332 360 self.lblINFO = QtGui.QLabel(self.widget_2) No newline at end of file
333 361 self.lblINFO.setObjectName("lblINFO") No newline at end of file
334 362 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1) No newline at end of file
335 363 self.lblSET = QtGui.QLabel(self.widget_2) No newline at end of file
336 364 self.lblSET.setObjectName("lblSET") No newline at end of file
337 365 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1) No newline at end of file
338 366 self.lblDevA = QtGui.QLabel(self.widget_2) No newline at end of file
339 367 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
340 368 self.lblDevA.setObjectName("lblDevA") No newline at end of file
341 369 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1) No newline at end of file
342 370 self.lblDevB = QtGui.QLabel(self.widget_2) No newline at end of file
343 371 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
344 372 self.lblDevB.setObjectName("lblDevB") No newline at end of file
345 373 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1) No newline at end of file
346 374 self.lblDevC = QtGui.QLabel(self.widget_2) No newline at end of file
347 375 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
348 376 self.lblDevC.setObjectName("lblDevC") No newline at end of file
349 377 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1) No newline at end of file
350 378 self.lblDevD = QtGui.QLabel(self.widget_2) No newline at end of file
351 379 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
352 380 self.lblDevD.setObjectName("lblDevD") No newline at end of file
353 381 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1) No newline at end of file
354 382 self.txtINFOc = QtGui.QLineEdit(self.widget_2) No newline at end of file
355 383 self.txtINFOc.setObjectName("txtINFOc") No newline at end of file
356 384 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1) No newline at end of file
357 385 self.verticalLayout_4.addWidget(self.widget_2) No newline at end of file
358 386 self.txtSburn = QtGui.QTextEdit(self.tabSburn) No newline at end of file
359 387 self.txtSburn.setObjectName("txtSburn") No newline at end of file
360 388 self.verticalLayout_4.addWidget(self.txtSburn) No newline at end of file
361 389 self.tabWidget.addTab(self.tabSburn, "")
390 No newline at end of file
362 self.verticalLayout_3.addWidget(self.tabWidget) No newline at end of file
363 391 self.txtInfo = QtGui.QTextEdit(self.centralwidget) No newline at end of file
364 392 self.txtInfo.setReadOnly(True) No newline at end of file
365 393 self.txtInfo.setObjectName("txtInfo")
394 No newline at end of file
366 self.verticalLayout_3.addWidget(self.txtInfo) No newline at end of file
367 395 self.horizontalLayout_2 = QtGui.QHBoxLayout() No newline at end of file
368 396 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
369 397 self.horizontalLayout_2.setObjectName("horizontalLayout_2") No newline at end of file
370 398 self.btnGbkp = QtGui.QPushButton(self.centralwidget) No newline at end of file
371 399 self.btnGbkp.setObjectName("btnGbkp") No newline at end of file
372 400 self.horizontalLayout_2.addWidget(self.btnGbkp) No newline at end of file
373 401 self.btnRestart = QtGui.QPushButton(self.centralwidget) No newline at end of file
374 402 self.btnRestart.setObjectName("btnRestart") No newline at end of file
375 403 self.horizontalLayout_2.addWidget(self.btnRestart) No newline at end of file
376 404 self.btnStartburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
377 405 self.btnStartburn.setObjectName("btnStartburn") No newline at end of file
378 406 self.horizontalLayout_2.addWidget(self.btnStartburn) No newline at end of file
379 407 self.btnStopburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
380 408 self.btnStopburn.setObjectName("btnStopburn") No newline at end of file
381 409 self.horizontalLayout_2.addWidget(self.btnStopburn)
410 No newline at end of file
382 self.verticalLayout_3.addLayout(self.horizontalLayout_2) No newline at end of file
383 411 MainWindow.setCentralWidget(self.centralwidget) No newline at end of file
384 412 self.menubar = QtGui.QMenuBar(MainWindow)
413 No newline at end of file
385 self.menubar.setGeometry(QtCore.QRect(0, 0, 593, 25)) No newline at end of file
386 414 self.menubar.setObjectName("menubar") No newline at end of file
387 415 self.menuFile = QtGui.QMenu(self.menubar) No newline at end of file
388 416 self.menuFile.setObjectName("menuFile") No newline at end of file
389 417 self.menuParameters = QtGui.QMenu(self.menubar) No newline at end of file
390 418 self.menuParameters.setObjectName("menuParameters") No newline at end of file
391 419 self.menuHelp = QtGui.QMenu(self.menubar) No newline at end of file
392 420 self.menuHelp.setObjectName("menuHelp") No newline at end of file
393 421 MainWindow.setMenuBar(self.menubar) No newline at end of file
394 422 self.statusbar = QtGui.QStatusBar(MainWindow) No newline at end of file
395 423 self.statusbar.setObjectName("statusbar") No newline at end of file
396 424 MainWindow.setStatusBar(self.statusbar) No newline at end of file
397 425 self.actionChange_Parameters = QtGui.QAction(MainWindow) No newline at end of file
398 426 self.actionChange_Parameters.setObjectName("actionChange_Parameters") No newline at end of file
399 427 self.actionSave_Config = QtGui.QAction(MainWindow) No newline at end of file
400 428 self.actionSave_Config.setObjectName("actionSave_Config") No newline at end of file
401 429 self.actionQuit = QtGui.QAction(MainWindow) No newline at end of file
402 430 self.actionQuit.setObjectName("actionQuit") No newline at end of file
403 431 self.actionAbout = QtGui.QAction(MainWindow) No newline at end of file
404 432 self.actionAbout.setObjectName("actionAbout") No newline at end of file
405 433 self.menuFile.addAction(self.actionSave_Config) No newline at end of file
406 434 self.menuFile.addAction(self.actionQuit) No newline at end of file
407 435 self.menuParameters.addAction(self.actionChange_Parameters) No newline at end of file
408 436 self.menuHelp.addAction(self.actionAbout) No newline at end of file
409 437 self.menubar.addAction(self.menuFile.menuAction()) No newline at end of file
410 438 self.menubar.addAction(self.menuParameters.menuAction()) No newline at end of file
411 439 self.menubar.addAction(self.menuHelp.menuAction()) No newline at end of file
412 440 No newline at end of file
413 441 self.retranslateUi(MainWindow)
442 No newline at end of file
414 self.tabWidget.setCurrentIndex(0) No newline at end of file
415 443 self.lstDcapacity.setCurrentIndex(2)
444 No newline at end of file
416 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.txtDeviceA.setEnabled) No newline at end of file
No newline at end of file
445 QtCore.QObject.connect(self.chkSimultaneously, QtCore.SIGNAL("clicked()"), self.chkSequentially.toggle) No newline at end of file
417 446 QtCore.QMetaObject.connectSlotsByName(MainWindow) No newline at end of file
418 447 MainWindow.setTabOrder(self.txtDpath, self.btnDpath) No newline at end of file
419 448 MainWindow.setTabOrder(self.btnDpath, self.txtRpath) No newline at end of file
420 449 MainWindow.setTabOrder(self.txtRpath, self.btnRpath) No newline at end of file
421 450 MainWindow.setTabOrder(self.btnRpath, self.lstDtype) No newline at end of file
422 451 MainWindow.setTabOrder(self.lstDtype, self.txtDtype) No newline at end of file
423 452 MainWindow.setTabOrder(self.txtDtype, self.chkMST) No newline at end of file
424 453 MainWindow.setTabOrder(self.chkMST, self.txtElabel) No newline at end of file
425 454 MainWindow.setTabOrder(self.txtElabel, self.txtCopys) No newline at end of file
426 455 MainWindow.setTabOrder(self.txtCopys, self.lstStartDay) No newline at end of file
427 456 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay)
457 No newline at end of file
428 MainWindow.setTabOrder(self.lstStopDay, self.chkDevA)
No newline at end of file
429 MainWindow.setTabOrder(self.chkDevA, self.chkDevB)
No newline at end of file
430 MainWindow.setTabOrder(self.chkDevB, self.chkDevC)
No newline at end of file
431 MainWindow.setTabOrder(self.chkDevC, self.chkDevD)
No newline at end of file
432 MainWindow.setTabOrder(self.chkDevD, self.txtDeviceA)
No newline at end of file
433 MainWindow.setTabOrder(self.txtDeviceA, self.txtDeviceB)
No newline at end of file
434 MainWindow.setTabOrder(self.txtDeviceB, self.txtDeviceC)
No newline at end of file
435 MainWindow.setTabOrder(self.txtDeviceC, self.txtDeviceD)
No newline at end of file
436 MainWindow.setTabOrder(self.txtDeviceD, self.txtBspeedA)
No newline at end of file
437 MainWindow.setTabOrder(self.txtBspeedA, self.txtBspeedB)
No newline at end of file
438 MainWindow.setTabOrder(self.txtBspeedB, self.txtBspeedC)
No newline at end of file
439 MainWindow.setTabOrder(self.txtBspeedC, self.txtBspeedD)
No newline at end of file
440 MainWindow.setTabOrder(self.txtBspeedD, self.txtBmodeA)
No newline at end of file
441 MainWindow.setTabOrder(self.txtBmodeA, self.txtBmodeB)
No newline at end of file
442 MainWindow.setTabOrder(self.txtBmodeB, self.txtBmodeC)
No newline at end of file
443 MainWindow.setTabOrder(self.txtBmodeC, self.txtBmodeD)
No newline at end of file
444 MainWindow.setTabOrder(self.txtBmodeD, self.btnTdevA)
No newline at end of file
445 MainWindow.setTabOrder(self.btnTdevA, self.btnTdevB)
No newline at end of file
446 MainWindow.setTabOrder(self.btnTdevB, self.btnTdevC)
No newline at end of file
447 MainWindow.setTabOrder(self.btnTdevC, self.btnTdevD)
No newline at end of file
448 MainWindow.setTabOrder(self.btnTdevD, self.chkSimultaneously) No newline at end of file
449 458 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially) No newline at end of file
450 459 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert) No newline at end of file
451 460 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity) No newline at end of file
452 461 MainWindow.setTabOrder(self.lstDcapacity, self.txtDcapacity) No newline at end of file
453 462 MainWindow.setTabOrder(self.txtDcapacity, self.chkPSgraphic) No newline at end of file
454 463 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17) No newline at end of file
455 464 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa) No newline at end of file
456 465 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb) No newline at end of file
457 466 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc) No newline at end of file
458 467 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd) No newline at end of file
459 468 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa) No newline at end of file
460 469 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb) No newline at end of file
461 470 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc) No newline at end of file
462 471 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd) No newline at end of file
463 472 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa) No newline at end of file
464 473 MainWindow.setTabOrder(self.txtSETa, self.txtSETb) No newline at end of file
465 474 MainWindow.setTabOrder(self.txtSETb, self.txtSETc) No newline at end of file
466 475 MainWindow.setTabOrder(self.txtSETc, self.txtSETd) No newline at end of file
467 476 MainWindow.setTabOrder(self.txtSETd, self.tabWidget) No newline at end of file
468 477 MainWindow.setTabOrder(self.tabWidget, self.txtSburn) No newline at end of file
469 478 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp) No newline at end of file
470 479 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart) No newline at end of file
471 480 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn) No newline at end of file
472 481 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn) No newline at end of file
473 482 No newline at end of file
474 483 def retranslateUi(self, MainWindow): No newline at end of file
475 484 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
476 485 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
477 486 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
478 487 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
479 488 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
480 489 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
481 490 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
482 491 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
483 492 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
484 493 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
485 494 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
486 495 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
487 496 self.txtCopys.setText(QtGui.QApplication.translate("MainWindow", "0", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
488 497 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
489 498 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
490 499 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
491 500 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
501 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
492 502 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
503 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
493 504 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
505 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
494 506 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
507 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
495 508 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
496 509 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
497 510 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
498 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
499 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
500 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
501 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
502 511 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
503 512 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
504 513 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
505 514 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
506 515 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
507 516 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
508 517 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
509 518 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
510 519 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
511 520 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
512 521 self.txtDcapacity.setText(QtGui.QApplication.translate("MainWindow", "4482.26928711", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
513 522 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
514 523 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
515 524 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
516 525 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
517 526 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
518 527 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
519 528 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
520 529 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
521 530 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
522 531 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
523 532 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
524 533 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
525 534 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
526 535 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
527 536 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
528 537 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
529 538 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
530 539 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
531 540 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
532 541 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
533 542 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
534 543 No newline at end of file
535 544 No newline at end of file
536 545 if __name__ == "__main__": No newline at end of file
537 546 import sys No newline at end of file
538 547 app = QtGui.QApplication(sys.argv) No newline at end of file
539 548 MainWindow = QtGui.QMainWindow() No newline at end of file
540 549 ui = Ui_MainWindow() No newline at end of file
541 550 ui.setupUi(MainWindow) No newline at end of file
542 551 MainWindow.show() No newline at end of file
543 552 sys.exit(app.exec_()) No newline at end of file
544 553 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now