##// END OF EJS Templates
***
ralonso -
r25:26
parent child
Show More
@@ -1,289 +1,330
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
14 No newline at end of file
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 def __init__(self, parent = None): No newline at end of file
22 22 QMainWindow.__init__(self, parent) No newline at end of file
23 23 self.setupUi(self) No newline at end of file
24 24 self.setupUi2() No newline at end of file
25 self.setupUi2()
No newline at end of file
26 #sys.stdout = obj No newline at end of file
25 27 No newline at end of file
26 28 def setupUi2(self):
No newline at end of file
27 print 'hi' No newline at end of file
28 29 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS') No newline at end of file
29 30 self.txtRpath.setText('/home/ricardoar/optional/STORAGE/prueba1_jro_backup_manager') No newline at end of file
31 self.txtRpath.setText('/home/ricardoar/optional/STORAGE/prueba1_jro_backup_manager')
No newline at end of file
32 self.txtElabel.setText('EW_DRIFTS') No newline at end of file
30 33 No newline at end of file
31 34 @pyqtSignature("") No newline at end of file
32 35 def on_btnDpath_clicked(self): No newline at end of file
33 36 """ No newline at end of file
34 37 Slot documentation goes here. No newline at end of file
35 38 """ No newline at end of file
36 39 var_Dpath= QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly) No newline at end of file
37 40 self.txtDpath.setText(var_Dpath) No newline at end of file
38 41 self.on_txtDpath_editingFinished() No newline at end of file
39 42 No newline at end of file
40 43 @pyqtSignature("") No newline at end of file
41 44 def on_btnRpath_clicked(self): No newline at end of file
42 45 """ No newline at end of file
43 46 Slot documentation goes here. No newline at end of file
44 47 """ No newline at end of file
45 48 var_Rpath = QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly) No newline at end of file
46 49 self.txtRpath.setText(var_Rpath) No newline at end of file
47 50 self.on_txtRpath_editingFinished() No newline at end of file
48 51 No newline at end of file
49 52 No newline at end of file
50 53 @pyqtSignature("") No newline at end of file
51 54 def on_txtDpath_editingFinished(self): No newline at end of file
52 55
56 No newline at end of file
53 #Usando el modulo "subprocess" eric4 pide seleccion del tipo de subproceso (padre o hijo) No newline at end of file
54 57 #por ello se prefiere usar el modulo "commands" No newline at end of file
55 58 #p1= Popen(['find', var_Dpath, '-name', '*.r'], stdout=PIPE) No newline at end of file
56 59 #p2= Popen(['awk', '-F/', '{print substr($NF,2,7)}'], stdin=p1.stdout, stdout=PIPE) No newline at end of file
57 60 #output_p2= p2.communicate()[0] No newline at end of file
58 61 #self.txtInfo.setText(output_p2) No newline at end of file
59 62 No newline at end of file
60 63 var_Dpath=self.txtDpath.text() No newline at end of file
61 64 No newline at end of file
62 65 #Se verifica que la ruta exista y sea un directorio No newline at end of file
63 66 var_cmd="test -d "+str(var_Dpath) No newline at end of file
64 67 var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
65 68 if var_output != 0: No newline at end of file
66 69 self.txtInfo.setText("Ruta no valida, output_error:" + str(var_output)) No newline at end of file
67 70 return No newline at end of file
68 71 No newline at end of file
69 72 #Se buscan los archivos del tipo especificado No newline at end of file
70 73 var_Dtype=self.txtDtype.text() No newline at end of file
71 74 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
72 75 output_p2=commands.getstatusoutput(var_cmd)[1] No newline at end of file
73 76 No newline at end of file
74 77 #INFO: Muestra los dias que se encontraron
78 No newline at end of file
75 self.txtInfo.setText(output_p2) No newline at end of file
76 79 No newline at end of file
77 80 #Se cargan las listas para seleccionar StartDay y StopDay No newline at end of file
78 81 self.var_list=[] No newline at end of file
79 82 for i in range(0, (len(output_p2)+1)/8): No newline at end of file
80 83 self.var_list.append(output_p2[8*i:8*(i+1)-1]) No newline at end of file
81 84 No newline at end of file
82 85 self.lstStartDay.clear() No newline at end of file
83 86 self.lstStopDay.clear() No newline at end of file
84 87 No newline at end of file
85 88 for i in self.var_list: No newline at end of file
86 89 self.lstStartDay.addItem(i) No newline at end of file
87 90 self.lstStopDay.addItem(i) No newline at end of file
88 91 No newline at end of file
89 92 self.lstStopDay.setCurrentIndex(self.lstStartDay.count()-1) No newline at end of file
90 93 No newline at end of file
91 94 #INFO: Muestra cuantos dias se encontraron
95 No newline at end of file
92 # self.txtInfo.setText(str(self.lstStartDay.count())) No newline at end of file
93 96 No newline at end of file
94 97 No newline at end of file
95 98 @pyqtSignature("") No newline at end of file
96 99 def on_txtRpath_editingFinished(self): No newline at end of file
97 100 """ No newline at end of file
98 101 Slot documentation goes here. No newline at end of file
99 102 """ No newline at end of file
100 103 var_Rpath=self.txtRpath.text() No newline at end of file
101 104 #Se verifica que la ruta exista y sea un directorio No newline at end of file
102 105 var_cmd="test -d "+str(var_Rpath) No newline at end of file
103 106 var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
104 107 if var_output != 0:
108 No newline at end of file
105 self.txtInfo.setText("Ruta no valida, output_error:" + str(var_output)) No newline at end of file
106 109 return No newline at end of file
107 110 else:
111 No newline at end of file
108 self.txtInfo.setText("Ruta valida, sin error") No newline at end of file
109 112 No newline at end of file
110 113 No newline at end of file
111 114 @pyqtSignature("int") No newline at end of file
112 115 def on_lstDtype_activated(self, index): No newline at end of file
113 116 """ No newline at end of file
114 117 Permite elegir entre los tipos de archivos No newline at end of file
115 118 """ No newline at end of file
116 119 if index == 0: No newline at end of file
117 120 var_type='r' No newline at end of file
118 121 elif index == 1: No newline at end of file
119 122 var_type='pdata' No newline at end of file
120 123 elif index == 2: No newline at end of file
121 124 var_type='sswma' No newline at end of file
122 125 No newline at end of file
123 126 if index != 3: No newline at end of file
124 127 self.txtDtype.setText(var_type) No newline at end of file
125 128 self.txtDtype.setReadOnly(True) No newline at end of file
126 129 self.on_txtDpath_editingFinished() No newline at end of file
127 130 else: No newline at end of file
128 131 self.txtDtype.setText('') No newline at end of file
129 132 self.txtDtype.setReadOnly(False) No newline at end of file
130 133 No newline at end of file
131 134 @pyqtSignature("") No newline at end of file
132 135 def on_txtDtype_editingFinished(self): No newline at end of file
133 136 """ No newline at end of file
134 137 Se activa cuando el tipo de archivo es ingresado manualmente No newline at end of file
135 138 """ No newline at end of file
136 139 self.on_txtDpath_editingFinished() No newline at end of file
137 140
141 No newline at end of file
138 @pyqtSignature("int") No newline at end of file
No newline at end of file
142 """ No newline at end of file
139 143 def on_lstStartDay_activated(self, index): No newline at end of file
140 144 """
145 No newline at end of file
141 Slot documentation goes here.
No newline at end of file
146 No newline at end of file
142 """
No newline at end of file
143 #self.txtInfo.setText(str(index)) No newline at end of file
144 147 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex() No newline at end of file
145 148 No newline at end of file
146 149 self.lstStopDay.clear() No newline at end of file
147 150 No newline at end of file
148 151 for i in self.var_list[index:]: No newline at end of file
149 152 self.lstStopDay.addItem(i) No newline at end of file
150 153 No newline at end of file
151 154 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index)
155 No newline at end of file
152 #self.txtInfo.append(str(var_StopDay_index))
No newline at end of file
156 No newline at end of file
153 #self.txtInfo.append(str(self.lstStopDay.count()))
No newline at end of file
157 No newline at end of file
154
No newline at end of file
155
No newline at end of file
156 @pyqtSignature("int") No newline at end of file
157 158 def on_lstStopDay_activated(self, index): No newline at end of file
158 159 """
160 No newline at end of file
159 Slot documentation goes here.
No newline at end of file
161 No newline at end of file
160 """
No newline at end of file
161 #self.txtInfo.setText(str(index)) No newline at end of file
162 162 var_StartDay_index=self.lstStartDay.currentIndex() No newline at end of file
163 163 No newline at end of file
164 164 var_end_index = self.lstStopDay.count() - index No newline at end of file
165 165 No newline at end of file
166 166 self.lstStartDay.clear() No newline at end of file
167 167 No newline at end of file
168 168 for i in self.var_list[:len(self.var_list) - var_end_index + 1]: No newline at end of file
169 169 self.lstStartDay.addItem(i) No newline at end of file
170 170 No newline at end of file
171 171 self.lstStartDay.setCurrentIndex(var_StartDay_index)
172 No newline at end of file
172 #self.txtInfo.append(str(var_StartDay_index))
No newline at end of file
173 No newline at end of file
173 #self.txtInfo.append(str(self.lstStartDay.count()))
No newline at end of file
174 No newline at end of file
174
No newline at end of file
175 @pyqtSignature("int") No newline at end of file
176 175 def on_lstDcapacity_activated(self, index): No newline at end of file
177 176 """ No newline at end of file
178 177 Permite elegir el tamaΓ±o del disco No newline at end of file
179 178 """ No newline at end of file
180 179 if index == 0: No newline at end of file
181 180 var_size=25.0 No newline at end of file
182 181 elif index == 1: No newline at end of file
183 182 var_size=8.5 No newline at end of file
184 183 elif index == 2: No newline at end of file
185 184 var_size=4.7 No newline at end of file
186 185 elif index == 3: No newline at end of file
187 186 var_size=0.7 No newline at end of file
188 187 No newline at end of file
189 188 if index != 4: No newline at end of file
190 189 self.txtDcapacity.setText(str(var_size*10**9/1024**2)) No newline at end of file
191 190 self.txtDcapacity.setReadOnly(True) No newline at end of file
192 191 else: No newline at end of file
193 192 self.txtDcapacity.setText('') No newline at end of file
194 193 self.txtDcapacity.setReadOnly(False) No newline at end of file
195 194 No newline at end of file
196 195 @pyqtSignature("") No newline at end of file
197 196 def on_btnGbkp_clicked(self): No newline at end of file
198 197 """ No newline at end of file
199 198 Cuando se presiona el boton Generate Bkp No newline at end of file
200 199 """ No newline at end of file
201 200 No newline at end of file
202 201 #CREA LAS CARPETAS "COMENTADO TEMPORALMENTE" No newline at end of file
203 202 var_dirs='/{gpath,iso,ppath}' No newline at end of file
204 203 var_Rpath=self.txtRpath.text() No newline at end of file
205 204 var_cmd="mkdir "+str(var_Rpath)+str(var_dirs) No newline at end of file
206 205 self.txtInfo.append(var_cmd) No newline at end of file
207 206 #var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
208 207 #if var_output != 0: No newline at end of file
209 208 # self.txtInfo.setText("No se pudieron crear los directorios, output_error:" + str(var_output)) No newline at end of file
210 209 # return No newline at end of file
211 210 #else: No newline at end of file
212 211 # self.txtInfo.append('Carpetas creadas correctamente') No newline at end of file
213 212 No newline at end of file
214 213 No newline at end of file
215 214 var_sublist=[] No newline at end of file
216 215 for i in self.var_list[self.lstStartDay.currentIndex():self.lstStartDay.currentIndex() + self.lstStopDay.currentIndex()+1]: No newline at end of file
217 216 self.txtInfo.append(i) No newline at end of file
218 217 var_sublist.append(i) No newline at end of file
219 218 No newline at end of file
220 219 #Cargando los parametros de busqueda No newline at end of file
221 220 var_Dpath=self.txtDpath.text() No newline at end of file
222 221 var_Dtype=self.txtDtype.text() No newline at end of file
223 222 No newline at end of file
224 223 var_files_list=[] No newline at end of file
225 224 for var_doy in var_sublist: No newline at end of file
226 225 var_cmd="find " + str(var_Dpath) + " -name ?"+var_doy+"???."+ str(var_Dtype) No newline at end of file
227 226 var_output=commands.getstatusoutput(var_cmd)[1] No newline at end of file
228 227 for var_file in var_output.split(): No newline at end of file
229 228 var_files_list.append(var_file) No newline at end of file
230 229 No newline at end of file
231 230 var_Dcapacity=float(self.txtDcapacity.text())*1024 #tamaΓ±o en KB No newline at end of file
232 231 self.txtInfo.append(str(var_Dcapacity)) No newline at end of file
233 232 No newline at end of file
234 233 # self.txtInfo.append('Lista de archivos') No newline at end of file
235 234 # var_n=0 No newline at end of file
236 235 # for i in var_files_list: No newline at end of file
237 236 #self.txtInfo.append(str(os.path.getsize(i)/1024)+'KB') No newline at end of file
238 237 #self.txtInfo.append(i) No newline at end of file
239 238 #var_n += 1 No newline at end of file
240 239 #self.txtInfo.append(str(var_n)) No newline at end of file
241 240 No newline at end of file
242 241 #lista de archivos a grabar en archivos . No newline at end of file
243 242 No newline at end of file
244 243 #Ruta de los archivos a grabar
244 No newline at end of file
245 var_Rpath_ppath=var_Rpath=self.txtRpath.text()+"/ppath" No newline at end of file
No newline at end of file
245 #Ruta de los archivos a grabar No newline at end of file
246 246 var_Dpath=self.txtDpath.text() No newline at end of file
247 247 No newline at end of file
248 248 var_n=0 No newline at end of file
249 249 var_n_files=0 No newline at end of file
250 250 var_tmp=0 No newline at end of file
251 251 var_files_list_2=[] No newline at end of file
252 252 self.txtInfo.append(str(len(var_files_list))) No newline at end of file
253 253 No newline at end of file
254 254 for i in var_files_list: No newline at end of file
255 255 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
256 256 var_tmp += var_size_i No newline at end of file
257 257 No newline at end of file
258 258 if var_tmp > var_Dcapacity: No newline at end of file
259 259 var_tmp -= var_size_i #se quita el tamaΓ±o sumado para mostrar el tamaΓ±o real No newline at end of file
260 260 #muestra info No newline at end of file
261 261 self.txtInfo.append(str(len(var_files_list_2))+" size:"+str(var_tmp)) No newline at end of file
262 262 No newline at end of file
263 263 #se crea un archivo con numeral en el sufijo, y se aΓ±aden la lista de archivos No newline at end of file
264 264 var_file = open(var_Rpath_ppath+"/"+self.txtElabel.text()+"_"+str(var_n)+".dat","w") No newline at end of file
265 265 for line in var_files_list_2: No newline at end of file
266 266 var_file.write(line.split(var_Dpath)[1]+'=') No newline at end of file
267 267 var_file.write(line+'\n') No newline at end of file
268 268 var_file.close() No newline at end of file
269 269 No newline at end of file
270 270 var_n_files += len(var_files_list_2) No newline at end of file
271 271 var_tmp = var_size_i No newline at end of file
272 272 var_files_list_2=[] No newline at end of file
273 273 var_files_list_2.append(i) No newline at end of file
274 274 var_n += 1 No newline at end of file
275 275 No newline at end of file
276 276 else: No newline at end of file
277 277 var_files_list_2.append(i) No newline at end of file
278 278 No newline at end of file
279 279 #muestra info No newline at end of file
280 280 self.txtInfo.append(str(len(var_files_list_2))+" size:"+str(var_tmp)) No newline at end of file
281 281 No newline at end of file
282 282 var_file = open(var_Rpath_ppath+"/"+self.txtElabel.text()+"_"+str(var_n)+".dat","w") No newline at end of file
283 283 for line in var_files_list_2: No newline at end of file
284 284 var_file.write(line.split(var_Dpath)[1]+'=') No newline at end of file
285 285 var_file.write(line+'\n') No newline at end of file
286 286 var_file.close() No newline at end of file
287 287 No newline at end of file
288 288 var_n_files += len(var_files_list_2) No newline at end of file
289 289 self.txtInfo.append(str(var_n_files)) No newline at end of file
290 var_n_files += len(var_files_list_2)
No newline at end of file
291 self.txtInfo.append(str(var_n_files))
No newline at end of file
292 self.tabParameters.setEnabled(False)
No newline at end of file
293
No newline at end of file
294
No newline at end of file
295 @pyqtSignature("")
No newline at end of file
296 def on_btnStartburn_clicked(self):
No newline at end of file
297 """
No newline at end of file
298 Slot documentation goes here.
No newline at end of file
299 """
No newline at end of file
300 var_Rpath=self.txtRpath.text()
No newline at end of file
301 var_Rpath_ppath=var_Rpath+"/ppath"
No newline at end of file
302 var_Rpath_iso=var_Rpath+"/iso"
No newline at end of file
303
No newline at end of file
304 var_label=self.txtElabel.text()
No newline at end of file
305
No newline at end of file
306 file_iso=var_Rpath_iso+'/2.iso'
No newline at end of file
307 file_dat=var_Rpath_ppath+'/EW_DRIFTS_1.dat'
No newline at end of file
308
No newline at end of file
309 var_cmd = 'genisoimage -hide-joliet-trans-tbl -joliet-long -r '
No newline at end of file
310 var_cmd += ' -A '+var_label+' -V '+var_label
No newline at end of file
311 var_cmd += ' -graft-points -path-list '+ file_dat+' -o '+file_iso
No newline at end of file
312 self.txtInfo.append(var_cmd)
No newline at end of file
313
No newline at end of file
314 #var_output=commands.getstatusoutput(str(var_cmd))[1]
No newline at end of file
315 #self.txtInfo.append(var_output)
No newline at end of file
316
No newline at end of file
317 #os.system(str(var_cmd))
No newline at end of file
318 p = subprocess.Popen(str(var_cmd), shell=True)
No newline at end of file
319 #os.waitpid(p.pid, 0)
No newline at end of file
320 self.txtInfo.append(str(p.pid))
No newline at end of file
321
No newline at end of file
322 #timer.time = 10
No newline at end of file
323 #timer.init()
No newline at end of file
324
No newline at end of file
325 @pyqtSignature("")
No newline at end of file
326 def on_btnRestart_clicked(self):
No newline at end of file
327 """
No newline at end of file
328 Slot documentation goes here. No newline at end of file
290 329
291 330 L291: rhodecode diff rendering error
@@ -1,544 +1,544
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: Tue Apr 27 11:22:25 2010 No newline at end of file
6 6 # by: PyQt4 UI code generator 4.7.2 No newline at end of file
7 7 # No newline at end of file
8 8 # WARNING! All changes made in this file will be lost! No newline at end of file
9 9 No newline at end of file
10 10 from PyQt4 import QtCore, QtGui No newline at end of file
11 11 No newline at end of file
12 12 class Ui_MainWindow(object): No newline at end of file
13 13 def setupUi(self, MainWindow): No newline at end of file
14 14 MainWindow.setObjectName("MainWindow") No newline at end of file
15 15 MainWindow.resize(593, 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_3 = QtGui.QVBoxLayout(self.centralwidget) No newline at end of file
19 19 self.verticalLayout_3.setObjectName("verticalLayout_3") 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 = QtGui.QVBoxLayout(self.tabDconfig) No newline at end of file
129 129 self.verticalLayout.setObjectName("verticalLayout") No newline at end of file
130 130 self.widget = QtGui.QWidget(self.tabDconfig) No newline at end of file
131 131 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
132 132 sizePolicy.setHorizontalStretch(0) No newline at end of file
133 133 sizePolicy.setVerticalStretch(0) No newline at end of file
134 134 sizePolicy.setHeightForWidth(self.widget.sizePolicy().hasHeightForWidth()) No newline at end of file
135 135 self.widget.setSizePolicy(sizePolicy) No newline at end of file
136 136 self.widget.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
137 137 self.widget.setObjectName("widget") No newline at end of file
138 138 self.gridLayout = QtGui.QGridLayout(self.widget) No newline at end of file
139 139 self.gridLayout.setObjectName("gridLayout") No newline at end of file
140 140 self.chkDevA = QtGui.QCheckBox(self.widget) No newline at end of file
141 141 self.chkDevA.setObjectName("chkDevA") No newline at end of file
142 142 self.gridLayout.addWidget(self.chkDevA, 0, 0, 1, 1) No newline at end of file
143 143 self.chkDevB = QtGui.QCheckBox(self.widget) No newline at end of file
144 144 self.chkDevB.setObjectName("chkDevB") No newline at end of file
145 145 self.gridLayout.addWidget(self.chkDevB, 0, 1, 1, 1) No newline at end of file
146 146 self.chkDevC = QtGui.QCheckBox(self.widget) No newline at end of file
147 147 self.chkDevC.setObjectName("chkDevC") No newline at end of file
148 148 self.gridLayout.addWidget(self.chkDevC, 0, 2, 1, 1) No newline at end of file
149 149 self.chkDevD = QtGui.QCheckBox(self.widget) No newline at end of file
150 150 self.chkDevD.setObjectName("chkDevD") No newline at end of file
151 151 self.gridLayout.addWidget(self.chkDevD, 0, 3, 1, 1) No newline at end of file
152 152 self.txtDeviceB = QtGui.QLineEdit(self.widget) No newline at end of file
153 153 self.txtDeviceB.setObjectName("txtDeviceB") No newline at end of file
154 154 self.gridLayout.addWidget(self.txtDeviceB, 2, 1, 1, 1) No newline at end of file
155 155 self.txtBspeedA = QtGui.QLineEdit(self.widget) No newline at end of file
156 156 self.txtBspeedA.setObjectName("txtBspeedA") No newline at end of file
157 157 self.gridLayout.addWidget(self.txtBspeedA, 4, 0, 1, 1) No newline at end of file
158 158 self.txtDeviceA = QtGui.QLineEdit(self.widget) No newline at end of file
159 159 self.txtDeviceA.setObjectName("txtDeviceA") No newline at end of file
160 160 self.gridLayout.addWidget(self.txtDeviceA, 2, 0, 1, 1) No newline at end of file
161 161 self.txtBspeedB = QtGui.QLineEdit(self.widget) No newline at end of file
162 162 self.txtBspeedB.setObjectName("txtBspeedB") No newline at end of file
163 163 self.gridLayout.addWidget(self.txtBspeedB, 4, 1, 1, 1) No newline at end of file
164 164 self.lblDevice = QtGui.QLabel(self.widget) No newline at end of file
165 165 self.lblDevice.setObjectName("lblDevice") No newline at end of file
166 166 self.gridLayout.addWidget(self.lblDevice, 2, 4, 1, 1) No newline at end of file
167 167 self.txtDeviceC = QtGui.QLineEdit(self.widget) No newline at end of file
168 168 self.txtDeviceC.setObjectName("txtDeviceC") No newline at end of file
169 169 self.gridLayout.addWidget(self.txtDeviceC, 2, 2, 1, 1) No newline at end of file
170 170 self.txtDeviceD = QtGui.QLineEdit(self.widget) No newline at end of file
171 171 self.txtDeviceD.setObjectName("txtDeviceD") No newline at end of file
172 172 self.gridLayout.addWidget(self.txtDeviceD, 2, 3, 1, 1) No newline at end of file
173 173 self.txtBspeedD = QtGui.QLineEdit(self.widget) No newline at end of file
174 174 self.txtBspeedD.setObjectName("txtBspeedD") No newline at end of file
175 175 self.gridLayout.addWidget(self.txtBspeedD, 4, 3, 1, 1) No newline at end of file
176 176 self.txtBmodeA = QtGui.QLineEdit(self.widget) No newline at end of file
177 177 self.txtBmodeA.setObjectName("txtBmodeA") No newline at end of file
178 178 self.gridLayout.addWidget(self.txtBmodeA, 5, 0, 1, 1) No newline at end of file
179 179 self.txtBmodeB = QtGui.QLineEdit(self.widget) No newline at end of file
180 180 self.txtBmodeB.setObjectName("txtBmodeB") No newline at end of file
181 181 self.gridLayout.addWidget(self.txtBmodeB, 5, 1, 1, 1) No newline at end of file
182 182 self.lblBspeed = QtGui.QLabel(self.widget) No newline at end of file
183 183 self.lblBspeed.setObjectName("lblBspeed") No newline at end of file
184 184 self.gridLayout.addWidget(self.lblBspeed, 4, 4, 1, 1) No newline at end of file
185 185 self.lblBmode = QtGui.QLabel(self.widget) No newline at end of file
186 186 self.lblBmode.setObjectName("lblBmode") No newline at end of file
187 187 self.gridLayout.addWidget(self.lblBmode, 5, 4, 1, 1) No newline at end of file
188 188 self.txtBmodeC = QtGui.QLineEdit(self.widget) No newline at end of file
189 189 self.txtBmodeC.setObjectName("txtBmodeC") No newline at end of file
190 190 self.gridLayout.addWidget(self.txtBmodeC, 5, 2, 1, 1) No newline at end of file
191 191 self.txtBmodeD = QtGui.QLineEdit(self.widget) No newline at end of file
192 192 self.txtBmodeD.setObjectName("txtBmodeD") No newline at end of file
193 193 self.gridLayout.addWidget(self.txtBmodeD, 5, 3, 1, 1) No newline at end of file
194 194 self.btnTdevA = QtGui.QPushButton(self.widget) No newline at end of file
195 195 self.btnTdevA.setObjectName("btnTdevA") No newline at end of file
196 196 self.gridLayout.addWidget(self.btnTdevA, 6, 0, 1, 1) No newline at end of file
197 197 self.btnTdevB = QtGui.QPushButton(self.widget) No newline at end of file
198 198 self.btnTdevB.setObjectName("btnTdevB") No newline at end of file
199 199 self.gridLayout.addWidget(self.btnTdevB, 6, 1, 1, 1) No newline at end of file
200 200 self.btnTdevC = QtGui.QPushButton(self.widget) No newline at end of file
201 201 self.btnTdevC.setObjectName("btnTdevC") No newline at end of file
202 202 self.gridLayout.addWidget(self.btnTdevC, 6, 2, 1, 1) No newline at end of file
203 203 self.btnTdevD = QtGui.QPushButton(self.widget) No newline at end of file
204 204 self.btnTdevD.setObjectName("btnTdevD") No newline at end of file
205 205 self.gridLayout.addWidget(self.btnTdevD, 6, 3, 1, 1) No newline at end of file
206 206 self.txtBspeedC = QtGui.QLineEdit(self.widget) No newline at end of file
207 207 self.txtBspeedC.setObjectName("txtBspeedC") No newline at end of file
208 208 self.gridLayout.addWidget(self.txtBspeedC, 4, 2, 1, 1) No newline at end of file
209 209 self.verticalLayout.addWidget(self.widget) No newline at end of file
210 210 self.horizontalLayout_9 = QtGui.QHBoxLayout() No newline at end of file
211 211 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
212 212 self.horizontalLayout_9.setObjectName("horizontalLayout_9") No newline at end of file
213 213 self.lblBprocess = QtGui.QLabel(self.tabDconfig) No newline at end of file
214 214 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
215 215 sizePolicy.setHorizontalStretch(0) No newline at end of file
216 216 sizePolicy.setVerticalStretch(0) No newline at end of file
217 217 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth()) No newline at end of file
218 218 self.lblBprocess.setSizePolicy(sizePolicy) No newline at end of file
219 219 self.lblBprocess.setObjectName("lblBprocess") No newline at end of file
220 220 self.horizontalLayout_9.addWidget(self.lblBprocess) No newline at end of file
221 221 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
222 222 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
223 223 sizePolicy.setHorizontalStretch(0) No newline at end of file
224 224 sizePolicy.setVerticalStretch(0) No newline at end of file
225 225 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth()) No newline at end of file
226 226 self.chkSimultaneously.setSizePolicy(sizePolicy) No newline at end of file
227 227 self.chkSimultaneously.setObjectName("chkSimultaneously") No newline at end of file
228 228 self.horizontalLayout_9.addWidget(self.chkSimultaneously) No newline at end of file
229 229 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
230 230 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
231 231 sizePolicy.setHorizontalStretch(0) No newline at end of file
232 232 sizePolicy.setVerticalStretch(0) No newline at end of file
233 233 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth()) No newline at end of file
234 234 self.chkSequentially.setSizePolicy(sizePolicy) No newline at end of file
235 235 self.chkSequentially.setObjectName("chkSequentially") No newline at end of file
236 236 self.horizontalLayout_9.addWidget(self.chkSequentially) No newline at end of file
237 237 self.verticalLayout.addLayout(self.horizontalLayout_9) No newline at end of file
238 238 self.horizontalLayout_11 = QtGui.QHBoxLayout() No newline at end of file
239 239 self.horizontalLayout_11.setSpacing(6) No newline at end of file
240 240 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
241 241 self.horizontalLayout_11.setObjectName("horizontalLayout_11") No newline at end of file
242 242 self.lblDcapacity = QtGui.QLabel(self.tabDconfig) No newline at end of file
243 243 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
244 244 sizePolicy.setHorizontalStretch(0) No newline at end of file
245 245 sizePolicy.setVerticalStretch(0) No newline at end of file
246 246 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
247 247 self.lblDcapacity.setSizePolicy(sizePolicy) No newline at end of file
248 248 self.lblDcapacity.setObjectName("lblDcapacity") No newline at end of file
249 249 self.horizontalLayout_11.addWidget(self.lblDcapacity) No newline at end of file
250 250 self.chkSalert = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
251 251 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
252 252 sizePolicy.setHorizontalStretch(0) No newline at end of file
253 253 sizePolicy.setVerticalStretch(0) No newline at end of file
254 254 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth()) No newline at end of file
255 255 self.chkSalert.setSizePolicy(sizePolicy) No newline at end of file
256 256 self.chkSalert.setObjectName("chkSalert") No newline at end of file
257 257 self.horizontalLayout_11.addWidget(self.chkSalert) No newline at end of file
258 258 self.verticalLayout.addLayout(self.horizontalLayout_11) No newline at end of file
259 259 self.horizontalLayout_10 = QtGui.QHBoxLayout() No newline at end of file
260 260 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
261 261 self.horizontalLayout_10.setObjectName("horizontalLayout_10") No newline at end of file
262 262 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig) No newline at end of file
263 263 self.lstDcapacity.setObjectName("lstDcapacity") No newline at end of file
264 264 self.lstDcapacity.addItem("") No newline at end of file
265 265 self.lstDcapacity.addItem("") No newline at end of file
266 266 self.lstDcapacity.addItem("") No newline at end of file
267 267 self.lstDcapacity.addItem("") No newline at end of file
268 268 self.lstDcapacity.addItem("") No newline at end of file
269 269 self.horizontalLayout_10.addWidget(self.lstDcapacity) No newline at end of file
270 270 self.txtDcapacity = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
271 271 self.txtDcapacity.setReadOnly(True) No newline at end of file
272 272 self.txtDcapacity.setObjectName("txtDcapacity") No newline at end of file
273 273 self.horizontalLayout_10.addWidget(self.txtDcapacity) No newline at end of file
274 274 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
275 275 self.chkPSgraphic.setObjectName("chkPSgraphic") No newline at end of file
276 276 self.horizontalLayout_10.addWidget(self.chkPSgraphic) No newline at end of file
277 277 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
278 278 self.lineEdit_17.setObjectName("lineEdit_17") No newline at end of file
279 279 self.horizontalLayout_10.addWidget(self.lineEdit_17) No newline at end of file
280 280 self.verticalLayout.addLayout(self.horizontalLayout_10) No newline at end of file
281 281 self.tabWidget.addTab(self.tabDconfig, "") No newline at end of file
282 282 self.tabSburn = QtGui.QWidget() No newline at end of file
283 283 self.tabSburn.setObjectName("tabSburn") No newline at end of file
284 284 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn) No newline at end of file
285 285 self.verticalLayout_4.setObjectName("verticalLayout_4") No newline at end of file
286 286 self.widget_2 = QtGui.QWidget(self.tabSburn) No newline at end of file
287 287 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
288 288 sizePolicy.setHorizontalStretch(0) No newline at end of file
289 289 sizePolicy.setVerticalStretch(0) No newline at end of file
290 290 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth()) No newline at end of file
291 291 self.widget_2.setSizePolicy(sizePolicy) No newline at end of file
292 292 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
293 293 self.widget_2.setObjectName("widget_2") No newline at end of file
294 294 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2) No newline at end of file
295 295 self.gridLayout_2.setObjectName("gridLayout_2") No newline at end of file
296 296 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2) No newline at end of file
297 297 self.txtSTATUSb.setObjectName("txtSTATUSb") No newline at end of file
298 298 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1) No newline at end of file
299 299 self.txtINFOa = QtGui.QLineEdit(self.widget_2) No newline at end of file
300 300 self.txtINFOa.setObjectName("txtINFOa") No newline at end of file
301 301 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1) No newline at end of file
302 302 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2) No newline at end of file
303 303 self.txtSTATUSa.setObjectName("txtSTATUSa") No newline at end of file
304 304 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1) No newline at end of file
305 305 self.txtINFOb = QtGui.QLineEdit(self.widget_2) No newline at end of file
306 306 self.txtINFOb.setObjectName("txtINFOb") No newline at end of file
307 307 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1) No newline at end of file
308 308 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2) No newline at end of file
309 309 self.txtSTATUSc.setObjectName("txtSTATUSc") No newline at end of file
310 310 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1) No newline at end of file
311 311 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2) No newline at end of file
312 312 self.txtSTATUSd.setObjectName("txtSTATUSd") No newline at end of file
313 313 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1) No newline at end of file
314 314 self.txtINFOd = QtGui.QLineEdit(self.widget_2) No newline at end of file
315 315 self.txtINFOd.setObjectName("txtINFOd") No newline at end of file
316 316 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1) No newline at end of file
317 317 self.txtSETa = QtGui.QLineEdit(self.widget_2) No newline at end of file
318 318 self.txtSETa.setObjectName("txtSETa") No newline at end of file
319 319 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1) No newline at end of file
320 320 self.txtSETb = QtGui.QLineEdit(self.widget_2) No newline at end of file
321 321 self.txtSETb.setObjectName("txtSETb") No newline at end of file
322 322 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1) No newline at end of file
323 323 self.txtSETc = QtGui.QLineEdit(self.widget_2) No newline at end of file
324 324 self.txtSETc.setObjectName("txtSETc") No newline at end of file
325 325 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1) No newline at end of file
326 326 self.txtSETd = QtGui.QLineEdit(self.widget_2) No newline at end of file
327 327 self.txtSETd.setObjectName("txtSETd") No newline at end of file
328 328 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1) No newline at end of file
329 329 self.lblSTATUS = QtGui.QLabel(self.widget_2) No newline at end of file
330 330 self.lblSTATUS.setObjectName("lblSTATUS") No newline at end of file
331 331 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1) No newline at end of file
332 332 self.lblINFO = QtGui.QLabel(self.widget_2) No newline at end of file
333 333 self.lblINFO.setObjectName("lblINFO") No newline at end of file
334 334 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1) No newline at end of file
335 335 self.lblSET = QtGui.QLabel(self.widget_2) No newline at end of file
336 336 self.lblSET.setObjectName("lblSET") No newline at end of file
337 337 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1) No newline at end of file
338 338 self.lblDevA = QtGui.QLabel(self.widget_2) No newline at end of file
339 339 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
340 340 self.lblDevA.setObjectName("lblDevA") No newline at end of file
341 341 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1) No newline at end of file
342 342 self.lblDevB = QtGui.QLabel(self.widget_2) No newline at end of file
343 343 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
344 344 self.lblDevB.setObjectName("lblDevB") No newline at end of file
345 345 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1) No newline at end of file
346 346 self.lblDevC = QtGui.QLabel(self.widget_2) No newline at end of file
347 347 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
348 348 self.lblDevC.setObjectName("lblDevC") No newline at end of file
349 349 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1) No newline at end of file
350 350 self.lblDevD = QtGui.QLabel(self.widget_2) No newline at end of file
351 351 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
352 352 self.lblDevD.setObjectName("lblDevD") No newline at end of file
353 353 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1) No newline at end of file
354 354 self.txtINFOc = QtGui.QLineEdit(self.widget_2) No newline at end of file
355 355 self.txtINFOc.setObjectName("txtINFOc") No newline at end of file
356 356 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1) No newline at end of file
357 357 self.verticalLayout_4.addWidget(self.widget_2) No newline at end of file
358 358 self.txtSburn = QtGui.QTextEdit(self.tabSburn) No newline at end of file
359 359 self.txtSburn.setObjectName("txtSburn") No newline at end of file
360 360 self.verticalLayout_4.addWidget(self.txtSburn) No newline at end of file
361 361 self.tabWidget.addTab(self.tabSburn, "") No newline at end of file
362 362 self.verticalLayout_3.addWidget(self.tabWidget) No newline at end of file
363 363 self.txtInfo = QtGui.QTextEdit(self.centralwidget) No newline at end of file
364 364 self.txtInfo.setReadOnly(True) No newline at end of file
365 365 self.txtInfo.setObjectName("txtInfo") No newline at end of file
366 366 self.verticalLayout_3.addWidget(self.txtInfo) No newline at end of file
367 367 self.horizontalLayout_2 = QtGui.QHBoxLayout() No newline at end of file
368 368 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
369 369 self.horizontalLayout_2.setObjectName("horizontalLayout_2") No newline at end of file
370 370 self.btnGbkp = QtGui.QPushButton(self.centralwidget) No newline at end of file
371 371 self.btnGbkp.setObjectName("btnGbkp") No newline at end of file
372 372 self.horizontalLayout_2.addWidget(self.btnGbkp) No newline at end of file
373 373 self.btnRestart = QtGui.QPushButton(self.centralwidget) No newline at end of file
374 374 self.btnRestart.setObjectName("btnRestart") No newline at end of file
375 375 self.horizontalLayout_2.addWidget(self.btnRestart) No newline at end of file
376 376 self.btnStartburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
377 377 self.btnStartburn.setObjectName("btnStartburn") No newline at end of file
378 378 self.horizontalLayout_2.addWidget(self.btnStartburn) No newline at end of file
379 379 self.btnStopburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
380 380 self.btnStopburn.setObjectName("btnStopburn") No newline at end of file
381 381 self.horizontalLayout_2.addWidget(self.btnStopburn) No newline at end of file
382 382 self.verticalLayout_3.addLayout(self.horizontalLayout_2) No newline at end of file
383 383 MainWindow.setCentralWidget(self.centralwidget) No newline at end of file
384 384 self.menubar = QtGui.QMenuBar(MainWindow) No newline at end of file
385 385 self.menubar.setGeometry(QtCore.QRect(0, 0, 593, 25)) No newline at end of file
386 386 self.menubar.setObjectName("menubar") No newline at end of file
387 387 self.menuFile = QtGui.QMenu(self.menubar) No newline at end of file
388 388 self.menuFile.setObjectName("menuFile") No newline at end of file
389 389 self.menuParameters = QtGui.QMenu(self.menubar) No newline at end of file
390 390 self.menuParameters.setObjectName("menuParameters") No newline at end of file
391 391 self.menuHelp = QtGui.QMenu(self.menubar) No newline at end of file
392 392 self.menuHelp.setObjectName("menuHelp") No newline at end of file
393 393 MainWindow.setMenuBar(self.menubar) No newline at end of file
394 394 self.statusbar = QtGui.QStatusBar(MainWindow) No newline at end of file
395 395 self.statusbar.setObjectName("statusbar") No newline at end of file
396 396 MainWindow.setStatusBar(self.statusbar) No newline at end of file
397 397 self.actionChange_Parameters = QtGui.QAction(MainWindow) No newline at end of file
398 398 self.actionChange_Parameters.setObjectName("actionChange_Parameters") No newline at end of file
399 399 self.actionSave_Config = QtGui.QAction(MainWindow) No newline at end of file
400 400 self.actionSave_Config.setObjectName("actionSave_Config") No newline at end of file
401 401 self.actionQuit = QtGui.QAction(MainWindow) No newline at end of file
402 402 self.actionQuit.setObjectName("actionQuit") No newline at end of file
403 403 self.actionAbout = QtGui.QAction(MainWindow) No newline at end of file
404 404 self.actionAbout.setObjectName("actionAbout") No newline at end of file
405 405 self.menuFile.addAction(self.actionSave_Config) No newline at end of file
406 406 self.menuFile.addAction(self.actionQuit) No newline at end of file
407 407 self.menuParameters.addAction(self.actionChange_Parameters) No newline at end of file
408 408 self.menuHelp.addAction(self.actionAbout) No newline at end of file
409 409 self.menubar.addAction(self.menuFile.menuAction()) No newline at end of file
410 410 self.menubar.addAction(self.menuParameters.menuAction()) No newline at end of file
411 411 self.menubar.addAction(self.menuHelp.menuAction()) No newline at end of file
412 412 No newline at end of file
413 413 self.retranslateUi(MainWindow) No newline at end of file
414 414 self.tabWidget.setCurrentIndex(0) No newline at end of file
415 415 self.lstDcapacity.setCurrentIndex(2) No newline at end of file
416 416 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.txtDeviceA.setEnabled) No newline at end of file
417 417 QtCore.QMetaObject.connectSlotsByName(MainWindow) No newline at end of file
418 418 MainWindow.setTabOrder(self.txtDpath, self.btnDpath) No newline at end of file
419 419 MainWindow.setTabOrder(self.btnDpath, self.txtRpath) No newline at end of file
420 420 MainWindow.setTabOrder(self.txtRpath, self.btnRpath) No newline at end of file
421 421 MainWindow.setTabOrder(self.btnRpath, self.lstDtype) No newline at end of file
422 422 MainWindow.setTabOrder(self.lstDtype, self.txtDtype) No newline at end of file
423 423 MainWindow.setTabOrder(self.txtDtype, self.chkMST) No newline at end of file
424 424 MainWindow.setTabOrder(self.chkMST, self.txtElabel) No newline at end of file
425 425 MainWindow.setTabOrder(self.txtElabel, self.txtCopys) No newline at end of file
426 426 MainWindow.setTabOrder(self.txtCopys, self.lstStartDay) No newline at end of file
427 427 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay) No newline at end of file
428 428 MainWindow.setTabOrder(self.lstStopDay, self.chkDevA) No newline at end of file
429 429 MainWindow.setTabOrder(self.chkDevA, self.chkDevB) No newline at end of file
430 430 MainWindow.setTabOrder(self.chkDevB, self.chkDevC) No newline at end of file
431 431 MainWindow.setTabOrder(self.chkDevC, self.chkDevD) No newline at end of file
432 432 MainWindow.setTabOrder(self.chkDevD, self.txtDeviceA) No newline at end of file
433 433 MainWindow.setTabOrder(self.txtDeviceA, self.txtDeviceB) No newline at end of file
434 434 MainWindow.setTabOrder(self.txtDeviceB, self.txtDeviceC) No newline at end of file
435 435 MainWindow.setTabOrder(self.txtDeviceC, self.txtDeviceD) No newline at end of file
436 436 MainWindow.setTabOrder(self.txtDeviceD, self.txtBspeedA) No newline at end of file
437 437 MainWindow.setTabOrder(self.txtBspeedA, self.txtBspeedB) No newline at end of file
438 438 MainWindow.setTabOrder(self.txtBspeedB, self.txtBspeedC) No newline at end of file
439 439 MainWindow.setTabOrder(self.txtBspeedC, self.txtBspeedD) No newline at end of file
440 440 MainWindow.setTabOrder(self.txtBspeedD, self.txtBmodeA) No newline at end of file
441 441 MainWindow.setTabOrder(self.txtBmodeA, self.txtBmodeB) No newline at end of file
442 442 MainWindow.setTabOrder(self.txtBmodeB, self.txtBmodeC) No newline at end of file
443 443 MainWindow.setTabOrder(self.txtBmodeC, self.txtBmodeD) No newline at end of file
444 444 MainWindow.setTabOrder(self.txtBmodeD, self.btnTdevA) No newline at end of file
445 445 MainWindow.setTabOrder(self.btnTdevA, self.btnTdevB) No newline at end of file
446 446 MainWindow.setTabOrder(self.btnTdevB, self.btnTdevC) No newline at end of file
447 447 MainWindow.setTabOrder(self.btnTdevC, self.btnTdevD) No newline at end of file
448 448 MainWindow.setTabOrder(self.btnTdevD, self.chkSimultaneously) No newline at end of file
449 449 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially) No newline at end of file
450 450 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert) No newline at end of file
451 451 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity) No newline at end of file
452 452 MainWindow.setTabOrder(self.lstDcapacity, self.txtDcapacity) No newline at end of file
453 453 MainWindow.setTabOrder(self.txtDcapacity, self.chkPSgraphic) No newline at end of file
454 454 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17) No newline at end of file
455 455 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa) No newline at end of file
456 456 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb) No newline at end of file
457 457 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc) No newline at end of file
458 458 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd) No newline at end of file
459 459 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa) No newline at end of file
460 460 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb) No newline at end of file
461 461 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc) No newline at end of file
462 462 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd) No newline at end of file
463 463 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa) No newline at end of file
464 464 MainWindow.setTabOrder(self.txtSETa, self.txtSETb) No newline at end of file
465 465 MainWindow.setTabOrder(self.txtSETb, self.txtSETc) No newline at end of file
466 466 MainWindow.setTabOrder(self.txtSETc, self.txtSETd) No newline at end of file
467 467 MainWindow.setTabOrder(self.txtSETd, self.tabWidget) No newline at end of file
468 468 MainWindow.setTabOrder(self.tabWidget, self.txtSburn) No newline at end of file
469 469 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp) No newline at end of file
470 470 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart) No newline at end of file
471 471 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn) No newline at end of file
472 472 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn) No newline at end of file
473 473 No newline at end of file
474 474 def retranslateUi(self, MainWindow): No newline at end of file
475 475 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
476 476 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
477 477 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
478 478 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
479 479 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
480 480 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
481 481 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
482 482 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
483 483 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
484 484 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
485 485 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
486 486 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
487 487 self.txtCopys.setText(QtGui.QApplication.translate("MainWindow", "0", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
488 488 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
489 489 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
490 490 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
491 491 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
492 492 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
493 493 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
494 494 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
495 495 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
496 496 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
497 497 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
498 498 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
499 499 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
500 500 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
501 501 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
502 502 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
503 503 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
504 504 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
505 505 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
506 506 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
507 507 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
508 508 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
509 509 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
510 510 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
511 511 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
512 512 self.txtDcapacity.setText(QtGui.QApplication.translate("MainWindow", "4482.26928711", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
513 513 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
514 514 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
515 515 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
516 516 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
517 517 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
518 518 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
519 519 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
520 520 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
521 521 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
522 522 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
523 523 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
524 524 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
525 525 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
526 526 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
527 527 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
528 528 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
529 529 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
530 530 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
531 531 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
532 532 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
533 533 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
534 534 No newline at end of file
535 535 No newline at end of file
536 536 if __name__ == "__main__": No newline at end of file
537 537 import sys No newline at end of file
538 538 app = QtGui.QApplication(sys.argv) No newline at end of file
539 539 MainWindow = QtGui.QMainWindow() No newline at end of file
540 540 ui = Ui_MainWindow() No newline at end of file
541 541 ui.setupUi(MainWindow) No newline at end of file
542 542 MainWindow.show() No newline at end of file
543 543 sys.exit(app.exec_()) No newline at end of file
544 544 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now