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