##// END OF EJS Templates
etiquetas falta ultimo ajuste de posicion
ralonso -
r63:64
parent child
Show More
@@ -1,217 +1,319
1 1 # -*- coding: utf-8 -*- No newline at end of file
2 2 No newline at end of file
3 3 #class BKmanager: No newline at end of file
4 4 # def __init__(self): No newline at end of file
5 5 No newline at end of file
6 6 from subprocess import * No newline at end of file
7 7 import sys No newline at end of file
8 8 import os No newline at end of file
9 9 import subprocess No newline at end of file
10 10 import commands No newline at end of file
11 11 import shutil No newline at end of file
12 12 No newline at end of file
13 13 #--------------------------------------------- Entero a cadena agregando ceros delante ------------------------------------------------- No newline at end of file
14 14 No newline at end of file
15 15 def i2s(var_n, var_length=4): No newline at end of file
16 16 var_n2=str(var_n) No newline at end of file
17 17 while len(var_n2) < var_length: No newline at end of file
18 18 var_n2 = "0"+var_n2 No newline at end of file
19 19 return var_n2 No newline at end of file
20 20 No newline at end of file
21 21 No newline at end of file
22 22 #----------------------------------------- Se verifica que la ruta exista y sea un directorio ------------------------------------------------- No newline at end of file
23 23 No newline at end of file
24 24 def dir_exists(var_dir, self): No newline at end of file
25 25 if os.path.isdir(var_dir): No newline at end of file
26 26 self.txtInfo.append("Ruta valida, sin error:" + str(var_dir)) No newline at end of file
27 27 return True No newline at end of file
28 28 else: No newline at end of file
29 29 self.txtInfo.append("Ruta no valida, output_error:" + str(var_dir)) No newline at end of file
30 30 return False No newline at end of file
31 31 No newline at end of file
32 32 No newline at end of file
33 33 #-------------------------------- Se buscan los archivos del tipo especificado y se cargan las fechas ----------------------------- No newline at end of file
34 34 No newline at end of file
35 35 def load_days(self): No newline at end of file
36 36 No newline at end of file
37 37 self.var_list=[] No newline at end of file
38 38 self.lstStartDay.clear() No newline at end of file
39 39 self.lstStopDay.clear() No newline at end of file
40 40 No newline at end of file
41 41 if self.statusDpath == False: No newline at end of file
42 42 self.btnGbkp.setEnabled(False) No newline at end of file
43 43 return No newline at end of file
44 44 No newline at end of file
45 45 if self.var_Dtype == '': No newline at end of file
46 46 return No newline at end of file
47 47 No newline at end of file
48 48 var_cmd="find " + str(self.var_Dpath) + " -name *."+ str(self.var_Dtype) +" | awk -F/ '{print substr($NF,2,7)}' | sort| uniq" No newline at end of file
49 49 output=commands.getstatusoutput(var_cmd)[1] No newline at end of file
50 50 No newline at end of file
51 51 #Si no se encuentra ningun archivo No newline at end of file
52 52 if len(output) == 0: No newline at end of file
53 53 self.txtInfo.append("No se encontraron archivos") No newline at end of file
54 54 self.btnGbkp.setEnabled(False) No newline at end of file
55 55 return No newline at end of file
56 56 No newline at end of file
57 57 #Se cargan las listas para seleccionar StartDay y StopDay (QComboBox) No newline at end of file
58 58 for i in range(0, (len(output)+1)/8): No newline at end of file
59 59 self.var_list.append(output[8*i:8*(i+1)-1]) No newline at end of file
60 60 No newline at end of file
61 61 for i in self.var_list: No newline at end of file
62 62 self.lstStartDay.addItem(i) No newline at end of file
63 63 self.lstStopDay.addItem(i) No newline at end of file
64 64 self.lstStopDay.setCurrentIndex(self.lstStartDay.count()-1) No newline at end of file
65 65 No newline at end of file
66 66 get_sub_list(self) No newline at end of file
67 67 self.btnGbkp.setEnabled(True) No newline at end of file
68 68 No newline at end of file
69 69 No newline at end of file
70 70 #-------------------------------------------------- Obtiene el rango de las fechas seleccionadas ----------------------------------------- No newline at end of file
71 71 No newline at end of file
72 72 def get_sub_list(self): No newline at end of file
73 73 self.var_sublist=[] No newline at end of file
74 74 for i in self.var_list[self.lstStartDay.currentIndex():self.lstStartDay.currentIndex() + self.lstStopDay.currentIndex()+1]: No newline at end of file
75 75 self.var_sublist.append(i) No newline at end of file
76 76 if len(self.var_sublist) == 0: No newline at end of file
77 77 self.txtInfo.append("No existen archivos encontrados") No newline at end of file
78 78 No newline at end of file
79 79 No newline at end of file
80 80 #----------------------------------------------------- Verifica los parametros faltantes ----------------------------------------------------------- No newline at end of file
81 81 No newline at end of file
82 82 def validate_parameters(self): No newline at end of file
83 83 #Verifica que las ruta del proyecto sea valida No newline at end of file
84 84 if self.statusRpath == False: No newline at end of file
85 85 self.txtInfo.append("Ruta de proyecto no valida") No newline at end of file
86 86 return False No newline at end of file
87 87 No newline at end of file
88 88 #Verifica la etiqueta No newline at end of file
89 89 if len(self.var_Elabel) == 0: No newline at end of file
90 90 self.txtInfo.append("Debe ingresar el nombre de la etiqueta") No newline at end of file
91 91 return False No newline at end of file
92 92 No newline at end of file
93 93 return True No newline at end of file
94 94 No newline at end of file
95 95 No newline at end of file
96 96 #------------------------------------------------- Crea directorios en la ruta indicada ----------------------------------------------------------- No newline at end of file
97 97 No newline at end of file
98 98 def make_dirs(list_dirs, self): No newline at end of file
99 99 No newline at end of file
100 100 for var_dir in list_dirs: No newline at end of file
101 101 shutil.rmtree(self.var_Rpath+'/'+var_dir, True) No newline at end of file
102 102 var_output=commands.getstatusoutput("mkdir -p "+self.var_Rpath+'/'+var_dir)[0] No newline at end of file
103 103 if var_output != 0: No newline at end of file
104 104 self.txtInfo.append("Error al crear el directorio "+var_dir+", output_error:" + str(var_output)) No newline at end of file
105 105 return False No newline at end of file
106 106 self.txtInfo.append('Carpetas creadas correctamente') No newline at end of file
107 107 return True No newline at end of file
108 108 No newline at end of file
109 109 No newline at end of file
110 110 #-------------------------------------------- Busca los archivos con los parametros de busqueda --------------------------------------- No newline at end of file
111 111 No newline at end of file
112 112 def list_files(self): No newline at end of file
113 113 var_files_list=[] No newline at end of file
114 114 for var_doy in self.var_sublist: No newline at end of file
115 115 var_cmd="find " + str(self.var_Dpath) + " -name ?"+var_doy+"???."+ str(self.var_Dtype) + " |sort" No newline at end of file
116 116 var_output=commands.getstatusoutput(var_cmd)[1] No newline at end of file
117 117 for var_file in var_output.split(): No newline at end of file
118 118 var_files_list.append(var_file) #Almacena cada archivo en la lista No newline at end of file
119 119 return var_files_list No newline at end of file
120 120 No newline at end of file
121 121 No newline at end of file
122 122 #--------------- Genera la lista de archivos .dat que contienen los archivos a grabar en cada DVD ----------------------- No newline at end of file
123 123 No newline at end of file
124 124 def make_files_dat(var_files_list, self): No newline at end of file
125 125 var_Rpath_ppath=self.var_Rpath+"/ppath" #Ruta de los archivos a grabar No newline at end of file
126 126 var_n=1 #Numero del DVD actual No newline at end of file
127 127 var_tmp=0 #Se usa para acumular el tamaΓ±o de los archivos de la lista No newline at end of file
128 128 var_files_list_2=[] #Se usa para almacenar la lista de archivos agrbar en cada DVD No newline at end of file
129 129 No newline at end of file
130 130 for i in var_files_list: #Se asignan en i los archivos de la lista No newline at end of file
131 131 No newline at end of file
132 132 var_size_i=os.path.getsize(i)/1024+1 #tamaΓ±o en KB del archivo de la lista, se suma 1 KB para evitar problemas al momento de sumar No newline at end of file
133 133 var_tmp += var_size_i #Se acumulan el tamaΓ±o de los archivos de la lista No newline at end of file
134 134 No newline at end of file
135 135 #Si el tamaΓ±o acumulado es mayor que el de el DVD No newline at end of file
136 136 if var_tmp > (self.var_Dcapacity * 1024): No newline at end of file
137 137 var_tmp -= var_size_i #se quita el tamaΓ±o sumado para mostrar el tamaΓ±o real No newline at end of file
138 138 #se crea un archivo con numeral en el sufijo y extension .dat No newline at end of file
139 139 var_file = open(var_Rpath_ppath+"/"+self.var_Elabel+"_"+i2s(var_n)+".dat","w") No newline at end of file
140 140 #Se aΓ±ade la lista de archivos a grabar en el DVD al archivo .dat No newline at end of file
141 141 for line in var_files_list_2: No newline at end of file
142 142 var_tmp_path=line.split(self.var_Dpath)[1][:-13] No newline at end of file
143 143 var_file.write(var_tmp_path+'='+line+'\n') No newline at end of file
144 144 var_file.close() No newline at end of file
145 145 No newline at end of file
146 146 var_tmp = var_size_i #Se asigna a la variable el tamaΓ±o del archivo actual No newline at end of file
147 147 var_files_list_2=[] #Se reinicia la lista No newline at end of file
148 148 var_n += 1 No newline at end of file
149 149 var_files_list_2.append(i) No newline at end of file
150 150 No newline at end of file
151 151 #se crea un archivo con numeral en el sufijo y extension .dat No newline at end of file
152 152 var_file = open(var_Rpath_ppath+"/"+self.var_Elabel+"_"+i2s(var_n)+".dat","w") No newline at end of file
153 153 #Se aΓ±ade la lista de archivos a grabar en el DVD al archivo .dat No newline at end of file
154 154 for line in var_files_list_2: No newline at end of file
155 155 var_tmp_path=line.split(self.var_Dpath)[1][:-13] No newline at end of file
156 156 var_file.write(var_tmp_path+'='+line+'\n') No newline at end of file
157 157 var_file.close() No newline at end of file
158 158 No newline at end of file
159 159 self.txtInfo.append("Archivos .dat creados") No newline at end of file
160 160 return var_n No newline at end of file
161 161 No newline at end of file
162 162 No newline at end of file
163 163 #------------------------------ Genera los archivos .print con los cuales se creara los postscript ----------------------------------- No newline at end of file
164 164
165 No newline at end of file
165 def make_files_print(self): No newline at end of file
166 166 No newline at end of file
167 167 var_Rpath_ppath=self.var_Rpath+"/ppath" #Ruta de los archivos a grabar No newline at end of file
168 var_Rpath_gpath=self.var_Rpath+"/gpath" #Ruta de los archivos postscript
No newline at end of file
169 var_labels=[]
No newline at end of file
170 for m in range (0, self.txtPSgraphic.value() - 1):
No newline at end of file
171 var_lines = "\n" * 9
No newline at end of file
172 var_labels.append(var_lines) No newline at end of file
168 173 No newline at end of file
169 174 # Se leen todos los archivos .dat creados para crear las etiquetas en los archivos .print No newline at end of file
170 175 for var_n in range(1, self.var_Discs + 1): No newline at end of file
171 176 #se abren los archivos .dat en modo lectura No newline at end of file
172 177 var_file = open(var_Rpath_ppath+"/"+self.var_Elabel+"_"+i2s(var_n)+".dat","r") No newline at end of file
173 178 lines=var_file.readlines() # Se lee las lineas en el archivo y se almacenan en la lista
179 No newline at end of file
174 # Se crea el archivo .print
No newline at end of file
180 No newline at end of file
175 var_file_print = open(var_Rpath_ppath+"/"+self.var_Elabel+"_"+i2s(var_n)+".print","w")
No newline at end of file
181 No newline at end of file
176 var_file_print.write(self.var_Elabel+" "+i2s(var_n)+"/"+i2s(self.var_Discs)+"\n")
No newline at end of file
182 No newline at end of file
177 var_file_print.write("Year Doy Folder Set Time range\n")
No newline at end of file
183 No newline at end of file
178
No newline at end of file
184 No newline at end of file
179 var_first_folder = lines[0].split('=')[0]
No newline at end of file
185 No newline at end of file
180 var_first_file = (lines[0].split('=')[1])[:-1]
No newline at end of file
186 No newline at end of file
181 var_date_first_file=commands.getstatusoutput("date -r "+var_first_file+" +'%T'")[1]
No newline at end of file
187 No newline at end of file
182
No newline at end of file
188 No newline at end of file
183 for j in range(1, len(lines)-1): No newline at end of file
No newline at end of file
189 continue No newline at end of file
184 190 var_tmp_folder = lines[j].split('=')[0] No newline at end of file
185 191 var_tmp_file = (lines[j].split('=')[1])[:-1] No newline at end of file
186 192
193 No newline at end of file
187 # Si el subfolder superior o la fecha del archivo cambia se genera una nueva linea No newline at end of file
188 194 if (var_tmp_folder != var_first_folder) or (var_tmp_file[0:-5] != var_first_file[0:-5]): No newline at end of file
189 195 var_last_file = (lines[j-1].split('=')[1])[:-1]
196 No newline at end of file
190 var_date_last_file=commands.getstatusoutput("date -r "+var_last_file+" +'%T'")[1] No newline at end of file
No newline at end of file
197 list_files.append([var_first_folder, var_first_file, var_last_file])
No newline at end of file
198
No newline at end of file
199 var_first_folder = lines[j].split('=')[0]
No newline at end of file
200 var_first_file = (lines[j].split('=')[1])[:-1]
No newline at end of file
201
No newline at end of file
202 var_last_file = (lines[-1].split('=')[1])[:-1]
No newline at end of file
203 list_files.append([var_first_folder, var_first_file, var_last_file])
No newline at end of file
204
No newline at end of file
205 var_lines2 = lines_print(list_files, self.var_Elabel)
No newline at end of file
206 self.txtInfo.append("lineas: "+str(len(var_lines2)))
No newline at end of file
207
No newline at end of file
208
No newline at end of file
209 for k in range(0, len(var_lines2) / 5):
No newline at end of file
210 var_lines=["\n"]
No newline at end of file
211 var_lines.append(" "+self.var_Elabel+" "+i2s(var_n)+"/"+i2s(self.var_Discs)+"\n")
No newline at end of file
212 var_lines.append("Year Doy Folder Set Time range\n")
No newline at end of file
213 var_lines.extend(var_lines2[(5*k):(5*(k+1))])
No newline at end of file
214 var_lines.append("\n")
No newline at end of file
215 var_labels.append(var_lines)
No newline at end of file
216
No newline at end of file
217 self.txtInfo.append("labels totales: "+str(len(var_labels)))
No newline at end of file
218
No newline at end of file
219 for i in range(0, (len(var_labels) // 33) +1 ):
No newline at end of file
220 var_file=var_Rpath_gpath+"/"+self.var_Elabel+"_"+i2s(i+1)
No newline at end of file
221 file_ps = open(var_file+".print","w")
No newline at end of file
222 if i == (len(var_labels) // 33):
No newline at end of file
223 var_sub_labels = var_labels[33*i:]
No newline at end of file
224 else:
No newline at end of file
225 var_sub_labels = var_labels[33*i:33*(i+1)]
No newline at end of file
226
No newline at end of file
227 for label in var_sub_labels:
No newline at end of file
228 for line in label:
No newline at end of file
229 self.txtInfo.insertPlainText(line)
No newline at end of file
230 file_ps.write(line)
No newline at end of file
231 file_ps.close()
No newline at end of file
232 var_cmd="enscript "+var_file+".print -p "+var_file+".ps -f Times-Roman7 " \
No newline at end of file
233 +" -3R -j -B --margins=21.25:20.4:25.51:20 --media=A4"
No newline at end of file
234 var_output=commands.getstatusoutput(var_cmd)[0]
No newline at end of file
235
No newline at end of file
236
No newline at end of file
237 def lines_print(list_files, var_Elabel):
No newline at end of file
238 """
No newline at end of file
239 Devuelve las lineas del rango de archivos de cada etiqueta segun el formato
No newline at end of file
240 """
No newline at end of file
241 var_lines=[]
No newline at end of file
242 for i in list_files: No newline at end of file
191 243 # Si el archivo se grabara directamente en la / del DVD y no en un /directorio/ No newline at end of file
192 244 # se usa la etiqueta para indicar la parte de la etiqueta donde va el subdirectorio
245 No newline at end of file
193 if var_first_folder == '/':
No newline at end of file
246 No newline at end of file
194 var_folder = self.var_Elabel No newline at end of file
195 247 else:
248 No newline at end of file
196 var_folder = var_first_folder.split('/')[-2]
No newline at end of file
249 No newline at end of file
197
No newline at end of file
250 No newline at end of file
198 var_file_print.write(var_first_file[-12:-8]+" "+var_first_file[-8:-5]+" "+var_folder +" "+var_first_file[-5:-2]+" " No newline at end of file
No newline at end of file
251 var_first_file = i[1]
No newline at end of file
252 var_last_file = i[2]
No newline at end of file
253
No newline at end of file
254 var_date_first_file=commands.getstatusoutput("date -r "+var_first_file+" +'%T'")[1]
No newline at end of file
255 var_date_last_file=commands.getstatusoutput("date -r "+var_last_file+" +'%T'")[1]
No newline at end of file
256 No newline at end of file
199 257 +var_last_file[-5:-2]+" "+var_date_first_file+" "+var_date_last_file+"\n")
258 No newline at end of file
200
No newline at end of file
259 No newline at end of file
201 var_first_folder = lines[j].split('=')[0]
No newline at end of file
260 No newline at end of file
202 var_first_file = (lines[j].split('=')[1])[:-1]
No newline at end of file
261 No newline at end of file
203 var_date_first_file=commands.getstatusoutput("date -r "+var_first_file+" +'%T'")[1]
No newline at end of file
262 No newline at end of file
204
No newline at end of file
263 No newline at end of file
205 var_last_file = (lines[-1].split('=')[1])[:-1]
No newline at end of file
264 No newline at end of file
206 var_date_last_file=commands.getstatusoutput("date -r "+var_last_file+" +'%T'")[1]
No newline at end of file
265 No newline at end of file
207
No newline at end of file
266 No newline at end of file
208 if var_first_folder == '/':
No newline at end of file
267 No newline at end of file
209 var_folder = self.var_Elabel
No newline at end of file
268 No newline at end of file
210 else:
No newline at end of file
269 No newline at end of file
211 var_folder = var_first_folder.split('/')[-2]
No newline at end of file
270 No newline at end of file
212
No newline at end of file
271 No newline at end of file
213 var_file_print.write(var_first_file[-12:-8]+" "+var_first_file[-8:-5]+" "+var_folder +" "+var_first_file[-5:-2]+" "
No newline at end of file
272 No newline at end of file
214 +var_last_file[-5:-2]+" "+var_date_first_file+" "+var_date_last_file+"\n")
No newline at end of file
273 No newline at end of file
215
No newline at end of file
274 No newline at end of file
216 var_file.close()
No newline at end of file
275 No newline at end of file
217 var_file_print.close() No newline at end of file
No newline at end of file
276 # # Se crea el archivo .print
No newline at end of file
277 # var_file_print = open(var_Rpath_ppath+"/"+self.var_Elabel+"_"+i2s(var_n)+".print","w")
No newline at end of file
278 # var_file_print.write(self.var_Elabel+" "+i2s(var_n)+"/"+i2s(self.var_Discs)+"\n")
No newline at end of file
279 # var_file_print.write("Year Doy Folder Set Time range\n")
No newline at end of file
280 #
No newline at end of file
281 # var_first_folder = lines[0].split('=')[0]
No newline at end of file
282 # var_first_file = (lines[0].split('=')[1])[:-1]
No newline at end of file
283 # var_date_first_file=commands.getstatusoutput("date -r "+var_first_file+" +'%T'")[1]
No newline at end of file
284 #
No newline at end of file
285 # for j in range(1, len(lines)-1):
No newline at end of file
286 # var_tmp_folder = lines[j].split('=')[0]
No newline at end of file
287 # var_tmp_file = (lines[j].split('=')[1])[:-1]
No newline at end of file
288 #
No newline at end of file
289 # # Si el subfolder superior o la fecha del archivo cambia se genera una nueva linea
No newline at end of file
290 # if (var_tmp_folder != var_first_folder) or (var_tmp_file[0:-5] != var_first_file[0:-5]):
No newline at end of file
291 # var_last_file = (lines[j-1].split('=')[1])[:-1]
No newline at end of file
292 # var_date_last_file=commands.getstatusoutput("date -r "+var_last_file+" +'%T'")[1]
No newline at end of file
293 # # Si el archivo se grabara directamente en la / del DVD y no en un /directorio/
No newline at end of file
294 # # se usa la etiqueta para indicar la parte de la etiqueta donde va el subdirectorio
No newline at end of file
295 # if var_first_folder == '/':
No newline at end of file
296 # var_folder = self.var_Elabel
No newline at end of file
297 # else:
No newline at end of file
298 # var_folder = var_first_folder.split('/')[-2]
No newline at end of file
299 #
No newline at end of file
300 # var_file_print.write(var_first_file[-12:-8]+" "+var_first_file[-8:-5]+" "+var_folder +" "+var_first_file[-5:-2]+" "
No newline at end of file
301 # +var_last_file[-5:-2]+" "+var_date_first_file+" "+var_date_last_file+"\n")
No newline at end of file
302 #
No newline at end of file
303 # var_first_folder = lines[j].split('=')[0]
No newline at end of file
304 # var_first_file = (lines[j].split('=')[1])[:-1]
No newline at end of file
305 # var_date_first_file=commands.getstatusoutput("date -r "+var_first_file+" +'%T'")[1]
No newline at end of file
306 #
No newline at end of file
307 # var_last_file = (lines[-1].split('=')[1])[:-1]
No newline at end of file
308 # var_date_last_file=commands.getstatusoutput("date -r "+var_last_file+" +'%T'")[1]
No newline at end of file
309 #
No newline at end of file
310 # if var_first_folder == '/':
No newline at end of file
311 # var_folder = self.var_Elabel
No newline at end of file
312 # else:
No newline at end of file
313 # var_folder = var_first_folder.split('/')[-2]
No newline at end of file
314 #
No newline at end of file
315 # var_file_print.write(var_first_file[-12:-8]+" "+var_first_file[-8:-5]+" "+var_folder +" "+var_first_file[-5:-2]+" "
No newline at end of file
316 # +var_last_file[-5:-2]+" "+var_date_first_file+" "+var_date_last_file+"\n")
No newline at end of file
317 #
No newline at end of file
318 # var_file.close() No newline at end of file
218 319
@@ -1,157 +1,158
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 from subprocess import * No newline at end of file
5 5 import sys No newline at end of file
6 6 import os No newline at end of file
7 7 import subprocess No newline at end of file
8 8 import commands No newline at end of file
9 9 No newline at end of file
10 10 #----------------------------------------------------- Deteccion de los dispositivos de grabacion --------------------------------------------------------------- No newline at end of file
11 11 No newline at end of file
12 12 def detect_devices(self): No newline at end of file
13 13 """ No newline at end of file
14 14 Deteccion de los dispositvos de grabacion No newline at end of file
15 15 """ No newline at end of file
16 16 #var_cmd="wodim --devices | grep /dev/ | awk -F\' '{print $2}'" #Funciona en consola pero no en python ΒΏ? No newline at end of file
17 17 var_cmd="wodim --devices | grep /dev/ | awk '{print $2}' | awk -F= '{print $2}'" No newline at end of file
18 18 var_output = commands.getstatusoutput(var_cmd) No newline at end of file
19 19 if var_output[0] != 0: No newline at end of file
20 20 self.txtInfo.append("No se pudo encontrar los dispositivos de grabacion, output_error:" + str(var_output)) No newline at end of file
21 21 else: No newline at end of file
22 22 self.txtInfo.append("dispositivos encontrados") No newline at end of file
23 23 var_devices = var_output[1].split('\n') No newline at end of file
24 24 No newline at end of file
25 25 var_tmp=[] No newline at end of file
26 26 for i in range(0, 4): No newline at end of file
27 27 if i < len(var_devices): No newline at end of file
28 28 var_len = len(var_devices[i]) No newline at end of file
29 29 var_tmp.append(var_devices[i][1:var_len - 1]) No newline at end of file
30 30 else: No newline at end of file
31 31 var_tmp.append('') No newline at end of file
32 32 No newline at end of file
33 33 #Se escriben los dispostivos correspodientes, si existen No newline at end of file
34 34 self.txtDeviceA.setText(str(var_tmp[0])) No newline at end of file
35 35 self.txtDeviceB.setText(str(var_tmp[1])) No newline at end of file
36 36 self.txtDeviceC.setText(str(var_tmp[2])) No newline at end of file
37 37 self.txtDeviceD.setText(str(var_tmp[3])) No newline at end of file
38 38 #Se desactivan los que no existen No newline at end of file
39 39 if len(var_tmp[0]) == 0 : No newline at end of file
40 40 self.chkDevA.setChecked(False) No newline at end of file
41 41 self.chkDevA.setEnabled(False) No newline at end of file
42 42 if len(var_tmp[1]) == 0 : No newline at end of file
43 43 self.chkDevB.setChecked(False) No newline at end of file
44 44 self.chkDevB.setEnabled(False) No newline at end of file
45 45 if len(var_tmp[2]) == 0 : No newline at end of file
46 46 self.chkDevC.setChecked(False) No newline at end of file
47 47 self.chkDevC.setEnabled(False) No newline at end of file
48 48 if len(var_tmp[3]) == 0 : No newline at end of file
49 49 self.chkDevD.setChecked(False) No newline at end of file
50 50 self.chkDevD.setEnabled(False) No newline at end of file
51 51 No newline at end of file
52 52 #----------------------------------- expulsa los dispositivos de grabacion -------------------------------------------- No newline at end of file
53 53 No newline at end of file
54 54 def eject_devices(self): No newline at end of file
55 55 for var_dev in self.var_devices: No newline at end of file
56 56 var_cmd = 'eject ' + var_dev No newline at end of file
57 57 commands.getstatusoutput(var_cmd) No newline at end of file
58 58 No newline at end of file
59 59 #----------------------------------- listado de los dispositivos de grabacion seleccionados -------------------------------------------- No newline at end of file
60 60 No newline at end of file
61 61 def selected_devices(self): No newline at end of file
62 62 self.var_devices=[] No newline at end of file
63 63 if self.chkDevA.isChecked(): No newline at end of file
64 64 self.var_devices.append(str(self.txtDeviceA.text())) No newline at end of file
65 65 if self.chkDevB.isChecked(): No newline at end of file
66 66 self.var_devices.append(str(self.txtDeviceB.text())) No newline at end of file
67 67 if self.chkDevC.isChecked(): No newline at end of file
68 68 self.var_devices.append(str(self.txtDeviceC.text())) No newline at end of file
69 69 if self.chkDevD.isChecked(): No newline at end of file
70 70 self.var_devices.append(str(self.txtDeviceD.text())) No newline at end of file
71 71 No newline at end of file
72 72 if len(self.var_devices) == 0: No newline at end of file
73 73 return False No newline at end of file
74 74 else: No newline at end of file
75 75 return True No newline at end of file
76 76 No newline at end of file
77 77 No newline at end of file
78 78 #----------------------------------------------------- Inicializacion para pruebas--------------------------------------------------------------- No newline at end of file
79 79 No newline at end of file
80 80 def set_parameters_test(self): No newline at end of file
81 81 """ No newline at end of file
82 82 Se usa para inicializar ciertos parametros para pruebas No newline at end of file
83 83 """ No newline at end of file
84 84 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS') No newline at end of file
85 85 self.txtRpath.setText('/home/ricardoar/optional/prueba1_jro_backup_manager') No newline at end of file
86 86 self.txtElabel.setText('EW_DRIFTS_pruebas') No newline at end of file
87 87 self.lstDcapacity.setCurrentIndex(4)
88 No newline at end of file
88 self.txtDcapacity.setValue(250.0) No newline at end of file
89 89 self.txtDcapacity.setReadOnly(False) No newline at end of file
90 90 No newline at end of file
91 91 No newline at end of file
92 92 #----------------------------------------------------- crea parameters.conf --------------------------------------------------------------- No newline at end of file
93 93 No newline at end of file
94 94 def make_parameters_conf(self): No newline at end of file
95 95 var_file = open("parameters.conf","w") No newline at end of file
96 96 var_file.write(self.var_Dpath+"\n") #0 Ruta de los datos No newline at end of file
97 97 var_file.write(self.var_Rpath+"\n") #1 Ruta del proyecto No newline at end of file
98 98 var_file.write(str(self.var_lstDtype)+"\n") #2 opcion Data Type No newline at end of file
99 99 var_file.write(self.var_Dtype+"\n") #3 extension Data Type No newline at end of file
100 100 var_file.write(self.var_Elabel+"\n") #4 etiqueta No newline at end of file
101 101 var_file.write(str(self.var_Copys)+"\n") #5 Numero de copias No newline at end of file
102 102 var_file.write(str(self.var_lstDcapacity)+"\n") #6 opcion Device Capacity No newline at end of file
103 103 var_file.write(str(self.var_Dcapacity)+"\n") #7 tamaΓ±o Device Capacity No newline at end of file
104 104 var_file.write(str(self.var_Discs)+"\n") #8 Numero de discos a grabar No newline at end of file
105 105 # var_file.write(str(self.lstStartDay.currentIndex())+"\n") #9 Indice fecha inicial No newline at end of file
106 106 # var_file.write(str(self.lstStopDay.currentIndex())+"\n") #10 Indice fecha final No newline at end of file
107 107 No newline at end of file
108 108 var_file.close() No newline at end of file
109 109 No newline at end of file
110 110 #----------------------------------------------------- carga parameters.conf --------------------------------------------------------------- No newline at end of file
111 111 No newline at end of file
112 112 def get_parameters_conf(self): No newline at end of file
113 113 var_file = open("parameters.conf","r") No newline at end of file
114 114 lines = var_file.readlines() No newline at end of file
115 115 self.txtDpath.setText(lines[0][:-1]) #0 No newline at end of file
116 116 self.txtRpath.setText(lines[1][:-1]) #1 No newline at end of file
117 117 self.lstDtype.setCurrentIndex(int(lines[2])) #2 No newline at end of file
118 118 self.txtDtype.setText(lines[3][:-1]) #3 No newline at end of file
119 119 self.txtElabel.setText(lines[4][:-1]) #4 No newline at end of file
120 120 self.txtCopys.setValue(int(lines[5][:-1])) #5 No newline at end of file
121 121 self.lstDcapacity.setCurrentIndex(int(lines[6])) #6 No newline at end of file
122 122 self.txtDcapacity.setValue(float(lines[7])) #7 No newline at end of file
123 123 self.var_Discs = int(lines[8]) #8 No newline at end of file
124 124 # var_StartDay = int(lines[6]) #9 No newline at end of file
125 125 # var_StopDay = int(lines[7]) #10 No newline at end of file
126 126 var_file.close() No newline at end of file
127 127 No newline at end of file
128 128 No newline at end of file
129 129 No newline at end of file
130 130 #-------------------------- actualiza el valor de las variables con los parametros seleccionados ----------------------------- No newline at end of file
131 131 No newline at end of file
132 132 def set_vars(self): No newline at end of file
133 133 self.var_Dpath = str(self.txtDpath.text()) #0 No newline at end of file
134 134 self.var_Rpath = str(self.txtRpath.text()) #1 No newline at end of file
135 135 self.var_lstDtype = self.lstDtype.currentIndex() #2 No newline at end of file
136 136 self.var_Dtype = str(self.txtDtype.text()) #3 No newline at end of file
137 137 self.var_Elabel = str(self.txtElabel.text()) #4 No newline at end of file
138 138 self.var_Copys = self.txtCopys.value() #5 No newline at end of file
139 139 self.var_lstDcapacity = self.lstDcapacity.currentIndex() #6 No newline at end of file
140 140 self.var_Dcapacity = self.txtDcapacity.value() #7 No newline at end of file
141 141 self.var_Discs = self.var_Discs #8 No newline at end of file
142 142 No newline at end of file
143 143 #---------------------------------------------- Habilitacion y deshabilitacion de items ------------------------------------------------------- No newline at end of file
144 144 No newline at end of file
145 145 def enabled_items1(var_bool, self): No newline at end of file
146 146 self.tabParameters.setEnabled(not(var_bool)) No newline at end of file
147 147 self.lstDcapacity.setEnabled(not(var_bool)) No newline at end of file
148 148 self.txtDcapacity.setEnabled(not(var_bool)) No newline at end of file
149 149 self.btnGbkp.setEnabled(not(var_bool)) No newline at end of file
150 150 self.btnRestart.setEnabled(var_bool) No newline at end of file
151 151 self.btnStartburn.setEnabled(var_bool) No newline at end of file
152 152 No newline at end of file
153 153 No newline at end of file
154 154 def enabled_items2(var_bool, self): No newline at end of file
155 155 self.btnRestart.setEnabled(not(var_bool)) No newline at end of file
156 156 self.btnStartburn.setEnabled(not(var_bool)) No newline at end of file
157 157 self.btnStopburn.setEnabled(var_bool) No newline at end of file
158 self.chkCheck.setEnabled(not(var_bool)) No newline at end of file
@@ -1,161 +1,163
1 1 <?xml version="1.0" encoding="UTF-8"?> No newline at end of file
2 2 <!DOCTYPE Project SYSTEM "Project-4.6.dtd"> No newline at end of file
3 3 <!-- eric4 project file for project jro_backup_manager -->
4 No newline at end of file
4 <!-- Saved: 2010-05-17, 23:48:20 --> No newline at end of file
5 5 <!-- Copyright (C) 2010 , --> No newline at end of file
6 6 <Project version="4.6"> No newline at end of file
7 7 <Language>en</Language> No newline at end of file
8 8 <ProgLanguage mixed="0">Python</ProgLanguage> No newline at end of file
9 9 <ProjectType>Qt4</ProjectType> No newline at end of file
10 10 <Description></Description> No newline at end of file
11 11 <Version>0.1</Version> No newline at end of file
12 12 <Author></Author> No newline at end of file
13 13 <Email></Email> No newline at end of file
14 14 <Sources> No newline at end of file
15 15 <Source>__init__.py</Source> No newline at end of file
16 16 <Source>ui/Ui_MainWindow.py</Source> No newline at end of file
17 17 <Source>ui/MainWindow.py</Source> No newline at end of file
18 18 <Source>main.py</Source> No newline at end of file
19 19 <Source>ui/__init__.py</Source> No newline at end of file
20 20 <Source>functions/__init__.py</Source> No newline at end of file
21 21 <Source>functions/functions.py</Source> No newline at end of file
22 22 <Source>functions/functions2.py</Source> No newline at end of file
23 23 <Source>functions/func_doc.py</Source> No newline at end of file
24 <Source>ui/Ui_Parameters.py</Source> No newline at end of file
24 25 </Sources> No newline at end of file
25 26 <Forms> No newline at end of file
26 27 <Form>ui/MainWindow.ui</Form> No newline at end of file
28 <Form>ui/Parameters.ui</Form> No newline at end of file
27 29 </Forms> No newline at end of file
28 30 <Translations> No newline at end of file
29 31 </Translations> No newline at end of file
30 32 <Resources> No newline at end of file
31 33 </Resources> No newline at end of file
32 34 <Interfaces> No newline at end of file
33 35 </Interfaces> No newline at end of file
34 36 <Others> No newline at end of file
35 37 </Others> No newline at end of file
36 38 <MainScript>main.py</MainScript> No newline at end of file
37 39 <Vcs> No newline at end of file
38 40 <VcsType>Subversion</VcsType> No newline at end of file
39 41 <VcsOptions> No newline at end of file
40 42 <dict> No newline at end of file
41 43 <key> No newline at end of file
42 44 <string>add</string> No newline at end of file
43 45 </key> No newline at end of file
44 46 <value> No newline at end of file
45 47 <list> No newline at end of file
46 48 <string></string> No newline at end of file
47 49 </list> No newline at end of file
48 50 </value> No newline at end of file
49 51 <key> No newline at end of file
50 52 <string>checkout</string> No newline at end of file
51 53 </key> No newline at end of file
52 54 <value> No newline at end of file
53 55 <list> No newline at end of file
54 56 <string></string> No newline at end of file
55 57 </list> No newline at end of file
56 58 </value> No newline at end of file
57 59 <key> No newline at end of file
58 60 <string>commit</string> No newline at end of file
59 61 </key> No newline at end of file
60 62 <value> No newline at end of file
61 63 <list> No newline at end of file
62 64 <string></string> No newline at end of file
63 65 </list> No newline at end of file
64 66 </value> No newline at end of file
65 67 <key> No newline at end of file
66 68 <string>diff</string> No newline at end of file
67 69 </key> No newline at end of file
68 70 <value> No newline at end of file
69 71 <list> No newline at end of file
70 72 <string></string> No newline at end of file
71 73 </list> No newline at end of file
72 74 </value> No newline at end of file
73 75 <key> No newline at end of file
74 76 <string>export</string> No newline at end of file
75 77 </key> No newline at end of file
76 78 <value> No newline at end of file
77 79 <list> No newline at end of file
78 80 <string></string> No newline at end of file
79 81 </list> No newline at end of file
80 82 </value> No newline at end of file
81 83 <key> No newline at end of file
82 84 <string>global</string> No newline at end of file
83 85 </key> No newline at end of file
84 86 <value> No newline at end of file
85 87 <list> No newline at end of file
86 88 <string></string> No newline at end of file
87 89 </list> No newline at end of file
88 90 </value> No newline at end of file
89 91 <key> No newline at end of file
90 92 <string>history</string> No newline at end of file
91 93 </key> No newline at end of file
92 94 <value> No newline at end of file
93 95 <list> No newline at end of file
94 96 <string></string> No newline at end of file
95 97 </list> No newline at end of file
96 98 </value> No newline at end of file
97 99 <key> No newline at end of file
98 100 <string>log</string> No newline at end of file
99 101 </key> No newline at end of file
100 102 <value> No newline at end of file
101 103 <list> No newline at end of file
102 104 <string></string> No newline at end of file
103 105 </list> No newline at end of file
104 106 </value> No newline at end of file
105 107 <key> No newline at end of file
106 108 <string>remove</string> No newline at end of file
107 109 </key> No newline at end of file
108 110 <value> No newline at end of file
109 111 <list> No newline at end of file
110 112 <string></string> No newline at end of file
111 113 </list> No newline at end of file
112 114 </value> No newline at end of file
113 115 <key> No newline at end of file
114 116 <string>status</string> No newline at end of file
115 117 </key> No newline at end of file
116 118 <value> No newline at end of file
117 119 <list> No newline at end of file
118 120 <string></string> No newline at end of file
119 121 </list> No newline at end of file
120 122 </value> No newline at end of file
121 123 <key> No newline at end of file
122 124 <string>tag</string> No newline at end of file
123 125 </key> No newline at end of file
124 126 <value> No newline at end of file
125 127 <list> No newline at end of file
126 128 <string></string> No newline at end of file
127 129 </list> No newline at end of file
128 130 </value> No newline at end of file
129 131 <key> No newline at end of file
130 132 <string>update</string> No newline at end of file
131 133 </key> No newline at end of file
132 134 <value> No newline at end of file
133 135 <list> No newline at end of file
134 136 <string></string> No newline at end of file
135 137 </list> No newline at end of file
136 138 </value> No newline at end of file
137 139 </dict> No newline at end of file
138 140 </VcsOptions> No newline at end of file
139 141 <VcsOtherData> No newline at end of file
140 142 <dict> No newline at end of file
141 143 <key> No newline at end of file
142 144 <string>standardLayout</string> No newline at end of file
143 145 </key> No newline at end of file
144 146 <value> No newline at end of file
145 147 <bool>True</bool> No newline at end of file
146 148 </value> No newline at end of file
147 149 </dict> No newline at end of file
148 150 </VcsOtherData> No newline at end of file
149 151 </Vcs> No newline at end of file
150 152 <FiletypeAssociations> No newline at end of file
151 153 <FiletypeAssociation pattern="*.ui" type="FORMS" /> No newline at end of file
152 154 <FiletypeAssociation pattern="*.idl" type="INTERFACES" /> No newline at end of file
153 155 <FiletypeAssociation pattern="*.qm" type="TRANSLATIONS" /> No newline at end of file
154 156 <FiletypeAssociation pattern="*.ptl" type="SOURCES" /> No newline at end of file
155 157 <FiletypeAssociation pattern="*.pyw" type="SOURCES" /> No newline at end of file
156 158 <FiletypeAssociation pattern="*.ui.h" type="FORMS" /> No newline at end of file
157 159 <FiletypeAssociation pattern="*.ts" type="TRANSLATIONS" /> No newline at end of file
158 160 <FiletypeAssociation pattern="*.py" type="SOURCES" /> No newline at end of file
159 161 <FiletypeAssociation pattern="*.qrc" type="RESOURCES" /> No newline at end of file
160 162 </FiletypeAssociations> No newline at end of file
161 163 </Project> No newline at end of file
@@ -1,422 +1,422
1 1 # -*- coding: utf-8 -*- No newline at end of file
2 2 No newline at end of file
3 3 """ No newline at end of file
4 4 Module implementing MainWindow. No newline at end of file
5 5 """ No newline at end of file
6 6 No newline at end of file
7 7 from PyQt4.QtGui import QMainWindow No newline at end of file
8 8 from PyQt4.QtCore import pyqtSignature No newline at end of file
9 9 from PyQt4 import QtCore No newline at end of file
10 10 from Ui_MainWindow import Ui_MainWindow No newline at end of file
11 11 from PyQt4 import QtGui No newline at end of file
12 12 from subprocess import * No newline at end of file
13 13 import sys No newline at end of file
14 14 import os No newline at end of file
15 15 #import subprocess No newline at end of file
16 16 import commands No newline at end of file
17 17 from functions import functions No newline at end of file
18 18 from functions import functions2 No newline at end of file
19 19 No newline at end of file
20 20 class MainWindow(QMainWindow, Ui_MainWindow): No newline at end of file
21 21 """ No newline at end of file
22 22 Class documentation goes here. No newline at end of file
23 23 """ No newline at end of file
24 24 No newline at end of file
25 25 def __init__(self, parent = None): No newline at end of file
26 26 QMainWindow.__init__(self, parent) No newline at end of file
27 27 self.setupUi(self) No newline at end of file
28 28 self.setupUi2() No newline at end of file
29 29 #sys.stdout = self #redirige salida estandar No newline at end of file
30 30 No newline at end of file
31 31 def setupUi2(self): No newline at end of file
32 32 No newline at end of file
33 33 # functions2.detect_devices(self) #busca los dispositivos de grabacion No newline at end of file
34 34 No newline at end of file
35 35 self.var_Discs = 0 #Numero de discos del proyecto No newline at end of file
36 36 self.var_Copys = 0 #Numero de copias No newline at end of file
37 37 self.var_disc_n = 0 No newline at end of file
38 38 self.var_copy_n = 0 No newline at end of file
39 39 No newline at end of file
40 40 self.var_list=[] No newline at end of file
41 41 self.var_sublist=[] No newline at end of file
42 42 No newline at end of file
43 43 self.var_devices=[] No newline at end of file
44 44 No newline at end of file
45 45 self.var_step = 0 No newline at end of file
46 46 self.bool_state_burning = False No newline at end of file
47 47 self.blank_discs = False No newline at end of file
48 48 No newline at end of file
49 49 No newline at end of file
50 50 #Revisa si existe el archivo de confirguracion No newline at end of file
51 51 if os.path.isfile("parameters.conf"): No newline at end of file
52 52 self.txtInfo.append("Archivo de configuracion encontrado") No newline at end of file
53 53 functions2.get_parameters_conf(self) No newline at end of file
54 54 self.txtInfo.append("El proyecto es de "+str(self.var_Discs)+" discos") No newline at end of file
55 55 else: No newline at end of file
56 56 self.txtInfo.append("Elija los parametros de configuracion") No newline at end of file
57 57 functions2.set_parameters_test(self) #Establece ciertos parametros, para pruebas No newline at end of file
58 58 No newline at end of file
59 59 functions2.set_vars(self) #Carga las variables de la clase con los parametros seleccionados No newline at end of file
60 60 No newline at end of file
61 61 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
62 62 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
63 63 functions.load_days(self) No newline at end of file
64 64 No newline at end of file
65 65 if os.path.isfile("parameters.conf"): No newline at end of file
66 66 functions2.enabled_items1(True, self) #Se bloquean los parametros de configuracion No newline at end of file
67 67 No newline at end of file
68 68 No newline at end of file
69 69 self.var_process = QtCore.QProcess() No newline at end of file
70 70 self.connect(self.var_process, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput) No newline at end of file
71 71 self.connect(self.var_process, QtCore.SIGNAL('readyReadStandardError()'), self.readError) No newline at end of file
72 72 self.connect(self.var_process, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished) No newline at end of file
73 73 No newline at end of file
74 74 No newline at end of file
75 75 def write(self, txt): No newline at end of file
76 76 self.txtInfo.append(str(txt)) No newline at end of file
77 77 No newline at end of file
78 78 No newline at end of file
79 79 #----------------------------------------------------- Funciones del proceso --------------------------------------------------------------- No newline at end of file
80 80 No newline at end of file
81 81 def readOuput(self):
82 No newline at end of file
82 self.txtSburn.insertPlainText("stdout: " + QtCore.QString(self.var_process.readAllStandardOutput())) No newline at end of file
83 83 No newline at end of file
84 84 def readError(self):
85 No newline at end of file
85 self.txtSburn.insertPlainText("stderr: " + QtCore.QString(self.var_process.readAllStandardError())) No newline at end of file
86 86 No newline at end of file
87 87 def finished(self): No newline at end of file
88 88 self.txtInfo.append("proceso terminado finished() "+QtCore.QString(self.var_process.exitCode())+"\n") No newline at end of file
89 89 if self.var_disc_n <= self.var_Discs and self.bool_state_burning: No newline at end of file
90 90 self.burning() No newline at end of file
91 91 No newline at end of file
92 92 No newline at end of file
93 93 #----------------------------------------------------- Obtencion de la ruta de los datos --------------------------------------------------------------- No newline at end of file
94 94 No newline at end of file
95 95 @pyqtSignature("") No newline at end of file
96 96 def on_btnDpath_clicked(self): No newline at end of file
97 97 """ No newline at end of file
98 98 Permite seleccionar graficamente el direcorio de los datos a grabar No newline at end of file
99 99 """ No newline at end of file
100 100 self.var_Dpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
101 101 self.txtDpath.setText(self.var_Dpath) No newline at end of file
102 102 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
103 103 functions.load_days(self) No newline at end of file
104 104 No newline at end of file
105 105 No newline at end of file
106 106 @pyqtSignature("") No newline at end of file
107 107 def on_txtDpath_editingFinished(self): No newline at end of file
108 108 """ No newline at end of file
109 109 Carga la ruta editada y verifica que sea correcta y carga la lista de dias No newline at end of file
110 110 """ No newline at end of file
111 111 self.var_Dpath=str(self.txtDpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
112 112 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
113 113 functions.load_days(self) No newline at end of file
114 114 No newline at end of file
115 115 No newline at end of file
116 116 #----------------------------------------------------- Obtencion de las ruta del proyecto --------------------------------------------------------------- No newline at end of file
117 117 No newline at end of file
118 118 @pyqtSignature("") No newline at end of file
119 119 def on_btnRpath_clicked(self): No newline at end of file
120 120 """ No newline at end of file
121 121 Permite seleccionar graficamente el direcorio del proyecto No newline at end of file
122 122 """ No newline at end of file
123 123 self.var_Rpath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
124 124 self.txtRpath.setText(self.var_Rpath) No newline at end of file
125 125 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
126 126 No newline at end of file
127 127 No newline at end of file
128 128 @pyqtSignature("") No newline at end of file
129 129 def on_txtRpath_editingFinished(self): No newline at end of file
130 130 """ No newline at end of file
131 131 Valida la ruta del proyecto No newline at end of file
132 132 """ No newline at end of file
133 133 self.var_Rpath = str(self.txtRpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
134 134 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
135 135 No newline at end of file
136 136 No newline at end of file
137 137 #----------------------------------------------------- Tipo de datos --------------------------------------------------------------- No newline at end of file
138 138 No newline at end of file
139 139 @pyqtSignature("int") No newline at end of file
140 140 def on_lstDtype_activated(self, index): No newline at end of file
141 141 """ No newline at end of file
142 142 Permite elegir entre los tipos de archivos No newline at end of file
143 143 """ No newline at end of file
144 144 self.txtDtype.setReadOnly(True) No newline at end of file
145 145 if index == 0: No newline at end of file
146 146 self.var_Dtype ='r' No newline at end of file
147 147 elif index == 1: No newline at end of file
148 148 self.var_Dtype ='pdata' No newline at end of file
149 149 elif index == 2: No newline at end of file
150 150 self.var_Dtype ='sswma' No newline at end of file
151 151 else : No newline at end of file
152 152 self.var_Dtype ='' No newline at end of file
153 153 self.txtDtype.setReadOnly(False) No newline at end of file
154 154 No newline at end of file
155 155 self.txtDtype.setText(self.var_Dtype) No newline at end of file
156 156 functions.load_days(self) #llamada a funcion No newline at end of file
157 157 No newline at end of file
158 158 @pyqtSignature("") No newline at end of file
159 159 def on_txtDtype_editingFinished(self): No newline at end of file
160 160 self.var_Dtype=str(self.txtDtype.text()) No newline at end of file
161 161 functions.load_days(self) #llamada a funcion No newline at end of file
162 162 No newline at end of file
163 163 No newline at end of file
164 164 #----------------------------------------------------- Etiqueta --------------------------------------------------------------- No newline at end of file
165 165 No newline at end of file
166 166 @pyqtSignature("") No newline at end of file
167 167 def on_txtElabel_editingFinished(self): No newline at end of file
168 168 self.var_Elabel = str(self.txtElabel.text()) No newline at end of file
169 169 No newline at end of file
170 170 #----------------------------------------------------- Numero de copias --------------------------------------------------------------- No newline at end of file
171 171 @pyqtSignature("") No newline at end of file
172 172 def on_txtCopys_editingFinished(self): No newline at end of file
173 173 self.var_Copys = self.txtCopys.value() No newline at end of file
174 174 No newline at end of file
175 175 #----------------------------------------------------- Seleccion del rango de fechas --------------------------------------------------------------- No newline at end of file
176 176 No newline at end of file
177 177 @pyqtSignature("int") #CLOSED No newline at end of file
178 178 def on_lstStartDay_activated(self, index): No newline at end of file
179 179 """ No newline at end of file
180 180 Cambia la lista de opciones en lstStopDay No newline at end of file
181 181 """ No newline at end of file
182 182 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex() No newline at end of file
183 183 self.lstStopDay.clear() No newline at end of file
184 184 No newline at end of file
185 185 for i in self.var_list[index:]: No newline at end of file
186 186 self.lstStopDay.addItem(i) No newline at end of file
187 187 No newline at end of file
188 188 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index) No newline at end of file
189 189 No newline at end of file
190 190 functions.get_sub_list(self) No newline at end of file
191 191 No newline at end of file
192 192 No newline at end of file
193 193 @pyqtSignature("int") #CLOSED No newline at end of file
194 194 def on_lstStopDay_activated(self, index): No newline at end of file
195 195 """ No newline at end of file
196 196 Cambia la lista de opciones en lstStartDay No newline at end of file
197 197 """ No newline at end of file
198 198 var_StartDay_index=self.lstStartDay.currentIndex() No newline at end of file
199 199 var_end_index = self.lstStopDay.count() - index No newline at end of file
200 200 self.lstStartDay.clear() No newline at end of file
201 201 No newline at end of file
202 202 for i in self.var_list[:len(self.var_list) - var_end_index + 1]: No newline at end of file
203 203 self.lstStartDay.addItem(i) No newline at end of file
204 204 No newline at end of file
205 205 self.lstStartDay.setCurrentIndex(var_StartDay_index) No newline at end of file
206 206 No newline at end of file
207 207 functions.get_sub_list(self) No newline at end of file
208 208 No newline at end of file
209 209 No newline at end of file
210 210 #----------------------------------------------------- Capacidad del dispositivo de grabacion --------------------------------------------------------------- No newline at end of file
211 211 No newline at end of file
212 212 @pyqtSignature("") No newline at end of file
213 213 def on_txtDcapacity_editingFinished(self): No newline at end of file
214 214 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
215 215 No newline at end of file
216 216 No newline at end of file
217 217 @pyqtSignature("int") #CLOSED No newline at end of file
218 218 def on_lstDcapacity_activated(self, index): No newline at end of file
219 219 """ No newline at end of file
220 220 Permite elegir el tamaΓ±o del disco No newline at end of file
221 221 """ No newline at end of file
222 222 if index == 0: No newline at end of file
223 223 var_size=25.0 No newline at end of file
224 224 elif index == 1: No newline at end of file
225 225 var_size=8.5 No newline at end of file
226 226 elif index == 2: No newline at end of file
227 227 var_size=4.7 No newline at end of file
228 228 elif index == 3: No newline at end of file
229 229 var_size=0.7 No newline at end of file
230 230 No newline at end of file
231 231 if index != 4: No newline at end of file
232 232 self.txtDcapacity.setValue(var_size*10**9/1024**2) No newline at end of file
233 233 self.txtDcapacity.setReadOnly(True) No newline at end of file
234 234 else: No newline at end of file
235 235 self.txtDcapacity.setValue(100.0) No newline at end of file
236 236 self.txtDcapacity.setReadOnly(False) No newline at end of file
237 237 No newline at end of file
238 238 self.var_lstDcapacity = self.lstDcapacity.currentIndex() No newline at end of file
239 239 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
240 240 No newline at end of file
241 241 No newline at end of file
242 242 #============================================================================== No newline at end of file
243 243 # Botones para la generacion de los archivos de configuracion y el proceso de grabacion No newline at end of file
244 244 #============================================================================== No newline at end of file
245 245 No newline at end of file
246 246 #----------------------------------------------------- Generacion de la configuracion usando los parametros --------------------------------------------------------------- No newline at end of file
247 247 No newline at end of file
248 248 @pyqtSignature("") No newline at end of file
249 249 def on_btnGbkp_clicked(self): No newline at end of file
250 250 """ No newline at end of file
251 251 Generacion de archivos de configuracion usando los parametros No newline at end of file
252 252 """ No newline at end of file
253 253 No newline at end of file
254 254 if functions.validate_parameters(self) == False: No newline at end of file
255 255 return No newline at end of file
256 256 No newline at end of file
257 257 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente
258 No newline at end of file
258 list_dirs=['gpath','iso','ppath'] No newline at end of file
259 259 bool_make_dirs = functions.make_dirs(list_dirs, self) No newline at end of file
260 260 if bool_make_dirs == False: No newline at end of file
261 261 return No newline at end of file
262 262 No newline at end of file
263 263 var_files_list = functions.list_files(self) #Se obtiene la lista de archivos a grabar No newline at end of file
264 264 self.var_Discs = functions.make_files_dat(var_files_list, self) #Se crean los archivos .dat
265 No newline at end of file
265 functions.make_files_print(self) # Se crean los archivos .print No newline at end of file
266 266 functions2.make_parameters_conf(self) # se crea el archivo parameters.conf No newline at end of file
267 267 self.txtInfo.append("Numero de archivos .iso a grabar: "+str(self.var_Discs)) No newline at end of file
268 268 self.txtInfo.append("Numero de DVDs totales a grabar: "+str(self.var_Discs * self.var_Copys)) No newline at end of file
269 269 #Se bloquean los parametros de configuracion No newline at end of file
270 270 functions2.enabled_items1(True, self) No newline at end of file
271 271 No newline at end of file
272 272 No newline at end of file
273 273 No newline at end of file
274 274 #----------------------------------------------------- Permite reiniciar la configuracion --------------------------------------------------------------- No newline at end of file
275 275 No newline at end of file
276 276 @pyqtSignature("") No newline at end of file
277 277 def on_btnRestart_clicked(self): No newline at end of file
278 278 """ No newline at end of file
279 279 Permite que se puedan cambiar los parametros No newline at end of file
280 280 """ No newline at end of file
281 281 functions2.enabled_items1(False, self) No newline at end of file
282 282 os.remove("parameters.conf") No newline at end of file
283 283 No newline at end of file
284 284 No newline at end of file
285 285 #----------------------------------------------------- Iniciar proceso de grabacion --------------------------------------------------------------- No newline at end of file
286 286 No newline at end of file
287 287 @pyqtSignature("") No newline at end of file
288 288 def on_btnStartburn_clicked(self): No newline at end of file
289 289 """ No newline at end of file
290 290 Se inicia el proceso de grabacion No newline at end of file
291 291 """ No newline at end of file
292 292 No newline at end of file
293 293 if self.blank_discs == True: No newline at end of file
294 294 self.btnStartburn.setEnabled(False) No newline at end of file
295 295 self.burning() No newline at end of file
296 296 return No newline at end of file
297 297 No newline at end of file
298 298 #Verifica que exista algun dispositivo de grabacion seleccionado No newline at end of file
299 299 if not(functions2.selected_devices(self)): No newline at end of file
300 300 self.txtInfo.append("No hay ningun dispositivo de grabacion seleccionado ") No newline at end of file
301 301 return No newline at end of file
302 302 No newline at end of file
303 303 #Lista los dispositivos de grabacion a usar No newline at end of file
304 304 for dev in self.var_devices: No newline at end of file
305 305 self.txtInfo.append("dispositivo :"+dev) No newline at end of file
306 306 No newline at end of file
307 307 #Asigna las variables con los valores iniciales No newline at end of file
308 308 self.var_disc_n = 0 # numero de disco actual para grabacion No newline at end of file
309 309 self.var_copy_n = 0 No newline at end of file
310 310 self.var_step = 0 No newline at end of file
311 311 self.bool_state_burning = True No newline at end of file
312 312 self.blank_discs = False No newline at end of file
313 313 No newline at end of file
314 314 functions2.enabled_items2(True, self) No newline at end of file
315 315 self.burning() No newline at end of file
316 316 No newline at end of file
317 317 def burning(self): No newline at end of file
318 318 No newline at end of file
319 319 var_Rpath_ppath=self.var_Rpath+"/ppath" No newline at end of file
320 320 var_Rpath_iso=self.var_Rpath+"/iso" No newline at end of file
321 321 No newline at end of file
322 322 #Creacion del archivo.iso para la grabacion No newline at end of file
323 323 if self.var_step == 0: No newline at end of file
324 324 #borra la imagen.iso del numero de disco anterior No newline at end of file
325 325 if self.var_disc_n > 0: No newline at end of file
326 326 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso" No newline at end of file
327 327 # os.remove(file_iso) No newline at end of file
328 328 No newline at end of file
329 329 self.var_disc_n += 1 # aumenta numero de disco actual para grabacion No newline at end of file
330 330 self.var_copy_n = 0 # Resetea el numero actual de la copia No newline at end of file
331 331 No newline at end of file
332 332 #Si ya se grabaron todos los discos No newline at end of file
333 333 if self.var_disc_n > self.var_Discs: No newline at end of file
334 334 self.bool_state_burning = False No newline at end of file
335 335 self.txtInfo.append("GRABACION TERMINADA") No newline at end of file
336 336 # functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion No newline at end of file
337 337 No newline at end of file
338 338 return No newline at end of file
339 339 No newline at end of file
340 340 self.txtInfo.append("########## DISCO NUMERO: "+str(self.var_disc_n)+"##########") No newline at end of file
341 341 self.txtInfo.append("--------Creando el iso del disco numero: "+str(self.var_disc_n)) No newline at end of file
342 342 No newline at end of file
343 343 #comando para la creacion del archivo.iso No newline at end of file
344 344 file_dat=var_Rpath_ppath+"/"+self.var_Elabel+"_"+functions.i2s(self.var_disc_n)+".dat" No newline at end of file
345 345 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso" No newline at end of file
346 346 var_cmd = 'genisoimage -hide-joliet-trans-tbl -joliet-long -r ' No newline at end of file
347 347 var_cmd += ' -A '+self.var_Elabel+' -V '+self.var_Elabel No newline at end of file
348 348 var_cmd += ' -graft-points -path-list '+ file_dat+' -o '+file_iso No newline at end of file
349 349 self.var_step = 1 #Se ira al paso de la grabacion en la siguiente llamada No newline at end of file
350 350 No newline at end of file
351 351 #Grabacion de los DVDs No newline at end of file
352 352 elif self.var_step == 1: No newline at end of file
353 353 self.var_copy_n += 1 # numero de copia actual No newline at end of file
354 354 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) ) % len(self.var_devices) No newline at end of file
355 355 No newline at end of file
356 356 if var_index == 0 and self.blank_discs == False: No newline at end of file
357 357 self.txtInfo.append("EXPULSANDO BANDEJAS") No newline at end of file
358 358 self.var_copy_n -= 1 #El numero de copia se regresa al estado anterior No newline at end of file
359 359 # functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion No newline at end of file
360 360 self.blank_discs = True No newline at end of file
361 361 self.btnStartburn.setText("Continue") No newline at end of file
362 362 self.btnStartburn.setEnabled(True) No newline at end of file
363 363 return No newline at end of file
364 364 No newline at end of file
365 365 self.blank_discs = False No newline at end of file
366 366 No newline at end of file
367 367 self.txtInfo.append("Grabando la copia numero: "+str(self.var_copy_n)) No newline at end of file
368 368 #Si esta es la ultima copia se pasara al siguiente disco en la siguiente llamada a la funcion No newline at end of file
369 369 if self.var_copy_n == self.var_Copys: No newline at end of file
370 370 self.var_step = 0 No newline at end of file
371 371 No newline at end of file
372 372 var_dev_tmp = self.var_devices[var_index] No newline at end of file
373 373 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso" No newline at end of file
374 374 var_cmd = "wodim -v dev="+var_dev_tmp+" speed=16 "+ file_iso No newline at end of file
375 375 No newline at end of file
376 376 self.var_process.start('ls') No newline at end of file
377 377 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
378 378 No newline at end of file
379 379 # self.txtInfo.append("creando iso") No newline at end of file
380 380 # self.var_process.start(var_cmd) No newline at end of file
381 381 No newline at end of file
382 382 No newline at end of file
383 383 #----------------------------------------------------- Detener proceso de grabacion --------------------------------------------------------------- No newline at end of file
384 384 No newline at end of file
385 385 @pyqtSignature("") No newline at end of file
386 386 def on_btnStopburn_clicked(self): No newline at end of file
387 387 """ No newline at end of file
388 388 Slot documentation goes here. No newline at end of file
389 389 """ No newline at end of file
390 390 self.bool_state_burning = False No newline at end of file
391 391 self.var_process.terminate() #Termina el proceso, si puede No newline at end of file
392 392 # self.var_process.kill() #Mata el proceso, no es la forma adecuada, solo usar si terminate() no funciona No newline at end of file
393 393 self.txtInfo.append("SE DETUVO LA GRABACION MANUALMENTE") No newline at end of file
394 394 functions2.enabled_items2(False, self) No newline at end of file
395 395 self.btnStartburn.setText("Start Burn") No newline at end of file
396 396 No newline at end of file
397 397 No newline at end of file
398 398 #----------------------------------------------------- Testeo de las unidades de grabacion --------------------------------------------------------------- No newline at end of file
399 399 No newline at end of file
400 400 @pyqtSignature("") No newline at end of file
401 401 def on_btnTdevA_clicked(self): No newline at end of file
402 402 var_dev = str(self.txtDeviceA.text()) No newline at end of file
403 403 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
404 404 commands.getstatusoutput(var_cmd) No newline at end of file
405 405 No newline at end of file
406 406 @pyqtSignature("") No newline at end of file
407 407 def on_btnTdevB_clicked(self): No newline at end of file
408 408 var_dev = str(self.txtDeviceB.text()) No newline at end of file
409 409 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
410 410 commands.getstatusoutput(var_cmd) No newline at end of file
411 411 No newline at end of file
412 412 @pyqtSignature("") No newline at end of file
413 413 def on_btnTdevC_clicked(self): No newline at end of file
414 414 var_dev = str(self.txtDeviceC.text()) No newline at end of file
415 415 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
416 416 commands.getstatusoutput(var_cmd) No newline at end of file
417 417 No newline at end of file
418 418 @pyqtSignature("") No newline at end of file
419 419 def on_btnTdevD_clicked(self): No newline at end of file
420 420 var_dev = str(self.txtDeviceD.text()) No newline at end of file
421 421 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
422 422 commands.getstatusoutput(var_cmd) No newline at end of file
This diff has been collapsed as it changes many lines, (1098 lines changed) Show them Hide them
@@ -1,1022 +1,1406
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>809</width>
No newline at end of file
10 No newline at end of file
10 <height>737</height> No newline at end of file
11 11 </rect> No newline at end of file
12 12 </property> No newline at end of file
13 13 <property name="windowTitle"> No newline at end of file
14 14 <string>JRO BACKUP MANAGER</string> No newline at end of file
15 15 </property> No newline at end of file
16 16 <widget class="QWidget" name="centralwidget"> No newline at end of file
17 17 <layout class="QVBoxLayout" name="verticalLayout"> No newline at end of file
18 18 <item> No newline at end of file
19 19 <widget class="QTabWidget" name="tabWidget"> No newline at end of file
20 20 <property name="enabled"> No newline at end of file
21 21 <bool>true</bool> No newline at end of file
22 22 </property> No newline at end of file
23 23 <property name="sizePolicy"> No newline at end of file
24 24 <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> No newline at end of file
25 25 <horstretch>0</horstretch> No newline at end of file
26 26 <verstretch>0</verstretch> No newline at end of file
27 27 </sizepolicy> No newline at end of file
28 28 </property> No newline at end of file
29 29 <property name="currentIndex"> No newline at end of file
30 30 <number>0</number> No newline at end of file
31 31 </property> No newline at end of file
32 32 <widget class="QWidget" name="tabParameters"> No newline at end of file
33 33 <property name="enabled"> No newline at end of file
34 34 <bool>true</bool> No newline at end of file
35 35 </property> No newline at end of file
36 36 <attribute name="title"> No newline at end of file
37 37 <string>Parameters</string> No newline at end of file
38 38 </attribute> No newline at end of file
39 39 <layout class="QVBoxLayout" name="verticalLayout_2"> No newline at end of file
40 40 <item> No newline at end of file
41 41 <layout class="QHBoxLayout" name="horizontalLayout"> No newline at end of file
42 42 <property name="sizeConstraint"> No newline at end of file
43 43 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
44 44 </property> No newline at end of file
45 45 <item> No newline at end of file
46 46 <widget class="QLineEdit" name="txtDpath"> No newline at end of file
47 47 <property name="sizePolicy"> No newline at end of file
48 48 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> No newline at end of file
49 49 <horstretch>0</horstretch> No newline at end of file
50 50 <verstretch>0</verstretch> No newline at end of file
51 51 </sizepolicy> No newline at end of file
52 52 </property> No newline at end of file
53 53 </widget> No newline at end of file
54 54 </item> No newline at end of file
55 55 <item> No newline at end of file
56 56 <widget class="QPushButton" name="btnDpath"> No newline at end of file
57 57 <property name="sizePolicy"> No newline at end of file
58 58 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
59 59 <horstretch>0</horstretch> No newline at end of file
60 60 <verstretch>0</verstretch> No newline at end of file
61 61 </sizepolicy> No newline at end of file
62 62 </property> No newline at end of file
63 63 <property name="text"> No newline at end of file
64 64 <string>Data Path</string> No newline at end of file
65 65 </property> No newline at end of file
66 66 <property name="checkable"> No newline at end of file
67 67 <bool>false</bool> No newline at end of file
68 68 </property> No newline at end of file
69 69 </widget> No newline at end of file
70 70 </item> No newline at end of file
71 71 </layout> No newline at end of file
72 72 </item> No newline at end of file
73 73 <item> No newline at end of file
74 74 <layout class="QHBoxLayout" name="horizontalLayout_3"> No newline at end of file
75 75 <item> No newline at end of file
76 76 <widget class="QLineEdit" name="txtRpath"/> No newline at end of file
77 77 </item> No newline at end of file
78 78 <item> No newline at end of file
79 79 <widget class="QPushButton" name="btnRpath"> No newline at end of file
80 80 <property name="text"> No newline at end of file
81 81 <string>Resource Path</string> No newline at end of file
82 82 </property> No newline at end of file
83 83 </widget> No newline at end of file
84 84 </item> No newline at end of file
85 85 </layout> No newline at end of file
86 86 </item> No newline at end of file
87 87 <item> No newline at end of file
88 88 <widget class="QLabel" name="lblDtype"> No newline at end of file
89 89 <property name="text"> No newline at end of file
90 90 <string>Data Type</string> No newline at end of file
91 91 </property> No newline at end of file
92 92 </widget> No newline at end of file
93 93 </item> No newline at end of file
94 94 <item> No newline at end of file
95 95 <layout class="QHBoxLayout" name="horizontalLayout_4"> No newline at end of file
96 96 <item> No newline at end of file
97 97 <widget class="QComboBox" name="lstDtype"> No newline at end of file
98 98 <item> No newline at end of file
99 99 <property name="text"> No newline at end of file
100 100 <string>Raw Data</string> No newline at end of file
101 101 </property> No newline at end of file
102 102 </item> No newline at end of file
103 103 <item> No newline at end of file
104 104 <property name="text"> No newline at end of file
105 105 <string>Process Data</string> No newline at end of file
106 106 </property> No newline at end of file
107 107 </item> No newline at end of file
108 108 <item> No newline at end of file
109 109 <property name="text"> No newline at end of file
110 110 <string>BLTR Data</string> No newline at end of file
111 111 </property> No newline at end of file
112 112 </item> No newline at end of file
113 113 <item> No newline at end of file
114 114 <property name="text"> No newline at end of file
115 115 <string>Other</string> No newline at end of file
116 116 </property> No newline at end of file
117 117 </item> No newline at end of file
118 118 </widget> No newline at end of file
119 119 </item> No newline at end of file
120 120 <item> No newline at end of file
121 121 <widget class="QLineEdit" name="txtDtype"> No newline at end of file
122 <property name="sizePolicy">
No newline at end of file
123 <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
No newline at end of file
124 <horstretch>0</horstretch>
No newline at end of file
125 <verstretch>0</verstretch>
No newline at end of file
126 </sizepolicy>
No newline at end of file
127 </property> No newline at end of file
122 128 <property name="text"> No newline at end of file
123 129 <string>r</string> No newline at end of file
124 130 </property> No newline at end of file
125 131 <property name="readOnly"> No newline at end of file
126 132 <bool>true</bool> No newline at end of file
127 133 </property> No newline at end of file
128 134 </widget> No newline at end of file
129 135 </item> No newline at end of file
130 136 <item>
137 No newline at end of file
131 <widget class="QCheckBox" name="chkMST">
No newline at end of file
138 No newline at end of file
132 <property name="text">
No newline at end of file
139 No newline at end of file
133 <string>MST-ISR Data</string>
No newline at end of file
140 No newline at end of file
134 </property>
No newline at end of file
141 No newline at end of file
135 </widget> No newline at end of file
No newline at end of file
142 <enum>QSizePolicy::Expanding</enum>
No newline at end of file
143 </property>
No newline at end of file
144 <property name="sizeHint" stdset="0">
No newline at end of file
145 <size>
No newline at end of file
146 <width>40</width>
No newline at end of file
147 <height>20</height>
No newline at end of file
148 </size>
No newline at end of file
149 </property>
No newline at end of file
150 </spacer> No newline at end of file
136 151 </item> No newline at end of file
137 152 </layout> No newline at end of file
138 153 </item> No newline at end of file
139 154 <item> No newline at end of file
140 155 <layout class="QHBoxLayout" name="horizontalLayout_6"> No newline at end of file
141 156 <item> No newline at end of file
142 157 <widget class="QLabel" name="lblElabel"> No newline at end of file
143 158 <property name="text"> No newline at end of file
144 159 <string>Exp. Label at device</string> No newline at end of file
145 160 </property> No newline at end of file
146 161 </widget> No newline at end of file
147 162 </item> No newline at end of file
148 163 <item> No newline at end of file
149 164 <widget class="QLabel" name="lblCopys"> No newline at end of file
150 165 <property name="text"> No newline at end of file
151 166 <string>Copys</string> No newline at end of file
152 167 </property> No newline at end of file
153 168 </widget> No newline at end of file
154 169 </item> No newline at end of file
155 170 </layout> No newline at end of file
156 171 </item> No newline at end of file
157 172 <item> No newline at end of file
158 173 <layout class="QHBoxLayout" name="horizontalLayout_5"> No newline at end of file
159 174 <item> No newline at end of file
160 175 <widget class="QLineEdit" name="txtElabel"/> No newline at end of file
161 176 </item> No newline at end of file
162 177 <item> No newline at end of file
163 178 <widget class="QSpinBox" name="txtCopys"> No newline at end of file
164 179 <property name="sizePolicy"> No newline at end of file
165 180 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
166 181 <horstretch>0</horstretch> No newline at end of file
167 182 <verstretch>0</verstretch> No newline at end of file
168 183 </sizepolicy> No newline at end of file
169 184 </property> No newline at end of file
170 185 <property name="minimum"> No newline at end of file
171 186 <number>1</number> No newline at end of file
172 187 </property> No newline at end of file
173 188 </widget> No newline at end of file
174 189 </item> No newline at end of file
175 190 </layout> No newline at end of file
176 191 </item> No newline at end of file
177 192 <item> No newline at end of file
178 193 <layout class="QHBoxLayout" name="horizontalLayout_7"> No newline at end of file
179 194 <item> No newline at end of file
180 195 <widget class="QLabel" name="lblStartDay"> No newline at end of file
181 196 <property name="text"> No newline at end of file
182 197 <string>Start Day:</string> No newline at end of file
183 198 </property> No newline at end of file
184 199 </widget> No newline at end of file
185 200 </item> No newline at end of file
186 201 <item> No newline at end of file
187 202 <widget class="QLabel" name="lblStopDay"> No newline at end of file
188 203 <property name="text"> No newline at end of file
189 204 <string>Stop Day:</string> No newline at end of file
190 205 </property> No newline at end of file
191 206 </widget> No newline at end of file
192 207 </item> No newline at end of file
193 208 </layout> No newline at end of file
194 209 </item> No newline at end of file
195 210 <item> No newline at end of file
196 211 <layout class="QHBoxLayout" name="horizontalLayout_8"> No newline at end of file
197 212 <item> No newline at end of file
198 213 <widget class="QComboBox" name="lstStartDay"/> No newline at end of file
199 214 </item> No newline at end of file
200 215 <item> No newline at end of file
201 216 <widget class="QComboBox" name="lstStopDay"/> No newline at end of file
202 217 </item> No newline at end of file
203 218 </layout> No newline at end of file
204 219 </item> No newline at end of file
205 220 </layout> No newline at end of file
206 221 </widget> No newline at end of file
207 222 <widget class="QWidget" name="tabDconfig"> No newline at end of file
208 223 <property name="enabled"> No newline at end of file
209 224 <bool>true</bool> No newline at end of file
210 225 </property> No newline at end of file
211 226 <property name="sizePolicy"> No newline at end of file
212 227 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
213 228 <horstretch>0</horstretch> No newline at end of file
214 229 <verstretch>0</verstretch> No newline at end of file
215 230 </sizepolicy> No newline at end of file
216 231 </property> No newline at end of file
217 232 <attribute name="title"> No newline at end of file
218 233 <string>Device Config.</string> No newline at end of file
219 234 </attribute> No newline at end of file
220 235 <layout class="QVBoxLayout" name="verticalLayout_3"> No newline at end of file
221 236 <item>
237 No newline at end of file
222 <layout class="QGridLayout" name="gridLayout">
No newline at end of file
238 No newline at end of file
223 <item row="0" column="0"> No newline at end of file
224 239 <layout class="QVBoxLayout" name="verticalLayout_15"> No newline at end of file
225 240 <item> No newline at end of file
226 241 <widget class="QCheckBox" name="chkDevA"> No newline at end of file
227 242 <property name="text"> No newline at end of file
228 243 <string>Dev A</string> No newline at end of file
229 244 </property> No newline at end of file
230 245 <property name="checked"> No newline at end of file
231 246 <bool>true</bool> No newline at end of file
232 247 </property> No newline at end of file
233 248 </widget> No newline at end of file
234 249 </item> No newline at end of file
235 250 <item> No newline at end of file
236 251 <widget class="QWidget" name="grpDevA" native="true"> No newline at end of file
237 252 <layout class="QVBoxLayout" name="verticalLayout_11"> No newline at end of file
238 253 <item> No newline at end of file
239 254 <widget class="QLineEdit" name="txtDeviceA"/> No newline at end of file
240 255 </item> No newline at end of file
241 256 <item> No newline at end of file
242 257 <widget class="QLineEdit" name="txtBspeedA"> No newline at end of file
243 258 <property name="text"> No newline at end of file
244 259 <string>16</string> No newline at end of file
245 260 </property> No newline at end of file
246 261 </widget> No newline at end of file
247 262 </item> No newline at end of file
248 263 <item> No newline at end of file
249 264 <widget class="QLineEdit" name="txtBmodeA"> No newline at end of file
250 265 <property name="text"> No newline at end of file
251 266 <string>-sao</string> No newline at end of file
252 267 </property> No newline at end of file
253 268 </widget> No newline at end of file
254 269 </item> No newline at end of file
255 270 <item> No newline at end of file
256 271 <widget class="QPushButton" name="btnTdevA"> No newline at end of file
257 272 <property name="text"> No newline at end of file
258 273 <string>Test DevA</string> No newline at end of file
259 274 </property> No newline at end of file
260 275 </widget> No newline at end of file
261 276 </item> No newline at end of file
262 277 </layout> No newline at end of file
263 278 </widget> No newline at end of file
264 279 </item> No newline at end of file
265 280 </layout> No newline at end of file
266 281 </item>
282 No newline at end of file
267 <item row="0" column="1"> No newline at end of file
268 283 <layout class="QVBoxLayout" name="verticalLayout_16"> No newline at end of file
269 284 <item> No newline at end of file
270 285 <widget class="QCheckBox" name="chkDevB"> No newline at end of file
271 286 <property name="text"> No newline at end of file
272 287 <string>Dev B</string> No newline at end of file
273 288 </property> No newline at end of file
274 289 <property name="checked"> No newline at end of file
275 290 <bool>true</bool> No newline at end of file
276 291 </property> No newline at end of file
277 292 </widget> No newline at end of file
278 293 </item> No newline at end of file
279 294 <item> No newline at end of file
280 295 <widget class="QWidget" name="grpDevB" native="true"> No newline at end of file
281 296 <layout class="QVBoxLayout" name="verticalLayout_12"> No newline at end of file
282 297 <item> No newline at end of file
283 298 <widget class="QLineEdit" name="txtDeviceB"/> No newline at end of file
284 299 </item> No newline at end of file
285 300 <item> No newline at end of file
286 301 <widget class="QLineEdit" name="txtBspeedB"> No newline at end of file
287 302 <property name="text"> No newline at end of file
288 303 <string>16</string> No newline at end of file
289 304 </property> No newline at end of file
290 305 </widget> No newline at end of file
291 306 </item> No newline at end of file
292 307 <item> No newline at end of file
293 308 <widget class="QLineEdit" name="txtBmodeB"> No newline at end of file
294 309 <property name="text"> No newline at end of file
295 310 <string>-sao</string> No newline at end of file
296 311 </property> No newline at end of file
297 312 </widget> No newline at end of file
298 313 </item> No newline at end of file
299 314 <item> No newline at end of file
300 315 <widget class="QPushButton" name="btnTdevB"> No newline at end of file
301 316 <property name="text"> No newline at end of file
302 317 <string>Test DevB</string> No newline at end of file
303 318 </property> No newline at end of file
304 319 </widget> No newline at end of file
305 320 </item> No newline at end of file
306 321 </layout> No newline at end of file
307 322 </widget> No newline at end of file
308 323 </item> No newline at end of file
309 324 </layout> No newline at end of file
310 325 </item>
326 No newline at end of file
311 <item row="0" column="2"> No newline at end of file
312 327 <layout class="QVBoxLayout" name="verticalLayout_17"> No newline at end of file
313 328 <item> No newline at end of file
314 329 <widget class="QCheckBox" name="chkDevC"> No newline at end of file
315 330 <property name="text"> No newline at end of file
316 331 <string>Dev C</string> No newline at end of file
317 332 </property> No newline at end of file
318 333 <property name="checked"> No newline at end of file
319 334 <bool>true</bool> No newline at end of file
320 335 </property> No newline at end of file
321 336 </widget> No newline at end of file
322 337 </item> No newline at end of file
323 338 <item> No newline at end of file
324 339 <widget class="QWidget" name="grpDevC" native="true"> No newline at end of file
325 340 <layout class="QVBoxLayout" name="verticalLayout_13"> No newline at end of file
326 341 <item> No newline at end of file
327 342 <widget class="QLineEdit" name="txtDeviceC"/> No newline at end of file
328 343 </item> No newline at end of file
329 344 <item> No newline at end of file
330 345 <widget class="QLineEdit" name="txtBspeedC"> No newline at end of file
331 346 <property name="text"> No newline at end of file
332 347 <string>16</string> No newline at end of file
333 348 </property> No newline at end of file
334 349 </widget> No newline at end of file
335 350 </item> No newline at end of file
336 351 <item> No newline at end of file
337 352 <widget class="QLineEdit" name="txtBmodeC"> No newline at end of file
338 353 <property name="text"> No newline at end of file
339 354 <string>-sao</string> No newline at end of file
340 355 </property> No newline at end of file
341 356 </widget> No newline at end of file
342 357 </item> No newline at end of file
343 358 <item> No newline at end of file
344 359 <widget class="QPushButton" name="btnTdevC"> No newline at end of file
345 360 <property name="text"> No newline at end of file
346 361 <string>Test DevC</string> No newline at end of file
347 362 </property> No newline at end of file
348 363 </widget> No newline at end of file
349 364 </item> No newline at end of file
350 365 </layout> No newline at end of file
351 366 </widget> No newline at end of file
352 367 </item> No newline at end of file
353 368 </layout> No newline at end of file
354 369 </item>
370 No newline at end of file
355 <item row="0" column="3"> No newline at end of file
356 371 <layout class="QVBoxLayout" name="verticalLayout_18"> No newline at end of file
357 372 <item> No newline at end of file
358 373 <widget class="QCheckBox" name="chkDevD"> No newline at end of file
359 374 <property name="text"> No newline at end of file
360 375 <string>Dev D</string> No newline at end of file
361 376 </property> No newline at end of file
362 377 <property name="checked"> No newline at end of file
363 378 <bool>true</bool> No newline at end of file
364 379 </property> No newline at end of file
365 380 </widget> No newline at end of file
366 381 </item> No newline at end of file
367 382 <item> No newline at end of file
368 383 <widget class="QWidget" name="grpDevD" native="true"> No newline at end of file
369 384 <layout class="QVBoxLayout" name="verticalLayout_14"> No newline at end of file
370 385 <item> No newline at end of file
371 386 <widget class="QLineEdit" name="txtDeviceD"/> No newline at end of file
372 387 </item> No newline at end of file
373 388 <item> No newline at end of file
374 389 <widget class="QLineEdit" name="txtBspeedD"> No newline at end of file
375 390 <property name="text"> No newline at end of file
376 391 <string>16</string> No newline at end of file
377 392 </property> No newline at end of file
378 393 </widget> No newline at end of file
379 394 </item> No newline at end of file
380 395 <item> No newline at end of file
381 396 <widget class="QLineEdit" name="txtBmodeD"> No newline at end of file
382 397 <property name="text"> No newline at end of file
383 398 <string>-sao</string> No newline at end of file
384 399 </property> No newline at end of file
385 400 </widget> No newline at end of file
386 401 </item> No newline at end of file
387 402 <item> No newline at end of file
388 403 <widget class="QPushButton" name="btnTdevD"> No newline at end of file
389 404 <property name="text"> No newline at end of file
390 405 <string>Test DevD</string> No newline at end of file
391 406 </property> No newline at end of file
392 407 </widget> No newline at end of file
393 408 </item> No newline at end of file
394 409 </layout> No newline at end of file
395 410 </widget> No newline at end of file
396 411 </item> No newline at end of file
397 412 </layout> No newline at end of file
398 413 </item>
414 No newline at end of file
399 <item row="0" column="4"> No newline at end of file
400 415 <layout class="QVBoxLayout" name="verticalLayout_19"> No newline at end of file
401 416 <item>
417 No newline at end of file
402 <widget class="QLabel" name="label_2">
No newline at end of file
418 No newline at end of file
403 <property name="text">
No newline at end of file
419 No newline at end of file
404 <string/>
No newline at end of file
420 No newline at end of file
405 </property>
No newline at end of file
421 No newline at end of file
406 </widget> No newline at end of file
No newline at end of file
422 <enum>QSizePolicy::Fixed</enum>
No newline at end of file
423 </property>
No newline at end of file
424 <property name="sizeHint" stdset="0">
No newline at end of file
425 <size>
No newline at end of file
426 <width>20</width>
No newline at end of file
427 <height>25</height>
No newline at end of file
428 </size>
No newline at end of file
429 </property>
No newline at end of file
430 </spacer> No newline at end of file
407 431 </item> No newline at end of file
408 432 <item> No newline at end of file
409 433 <widget class="QLabel" name="lblDevice"> No newline at end of file
410 434 <property name="text"> No newline at end of file
411 435 <string>Device</string> No newline at end of file
412 436 </property> No newline at end of file
413 437 </widget> No newline at end of file
414 438 </item> No newline at end of file
415 439 <item> No newline at end of file
416 440 <widget class="QLabel" name="lblBspeed"> No newline at end of file
417 441 <property name="text"> No newline at end of file
418 442 <string>Burn Speed</string> No newline at end of file
419 443 </property> No newline at end of file
420 444 </widget> No newline at end of file
421 445 </item> No newline at end of file
422 446 <item> No newline at end of file
423 447 <widget class="QLabel" name="lblBmode"> No newline at end of file
424 448 <property name="text"> No newline at end of file
425 449 <string>Burn Mode</string> No newline at end of file
426 450 </property> No newline at end of file
427 451 </widget> No newline at end of file
428 452 </item> No newline at end of file
429 453 <item>
454 No newline at end of file
430 <widget class="QLabel" name="label">
No newline at end of file
455 No newline at end of file
431 <property name="text">
No newline at end of file
456 No newline at end of file
432 <string/>
No newline at end of file
457 No newline at end of file
433 </property>
No newline at end of file
458 No newline at end of file
434 </widget>
No newline at end of file
459 No newline at end of file
435 </item>
No newline at end of file
460 No newline at end of file
436 </layout>
No newline at end of file
461 No newline at end of file
437 </item>
No newline at end of file
462 No newline at end of file
438 </layout>
No newline at end of file
463 No newline at end of file
439 </item>
No newline at end of file
464 No newline at end of file
440 <item>
No newline at end of file
465 No newline at end of file
441 <layout class="QHBoxLayout" name="horizontalLayout_9">
No newline at end of file
466 No newline at end of file
442 <property name="sizeConstraint">
No newline at end of file
467 No newline at end of file
443 <enum>QLayout::SetFixedSize</enum>
No newline at end of file
468 No newline at end of file
444 </property>
No newline at end of file
469 No newline at end of file
445 <item>
No newline at end of file
470 No newline at end of file
446 <widget class="QLabel" name="lblBprocess">
No newline at end of file
471 No newline at end of file
447 <property name="sizePolicy">
No newline at end of file
472 No newline at end of file
448 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
473 No newline at end of file
449 <horstretch>0</horstretch>
No newline at end of file
474 No newline at end of file
450 <verstretch>0</verstretch>
No newline at end of file
475 No newline at end of file
451 </sizepolicy>
No newline at end of file
476 No newline at end of file
452 </property>
No newline at end of file
477 No newline at end of file
453 <property name="text">
No newline at end of file
478 No newline at end of file
454 <string>Burning process</string>
No newline at end of file
479 No newline at end of file
455 </property>
No newline at end of file
480 No newline at end of file
456 </widget>
No newline at end of file
481 No newline at end of file
457 </item>
No newline at end of file
482 No newline at end of file
458 <item>
No newline at end of file
483 No newline at end of file
459 <widget class="QCheckBox" name="chkSimultaneously">
No newline at end of file
484 No newline at end of file
460 <property name="sizePolicy">
No newline at end of file
461 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
462 <horstretch>0</horstretch>
No newline at end of file
463 <verstretch>0</verstretch>
No newline at end of file
464 </sizepolicy>
No newline at end of file
465 </property>
No newline at end of file
466 <property name="text">
No newline at end of file
467 <string>Simultaneously</string>
No newline at end of file
468 </property>
No newline at end of file
469 </widget>
No newline at end of file
470 </item>
No newline at end of file
471 <item>
No newline at end of file
472 <widget class="QCheckBox" name="chkSequentially">
No newline at end of file
473 <property name="sizePolicy">
No newline at end of file
474 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
475 <horstretch>0</horstretch>
No newline at end of file
476 <verstretch>0</verstretch>
No newline at end of file
477 </sizepolicy>
No newline at end of file
478 </property>
No newline at end of file
479 <property name="text">
No newline at end of file
480 <string>Sequentially</string>
No newline at end of file
481 </property>
No newline at end of file
482 <property name="checked">
No newline at end of file
483 <bool>true</bool>
No newline at end of file
484 </property>
No newline at end of file
485 </widget>
No newline at end of file
486 </item>
No newline at end of file
487 </layout> No newline at end of file
488 485 </item> No newline at end of file
489 486 <item> No newline at end of file
490 487 <layout class="QHBoxLayout" name="horizontalLayout_11"> No newline at end of file
491 488 <property name="spacing"> No newline at end of file
492 489 <number>6</number> No newline at end of file
493 490 </property> No newline at end of file
494 491 <property name="sizeConstraint"> No newline at end of file
495 492 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
496 493 </property> No newline at end of file
497 494 <item> No newline at end of file
498 495 <widget class="QLabel" name="lblDcapacity"> No newline at end of file
499 496 <property name="sizePolicy"> No newline at end of file
500 497 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
501 498 <horstretch>0</horstretch> No newline at end of file
502 499 <verstretch>0</verstretch> No newline at end of file
503 500 </sizepolicy> No newline at end of file
504 501 </property> No newline at end of file
505 502 <property name="text">
503 No newline at end of file
506 <string>Device Capacity (MB)</string>
No newline at end of file
504 No newline at end of file
507 </property>
No newline at end of file
505 No newline at end of file
508 </widget>
No newline at end of file
506 No newline at end of file
509 </item>
No newline at end of file
507 No newline at end of file
510 <item>
No newline at end of file
508 No newline at end of file
511 <widget class="QCheckBox" name="chkSalert">
No newline at end of file
509 No newline at end of file
512 <property name="sizePolicy">
No newline at end of file
510 No newline at end of file
513 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
511 No newline at end of file
514 <horstretch>0</horstretch>
No newline at end of file
512 No newline at end of file
515 <verstretch>0</verstretch>
No newline at end of file
513 No newline at end of file
516 </sizepolicy>
No newline at end of file
514 No newline at end of file
517 </property>
No newline at end of file
515 No newline at end of file
518 <property name="text">
No newline at end of file
516 No newline at end of file
519 <string>Sound Alert</string>
No newline at end of file
517 No newline at end of file
520 </property>
No newline at end of file
518 No newline at end of file
521 </widget> No newline at end of file
522 519 </item> No newline at end of file
523 520 </layout> No newline at end of file
524 521 </item> No newline at end of file
525 522 <item> No newline at end of file
526 523 <layout class="QHBoxLayout" name="horizontalLayout_10"> No newline at end of file
527 524 <property name="sizeConstraint"> No newline at end of file
528 525 <enum>QLayout::SetFixedSize</enum> No newline at end of file
529 526 </property> No newline at end of file
530 527 <item> No newline at end of file
531 528 <widget class="QComboBox" name="lstDcapacity"> No newline at end of file
532 529 <property name="currentIndex"> No newline at end of file
533 530 <number>2</number> No newline at end of file
534 531 </property> No newline at end of file
535 532 <item> No newline at end of file
536 533 <property name="text"> No newline at end of file
537 534 <string>BluRay [25.0 GB]</string> No newline at end of file
538 535 </property> No newline at end of file
539 536 </item> No newline at end of file
540 537 <item> No newline at end of file
541 538 <property name="text"> No newline at end of file
542 539 <string>DVD2 [8.5 GB]</string> No newline at end of file
543 540 </property> No newline at end of file
544 541 </item> No newline at end of file
545 542 <item> No newline at end of file
546 543 <property name="text"> No newline at end of file
547 544 <string>DVD1 [4.7 GB]</string> No newline at end of file
548 545 </property> No newline at end of file
549 546 </item> No newline at end of file
550 547 <item> No newline at end of file
551 548 <property name="text"> No newline at end of file
552 549 <string>CD [0.7 GB]</string> No newline at end of file
553 550 </property> No newline at end of file
554 551 </item> No newline at end of file
555 552 <item> No newline at end of file
556 553 <property name="text">
554 No newline at end of file
557 <string>Other [? GB]</string> No newline at end of file
558 555 </property> No newline at end of file
559 556 </item> No newline at end of file
560 557 </widget> No newline at end of file
561 558 </item> No newline at end of file
562 559 <item> No newline at end of file
563 560 <widget class="QDoubleSpinBox" name="txtDcapacity"> No newline at end of file
564 561 <property name="sizePolicy"> No newline at end of file
565 562 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
566 563 <horstretch>0</horstretch> No newline at end of file
567 564 <verstretch>0</verstretch> No newline at end of file
568 565 </sizepolicy> No newline at end of file
569 566 </property> No newline at end of file
570 567 <property name="readOnly"> No newline at end of file
571 568 <bool>true</bool> No newline at end of file
572 569 </property> No newline at end of file
573 570 <property name="minimum"> No newline at end of file
574 571 <double>100.000000000000000</double> No newline at end of file
575 572 </property> No newline at end of file
576 573 <property name="maximum"> No newline at end of file
577 574 <double>99999.990000000005239</double> No newline at end of file
578 575 </property> No newline at end of file
579 576 <property name="value"> No newline at end of file
580 577 <double>4482.270000000000437</double> No newline at end of file
581 578 </property> No newline at end of file
582 579 </widget> No newline at end of file
583 580 </item> No newline at end of file
584 581 <item>
582 No newline at end of file
585 <widget class="QCheckBox" name="chkPSgraphic"> No newline at end of file
No newline at end of file
583 <property name="orientation">
No newline at end of file
584 <enum>Qt::Horizontal</enum>
No newline at end of file
585 </property>
No newline at end of file
586 <property name="sizeHint" stdset="0">
No newline at end of file
587 <size>
No newline at end of file
588 <width>40</width>
No newline at end of file
589 <height>20</height>
No newline at end of file
590 </size>
No newline at end of file
591 </property>
No newline at end of file
592 </spacer>
No newline at end of file
593 </item>
No newline at end of file
594 <item>
No newline at end of file
595 <widget class="QLabel" name="lblPSgraphic"> No newline at end of file
586 596 <property name="text"> No newline at end of file
587 597 <string>PS Graphic</string> No newline at end of file
588 598 </property> No newline at end of file
589 599 </widget> No newline at end of file
590 600 </item> No newline at end of file
591 601 <item>
602 No newline at end of file
592 <widget class="QLineEdit" name="lineEdit_17"/>
No newline at end of file
603 No newline at end of file
593 </item>
No newline at end of file
604 No newline at end of file
594 </layout>
No newline at end of file
605 No newline at end of file
595 </item>
No newline at end of file
606 No newline at end of file
596 </layout>
No newline at end of file
607 No newline at end of file
597 </widget>
No newline at end of file
608 No newline at end of file
598 <widget class="QWidget" name="tabSburn"> No newline at end of file
No newline at end of file
609 </widget>
No newline at end of file
610 </item>
No newline at end of file
611 </layout>
No newline at end of file
612 </item>
No newline at end of file
613 </layout>
No newline at end of file
614 </widget>
No newline at end of file
615 <widget class="QWidget" name="tabStatus"> No newline at end of file
599 616 <attribute name="title"> No newline at end of file
600 617 <string>Status Burn</string> No newline at end of file
601 618 </attribute> No newline at end of file
602 619 <layout class="QVBoxLayout" name="verticalLayout_4"> No newline at end of file
603 620 <item>
621 No newline at end of file
604 <widget class="QWidget" name="widget_2" native="true"> No newline at end of file
No newline at end of file
622 <item>
No newline at end of file
623 <layout class="QVBoxLayout" name="verticalLayout_21">
No newline at end of file
624 <item>
No newline at end of file
625 <widget class="QLabel" name="label_4">
No newline at end of file
626 <property name="text">
No newline at end of file
627 <string>BURN</string>
No newline at end of file
628 </property>
No newline at end of file
629 </widget>
No newline at end of file
630 </item>
No newline at end of file
631 <item>
No newline at end of file
632 <spacer name="horizontalSpacer_9">
No newline at end of file
633 <property name="orientation">
No newline at end of file
634 <enum>Qt::Horizontal</enum>
No newline at end of file
635 </property>
No newline at end of file
636 <property name="sizeType">
No newline at end of file
637 <enum>QSizePolicy::Minimum</enum>
No newline at end of file
638 </property>
No newline at end of file
639 <property name="sizeHint" stdset="0">
No newline at end of file
640 <size>
No newline at end of file
641 <width>40</width>
No newline at end of file
642 <height>20</height>
No newline at end of file
643 </size>
No newline at end of file
644 </property>
No newline at end of file
645 </spacer>
No newline at end of file
646 </item>
No newline at end of file
647 <item>
No newline at end of file
648 <widget class="QLabel" name="lblSTATUS"> No newline at end of file
605 649 <property name="sizePolicy">
650 No newline at end of file
606 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
607 651 <horstretch>0</horstretch> No newline at end of file
608 652 <verstretch>0</verstretch> No newline at end of file
609 653 </sizepolicy> No newline at end of file
610 654 </property> No newline at end of file
655 <property name="text">
No newline at end of file
656 <string>STATUS</string>
No newline at end of file
657 </property>
No newline at end of file
658 </widget>
No newline at end of file
659 </item>
No newline at end of file
660 <item>
No newline at end of file
661 <widget class="QLabel" name="lblINFO">
No newline at end of file
662 <property name="text">
No newline at end of file
663 <string>DISC</string>
No newline at end of file
664 </property>
No newline at end of file
665 </widget>
No newline at end of file
666 </item>
No newline at end of file
667 <item>
No newline at end of file
668 <widget class="QLabel" name="lblSET">
No newline at end of file
669 <property name="text">
No newline at end of file
670 <string>COPY</string>
No newline at end of file
671 </property>
No newline at end of file
672 </widget>
No newline at end of file
673 </item>
No newline at end of file
674 </layout>
No newline at end of file
675 </item>
No newline at end of file
676 <item>
No newline at end of file
677 <layout class="QVBoxLayout" name="verticalLayout_22">
No newline at end of file
678 <item>
No newline at end of file
679 <spacer name="horizontalSpacer_5">
No newline at end of file
680 <property name="orientation">
No newline at end of file
681 <enum>Qt::Horizontal</enum>
No newline at end of file
682 </property>
No newline at end of file
683 <property name="sizeType">
No newline at end of file
684 <enum>QSizePolicy::Minimum</enum>
No newline at end of file
685 </property>
No newline at end of file
686 <property name="sizeHint" stdset="0">
No newline at end of file
687 <size>
No newline at end of file
688 <width>40</width>
No newline at end of file
689 <height>20</height>
No newline at end of file
690 </size>
No newline at end of file
691 </property>
No newline at end of file
692 </spacer>
No newline at end of file
693 </item>
No newline at end of file
694 <item>
No newline at end of file
695 <widget class="QLabel" name="lblDevA">
No newline at end of file
696 <property name="text">
No newline at end of file
697 <string>DEV A</string>
No newline at end of file
698 </property>
No newline at end of file
699 <property name="alignment">
No newline at end of file
700 <set>Qt::AlignCenter</set>
No newline at end of file
701 </property>
No newline at end of file
702 </widget>
No newline at end of file
703 </item>
No newline at end of file
704 <item>
No newline at end of file
705 <widget class="QLineEdit" name="txtBstatusA">
No newline at end of file
706 <property name="readOnly">
No newline at end of file
707 <bool>true</bool>
No newline at end of file
708 </property>
No newline at end of file
709 </widget>
No newline at end of file
710 </item>
No newline at end of file
711 <item>
No newline at end of file
712 <widget class="QLineEdit" name="txtBdiscA">
No newline at end of file
713 <property name="readOnly">
No newline at end of file
714 <bool>true</bool>
No newline at end of file
715 </property>
No newline at end of file
716 </widget>
No newline at end of file
717 </item>
No newline at end of file
718 <item>
No newline at end of file
719 <widget class="QLineEdit" name="txtBcopyA">
No newline at end of file
720 <property name="readOnly">
No newline at end of file
721 <bool>true</bool>
No newline at end of file
722 </property>
No newline at end of file
723 </widget>
No newline at end of file
724 </item>
No newline at end of file
725 </layout>
No newline at end of file
726 </item>
No newline at end of file
727 <item>
No newline at end of file
728 <layout class="QVBoxLayout" name="verticalLayout_23">
No newline at end of file
729 <item>
No newline at end of file
730 <spacer name="horizontalSpacer_6">
No newline at end of file
731 <property name="orientation">
No newline at end of file
732 <enum>Qt::Horizontal</enum>
No newline at end of file
733 </property>
No newline at end of file
734 <property name="sizeType">
No newline at end of file
735 <enum>QSizePolicy::Minimum</enum>
No newline at end of file
736 </property>
No newline at end of file
737 <property name="sizeHint" stdset="0">
No newline at end of file
738 <size>
No newline at end of file
739 <width>40</width>
No newline at end of file
740 <height>20</height>
No newline at end of file
741 </size>
No newline at end of file
742 </property>
No newline at end of file
743 </spacer>
No newline at end of file
744 </item>
No newline at end of file
745 <item>
No newline at end of file
746 <widget class="QLabel" name="lblDevB">
No newline at end of file
747 <property name="text">
No newline at end of file
748 <string>DEV B</string>
No newline at end of file
749 </property>
No newline at end of file
750 <property name="alignment">
No newline at end of file
751 <set>Qt::AlignCenter</set>
No newline at end of file
752 </property>
No newline at end of file
753 </widget>
No newline at end of file
754 </item>
No newline at end of file
755 <item>
No newline at end of file
756 <widget class="QLineEdit" name="txtBstatusB">
No newline at end of file
757 <property name="readOnly">
No newline at end of file
758 <bool>true</bool>
No newline at end of file
759 </property>
No newline at end of file
760 </widget>
No newline at end of file
761 </item>
No newline at end of file
762 <item>
No newline at end of file
763 <widget class="QLineEdit" name="txtBdiscB">
No newline at end of file
764 <property name="readOnly">
No newline at end of file
765 <bool>true</bool>
No newline at end of file
766 </property>
No newline at end of file
767 </widget>
No newline at end of file
768 </item>
No newline at end of file
769 <item>
No newline at end of file
770 <widget class="QLineEdit" name="txtBcopyB">
No newline at end of file
771 <property name="readOnly">
No newline at end of file
772 <bool>true</bool>
No newline at end of file
773 </property>
No newline at end of file
774 </widget>
No newline at end of file
775 </item>
No newline at end of file
776 </layout>
No newline at end of file
777 </item>
No newline at end of file
778 <item>
No newline at end of file
779 <layout class="QVBoxLayout" name="verticalLayout_24">
No newline at end of file
780 <item>
No newline at end of file
781 <spacer name="horizontalSpacer_7">
No newline at end of file
782 <property name="orientation">
No newline at end of file
783 <enum>Qt::Horizontal</enum>
No newline at end of file
784 </property>
No newline at end of file
785 <property name="sizeType">
No newline at end of file
786 <enum>QSizePolicy::Minimum</enum>
No newline at end of file
787 </property>
No newline at end of file
788 <property name="sizeHint" stdset="0">
No newline at end of file
789 <size>
No newline at end of file
790 <width>40</width>
No newline at end of file
791 <height>20</height>
No newline at end of file
792 </size>
No newline at end of file
793 </property>
No newline at end of file
794 </spacer>
No newline at end of file
795 </item>
No newline at end of file
796 <item>
No newline at end of file
797 <widget class="QLabel" name="lblDevC">
No newline at end of file
798 <property name="text">
No newline at end of file
799 <string>DEV C</string>
No newline at end of file
800 </property>
No newline at end of file
801 <property name="alignment">
No newline at end of file
802 <set>Qt::AlignCenter</set>
No newline at end of file
803 </property>
No newline at end of file
804 </widget>
No newline at end of file
805 </item>
No newline at end of file
806 <item>
No newline at end of file
807 <widget class="QLineEdit" name="txtBstatusC">
No newline at end of file
808 <property name="readOnly">
No newline at end of file
809 <bool>true</bool>
No newline at end of file
810 </property>
No newline at end of file
811 </widget>
No newline at end of file
812 </item>
No newline at end of file
813 <item>
No newline at end of file
814 <widget class="QLineEdit" name="txtBdiscC">
No newline at end of file
815 <property name="readOnly">
No newline at end of file
816 <bool>true</bool>
No newline at end of file
817 </property>
No newline at end of file
818 </widget>
No newline at end of file
819 </item>
No newline at end of file
820 <item>
No newline at end of file
821 <widget class="QLineEdit" name="txtBcopyC">
No newline at end of file
822 <property name="readOnly">
No newline at end of file
823 <bool>true</bool>
No newline at end of file
824 </property>
No newline at end of file
825 </widget>
No newline at end of file
826 </item>
No newline at end of file
827 </layout>
No newline at end of file
828 </item>
No newline at end of file
829 <item>
No newline at end of file
830 <layout class="QVBoxLayout" name="verticalLayout_25">
No newline at end of file
831 <item>
No newline at end of file
832 <spacer name="horizontalSpacer_8">
No newline at end of file
833 <property name="orientation">
No newline at end of file
834 <enum>Qt::Horizontal</enum>
No newline at end of file
835 </property>
No newline at end of file
836 <property name="sizeType">
No newline at end of file
837 <enum>QSizePolicy::Minimum</enum>
No newline at end of file
838 </property>
No newline at end of file
839 <property name="sizeHint" stdset="0">
No newline at end of file
840 <size>
No newline at end of file
841 <width>40</width>
No newline at end of file
842 <height>20</height>
No newline at end of file
843 </size>
No newline at end of file
844 </property>
No newline at end of file
845 </spacer>
No newline at end of file
846 </item>
No newline at end of file
847 <item>
No newline at end of file
848 <widget class="QLabel" name="lblDevD">
No newline at end of file
849 <property name="text">
No newline at end of file
850 <string>DEV D</string>
No newline at end of file
851 </property>
No newline at end of file
852 <property name="alignment">
No newline at end of file
853 <set>Qt::AlignCenter</set>
No newline at end of file
854 </property>
No newline at end of file
855 </widget>
No newline at end of file
856 </item>
No newline at end of file
857 <item>
No newline at end of file
858 <widget class="QLineEdit" name="txtBstatusD">
No newline at end of file
859 <property name="readOnly">
No newline at end of file
860 <bool>true</bool>
No newline at end of file
861 </property>
No newline at end of file
862 </widget>
No newline at end of file
863 </item>
No newline at end of file
864 <item>
No newline at end of file
865 <widget class="QLineEdit" name="txtBdiscD">
No newline at end of file
866 <property name="readOnly">
No newline at end of file
867 <bool>true</bool>
No newline at end of file
868 </property>
No newline at end of file
869 </widget>
No newline at end of file
870 </item>
No newline at end of file
871 <item>
No newline at end of file
872 <widget class="QLineEdit" name="txtBcopyD">
No newline at end of file
873 <property name="readOnly">
No newline at end of file
874 <bool>true</bool>
No newline at end of file
875 </property>
No newline at end of file
876 </widget>
No newline at end of file
877 </item>
No newline at end of file
878 </layout>
No newline at end of file
879 </item>
No newline at end of file
880 </layout>
No newline at end of file
881 </item>
No newline at end of file
882 <item>
No newline at end of file
883 <spacer name="verticalSpacer">
No newline at end of file
884 <property name="orientation">
No newline at end of file
885 <enum>Qt::Vertical</enum>
No newline at end of file
886 </property>
No newline at end of file
887 <property name="sizeType">
No newline at end of file
888 <enum>QSizePolicy::Fixed</enum>
No newline at end of file
889 </property>
No newline at end of file
890 <property name="sizeHint" stdset="0">
No newline at end of file
891 <size>
No newline at end of file
892 <width>20</width>
No newline at end of file
893 <height>20</height>
No newline at end of file
894 </size>
No newline at end of file
895 </property>
No newline at end of file
896 </spacer>
No newline at end of file
897 </item>
No newline at end of file
898 <item>
No newline at end of file
899 <layout class="QHBoxLayout" name="horizontalLayout_16">
No newline at end of file
900 <item>
No newline at end of file
901 <widget class="QLabel" name="label">
No newline at end of file
902 <property name="text">
No newline at end of file
903 <string>CHECK</string>
No newline at end of file
904 </property>
No newline at end of file
905 </widget>
No newline at end of file
906 </item>
No newline at end of file
907 <item>
No newline at end of file
908 <spacer name="horizontalSpacer_14">
No newline at end of file
909 <property name="orientation">
No newline at end of file
910 <enum>Qt::Horizontal</enum>
No newline at end of file
911 </property>
No newline at end of file
912 <property name="sizeHint" stdset="0">
No newline at end of file
913 <size>
No newline at end of file
914 <width>40</width>
No newline at end of file
915 <height>20</height>
No newline at end of file
916 </size>
No newline at end of file
917 </property>
No newline at end of file
918 </spacer>
No newline at end of file
919 </item>
No newline at end of file
920 </layout>
No newline at end of file
921 </item>
No newline at end of file
922 <item>
No newline at end of file
923 <layout class="QHBoxLayout" name="horizontalLayout_17">
No newline at end of file
924 <item>
No newline at end of file
925 <spacer name="horizontalSpacer_13">
No newline at end of file
926 <property name="orientation">
No newline at end of file
927 <enum>Qt::Horizontal</enum>
No newline at end of file
928 </property>
No newline at end of file
929 <property name="sizeType">
No newline at end of file
930 <enum>QSizePolicy::Fixed</enum>
No newline at end of file
931 </property>
No newline at end of file
932 <property name="sizeHint" stdset="0">
No newline at end of file
933 <size>
No newline at end of file
934 <width>50</width>
No newline at end of file
935 <height>20</height>
No newline at end of file
936 </size>
No newline at end of file
937 </property>
No newline at end of file
938 </spacer>
No newline at end of file
939 </item>
No newline at end of file
940 <item>
No newline at end of file
941 <widget class="QLineEdit" name="txtTDpath">
No newline at end of file
942 <property name="enabled">
No newline at end of file
943 <bool>false</bool>
No newline at end of file
944 </property>
No newline at end of file
945 </widget>
No newline at end of file
946 </item>
No newline at end of file
947 <item>
No newline at end of file
948 <widget class="QPushButton" name="btnTDpath">
No newline at end of file
949 <property name="enabled">
No newline at end of file
950 <bool>false</bool>
No newline at end of file
951 </property>
No newline at end of file
952 <property name="text">
No newline at end of file
953 <string>Temp Data Path</string>
No newline at end of file
954 </property>
No newline at end of file
955 </widget>
No newline at end of file
956 </item>
No newline at end of file
957 </layout>
No newline at end of file
958 </item>
No newline at end of file
959 <item>
No newline at end of file
960 <layout class="QHBoxLayout" name="horizontalLayout_19">
No newline at end of file
961 <item>
No newline at end of file
962 <layout class="QVBoxLayout" name="verticalLayout_26">
No newline at end of file
963 <item>
No newline at end of file
964 <spacer name="horizontalSpacer_10">
No newline at end of file
965 <property name="orientation">
No newline at end of file
966 <enum>Qt::Horizontal</enum>
No newline at end of file
967 </property>
No newline at end of file
968 <property name="sizeType">
No newline at end of file
969 <enum>QSizePolicy::Minimum</enum>
No newline at end of file
970 </property>
No newline at end of file
971 <property name="sizeHint" stdset="0">
No newline at end of file
972 <size>
No newline at end of file
973 <width>40</width>
No newline at end of file
974 <height>20</height>
No newline at end of file
975 </size>
No newline at end of file
976 </property>
No newline at end of file
977 </spacer>
No newline at end of file
978 </item>
No newline at end of file
979 <item>
No newline at end of file
980 <widget class="QLabel" name="lblSTATUS_2">
No newline at end of file
981 <property name="sizePolicy">
No newline at end of file
982 <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
No newline at end of file
983 <horstretch>0</horstretch>
No newline at end of file
984 <verstretch>0</verstretch>
No newline at end of file
985 </sizepolicy>
No newline at end of file
986 </property>
No newline at end of file
987 <property name="text">
No newline at end of file
988 <string>STATUS</string>
No newline at end of file
989 </property>
No newline at end of file
990 </widget>
No newline at end of file
991 </item>
No newline at end of file
992 </layout>
No newline at end of file
993 </item>
No newline at end of file
994 <item>
No newline at end of file
995 <layout class="QVBoxLayout" name="verticalLayout_27">
No newline at end of file
996 <item>
No newline at end of file
997 <widget class="QLabel" name="lblDevA_2">
No newline at end of file
998 <property name="text">
No newline at end of file
999 <string>DEV A</string>
No newline at end of file
1000 </property>
No newline at end of file
1001 <property name="alignment">
No newline at end of file
1002 <set>Qt::AlignCenter</set>
No newline at end of file
1003 </property>
No newline at end of file
1004 </widget>
No newline at end of file
1005 </item>
No newline at end of file
1006 <item>
No newline at end of file
1007 <widget class="QLineEdit" name="txtCHstatusA">
No newline at end of file
1008 <property name="readOnly">
No newline at end of file
1009 <bool>true</bool>
No newline at end of file
1010 </property>
No newline at end of file
1011 </widget>
No newline at end of file
1012 </item>
No newline at end of file
1013 </layout>
No newline at end of file
1014 </item>
No newline at end of file
1015 <item>
No newline at end of file
1016 <layout class="QVBoxLayout" name="verticalLayout_28">
No newline at end of file
1017 <item>
No newline at end of file
1018 <widget class="QLabel" name="lblDevB_2">
No newline at end of file
1019 <property name="text">
No newline at end of file
1020 <string>DEV B</string>
No newline at end of file
1021 </property>
No newline at end of file
1022 <property name="alignment">
No newline at end of file
1023 <set>Qt::AlignCenter</set>
No newline at end of file
1024 </property>
No newline at end of file
1025 </widget>
No newline at end of file
1026 </item>
No newline at end of file
1027 <item>
No newline at end of file
1028 <widget class="QLineEdit" name="txtCHstatusB">
No newline at end of file
1029 <property name="readOnly">
No newline at end of file
1030 <bool>true</bool>
No newline at end of file
1031 </property>
No newline at end of file
1032 </widget>
No newline at end of file
1033 </item>
No newline at end of file
1034 </layout>
No newline at end of file
1035 </item>
No newline at end of file
1036 <item>
No newline at end of file
1037 <layout class="QVBoxLayout" name="verticalLayout_29">
No newline at end of file
1038 <item>
No newline at end of file
1039 <widget class="QLabel" name="lblDevC_2">
No newline at end of file
1040 <property name="text">
No newline at end of file
1041 <string>DEV C</string>
No newline at end of file
1042 </property>
No newline at end of file
1043 <property name="alignment">
No newline at end of file
1044 <set>Qt::AlignCenter</set>
No newline at end of file
1045 </property>
No newline at end of file
1046 </widget>
No newline at end of file
1047 </item>
No newline at end of file
1048 <item>
No newline at end of file
1049 <widget class="QLineEdit" name="txtCHstatusC">
No newline at end of file
1050 <property name="readOnly">
No newline at end of file
1051 <bool>true</bool>
No newline at end of file
1052 </property>
No newline at end of file
1053 </widget>
No newline at end of file
1054 </item>
No newline at end of file
1055 </layout>
No newline at end of file
1056 </item>
No newline at end of file
1057 <item>
No newline at end of file
1058 <layout class="QVBoxLayout" name="verticalLayout_30">
No newline at end of file
1059 <item>
No newline at end of file
1060 <widget class="QLabel" name="lblDevD_2">
No newline at end of file
1061 <property name="text">
No newline at end of file
1062 <string>DEV D</string>
No newline at end of file
1063 </property>
No newline at end of file
1064 <property name="alignment">
No newline at end of file
1065 <set>Qt::AlignCenter</set>
No newline at end of file
1066 </property>
No newline at end of file
1067 </widget>
No newline at end of file
1068 </item>
No newline at end of file
1069 <item>
No newline at end of file
1070 <widget class="QLineEdit" name="txtCHstatusD">
No newline at end of file
1071 <property name="readOnly">
No newline at end of file
1072 <bool>true</bool>
No newline at end of file
1073 </property>
No newline at end of file
1074 </widget>
No newline at end of file
1075 </item>
No newline at end of file
1076 </layout>
No newline at end of file
1077 </item>
No newline at end of file
1078 </layout>
No newline at end of file
1079 </item>
No newline at end of file
1080 <item>
No newline at end of file
1081 <layout class="QHBoxLayout" name="horizontalLayout_20">
No newline at end of file
1082 <item>
No newline at end of file
1083 <spacer name="horizontalSpacer_12">
No newline at end of file
1084 <property name="orientation">
No newline at end of file
1085 <enum>Qt::Horizontal</enum>
No newline at end of file
1086 </property>
No newline at end of file
1087 <property name="sizeType">
No newline at end of file
1088 <enum>QSizePolicy::Minimum</enum>
No newline at end of file
1089 </property>
No newline at end of file
1090 <property name="sizeHint" stdset="0">
No newline at end of file
1091 <size>
No newline at end of file
1092 <width>50</width>
No newline at end of file
1093 <height>20</height>
No newline at end of file
1094 </size>
No newline at end of file
1095 </property>
No newline at end of file
1096 </spacer>
No newline at end of file
1097 </item>
No newline at end of file
1098 <item>
No newline at end of file
1099 <widget class="QCheckBox" name="chkCheck">
No newline at end of file
1100 <property name="enabled">
No newline at end of file
1101 <bool>false</bool>
No newline at end of file
1102 </property>
No newline at end of file
1103 <property name="text">
No newline at end of file
1104 <string>ENABLE </string>
No newline at end of file
1105 </property>
No newline at end of file
1106 </widget>
No newline at end of file
1107 </item>
No newline at end of file
1108 <item>
No newline at end of file
1109 <spacer name="horizontalSpacer_15">
No newline at end of file
1110 <property name="orientation">
No newline at end of file
1111 <enum>Qt::Horizontal</enum>
No newline at end of file
1112 </property>
No newline at end of file
1113 <property name="sizeHint" stdset="0">
No newline at end of file
1114 <size>
No newline at end of file
1115 <width>40</width>
No newline at end of file
1116 <height>20</height>
No newline at end of file
1117 </size>
No newline at end of file
1118 </property>
No newline at end of file
1119 </spacer>
No newline at end of file
1120 </item>
No newline at end of file
1121 <item>
No newline at end of file
1122 <widget class="QPushButton" name="btnCHstart">
No newline at end of file
1123 <property name="enabled">
No newline at end of file
1124 <bool>false</bool>
No newline at end of file
1125 </property>
No newline at end of file
1126 <property name="text">
No newline at end of file
1127 <string>START</string>
No newline at end of file
1128 </property>
No newline at end of file
1129 </widget>
No newline at end of file
1130 </item>
No newline at end of file
1131 </layout>
No newline at end of file
1132 </item>
No newline at end of file
1133 <item>
No newline at end of file
1134 <widget class="QWidget" name="widget_2" native="true">
No newline at end of file
1135 <property name="sizePolicy">
No newline at end of file
1136 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
No newline at end of file
1137 <horstretch>0</horstretch>
No newline at end of file
1138 <verstretch>0</verstretch>
No newline at end of file
1139 </sizepolicy>
No newline at end of file
1140 </property> No newline at end of file
611 1141 <property name="maximumSize"> No newline at end of file
612 1142 <size> No newline at end of file
613 1143 <width>500</width> No newline at end of file
614 1144 <height>16777215</height> No newline at end of file
615 1145 </size> No newline at end of file
616 1146 </property>
1147 No newline at end of file
617 <layout class="QGridLayout" name="gridLayout_2">
No newline at end of file
618 <item row="3" column="2">
No newline at end of file
619 <widget class="QLineEdit" name="txtSTATUSb">
No newline at end of file
620 <property name="readOnly">
No newline at end of file
621 <bool>true</bool>
No newline at end of file
622 </property>
No newline at end of file
623 </widget>
No newline at end of file
624 </item>
No newline at end of file
625 <item row="5" column="1">
No newline at end of file
626 <widget class="QLineEdit" name="txtINFOa">
No newline at end of file
627 <property name="readOnly">
No newline at end of file
628 <bool>true</bool>
No newline at end of file
629 </property>
No newline at end of file
630 </widget>
No newline at end of file
631 </item>
No newline at end of file
632 <item row="3" column="1">
No newline at end of file
633 <widget class="QLineEdit" name="txtSTATUSa">
No newline at end of file
634 <property name="readOnly">
No newline at end of file
635 <bool>true</bool>
No newline at end of file
636 </property>
No newline at end of file
637 </widget>
No newline at end of file
638 </item>
No newline at end of file
639 <item row="5" column="2">
No newline at end of file
640 <widget class="QLineEdit" name="txtINFOb">
No newline at end of file
641 <property name="readOnly">
No newline at end of file
642 <bool>true</bool>
No newline at end of file
643 </property>
No newline at end of file
644 </widget>
No newline at end of file
645 </item>
No newline at end of file
646 <item row="3" column="3">
No newline at end of file
647 <widget class="QLineEdit" name="txtSTATUSc">
No newline at end of file
648 <property name="readOnly">
No newline at end of file
649 <bool>true</bool>
No newline at end of file
650 </property>
No newline at end of file
651 </widget>
No newline at end of file
652 </item>
No newline at end of file
653 <item row="3" column="4">
No newline at end of file
654 <widget class="QLineEdit" name="txtSTATUSd">
No newline at end of file
655 <property name="readOnly">
No newline at end of file
656 <bool>true</bool>
No newline at end of file
657 </property>
No newline at end of file
658 </widget>
No newline at end of file
659 </item>
No newline at end of file
660 <item row="5" column="4">
No newline at end of file
661 <widget class="QLineEdit" name="txtINFOd">
No newline at end of file
662 <property name="readOnly">
No newline at end of file
663 <bool>true</bool>
No newline at end of file
664 </property>
No newline at end of file
665 </widget>
No newline at end of file
666 </item>
No newline at end of file
667 <item row="6" column="1">
No newline at end of file
668 <widget class="QLineEdit" name="txtSETa">
No newline at end of file
669 <property name="readOnly">
No newline at end of file
670 <bool>true</bool>
No newline at end of file
671 </property>
No newline at end of file
672 </widget>
No newline at end of file
673 </item>
No newline at end of file
674 <item row="6" column="2">
No newline at end of file
675 <widget class="QLineEdit" name="txtSETb">
No newline at end of file
676 <property name="readOnly">
No newline at end of file
677 <bool>true</bool>
No newline at end of file
678 </property>
No newline at end of file
679 </widget>
No newline at end of file
680 </item>
No newline at end of file
681 <item row="6" column="3">
No newline at end of file
682 <widget class="QLineEdit" name="txtSETc">
No newline at end of file
683 <property name="readOnly">
No newline at end of file
684 <bool>true</bool>
No newline at end of file
685 </property>
No newline at end of file
686 </widget>
No newline at end of file
687 </item>
No newline at end of file
688 <item row="6" column="4">
No newline at end of file
689 <widget class="QLineEdit" name="txtSETd">
No newline at end of file
690 <property name="readOnly">
No newline at end of file
691 <bool>true</bool>
No newline at end of file
692 </property>
No newline at end of file
693 </widget>
No newline at end of file
694 </item>
No newline at end of file
695 <item row="3" column="0">
No newline at end of file
696 <widget class="QLabel" name="lblSTATUS">
No newline at end of file
697 <property name="text">
No newline at end of file
698 <string>STATUS</string>
No newline at end of file
699 </property>
No newline at end of file
700 </widget>
No newline at end of file
701 </item>
No newline at end of file
702 <item row="5" column="0">
No newline at end of file
703 <widget class="QLabel" name="lblINFO">
No newline at end of file
704 <property name="text">
No newline at end of file
705 <string>INFO</string>
No newline at end of file
706 </property>
No newline at end of file
707 </widget>
No newline at end of file
708 </item>
No newline at end of file
709 <item row="6" column="0">
No newline at end of file
710 <widget class="QLabel" name="lblSET">
No newline at end of file
711 <property name="text">
No newline at end of file
712 <string>SET</string>
No newline at end of file
713 </property>
No newline at end of file
714 </widget>
No newline at end of file
715 </item>
No newline at end of file
716 <item row="0" column="1">
No newline at end of file
717 <widget class="QLabel" name="lblDevA">
No newline at end of file
718 <property name="text">
No newline at end of file
719 <string>DEV A</string>
No newline at end of file
720 </property>
No newline at end of file
721 <property name="alignment">
No newline at end of file
722 <set>Qt::AlignCenter</set>
No newline at end of file
723 </property>
No newline at end of file
724 </widget>
No newline at end of file
725 </item>
No newline at end of file
726 <item row="0" column="2">
No newline at end of file
727 <widget class="QLabel" name="lblDevB">
No newline at end of file
728 <property name="text">
No newline at end of file
729 <string>DEV B</string>
No newline at end of file
730 </property>
No newline at end of file
731 <property name="alignment">
No newline at end of file
732 <set>Qt::AlignCenter</set>
No newline at end of file
733 </property>
No newline at end of file
734 </widget>
No newline at end of file
735 </item>
No newline at end of file
736 <item row="0" column="3">
No newline at end of file
737 <widget class="QLabel" name="lblDevC">
No newline at end of file
738 <property name="text">
No newline at end of file
739 <string>DEV C</string>
No newline at end of file
740 </property>
No newline at end of file
741 <property name="alignment">
No newline at end of file
742 <set>Qt::AlignCenter</set>
No newline at end of file
743 </property>
No newline at end of file
744 </widget>
No newline at end of file
745 </item>
No newline at end of file
746 <item row="0" column="4">
No newline at end of file
747 <widget class="QLabel" name="lblDevD">
No newline at end of file
748 <property name="text">
No newline at end of file
749 <string>DEV D</string>
No newline at end of file
750 </property>
No newline at end of file
751 <property name="alignment">
No newline at end of file
752 <set>Qt::AlignCenter</set>
No newline at end of file
753 </property>
No newline at end of file
754 </widget>
No newline at end of file
755 </item>
No newline at end of file
756 <item row="5" column="3">
No newline at end of file
757 <widget class="QLineEdit" name="txtINFOc">
No newline at end of file
758 <property name="readOnly">
No newline at end of file
759 <bool>true</bool>
No newline at end of file
760 </property>
No newline at end of file
761 </widget>
No newline at end of file
762 </item>
No newline at end of file
763 </layout>
No newline at end of file
764 </widget>
No newline at end of file
765 </item>
No newline at end of file
766 <item>
No newline at end of file
767 <widget class="QTextEdit" name="txtSburn">
No newline at end of file
768 <property name="readOnly">
No newline at end of file
769 <bool>true</bool>
No newline at end of file
770 </property> No newline at end of file
771 1148 </widget> No newline at end of file
772 1149 </item> No newline at end of file
773 1150 </layout> No newline at end of file
774 1151 </widget> No newline at end of file
775 1152 </widget> No newline at end of file
776 1153 </item> No newline at end of file
777 1154 <item> No newline at end of file
778 1155 <widget class="QTextEdit" name="txtInfo"> No newline at end of file
779 1156 <property name="readOnly"> No newline at end of file
780 1157 <bool>true</bool> No newline at end of file
781 1158 </property> No newline at end of file
782 1159 </widget> No newline at end of file
783 1160 </item> No newline at end of file
784 1161 <item> No newline at end of file
785 1162 <layout class="QHBoxLayout" name="horizontalLayout_2"> No newline at end of file
786 1163 <property name="sizeConstraint"> No newline at end of file
787 1164 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
788 1165 </property> No newline at end of file
789 1166 <item> No newline at end of file
790 1167 <widget class="QPushButton" name="btnGbkp"> No newline at end of file
791 1168 <property name="enabled"> No newline at end of file
792 1169 <bool>false</bool> No newline at end of file
793 1170 </property> No newline at end of file
794 1171 <property name="text"> No newline at end of file
795 1172 <string>Generate Bkp</string> No newline at end of file
796 1173 </property> No newline at end of file
797 1174 </widget> No newline at end of file
798 1175 </item> No newline at end of file
799 1176 <item> No newline at end of file
800 1177 <widget class="QPushButton" name="btnRestart"> No newline at end of file
801 1178 <property name="enabled"> No newline at end of file
802 1179 <bool>false</bool> No newline at end of file
803 1180 </property> No newline at end of file
804 1181 <property name="text"> No newline at end of file
805 1182 <string>Restart</string> No newline at end of file
806 1183 </property> No newline at end of file
807 1184 </widget> No newline at end of file
808 1185 </item> No newline at end of file
809 1186 <item> No newline at end of file
810 1187 <widget class="QPushButton" name="btnStartburn"> No newline at end of file
811 1188 <property name="enabled"> No newline at end of file
812 1189 <bool>false</bool> No newline at end of file
813 1190 </property> No newline at end of file
814 1191 <property name="text"> No newline at end of file
815 1192 <string>Start Burn</string> No newline at end of file
816 1193 </property> No newline at end of file
817 1194 </widget> No newline at end of file
818 1195 </item> No newline at end of file
819 1196 <item> No newline at end of file
820 1197 <widget class="QPushButton" name="btnStopburn"> No newline at end of file
821 1198 <property name="enabled"> No newline at end of file
822 1199 <bool>false</bool> No newline at end of file
823 1200 </property> No newline at end of file
824 1201 <property name="text"> No newline at end of file
825 1202 <string>Stop Burn</string> No newline at end of file
826 1203 </property> No newline at end of file
827 1204 </widget> No newline at end of file
828 1205 </item> No newline at end of file
829 1206 </layout> No newline at end of file
830 1207 </item> No newline at end of file
831 1208 </layout> No newline at end of file
832 1209 </widget> No newline at end of file
833 1210 <widget class="QMenuBar" name="menubar"> No newline at end of file
834 1211 <property name="geometry"> No newline at end of file
835 1212 <rect> No newline at end of file
836 1213 <x>0</x> No newline at end of file
837 1214 <y>0</y>
1215 No newline at end of file
838 <width>809</width>
No newline at end of file
1216 No newline at end of file
839 <height>25</height> No newline at end of file
840 1217 </rect> No newline at end of file
841 1218 </property> No newline at end of file
842 1219 <widget class="QMenu" name="menuParameters"> No newline at end of file
843 1220 <property name="title"> No newline at end of file
844 1221 <string>Parameters</string> No newline at end of file
845 1222 </property> No newline at end of file
846 1223 <addaction name="actionChange_Parameters"/> No newline at end of file
847 1224 </widget> No newline at end of file
1225 <widget class="QMenu" name="menuFile">
No newline at end of file
1226 <property name="title">
No newline at end of file
1227 <string>File</string>
No newline at end of file
1228 </property>
No newline at end of file
1229 <addaction name="actionQuit"/>
No newline at end of file
1230 </widget> No newline at end of file
848 1231 <widget class="QMenu" name="menuHelp"> No newline at end of file
849 1232 <property name="title"> No newline at end of file
850 1233 <string>Help</string> No newline at end of file
851 1234 </property> No newline at end of file
852 1235 <addaction name="actionAbout"/> No newline at end of file
853 1236 </widget>
No newline at end of file
854 <widget class="QMenu" name="menuFile">
No newline at end of file
855 <property name="title">
No newline at end of file
856 <string>File</string>
No newline at end of file
857 </property>
No newline at end of file
858 <addaction name="actionSave_Config"/>
No newline at end of file
859 <addaction name="actionQuit"/>
No newline at end of file
860 </widget> No newline at end of file
861 1237 <addaction name="menuFile"/> No newline at end of file
862 1238 <addaction name="menuParameters"/> No newline at end of file
863 1239 <addaction name="menuHelp"/> No newline at end of file
864 1240 </widget> No newline at end of file
865 1241 <widget class="QStatusBar" name="statusbar"/> No newline at end of file
866 1242 <action name="actionChange_Parameters"> No newline at end of file
867 1243 <property name="text"> No newline at end of file
868 1244 <string>Change Parameters</string> No newline at end of file
869 1245 </property> No newline at end of file
870 1246 </action>
No newline at end of file
871 <action name="actionSave_Config">
No newline at end of file
872 <property name="text">
No newline at end of file
873 <string>Save Config</string>
No newline at end of file
874 </property>
No newline at end of file
875 </action> No newline at end of file
876 1247 <action name="actionQuit"> No newline at end of file
877 1248 <property name="text"> No newline at end of file
878 1249 <string>Quit</string> No newline at end of file
879 1250 </property> No newline at end of file
880 1251 </action> No newline at end of file
881 1252 <action name="actionAbout"> No newline at end of file
882 1253 <property name="text">
1254 No newline at end of file
883 <string>About</string> No newline at end of file
884 1255 </property> No newline at end of file
885 1256 </action> No newline at end of file
886 1257 </widget> No newline at end of file
887 1258 <tabstops> No newline at end of file
888 1259 <tabstop>txtDpath</tabstop> No newline at end of file
889 1260 <tabstop>btnDpath</tabstop> No newline at end of file
890 1261 <tabstop>txtRpath</tabstop> No newline at end of file
891 1262 <tabstop>btnRpath</tabstop> No newline at end of file
892 1263 <tabstop>lstDtype</tabstop> No newline at end of file
893 1264 <tabstop>txtDtype</tabstop>
No newline at end of file
894 <tabstop>chkMST</tabstop> No newline at end of file
895 1265 <tabstop>txtElabel</tabstop> No newline at end of file
896 1266 <tabstop>lstStartDay</tabstop> No newline at end of file
897 1267 <tabstop>lstStopDay</tabstop>
No newline at end of file
898 <tabstop>chkSimultaneously</tabstop>
No newline at end of file
899 <tabstop>chkSequentially</tabstop>
No newline at end of file
900 <tabstop>chkSalert</tabstop> No newline at end of file
901 1268 <tabstop>lstDcapacity</tabstop>
No newline at end of file
902 <tabstop>chkPSgraphic</tabstop>
No newline at end of file
903 <tabstop>lineEdit_17</tabstop>
No newline at end of file
904 <tabstop>txtSTATUSa</tabstop>
No newline at end of file
905 <tabstop>txtSTATUSb</tabstop>
No newline at end of file
906 <tabstop>txtSTATUSc</tabstop>
No newline at end of file
907 <tabstop>txtSTATUSd</tabstop>
No newline at end of file
908 <tabstop>txtINFOa</tabstop>
No newline at end of file
909 <tabstop>txtINFOb</tabstop>
No newline at end of file
910 <tabstop>txtINFOc</tabstop>
No newline at end of file
911 <tabstop>txtINFOd</tabstop>
No newline at end of file
912 <tabstop>txtSETa</tabstop>
No newline at end of file
913 <tabstop>txtSETb</tabstop>
No newline at end of file
914 <tabstop>txtSETc</tabstop>
No newline at end of file
915 <tabstop>txtSETd</tabstop> No newline at end of file
916 1269 <tabstop>tabWidget</tabstop>
No newline at end of file
917 <tabstop>txtSburn</tabstop> No newline at end of file
918 1270 <tabstop>btnGbkp</tabstop> No newline at end of file
919 1271 <tabstop>btnRestart</tabstop> No newline at end of file
920 1272 <tabstop>btnStartburn</tabstop> No newline at end of file
921 1273 <tabstop>btnStopburn</tabstop> No newline at end of file
922 1274 </tabstops> No newline at end of file
923 1275 <resources/> No newline at end of file
924 1276 <connections> No newline at end of file
925 1277 <connection>
1278 No newline at end of file
926 <sender>chkSequentially</sender>
No newline at end of file
1279 No newline at end of file
927 <signal>clicked()</signal>
No newline at end of file
1280 No newline at end of file
928 <receiver>chkSimultaneously</receiver>
No newline at end of file
1281 No newline at end of file
929 <slot>toggle()</slot> No newline at end of file
930 1282 <hints> No newline at end of file
931 1283 <hint type="sourcelabel">
1284 No newline at end of file
932 <x>635</x>
No newline at end of file
1285 No newline at end of file
933 <y>276</y> No newline at end of file
934 1286 </hint> No newline at end of file
935 1287 <hint type="destinationlabel">
1288 No newline at end of file
936 <x>350</x>
No newline at end of file
1289 No newline at end of file
937 <y>269</y> No newline at end of file
938 1290 </hint> No newline at end of file
939 1291 </hints> No newline at end of file
940 1292 </connection> No newline at end of file
941 1293 <connection>
1294 No newline at end of file
942 <sender>chkSimultaneously</sender>
No newline at end of file
1295 No newline at end of file
943 <signal>clicked()</signal>
No newline at end of file
1296 No newline at end of file
944 <receiver>chkSequentially</receiver>
No newline at end of file
1297 No newline at end of file
945 <slot>toggle()</slot> No newline at end of file
946 1298 <hints> No newline at end of file
947 1299 <hint type="sourcelabel">
1300 No newline at end of file
948 <x>433</x>
No newline at end of file
1301 No newline at end of file
949 <y>276</y> No newline at end of file
950 1302 </hint> No newline at end of file
951 1303 <hint type="destinationlabel">
1304 No newline at end of file
952 <x>635</x>
No newline at end of file
1305 No newline at end of file
953 <y>276</y> No newline at end of file
No newline at end of file
1306 </hint>
No newline at end of file
1307 </hints>
No newline at end of file
1308 </connection>
No newline at end of file
1309 <connection>
No newline at end of file
1310 <sender>chkCheck</sender>
No newline at end of file
1311 <signal>toggled(bool)</signal>
No newline at end of file
1312 <receiver>btnTDpath</receiver>
No newline at end of file
1313 <slot>setEnabled(bool)</slot>
No newline at end of file
1314 <hints>
No newline at end of file
1315 <hint type="sourcelabel">
No newline at end of file
1316 <x>137</x>
No newline at end of file
1317 <y>345</y>
No newline at end of file
1318 </hint>
No newline at end of file
1319 <hint type="destinationlabel">
No newline at end of file
1320 <x>521</x>
No newline at end of file
1321 <y>256</y>
No newline at end of file
1322 </hint>
No newline at end of file
1323 </hints>
No newline at end of file
1324 </connection>
No newline at end of file
1325 <connection>
No newline at end of file
1326 <sender>chkCheck</sender>
No newline at end of file
1327 <signal>toggled(bool)</signal>
No newline at end of file
1328 <receiver>btnCHstart</receiver>
No newline at end of file
1329 <slot>setEnabled(bool)</slot>
No newline at end of file
1330 <hints>
No newline at end of file
1331 <hint type="sourcelabel">
No newline at end of file
1332 <x>111</x>
No newline at end of file
1333 <y>341</y>
No newline at end of file
1334 </hint>
No newline at end of file
1335 <hint type="destinationlabel">
No newline at end of file
1336 <x>495</x>
No newline at end of file
1337 <y>338</y>
No newline at end of file
1338 </hint>
No newline at end of file
1339 </hints>
No newline at end of file
1340 </connection>
No newline at end of file
1341 <connection>
No newline at end of file
1342 <sender>chkDevD</sender>
No newline at end of file
1343 <signal>toggled(bool)</signal>
No newline at end of file
1344 <receiver>grpDevD</receiver>
No newline at end of file
1345 <slot>setEnabled(bool)</slot>
No newline at end of file
1346 <hints>
No newline at end of file
1347 <hint type="sourcelabel">
No newline at end of file
1348 <x>519</x>
No newline at end of file
1349 <y>79</y>
No newline at end of file
1350 </hint>
No newline at end of file
1351 <hint type="destinationlabel">
No newline at end of file
1352 <x>519</x>
No newline at end of file
1353 <y>202</y>
No newline at end of file
1354 </hint>
No newline at end of file
1355 </hints>
No newline at end of file
1356 </connection>
No newline at end of file
1357 <connection>
No newline at end of file
1358 <sender>chkDevB</sender>
No newline at end of file
1359 <signal>toggled(bool)</signal>
No newline at end of file
1360 <receiver>grpDevB</receiver>
No newline at end of file
1361 <slot>setEnabled(bool)</slot>
No newline at end of file
1362 <hints>
No newline at end of file
1363 <hint type="sourcelabel">
No newline at end of file
1364 <x>263</x>
No newline at end of file
1365 <y>79</y>
No newline at end of file
1366 </hint>
No newline at end of file
1367 <hint type="destinationlabel">
No newline at end of file
1368 <x>251</x>
No newline at end of file
1369 <y>167</y>
No newline at end of file
1370 </hint>
No newline at end of file
1371 </hints>
No newline at end of file
1372 </connection>
No newline at end of file
1373 <connection>
No newline at end of file
1374 <sender>chkDevC</sender>
No newline at end of file
1375 <signal>toggled(bool)</signal>
No newline at end of file
1376 <receiver>grpDevC</receiver>
No newline at end of file
1377 <slot>setEnabled(bool)</slot>
No newline at end of file
1378 <hints>
No newline at end of file
1379 <hint type="sourcelabel">
No newline at end of file
1380 <x>391</x>
No newline at end of file
1381 <y>79</y>
No newline at end of file
1382 </hint>
No newline at end of file
1383 <hint type="destinationlabel">
No newline at end of file
1384 <x>391</x>
No newline at end of file
1385 <y>202</y> No newline at end of file
954 1386 </hint> No newline at end of file
955 1387 </hints> No newline at end of file
956 1388 </connection> No newline at end of file
957 1389 <connection> No newline at end of file
958 1390 <sender>chkDevA</sender> No newline at end of file
959 1391 <signal>toggled(bool)</signal> No newline at end of file
960 1392 <receiver>grpDevA</receiver> No newline at end of file
961 1393 <slot>setEnabled(bool)</slot> No newline at end of file
962 1394 <hints> No newline at end of file
963 1395 <hint type="sourcelabel">
1396 No newline at end of file
964 <x>95</x>
No newline at end of file
1397 No newline at end of file
965 <y>86</y> No newline at end of file
966 1398 </hint> No newline at end of file
967 1399 <hint type="destinationlabel"> No newline at end of file
968 1400 <x>95</x>
No newline at end of file
969 <y>167</y>
No newline at end of file
970 </hint>
No newline at end of file
971 </hints>
No newline at end of file
972 </connection>
No newline at end of file
973 <connection>
No newline at end of file
974 <sender>chkDevB</sender>
No newline at end of file
975 <signal>toggled(bool)</signal>
No newline at end of file
976 <receiver>grpDevB</receiver>
No newline at end of file
977 <slot>setEnabled(bool)</slot>
No newline at end of file
978 <hints>
No newline at end of file
979 <hint type="sourcelabel">
No newline at end of file
980 <x>251</x>
No newline at end of file
981 <y>86</y>
No newline at end of file
982 </hint>
No newline at end of file
983 <hint type="destinationlabel">
No newline at end of file
984 <x>251</x>
No newline at end of file
985 <y>167</y>
No newline at end of file
986 </hint>
No newline at end of file
987 </hints>
No newline at end of file
988 </connection>
No newline at end of file
989 <connection>
No newline at end of file
990 <sender>chkDevC</sender>
No newline at end of file
991 <signal>toggled(bool)</signal>
No newline at end of file
992 <receiver>grpDevC</receiver>
No newline at end of file
993 <slot>setEnabled(bool)</slot>
No newline at end of file
994 <hints>
No newline at end of file
995 <hint type="sourcelabel">
No newline at end of file
996 <x>407</x>
No newline at end of file
997 <y>86</y>
No newline at end of file
998 </hint>
No newline at end of file
999 <hint type="destinationlabel">
No newline at end of file
1000 <x>407</x>
No newline at end of file
1001 <y>167</y>
No newline at end of file
1002 </hint>
No newline at end of file
1003 </hints>
No newline at end of file
1004 </connection>
No newline at end of file
1005 <connection>
No newline at end of file
1006 <sender>chkDevD</sender>
No newline at end of file
1007 <signal>toggled(bool)</signal>
No newline at end of file
1008 <receiver>grpDevD</receiver>
No newline at end of file
1009 <slot>setEnabled(bool)</slot>
No newline at end of file
1010 <hints>
No newline at end of file
1011 <hint type="sourcelabel">
No newline at end of file
1012 <x>563</x>
No newline at end of file
1013 <y>86</y>
No newline at end of file
1014 </hint>
No newline at end of file
1015 <hint type="destinationlabel">
No newline at end of file
1016 <x>563</x> No newline at end of file
1017 1401 <y>167</y> No newline at end of file
1018 1402 </hint> No newline at end of file
1019 1403 </hints> No newline at end of file
1020 1404 </connection> No newline at end of file
1021 1405 </connections> No newline at end of file
1022 1406 </ui> No newline at end of file
@@ -1,602 +1,689
1 1 # -*- coding: utf-8 -*- No newline at end of file
2 2 No newline at end of file
3 3 # Form implementation generated from reading ui file '/home/ricardoar/JRO_SVN/eric4/jro_backup_manager/ui/MainWindow.ui' No newline at end of file
4 4 #
5 No newline at end of file
5 # Created: Wed May 19 11:22:43 2010
No newline at end of file
6 No newline at end of file
6 # by: PyQt4 UI code generator 4.6 No newline at end of file
7 7 # No newline at end of file
8 8 # WARNING! All changes made in this file will be lost! No newline at end of file
9 9 No newline at end of file
10 10 from PyQt4 import QtCore, QtGui No newline at end of file
11 11 No newline at end of file
12 12 class Ui_MainWindow(object): No newline at end of file
13 13 def setupUi(self, MainWindow): No newline at end of file
14 14 MainWindow.setObjectName("MainWindow")
15 No newline at end of file
15 MainWindow.resize(809, 737) No newline at end of file
16 16 self.centralwidget = QtGui.QWidget(MainWindow) No newline at end of file
17 17 self.centralwidget.setObjectName("centralwidget") No newline at end of file
18 18 self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget) No newline at end of file
19 19 self.verticalLayout.setObjectName("verticalLayout") No newline at end of file
20 20 self.tabWidget = QtGui.QTabWidget(self.centralwidget) No newline at end of file
21 21 self.tabWidget.setEnabled(True) No newline at end of file
22 22 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) No newline at end of file
23 23 sizePolicy.setHorizontalStretch(0) No newline at end of file
24 24 sizePolicy.setVerticalStretch(0) No newline at end of file
25 25 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth()) No newline at end of file
26 26 self.tabWidget.setSizePolicy(sizePolicy) No newline at end of file
27 27 self.tabWidget.setObjectName("tabWidget") No newline at end of file
28 28 self.tabParameters = QtGui.QWidget() No newline at end of file
29 29 self.tabParameters.setEnabled(True) No newline at end of file
30 30 self.tabParameters.setObjectName("tabParameters") No newline at end of file
31 31 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters) No newline at end of file
32 32 self.verticalLayout_2.setObjectName("verticalLayout_2") No newline at end of file
33 33 self.horizontalLayout = QtGui.QHBoxLayout() No newline at end of file
34 34 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
35 35 self.horizontalLayout.setObjectName("horizontalLayout") No newline at end of file
36 36 self.txtDpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
37 37 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) No newline at end of file
38 38 sizePolicy.setHorizontalStretch(0) No newline at end of file
39 39 sizePolicy.setVerticalStretch(0) No newline at end of file
40 40 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
41 41 self.txtDpath.setSizePolicy(sizePolicy) No newline at end of file
42 42 self.txtDpath.setObjectName("txtDpath") No newline at end of file
43 43 self.horizontalLayout.addWidget(self.txtDpath) No newline at end of file
44 44 self.btnDpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
45 45 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
46 46 sizePolicy.setHorizontalStretch(0) No newline at end of file
47 47 sizePolicy.setVerticalStretch(0) No newline at end of file
48 48 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
49 49 self.btnDpath.setSizePolicy(sizePolicy) No newline at end of file
50 50 self.btnDpath.setCheckable(False) No newline at end of file
51 51 self.btnDpath.setObjectName("btnDpath") No newline at end of file
52 52 self.horizontalLayout.addWidget(self.btnDpath) No newline at end of file
53 53 self.verticalLayout_2.addLayout(self.horizontalLayout) No newline at end of file
54 54 self.horizontalLayout_3 = QtGui.QHBoxLayout() No newline at end of file
55 55 self.horizontalLayout_3.setObjectName("horizontalLayout_3") No newline at end of file
56 56 self.txtRpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
57 57 self.txtRpath.setObjectName("txtRpath") No newline at end of file
58 58 self.horizontalLayout_3.addWidget(self.txtRpath) No newline at end of file
59 59 self.btnRpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
60 60 self.btnRpath.setObjectName("btnRpath") No newline at end of file
61 61 self.horizontalLayout_3.addWidget(self.btnRpath) No newline at end of file
62 62 self.verticalLayout_2.addLayout(self.horizontalLayout_3) No newline at end of file
63 63 self.lblDtype = QtGui.QLabel(self.tabParameters) No newline at end of file
64 64 self.lblDtype.setObjectName("lblDtype") No newline at end of file
65 65 self.verticalLayout_2.addWidget(self.lblDtype) No newline at end of file
66 66 self.horizontalLayout_4 = QtGui.QHBoxLayout() No newline at end of file
67 67 self.horizontalLayout_4.setObjectName("horizontalLayout_4") No newline at end of file
68 68 self.lstDtype = QtGui.QComboBox(self.tabParameters) No newline at end of file
69 69 self.lstDtype.setObjectName("lstDtype") No newline at end of file
70 70 self.lstDtype.addItem("") No newline at end of file
71 71 self.lstDtype.addItem("") No newline at end of file
72 72 self.lstDtype.addItem("") No newline at end of file
73 73 self.lstDtype.addItem("") No newline at end of file
74 74 self.horizontalLayout_4.addWidget(self.lstDtype) No newline at end of file
75 75 self.txtDtype = QtGui.QLineEdit(self.tabParameters) No newline at end of file
76 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
No newline at end of file
77 sizePolicy.setHorizontalStretch(0)
No newline at end of file
78 sizePolicy.setVerticalStretch(0)
No newline at end of file
79 sizePolicy.setHeightForWidth(self.txtDtype.sizePolicy().hasHeightForWidth())
No newline at end of file
80 self.txtDtype.setSizePolicy(sizePolicy) No newline at end of file
76 81 self.txtDtype.setReadOnly(True) No newline at end of file
77 82 self.txtDtype.setObjectName("txtDtype") No newline at end of file
78 83 self.horizontalLayout_4.addWidget(self.txtDtype)
84 No newline at end of file
79 self.chkMST = QtGui.QCheckBox(self.tabParameters)
No newline at end of file
85 No newline at end of file
80 self.chkMST.setObjectName("chkMST")
No newline at end of file
81 self.horizontalLayout_4.addWidget(self.chkMST) No newline at end of file
82 86 self.verticalLayout_2.addLayout(self.horizontalLayout_4) No newline at end of file
83 87 self.horizontalLayout_6 = QtGui.QHBoxLayout() No newline at end of file
84 88 self.horizontalLayout_6.setObjectName("horizontalLayout_6") No newline at end of file
85 89 self.lblElabel = QtGui.QLabel(self.tabParameters) No newline at end of file
86 90 self.lblElabel.setObjectName("lblElabel") No newline at end of file
87 91 self.horizontalLayout_6.addWidget(self.lblElabel) No newline at end of file
88 92 self.lblCopys = QtGui.QLabel(self.tabParameters) No newline at end of file
89 93 self.lblCopys.setObjectName("lblCopys") No newline at end of file
90 94 self.horizontalLayout_6.addWidget(self.lblCopys) No newline at end of file
91 95 self.verticalLayout_2.addLayout(self.horizontalLayout_6) No newline at end of file
92 96 self.horizontalLayout_5 = QtGui.QHBoxLayout() No newline at end of file
93 97 self.horizontalLayout_5.setObjectName("horizontalLayout_5") No newline at end of file
94 98 self.txtElabel = QtGui.QLineEdit(self.tabParameters) No newline at end of file
95 99 self.txtElabel.setObjectName("txtElabel") No newline at end of file
96 100 self.horizontalLayout_5.addWidget(self.txtElabel) No newline at end of file
97 101 self.txtCopys = QtGui.QSpinBox(self.tabParameters) No newline at end of file
98 102 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) No newline at end of file
99 103 sizePolicy.setHorizontalStretch(0) No newline at end of file
100 104 sizePolicy.setVerticalStretch(0) No newline at end of file
101 105 sizePolicy.setHeightForWidth(self.txtCopys.sizePolicy().hasHeightForWidth()) No newline at end of file
102 106 self.txtCopys.setSizePolicy(sizePolicy) No newline at end of file
103 107 self.txtCopys.setMinimum(1) No newline at end of file
104 108 self.txtCopys.setObjectName("txtCopys") No newline at end of file
105 109 self.horizontalLayout_5.addWidget(self.txtCopys) No newline at end of file
106 110 self.verticalLayout_2.addLayout(self.horizontalLayout_5) No newline at end of file
107 111 self.horizontalLayout_7 = QtGui.QHBoxLayout() No newline at end of file
108 112 self.horizontalLayout_7.setObjectName("horizontalLayout_7") No newline at end of file
109 113 self.lblStartDay = QtGui.QLabel(self.tabParameters) No newline at end of file
110 114 self.lblStartDay.setObjectName("lblStartDay") No newline at end of file
111 115 self.horizontalLayout_7.addWidget(self.lblStartDay) No newline at end of file
112 116 self.lblStopDay = QtGui.QLabel(self.tabParameters) No newline at end of file
113 117 self.lblStopDay.setObjectName("lblStopDay") No newline at end of file
114 118 self.horizontalLayout_7.addWidget(self.lblStopDay) No newline at end of file
115 119 self.verticalLayout_2.addLayout(self.horizontalLayout_7) No newline at end of file
116 120 self.horizontalLayout_8 = QtGui.QHBoxLayout() No newline at end of file
117 121 self.horizontalLayout_8.setObjectName("horizontalLayout_8") No newline at end of file
118 122 self.lstStartDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
119 123 self.lstStartDay.setObjectName("lstStartDay") No newline at end of file
120 124 self.horizontalLayout_8.addWidget(self.lstStartDay) No newline at end of file
121 125 self.lstStopDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
122 126 self.lstStopDay.setObjectName("lstStopDay") No newline at end of file
123 127 self.horizontalLayout_8.addWidget(self.lstStopDay) No newline at end of file
124 128 self.verticalLayout_2.addLayout(self.horizontalLayout_8) No newline at end of file
125 129 self.tabWidget.addTab(self.tabParameters, "") No newline at end of file
126 130 self.tabDconfig = QtGui.QWidget() No newline at end of file
127 131 self.tabDconfig.setEnabled(True) No newline at end of file
128 132 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
129 133 sizePolicy.setHorizontalStretch(0) No newline at end of file
130 134 sizePolicy.setVerticalStretch(0) No newline at end of file
131 135 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth()) No newline at end of file
132 136 self.tabDconfig.setSizePolicy(sizePolicy) No newline at end of file
133 137 self.tabDconfig.setObjectName("tabDconfig") No newline at end of file
134 138 self.verticalLayout_3 = QtGui.QVBoxLayout(self.tabDconfig) No newline at end of file
135 139 self.verticalLayout_3.setObjectName("verticalLayout_3")
140 No newline at end of file
136 self.gridLayout = QtGui.QGridLayout()
No newline at end of file
141 No newline at end of file
137 self.gridLayout.setObjectName("gridLayout") No newline at end of file
138 142 self.verticalLayout_15 = QtGui.QVBoxLayout() No newline at end of file
139 143 self.verticalLayout_15.setObjectName("verticalLayout_15") No newline at end of file
140 144 self.chkDevA = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
141 145 self.chkDevA.setChecked(True) No newline at end of file
142 146 self.chkDevA.setObjectName("chkDevA") No newline at end of file
143 147 self.verticalLayout_15.addWidget(self.chkDevA) No newline at end of file
144 148 self.grpDevA = QtGui.QWidget(self.tabDconfig) No newline at end of file
145 149 self.grpDevA.setObjectName("grpDevA") No newline at end of file
146 150 self.verticalLayout_11 = QtGui.QVBoxLayout(self.grpDevA) No newline at end of file
147 151 self.verticalLayout_11.setObjectName("verticalLayout_11") No newline at end of file
148 152 self.txtDeviceA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
149 153 self.txtDeviceA.setObjectName("txtDeviceA") No newline at end of file
150 154 self.verticalLayout_11.addWidget(self.txtDeviceA) No newline at end of file
151 155 self.txtBspeedA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
152 156 self.txtBspeedA.setObjectName("txtBspeedA") No newline at end of file
153 157 self.verticalLayout_11.addWidget(self.txtBspeedA) No newline at end of file
154 158 self.txtBmodeA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
155 159 self.txtBmodeA.setObjectName("txtBmodeA") No newline at end of file
156 160 self.verticalLayout_11.addWidget(self.txtBmodeA) No newline at end of file
157 161 self.btnTdevA = QtGui.QPushButton(self.grpDevA) No newline at end of file
158 162 self.btnTdevA.setObjectName("btnTdevA") No newline at end of file
159 163 self.verticalLayout_11.addWidget(self.btnTdevA) No newline at end of file
160 164 self.verticalLayout_15.addWidget(self.grpDevA)
165 No newline at end of file
161 self.gridLayout.addLayout(self.verticalLayout_15, 0, 0, 1, 1) No newline at end of file
162 166 self.verticalLayout_16 = QtGui.QVBoxLayout() No newline at end of file
163 167 self.verticalLayout_16.setObjectName("verticalLayout_16") No newline at end of file
164 168 self.chkDevB = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
165 169 self.chkDevB.setChecked(True) No newline at end of file
166 170 self.chkDevB.setObjectName("chkDevB") No newline at end of file
167 171 self.verticalLayout_16.addWidget(self.chkDevB) No newline at end of file
168 172 self.grpDevB = QtGui.QWidget(self.tabDconfig) No newline at end of file
169 173 self.grpDevB.setObjectName("grpDevB") No newline at end of file
170 174 self.verticalLayout_12 = QtGui.QVBoxLayout(self.grpDevB) No newline at end of file
171 175 self.verticalLayout_12.setObjectName("verticalLayout_12") No newline at end of file
172 176 self.txtDeviceB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
173 177 self.txtDeviceB.setObjectName("txtDeviceB") No newline at end of file
174 178 self.verticalLayout_12.addWidget(self.txtDeviceB) No newline at end of file
175 179 self.txtBspeedB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
176 180 self.txtBspeedB.setObjectName("txtBspeedB") No newline at end of file
177 181 self.verticalLayout_12.addWidget(self.txtBspeedB) No newline at end of file
178 182 self.txtBmodeB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
179 183 self.txtBmodeB.setObjectName("txtBmodeB") No newline at end of file
180 184 self.verticalLayout_12.addWidget(self.txtBmodeB) No newline at end of file
181 185 self.btnTdevB = QtGui.QPushButton(self.grpDevB) No newline at end of file
182 186 self.btnTdevB.setObjectName("btnTdevB") No newline at end of file
183 187 self.verticalLayout_12.addWidget(self.btnTdevB) No newline at end of file
184 188 self.verticalLayout_16.addWidget(self.grpDevB)
189 No newline at end of file
185 self.gridLayout.addLayout(self.verticalLayout_16, 0, 1, 1, 1) No newline at end of file
186 190 self.verticalLayout_17 = QtGui.QVBoxLayout() No newline at end of file
187 191 self.verticalLayout_17.setObjectName("verticalLayout_17") No newline at end of file
188 192 self.chkDevC = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
189 193 self.chkDevC.setChecked(True) No newline at end of file
190 194 self.chkDevC.setObjectName("chkDevC") No newline at end of file
191 195 self.verticalLayout_17.addWidget(self.chkDevC) No newline at end of file
192 196 self.grpDevC = QtGui.QWidget(self.tabDconfig) No newline at end of file
193 197 self.grpDevC.setObjectName("grpDevC") No newline at end of file
194 198 self.verticalLayout_13 = QtGui.QVBoxLayout(self.grpDevC) No newline at end of file
195 199 self.verticalLayout_13.setObjectName("verticalLayout_13") No newline at end of file
196 200 self.txtDeviceC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
197 201 self.txtDeviceC.setObjectName("txtDeviceC") No newline at end of file
198 202 self.verticalLayout_13.addWidget(self.txtDeviceC) No newline at end of file
199 203 self.txtBspeedC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
200 204 self.txtBspeedC.setObjectName("txtBspeedC") No newline at end of file
201 205 self.verticalLayout_13.addWidget(self.txtBspeedC) No newline at end of file
202 206 self.txtBmodeC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
203 207 self.txtBmodeC.setObjectName("txtBmodeC") No newline at end of file
204 208 self.verticalLayout_13.addWidget(self.txtBmodeC) No newline at end of file
205 209 self.btnTdevC = QtGui.QPushButton(self.grpDevC) No newline at end of file
206 210 self.btnTdevC.setObjectName("btnTdevC") No newline at end of file
207 211 self.verticalLayout_13.addWidget(self.btnTdevC) No newline at end of file
208 212 self.verticalLayout_17.addWidget(self.grpDevC)
213 No newline at end of file
209 self.gridLayout.addLayout(self.verticalLayout_17, 0, 2, 1, 1) No newline at end of file
210 214 self.verticalLayout_18 = QtGui.QVBoxLayout() No newline at end of file
211 215 self.verticalLayout_18.setObjectName("verticalLayout_18") No newline at end of file
212 216 self.chkDevD = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
213 217 self.chkDevD.setChecked(True) No newline at end of file
214 218 self.chkDevD.setObjectName("chkDevD") No newline at end of file
215 219 self.verticalLayout_18.addWidget(self.chkDevD) No newline at end of file
216 220 self.grpDevD = QtGui.QWidget(self.tabDconfig) No newline at end of file
217 221 self.grpDevD.setObjectName("grpDevD") No newline at end of file
218 222 self.verticalLayout_14 = QtGui.QVBoxLayout(self.grpDevD) No newline at end of file
219 223 self.verticalLayout_14.setObjectName("verticalLayout_14") No newline at end of file
220 224 self.txtDeviceD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
221 225 self.txtDeviceD.setObjectName("txtDeviceD") No newline at end of file
222 226 self.verticalLayout_14.addWidget(self.txtDeviceD) No newline at end of file
223 227 self.txtBspeedD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
224 228 self.txtBspeedD.setObjectName("txtBspeedD") No newline at end of file
225 229 self.verticalLayout_14.addWidget(self.txtBspeedD) No newline at end of file
226 230 self.txtBmodeD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
227 231 self.txtBmodeD.setObjectName("txtBmodeD") No newline at end of file
228 232 self.verticalLayout_14.addWidget(self.txtBmodeD) No newline at end of file
229 233 self.btnTdevD = QtGui.QPushButton(self.grpDevD) No newline at end of file
230 234 self.btnTdevD.setObjectName("btnTdevD") No newline at end of file
231 235 self.verticalLayout_14.addWidget(self.btnTdevD) No newline at end of file
232 236 self.verticalLayout_18.addWidget(self.grpDevD)
237 No newline at end of file
233 self.gridLayout.addLayout(self.verticalLayout_18, 0, 3, 1, 1) No newline at end of file
234 238 self.verticalLayout_19 = QtGui.QVBoxLayout() No newline at end of file
235 239 self.verticalLayout_19.setObjectName("verticalLayout_19")
240 No newline at end of file
236 self.label_2 = QtGui.QLabel(self.tabDconfig)
No newline at end of file
241 No newline at end of file
237 self.label_2.setObjectName("label_2")
No newline at end of file
238 self.verticalLayout_19.addWidget(self.label_2) No newline at end of file
239 242 self.lblDevice = QtGui.QLabel(self.tabDconfig) No newline at end of file
240 243 self.lblDevice.setObjectName("lblDevice") No newline at end of file
241 244 self.verticalLayout_19.addWidget(self.lblDevice) No newline at end of file
242 245 self.lblBspeed = QtGui.QLabel(self.tabDconfig) No newline at end of file
243 246 self.lblBspeed.setObjectName("lblBspeed") No newline at end of file
244 247 self.verticalLayout_19.addWidget(self.lblBspeed) No newline at end of file
245 248 self.lblBmode = QtGui.QLabel(self.tabDconfig) No newline at end of file
246 249 self.lblBmode.setObjectName("lblBmode") No newline at end of file
247 250 self.verticalLayout_19.addWidget(self.lblBmode)
251 No newline at end of file
248 self.label = QtGui.QLabel(self.tabDconfig)
No newline at end of file
252 No newline at end of file
249 self.label.setObjectName("label")
No newline at end of file
253 No newline at end of file
250 self.verticalLayout_19.addWidget(self.label)
No newline at end of file
254 No newline at end of file
251 self.gridLayout.addLayout(self.verticalLayout_19, 0, 4, 1, 1)
No newline at end of file
255 No newline at end of file
252 self.verticalLayout_3.addLayout(self.gridLayout)
No newline at end of file
256 No newline at end of file
253 self.horizontalLayout_9 = QtGui.QHBoxLayout()
No newline at end of file
254 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize)
No newline at end of file
255 self.horizontalLayout_9.setObjectName("horizontalLayout_9")
No newline at end of file
256 self.lblBprocess = QtGui.QLabel(self.tabDconfig)
No newline at end of file
257 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
No newline at end of file
258 sizePolicy.setHorizontalStretch(0)
No newline at end of file
259 sizePolicy.setVerticalStretch(0)
No newline at end of file
260 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth())
No newline at end of file
261 self.lblBprocess.setSizePolicy(sizePolicy)
No newline at end of file
262 self.lblBprocess.setObjectName("lblBprocess")
No newline at end of file
263 self.horizontalLayout_9.addWidget(self.lblBprocess)
No newline at end of file
264 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig)
No newline at end of file
265 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
No newline at end of file
266 sizePolicy.setHorizontalStretch(0)
No newline at end of file
267 sizePolicy.setVerticalStretch(0)
No newline at end of file
268 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth())
No newline at end of file
269 self.chkSimultaneously.setSizePolicy(sizePolicy)
No newline at end of file
270 self.chkSimultaneously.setObjectName("chkSimultaneously")
No newline at end of file
271 self.horizontalLayout_9.addWidget(self.chkSimultaneously)
No newline at end of file
272 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig)
No newline at end of file
273 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
No newline at end of file
274 sizePolicy.setHorizontalStretch(0)
No newline at end of file
275 sizePolicy.setVerticalStretch(0)
No newline at end of file
276 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth())
No newline at end of file
277 self.chkSequentially.setSizePolicy(sizePolicy)
No newline at end of file
278 self.chkSequentially.setChecked(True)
No newline at end of file
279 self.chkSequentially.setObjectName("chkSequentially")
No newline at end of file
280 self.horizontalLayout_9.addWidget(self.chkSequentially)
No newline at end of file
281 self.verticalLayout_3.addLayout(self.horizontalLayout_9) No newline at end of file
282 257 self.horizontalLayout_11 = QtGui.QHBoxLayout() No newline at end of file
283 258 self.horizontalLayout_11.setSpacing(6) No newline at end of file
284 259 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
285 260 self.horizontalLayout_11.setObjectName("horizontalLayout_11") No newline at end of file
286 261 self.lblDcapacity = QtGui.QLabel(self.tabDconfig) No newline at end of file
287 262 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
288 263 sizePolicy.setHorizontalStretch(0) No newline at end of file
289 264 sizePolicy.setVerticalStretch(0) No newline at end of file
290 265 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
291 266 self.lblDcapacity.setSizePolicy(sizePolicy) No newline at end of file
292 267 self.lblDcapacity.setObjectName("lblDcapacity") No newline at end of file
293 268 self.horizontalLayout_11.addWidget(self.lblDcapacity)
269 No newline at end of file
294 self.chkSalert = QtGui.QCheckBox(self.tabDconfig)
No newline at end of file
270 No newline at end of file
295 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
No newline at end of file
296 sizePolicy.setHorizontalStretch(0)
No newline at end of file
297 sizePolicy.setVerticalStretch(0)
No newline at end of file
298 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth())
No newline at end of file
299 self.chkSalert.setSizePolicy(sizePolicy)
No newline at end of file
300 self.chkSalert.setObjectName("chkSalert")
No newline at end of file
301 self.horizontalLayout_11.addWidget(self.chkSalert) No newline at end of file
302 271 self.verticalLayout_3.addLayout(self.horizontalLayout_11) No newline at end of file
303 272 self.horizontalLayout_10 = QtGui.QHBoxLayout() No newline at end of file
304 273 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
305 274 self.horizontalLayout_10.setObjectName("horizontalLayout_10") No newline at end of file
306 275 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig) No newline at end of file
307 276 self.lstDcapacity.setObjectName("lstDcapacity") No newline at end of file
308 277 self.lstDcapacity.addItem("") No newline at end of file
309 278 self.lstDcapacity.addItem("") No newline at end of file
310 279 self.lstDcapacity.addItem("") No newline at end of file
311 280 self.lstDcapacity.addItem("") No newline at end of file
312 281 self.lstDcapacity.addItem("") No newline at end of file
313 282 self.horizontalLayout_10.addWidget(self.lstDcapacity) No newline at end of file
314 283 self.txtDcapacity = QtGui.QDoubleSpinBox(self.tabDconfig) No newline at end of file
315 284 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) No newline at end of file
316 285 sizePolicy.setHorizontalStretch(0) No newline at end of file
317 286 sizePolicy.setVerticalStretch(0) No newline at end of file
318 287 sizePolicy.setHeightForWidth(self.txtDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
319 288 self.txtDcapacity.setSizePolicy(sizePolicy) No newline at end of file
320 289 self.txtDcapacity.setReadOnly(True) No newline at end of file
321 290 self.txtDcapacity.setMinimum(100.0) No newline at end of file
322 291 self.txtDcapacity.setMaximum(99999.99) No newline at end of file
323 292 self.txtDcapacity.setProperty("value", 4482.27) No newline at end of file
324 293 self.txtDcapacity.setObjectName("txtDcapacity") No newline at end of file
325 294 self.horizontalLayout_10.addWidget(self.txtDcapacity)
295 No newline at end of file
326 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig)
No newline at end of file
296 No newline at end of file
327 self.chkPSgraphic.setObjectName("chkPSgraphic")
No newline at end of file
297 No newline at end of file
328 self.horizontalLayout_10.addWidget(self.chkPSgraphic)
No newline at end of file
298 No newline at end of file
329 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig)
No newline at end of file
299 No newline at end of file
330 self.lineEdit_17.setObjectName("lineEdit_17")
No newline at end of file
300 No newline at end of file
331 self.horizontalLayout_10.addWidget(self.lineEdit_17) No newline at end of file
No newline at end of file
301 self.txtPSgraphic.setMinimum(1)
No newline at end of file
302 self.txtPSgraphic.setMaximum(33)
No newline at end of file
303 self.txtPSgraphic.setObjectName("txtPSgraphic")
No newline at end of file
304 self.horizontalLayout_10.addWidget(self.txtPSgraphic) No newline at end of file
332 305 self.verticalLayout_3.addLayout(self.horizontalLayout_10) No newline at end of file
333 306 self.tabWidget.addTab(self.tabDconfig, "")
307 No newline at end of file
334 self.tabSburn = QtGui.QWidget()
No newline at end of file
308 No newline at end of file
335 self.tabSburn.setObjectName("tabSburn")
No newline at end of file
309 No newline at end of file
336 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn) No newline at end of file
337 310 self.verticalLayout_4.setObjectName("verticalLayout_4")
311 No newline at end of file
338 self.widget_2 = QtGui.QWidget(self.tabSburn)
No newline at end of file
312 No newline at end of file
339 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
No newline at end of file
313 self.verticalLayout_21 = QtGui.QVBoxLayout()
No newline at end of file
314 self.verticalLayout_21.setObjectName("verticalLayout_21")
No newline at end of file
315 self.label_4 = QtGui.QLabel(self.tabStatus)
No newline at end of file
316 self.label_4.setObjectName("label_4")
No newline at end of file
317 self.verticalLayout_21.addWidget(self.label_4)
No newline at end of file
318 spacerItem6 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
No newline at end of file
319 self.verticalLayout_21.addItem(spacerItem6)
No newline at end of file
320 self.lblSTATUS = QtGui.QLabel(self.tabStatus)
No newline at end of file
321 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred)
No newline at end of file
322 sizePolicy.setHorizontalStretch(0)
No newline at end of file
323 sizePolicy.setVerticalStretch(0)
No newline at end of file
324 sizePolicy.setHeightForWidth(self.lblSTATUS.sizePolicy().hasHeightForWidth())
No newline at end of file
325 self.lblSTATUS.setSizePolicy(sizePolicy)
No newline at end of file
326 self.lblSTATUS.setObjectName("lblSTATUS")
No newline at end of file
327 self.verticalLayout_21.addWidget(self.lblSTATUS)
No newline at end of file
328 self.lblINFO = QtGui.QLabel(self.tabStatus)
No newline at end of file
329 self.lblINFO.setObjectName("lblINFO")
No newline at end of file
330 self.verticalLayout_21.addWidget(self.lblINFO)
No newline at end of file
331 self.lblSET = QtGui.QLabel(self.tabStatus)
No newline at end of file
332 self.lblSET.setObjectName("lblSET")
No newline at end of file
333 self.verticalLayout_21.addWidget(self.lblSET)
No newline at end of file
334 self.horizontalLayout_18.addLayout(self.verticalLayout_21)
No newline at end of file
335 self.verticalLayout_22 = QtGui.QVBoxLayout()
No newline at end of file
336 self.verticalLayout_22.setObjectName("verticalLayout_22")
No newline at end of file
337 spacerItem7 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
No newline at end of file
338 self.verticalLayout_22.addItem(spacerItem7)
No newline at end of file
339 self.lblDevA = QtGui.QLabel(self.tabStatus)
No newline at end of file
340 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
341 self.lblDevA.setObjectName("lblDevA")
No newline at end of file
342 self.verticalLayout_22.addWidget(self.lblDevA)
No newline at end of file
343 self.txtBstatusA = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
344 self.txtBstatusA.setReadOnly(True)
No newline at end of file
345 self.txtBstatusA.setObjectName("txtBstatusA")
No newline at end of file
346 self.verticalLayout_22.addWidget(self.txtBstatusA)
No newline at end of file
347 self.txtBdiscA = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
348 self.txtBdiscA.setReadOnly(True)
No newline at end of file
349 self.txtBdiscA.setObjectName("txtBdiscA")
No newline at end of file
350 self.verticalLayout_22.addWidget(self.txtBdiscA)
No newline at end of file
351 self.txtBcopyA = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
352 self.txtBcopyA.setReadOnly(True)
No newline at end of file
353 self.txtBcopyA.setObjectName("txtBcopyA")
No newline at end of file
354 self.verticalLayout_22.addWidget(self.txtBcopyA)
No newline at end of file
355 self.horizontalLayout_18.addLayout(self.verticalLayout_22)
No newline at end of file
356 self.verticalLayout_23 = QtGui.QVBoxLayout()
No newline at end of file
357 self.verticalLayout_23.setObjectName("verticalLayout_23")
No newline at end of file
358 spacerItem8 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
No newline at end of file
359 self.verticalLayout_23.addItem(spacerItem8)
No newline at end of file
360 self.lblDevB = QtGui.QLabel(self.tabStatus)
No newline at end of file
361 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
362 self.lblDevB.setObjectName("lblDevB")
No newline at end of file
363 self.verticalLayout_23.addWidget(self.lblDevB)
No newline at end of file
364 self.txtBstatusB = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
365 self.txtBstatusB.setReadOnly(True)
No newline at end of file
366 self.txtBstatusB.setObjectName("txtBstatusB")
No newline at end of file
367 self.verticalLayout_23.addWidget(self.txtBstatusB)
No newline at end of file
368 self.txtBdiscB = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
369 self.txtBdiscB.setReadOnly(True)
No newline at end of file
370 self.txtBdiscB.setObjectName("txtBdiscB")
No newline at end of file
371 self.verticalLayout_23.addWidget(self.txtBdiscB)
No newline at end of file
372 self.txtBcopyB = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
373 self.txtBcopyB.setReadOnly(True)
No newline at end of file
374 self.txtBcopyB.setObjectName("txtBcopyB")
No newline at end of file
375 self.verticalLayout_23.addWidget(self.txtBcopyB)
No newline at end of file
376 self.horizontalLayout_18.addLayout(self.verticalLayout_23)
No newline at end of file
377 self.verticalLayout_24 = QtGui.QVBoxLayout()
No newline at end of file
378 self.verticalLayout_24.setObjectName("verticalLayout_24")
No newline at end of file
379 spacerItem9 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
No newline at end of file
380 self.verticalLayout_24.addItem(spacerItem9)
No newline at end of file
381 self.lblDevC = QtGui.QLabel(self.tabStatus)
No newline at end of file
382 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
383 self.lblDevC.setObjectName("lblDevC")
No newline at end of file
384 self.verticalLayout_24.addWidget(self.lblDevC)
No newline at end of file
385 self.txtBstatusC = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
386 self.txtBstatusC.setReadOnly(True)
No newline at end of file
387 self.txtBstatusC.setObjectName("txtBstatusC")
No newline at end of file
388 self.verticalLayout_24.addWidget(self.txtBstatusC)
No newline at end of file
389 self.txtBdiscC = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
390 self.txtBdiscC.setReadOnly(True)
No newline at end of file
391 self.txtBdiscC.setObjectName("txtBdiscC")
No newline at end of file
392 self.verticalLayout_24.addWidget(self.txtBdiscC)
No newline at end of file
393 self.txtBcopyC = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
394 self.txtBcopyC.setReadOnly(True)
No newline at end of file
395 self.txtBcopyC.setObjectName("txtBcopyC")
No newline at end of file
396 self.verticalLayout_24.addWidget(self.txtBcopyC)
No newline at end of file
397 self.horizontalLayout_18.addLayout(self.verticalLayout_24)
No newline at end of file
398 self.verticalLayout_25 = QtGui.QVBoxLayout()
No newline at end of file
399 self.verticalLayout_25.setObjectName("verticalLayout_25")
No newline at end of file
400 spacerItem10 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
No newline at end of file
401 self.verticalLayout_25.addItem(spacerItem10)
No newline at end of file
402 self.lblDevD = QtGui.QLabel(self.tabStatus)
No newline at end of file
403 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
404 self.lblDevD.setObjectName("lblDevD")
No newline at end of file
405 self.verticalLayout_25.addWidget(self.lblDevD)
No newline at end of file
406 self.txtBstatusD = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
407 self.txtBstatusD.setReadOnly(True)
No newline at end of file
408 self.txtBstatusD.setObjectName("txtBstatusD")
No newline at end of file
409 self.verticalLayout_25.addWidget(self.txtBstatusD)
No newline at end of file
410 self.txtBdiscD = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
411 self.txtBdiscD.setReadOnly(True)
No newline at end of file
412 self.txtBdiscD.setObjectName("txtBdiscD")
No newline at end of file
413 self.verticalLayout_25.addWidget(self.txtBdiscD)
No newline at end of file
414 self.txtBcopyD = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
415 self.txtBcopyD.setReadOnly(True)
No newline at end of file
416 self.txtBcopyD.setObjectName("txtBcopyD")
No newline at end of file
417 self.verticalLayout_25.addWidget(self.txtBcopyD)
No newline at end of file
418 self.horizontalLayout_18.addLayout(self.verticalLayout_25)
No newline at end of file
419 self.verticalLayout_4.addLayout(self.horizontalLayout_18)
No newline at end of file
420 spacerItem11 = QtGui.QSpacerItem(20, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
No newline at end of file
421 self.verticalLayout_4.addItem(spacerItem11)
No newline at end of file
422 self.horizontalLayout_16 = QtGui.QHBoxLayout()
No newline at end of file
423 self.horizontalLayout_16.setObjectName("horizontalLayout_16")
No newline at end of file
424 self.label = QtGui.QLabel(self.tabStatus)
No newline at end of file
425 self.label.setObjectName("label")
No newline at end of file
426 self.horizontalLayout_16.addWidget(self.label)
No newline at end of file
427 spacerItem12 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
No newline at end of file
428 self.horizontalLayout_16.addItem(spacerItem12)
No newline at end of file
429 self.verticalLayout_4.addLayout(self.horizontalLayout_16)
No newline at end of file
430 self.horizontalLayout_17 = QtGui.QHBoxLayout()
No newline at end of file
431 self.horizontalLayout_17.setObjectName("horizontalLayout_17")
No newline at end of file
432 spacerItem13 = QtGui.QSpacerItem(50, 20, QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Minimum)
No newline at end of file
433 self.horizontalLayout_17.addItem(spacerItem13)
No newline at end of file
434 self.txtTDpath = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
435 self.txtTDpath.setEnabled(False)
No newline at end of file
436 self.txtTDpath.setObjectName("txtTDpath")
No newline at end of file
437 self.horizontalLayout_17.addWidget(self.txtTDpath)
No newline at end of file
438 self.btnTDpath = QtGui.QPushButton(self.tabStatus)
No newline at end of file
439 self.btnTDpath.setEnabled(False)
No newline at end of file
440 self.btnTDpath.setObjectName("btnTDpath")
No newline at end of file
441 self.horizontalLayout_17.addWidget(self.btnTDpath)
No newline at end of file
442 self.verticalLayout_4.addLayout(self.horizontalLayout_17)
No newline at end of file
443 self.horizontalLayout_19 = QtGui.QHBoxLayout()
No newline at end of file
444 self.horizontalLayout_19.setObjectName("horizontalLayout_19")
No newline at end of file
445 self.verticalLayout_26 = QtGui.QVBoxLayout()
No newline at end of file
446 self.verticalLayout_26.setObjectName("verticalLayout_26")
No newline at end of file
447 spacerItem14 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
No newline at end of file
448 self.verticalLayout_26.addItem(spacerItem14)
No newline at end of file
449 self.lblSTATUS_2 = QtGui.QLabel(self.tabStatus)
No newline at end of file
450 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred)
No newline at end of file
451 sizePolicy.setHorizontalStretch(0)
No newline at end of file
452 sizePolicy.setVerticalStretch(0)
No newline at end of file
453 sizePolicy.setHeightForWidth(self.lblSTATUS_2.sizePolicy().hasHeightForWidth())
No newline at end of file
454 self.lblSTATUS_2.setSizePolicy(sizePolicy)
No newline at end of file
455 self.lblSTATUS_2.setObjectName("lblSTATUS_2")
No newline at end of file
456 self.verticalLayout_26.addWidget(self.lblSTATUS_2)
No newline at end of file
457 self.horizontalLayout_19.addLayout(self.verticalLayout_26)
No newline at end of file
458 self.verticalLayout_27 = QtGui.QVBoxLayout()
No newline at end of file
459 self.verticalLayout_27.setObjectName("verticalLayout_27")
No newline at end of file
460 self.lblDevA_2 = QtGui.QLabel(self.tabStatus)
No newline at end of file
461 self.lblDevA_2.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
462 self.lblDevA_2.setObjectName("lblDevA_2")
No newline at end of file
463 self.verticalLayout_27.addWidget(self.lblDevA_2)
No newline at end of file
464 self.txtCHstatusA = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
465 self.txtCHstatusA.setReadOnly(True)
No newline at end of file
466 self.txtCHstatusA.setObjectName("txtCHstatusA")
No newline at end of file
467 self.verticalLayout_27.addWidget(self.txtCHstatusA)
No newline at end of file
468 self.horizontalLayout_19.addLayout(self.verticalLayout_27)
No newline at end of file
469 self.verticalLayout_28 = QtGui.QVBoxLayout()
No newline at end of file
470 self.verticalLayout_28.setObjectName("verticalLayout_28")
No newline at end of file
471 self.lblDevB_2 = QtGui.QLabel(self.tabStatus)
No newline at end of file
472 self.lblDevB_2.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
473 self.lblDevB_2.setObjectName("lblDevB_2")
No newline at end of file
474 self.verticalLayout_28.addWidget(self.lblDevB_2)
No newline at end of file
475 self.txtCHstatusB = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
476 self.txtCHstatusB.setReadOnly(True)
No newline at end of file
477 self.txtCHstatusB.setObjectName("txtCHstatusB")
No newline at end of file
478 self.verticalLayout_28.addWidget(self.txtCHstatusB)
No newline at end of file
479 self.horizontalLayout_19.addLayout(self.verticalLayout_28)
No newline at end of file
480 self.verticalLayout_29 = QtGui.QVBoxLayout()
No newline at end of file
481 self.verticalLayout_29.setObjectName("verticalLayout_29")
No newline at end of file
482 self.lblDevC_2 = QtGui.QLabel(self.tabStatus)
No newline at end of file
483 self.lblDevC_2.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
484 self.lblDevC_2.setObjectName("lblDevC_2")
No newline at end of file
485 self.verticalLayout_29.addWidget(self.lblDevC_2)
No newline at end of file
486 self.txtCHstatusC = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
487 self.txtCHstatusC.setReadOnly(True)
No newline at end of file
488 self.txtCHstatusC.setObjectName("txtCHstatusC")
No newline at end of file
489 self.verticalLayout_29.addWidget(self.txtCHstatusC)
No newline at end of file
490 self.horizontalLayout_19.addLayout(self.verticalLayout_29)
No newline at end of file
491 self.verticalLayout_30 = QtGui.QVBoxLayout()
No newline at end of file
492 self.verticalLayout_30.setObjectName("verticalLayout_30")
No newline at end of file
493 self.lblDevD_2 = QtGui.QLabel(self.tabStatus)
No newline at end of file
494 self.lblDevD_2.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
495 self.lblDevD_2.setObjectName("lblDevD_2")
No newline at end of file
496 self.verticalLayout_30.addWidget(self.lblDevD_2)
No newline at end of file
497 self.txtCHstatusD = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
498 self.txtCHstatusD.setReadOnly(True)
No newline at end of file
499 self.txtCHstatusD.setObjectName("txtCHstatusD")
No newline at end of file
500 self.verticalLayout_30.addWidget(self.txtCHstatusD)
No newline at end of file
501 self.horizontalLayout_19.addLayout(self.verticalLayout_30)
No newline at end of file
502 self.verticalLayout_4.addLayout(self.horizontalLayout_19)
No newline at end of file
503 self.horizontalLayout_20 = QtGui.QHBoxLayout()
No newline at end of file
504 self.horizontalLayout_20.setObjectName("horizontalLayout_20")
No newline at end of file
505 spacerItem15 = QtGui.QSpacerItem(50, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
No newline at end of file
506 self.horizontalLayout_20.addItem(spacerItem15)
No newline at end of file
507 self.chkCheck = QtGui.QCheckBox(self.tabStatus)
No newline at end of file
508 self.chkCheck.setEnabled(False)
No newline at end of file
509 self.chkCheck.setObjectName("chkCheck")
No newline at end of file
510 self.horizontalLayout_20.addWidget(self.chkCheck)
No newline at end of file
511 spacerItem16 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
No newline at end of file
512 self.horizontalLayout_20.addItem(spacerItem16)
No newline at end of file
513 self.btnCHstart = QtGui.QPushButton(self.tabStatus)
No newline at end of file
514 self.btnCHstart.setEnabled(False)
No newline at end of file
515 self.btnCHstart.setObjectName("btnCHstart")
No newline at end of file
516 self.horizontalLayout_20.addWidget(self.btnCHstart)
No newline at end of file
517 self.verticalLayout_4.addLayout(self.horizontalLayout_20)
No newline at end of file
518 self.widget_2 = QtGui.QWidget(self.tabStatus)
No newline at end of file
519 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
340 520 sizePolicy.setHorizontalStretch(0) No newline at end of file
341 521 sizePolicy.setVerticalStretch(0) No newline at end of file
342 522 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth()) No newline at end of file
343 523 self.widget_2.setSizePolicy(sizePolicy) No newline at end of file
344 524 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
345 525 self.widget_2.setObjectName("widget_2") No newline at end of file
346 526 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2) No newline at end of file
347 527 self.gridLayout_2.setObjectName("gridLayout_2")
No newline at end of file
348 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2)
No newline at end of file
349 self.txtSTATUSb.setReadOnly(True)
No newline at end of file
350 self.txtSTATUSb.setObjectName("txtSTATUSb")
No newline at end of file
351 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1)
No newline at end of file
352 self.txtINFOa = QtGui.QLineEdit(self.widget_2)
No newline at end of file
353 self.txtINFOa.setReadOnly(True)
No newline at end of file
354 self.txtINFOa.setObjectName("txtINFOa")
No newline at end of file
355 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1)
No newline at end of file
356 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2)
No newline at end of file
357 self.txtSTATUSa.setReadOnly(True)
No newline at end of file
358 self.txtSTATUSa.setObjectName("txtSTATUSa")
No newline at end of file
359 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1)
No newline at end of file
360 self.txtINFOb = QtGui.QLineEdit(self.widget_2)
No newline at end of file
361 self.txtINFOb.setReadOnly(True)
No newline at end of file
362 self.txtINFOb.setObjectName("txtINFOb")
No newline at end of file
363 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1)
No newline at end of file
364 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2)
No newline at end of file
365 self.txtSTATUSc.setReadOnly(True)
No newline at end of file
366 self.txtSTATUSc.setObjectName("txtSTATUSc")
No newline at end of file
367 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1)
No newline at end of file
368 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2)
No newline at end of file
369 self.txtSTATUSd.setReadOnly(True)
No newline at end of file
370 self.txtSTATUSd.setObjectName("txtSTATUSd")
No newline at end of file
371 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1)
No newline at end of file
372 self.txtINFOd = QtGui.QLineEdit(self.widget_2)
No newline at end of file
373 self.txtINFOd.setReadOnly(True)
No newline at end of file
374 self.txtINFOd.setObjectName("txtINFOd")
No newline at end of file
375 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1)
No newline at end of file
376 self.txtSETa = QtGui.QLineEdit(self.widget_2)
No newline at end of file
377 self.txtSETa.setReadOnly(True)
No newline at end of file
378 self.txtSETa.setObjectName("txtSETa")
No newline at end of file
379 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1)
No newline at end of file
380 self.txtSETb = QtGui.QLineEdit(self.widget_2)
No newline at end of file
381 self.txtSETb.setReadOnly(True)
No newline at end of file
382 self.txtSETb.setObjectName("txtSETb")
No newline at end of file
383 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1)
No newline at end of file
384 self.txtSETc = QtGui.QLineEdit(self.widget_2)
No newline at end of file
385 self.txtSETc.setReadOnly(True)
No newline at end of file
386 self.txtSETc.setObjectName("txtSETc")
No newline at end of file
387 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1)
No newline at end of file
388 self.txtSETd = QtGui.QLineEdit(self.widget_2)
No newline at end of file
389 self.txtSETd.setReadOnly(True)
No newline at end of file
390 self.txtSETd.setObjectName("txtSETd")
No newline at end of file
391 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1)
No newline at end of file
392 self.lblSTATUS = QtGui.QLabel(self.widget_2)
No newline at end of file
393 self.lblSTATUS.setObjectName("lblSTATUS")
No newline at end of file
394 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1)
No newline at end of file
395 self.lblINFO = QtGui.QLabel(self.widget_2)
No newline at end of file
396 self.lblINFO.setObjectName("lblINFO")
No newline at end of file
397 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1)
No newline at end of file
398 self.lblSET = QtGui.QLabel(self.widget_2)
No newline at end of file
399 self.lblSET.setObjectName("lblSET")
No newline at end of file
400 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1)
No newline at end of file
401 self.lblDevA = QtGui.QLabel(self.widget_2)
No newline at end of file
402 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
403 self.lblDevA.setObjectName("lblDevA")
No newline at end of file
404 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1)
No newline at end of file
405 self.lblDevB = QtGui.QLabel(self.widget_2)
No newline at end of file
406 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
407 self.lblDevB.setObjectName("lblDevB")
No newline at end of file
408 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1)
No newline at end of file
409 self.lblDevC = QtGui.QLabel(self.widget_2)
No newline at end of file
410 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
411 self.lblDevC.setObjectName("lblDevC")
No newline at end of file
412 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1)
No newline at end of file
413 self.lblDevD = QtGui.QLabel(self.widget_2)
No newline at end of file
414 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter)
No newline at end of file
415 self.lblDevD.setObjectName("lblDevD")
No newline at end of file
416 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1)
No newline at end of file
417 self.txtINFOc = QtGui.QLineEdit(self.widget_2)
No newline at end of file
418 self.txtINFOc.setReadOnly(True)
No newline at end of file
419 self.txtINFOc.setObjectName("txtINFOc")
No newline at end of file
420 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1) No newline at end of file
421 528 self.verticalLayout_4.addWidget(self.widget_2)
529 No newline at end of file
422 self.txtSburn = QtGui.QTextEdit(self.tabSburn)
No newline at end of file
423 self.txtSburn.setReadOnly(True)
No newline at end of file
424 self.txtSburn.setObjectName("txtSburn")
No newline at end of file
425 self.verticalLayout_4.addWidget(self.txtSburn)
No newline at end of file
426 self.tabWidget.addTab(self.tabSburn, "") No newline at end of file
427 530 self.verticalLayout.addWidget(self.tabWidget) No newline at end of file
428 531 self.txtInfo = QtGui.QTextEdit(self.centralwidget) No newline at end of file
429 532 self.txtInfo.setReadOnly(True) No newline at end of file
430 533 self.txtInfo.setObjectName("txtInfo") No newline at end of file
431 534 self.verticalLayout.addWidget(self.txtInfo) No newline at end of file
432 535 self.horizontalLayout_2 = QtGui.QHBoxLayout() No newline at end of file
433 536 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
434 537 self.horizontalLayout_2.setObjectName("horizontalLayout_2") No newline at end of file
435 538 self.btnGbkp = QtGui.QPushButton(self.centralwidget) No newline at end of file
436 539 self.btnGbkp.setEnabled(False) No newline at end of file
437 540 self.btnGbkp.setObjectName("btnGbkp") No newline at end of file
438 541 self.horizontalLayout_2.addWidget(self.btnGbkp) No newline at end of file
439 542 self.btnRestart = QtGui.QPushButton(self.centralwidget) No newline at end of file
440 543 self.btnRestart.setEnabled(False) No newline at end of file
441 544 self.btnRestart.setObjectName("btnRestart") No newline at end of file
442 545 self.horizontalLayout_2.addWidget(self.btnRestart) No newline at end of file
443 546 self.btnStartburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
444 547 self.btnStartburn.setEnabled(False) No newline at end of file
445 548 self.btnStartburn.setObjectName("btnStartburn") No newline at end of file
446 549 self.horizontalLayout_2.addWidget(self.btnStartburn) No newline at end of file
447 550 self.btnStopburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
448 551 self.btnStopburn.setEnabled(False) No newline at end of file
449 552 self.btnStopburn.setObjectName("btnStopburn") No newline at end of file
450 553 self.horizontalLayout_2.addWidget(self.btnStopburn) No newline at end of file
451 554 self.verticalLayout.addLayout(self.horizontalLayout_2) No newline at end of file
452 555 MainWindow.setCentralWidget(self.centralwidget) No newline at end of file
453 556 self.menubar = QtGui.QMenuBar(MainWindow)
557 No newline at end of file
454 self.menubar.setGeometry(QtCore.QRect(0, 0, 809, 25)) No newline at end of file
455 558 self.menubar.setObjectName("menubar") No newline at end of file
456 559 self.menuParameters = QtGui.QMenu(self.menubar) No newline at end of file
457 560 self.menuParameters.setObjectName("menuParameters") No newline at end of file
561 self.menuFile = QtGui.QMenu(self.menubar)
No newline at end of file
562 self.menuFile.setObjectName("menuFile") No newline at end of file
458 563 self.menuHelp = QtGui.QMenu(self.menubar) No newline at end of file
459 564 self.menuHelp.setObjectName("menuHelp")
No newline at end of file
460 self.menuFile = QtGui.QMenu(self.menubar)
No newline at end of file
461 self.menuFile.setObjectName("menuFile") No newline at end of file
462 565 MainWindow.setMenuBar(self.menubar) No newline at end of file
463 566 self.statusbar = QtGui.QStatusBar(MainWindow) No newline at end of file
464 567 self.statusbar.setObjectName("statusbar") No newline at end of file
465 568 MainWindow.setStatusBar(self.statusbar) No newline at end of file
466 569 self.actionChange_Parameters = QtGui.QAction(MainWindow) No newline at end of file
467 570 self.actionChange_Parameters.setObjectName("actionChange_Parameters")
No newline at end of file
468 self.actionSave_Config = QtGui.QAction(MainWindow)
No newline at end of file
469 self.actionSave_Config.setObjectName("actionSave_Config") No newline at end of file
470 571 self.actionQuit = QtGui.QAction(MainWindow) No newline at end of file
471 572 self.actionQuit.setObjectName("actionQuit") No newline at end of file
472 573 self.actionAbout = QtGui.QAction(MainWindow) No newline at end of file
473 574 self.actionAbout.setObjectName("actionAbout") No newline at end of file
474 575 self.menuParameters.addAction(self.actionChange_Parameters) No newline at end of file
576 self.menuFile.addAction(self.actionQuit) No newline at end of file
475 577 self.menuHelp.addAction(self.actionAbout)
No newline at end of file
476 self.menuFile.addAction(self.actionSave_Config)
No newline at end of file
477 self.menuFile.addAction(self.actionQuit) No newline at end of file
478 578 self.menubar.addAction(self.menuFile.menuAction()) No newline at end of file
479 579 self.menubar.addAction(self.menuParameters.menuAction()) No newline at end of file
480 580 self.menubar.addAction(self.menuHelp.menuAction()) No newline at end of file
481 581 No newline at end of file
482 582 self.retranslateUi(MainWindow)
583 No newline at end of file
483 self.tabWidget.setCurrentIndex(0) No newline at end of file
484 584 self.lstDcapacity.setCurrentIndex(2)
585 No newline at end of file
485 QtCore.QObject.connect(self.chkSequentially, QtCore.SIGNAL("clicked()"), self.chkSimultaneously.toggle)
No newline at end of file
586 No newline at end of file
486 QtCore.QObject.connect(self.chkSimultaneously, QtCore.SIGNAL("clicked()"), self.chkSequentially.toggle)
No newline at end of file
587 No newline at end of file
487 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.grpDevA.setEnabled) No newline at end of file
No newline at end of file
588 QtCore.QObject.connect(self.chkCheck, QtCore.SIGNAL("toggled(bool)"), self.btnCHstart.setEnabled)
No newline at end of file
589 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled) No newline at end of file
488 590 QtCore.QObject.connect(self.chkDevB, QtCore.SIGNAL("toggled(bool)"), self.grpDevB.setEnabled) No newline at end of file
489 591 QtCore.QObject.connect(self.chkDevC, QtCore.SIGNAL("toggled(bool)"), self.grpDevC.setEnabled)
592 No newline at end of file
490 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled) No newline at end of file
491 593 QtCore.QMetaObject.connectSlotsByName(MainWindow) No newline at end of file
492 594 MainWindow.setTabOrder(self.txtDpath, self.btnDpath) No newline at end of file
493 595 MainWindow.setTabOrder(self.btnDpath, self.txtRpath) No newline at end of file
494 596 MainWindow.setTabOrder(self.txtRpath, self.btnRpath) No newline at end of file
495 597 MainWindow.setTabOrder(self.btnRpath, self.lstDtype) No newline at end of file
496 598 MainWindow.setTabOrder(self.lstDtype, self.txtDtype)
599 No newline at end of file
497 MainWindow.setTabOrder(self.txtDtype, self.chkMST)
No newline at end of file
498 MainWindow.setTabOrder(self.chkMST, self.txtElabel) No newline at end of file
499 600 MainWindow.setTabOrder(self.txtElabel, self.lstStartDay) No newline at end of file
500 601 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay)
602 No newline at end of file
501 MainWindow.setTabOrder(self.lstStopDay, self.chkSimultaneously)
No newline at end of file
603 No newline at end of file
502 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially)
No newline at end of file
604 No newline at end of file
503 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert)
No newline at end of file
504 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity)
No newline at end of file
505 MainWindow.setTabOrder(self.lstDcapacity, self.chkPSgraphic)
No newline at end of file
506 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17)
No newline at end of file
507 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa)
No newline at end of file
508 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb)
No newline at end of file
509 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc)
No newline at end of file
510 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd)
No newline at end of file
511 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa)
No newline at end of file
512 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb)
No newline at end of file
513 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc)
No newline at end of file
514 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd)
No newline at end of file
515 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa)
No newline at end of file
516 MainWindow.setTabOrder(self.txtSETa, self.txtSETb)
No newline at end of file
517 MainWindow.setTabOrder(self.txtSETb, self.txtSETc)
No newline at end of file
518 MainWindow.setTabOrder(self.txtSETc, self.txtSETd)
No newline at end of file
519 MainWindow.setTabOrder(self.txtSETd, self.tabWidget)
No newline at end of file
520 MainWindow.setTabOrder(self.tabWidget, self.txtSburn)
No newline at end of file
521 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp) No newline at end of file
522 605 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart) No newline at end of file
523 606 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn) No newline at end of file
524 607 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn) No newline at end of file
525 608 No newline at end of file
526 609 def retranslateUi(self, MainWindow): No newline at end of file
527 610 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
528 611 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
529 612 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
530 613 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
531 614 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
532 615 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
533 616 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
534 617 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
535 618 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
536 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
537 619 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
538 620 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
539 621 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
540 622 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
541 623 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
542 624 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
543 625 self.txtBspeedA.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
544 626 self.txtBmodeA.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
545 627 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
546 628 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
547 629 self.txtBspeedB.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
548 630 self.txtBmodeB.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
549 631 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
550 632 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
551 633 self.txtBspeedC.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
552 634 self.txtBmodeC.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
553 635 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
554 636 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
555 637 self.txtBspeedD.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
556 638 self.txtBmodeD.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
557 639 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
558 640 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
559 641 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
560 642 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8))
643 No newline at end of file
561 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
562 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
563 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
564 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity (MB)", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
565 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
566 644 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
567 645 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
568 646 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
569 647 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
648 No newline at end of file
570 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
649 No newline at end of file
571 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
572 650 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
651 self.label_4.setText(QtGui.QApplication.translate("MainWindow", "BURN", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
573 652 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8))
653 No newline at end of file
574 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
654 No newline at end of file
575 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
576 655 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
577 656 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
578 657 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
579 658 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8))
659 No newline at end of file
580 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
No newline at end of file
660 self.btnTDpath.setText(QtGui.QApplication.translate("MainWindow", "Temp Data Path", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
661 self.lblSTATUS_2.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
662 self.lblDevA_2.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
663 self.lblDevB_2.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
664 self.lblDevC_2.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
665 self.lblDevD_2.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
666 self.chkCheck.setText(QtGui.QApplication.translate("MainWindow", "ENABLE ", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
667 self.btnCHstart.setText(QtGui.QApplication.translate("MainWindow", "START", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
668 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabStatus), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
581 669 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
582 670 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
583 671 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
584 672 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
585 673 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
674 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
586 675 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
587 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
588 676 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
589 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
590 677 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8))
678 No newline at end of file
591 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
592 679 No newline at end of file
593 680 No newline at end of file
594 681 if __name__ == "__main__": No newline at end of file
595 682 import sys No newline at end of file
596 683 app = QtGui.QApplication(sys.argv) No newline at end of file
597 684 MainWindow = QtGui.QMainWindow() No newline at end of file
598 685 ui = Ui_MainWindow() No newline at end of file
599 686 ui.setupUi(MainWindow) No newline at end of file
600 687 MainWindow.show() No newline at end of file
601 688 sys.exit(app.exec_()) No newline at end of file
602 689 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now