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