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