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