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