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