##// END OF EJS Templates
carpeta figure:...
Alexander Valdez -
r253:5dec07d455af
parent child
Show More
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
@@ -0,0 +1,1
1 from figure import * No newline at end of file
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
1 NO CONTENT: new file 100644, binary diff hidden
NO CONTENT: new file 100644, binary diff hidden
@@ -1,759 +1,900
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """
2 """
3 Module implementing MainWindow.
3 Module implementing MainWindow.
4 #+++++++++++++++++++++INTERFAZ DE USUARIO V1.1++++++++++++++++++++++++#
4 #+++++++++++++++++++++INTERFAZ DE USUARIO V1.1++++++++++++++++++++++++#
5 """
5 """
6 from PyQt4.QtGui import QMainWindow
6 from PyQt4.QtGui import QMainWindow
7 from PyQt4.QtCore import pyqtSignature
7 from PyQt4.QtCore import pyqtSignature
8 from PyQt4.QtCore import pyqtSignal
8 from PyQt4.QtCore import pyqtSignal
9 from PyQt4 import QtCore
9 from PyQt4 import QtCore
10 from PyQt4 import QtGui
10 from PyQt4 import QtGui
11 from timeconversions import Doy2Date
11 from timeconversions import Doy2Date
12 from modelProperties import treeModel
12 from modelProperties import treeModel
13 from viewer.ui_unitprocess import Ui_UnitProcess
13 from viewer.ui_unitprocess import Ui_UnitProcess
14 from viewer.ui_window import Ui_window
14 from viewer.ui_window import Ui_window
15 from viewer.ui_mainwindow import Ui_MainWindow
15 from viewer.ui_mainwindow import Ui_MainWindow
16 from viewer.ui_workspace import Ui_Workspace
16 from viewer.ui_workspace import Ui_Workspace
17 from viewer.ui_initwindow import Ui_InitWindow
17 from viewer.ui_initwindow import Ui_InitWindow
18
18
19 from controller import Project,ReadUnitConf,ProcUnitConf,OperationConf,ParameterConf
19 from controller import Project,ReadUnitConf,ProcUnitConf,OperationConf,ParameterConf
20 import os
20 import os
21
21
22 HORIZONTAL_HEADERS = ("ITEM :"," DATOS : " )
23
24 HORIZONTAL = ("RAMA :",)
25
22
26 class MainWindow(QMainWindow, Ui_MainWindow):
23 class MainWindow(QMainWindow, Ui_MainWindow):
27 nop=None
24 __projObjDict = {}
25 __arbolDict = {}
26
28 """
27 """
29 Class documentation goes here.
28 Class documentation goes here.
30 #*##################VENTANA CUERPO DEL PROGRAMA####################
29 #*##################VENTANA CUERPO DEL PROGRAMA####################
31 """
30 """
32 def __init__(self, parent = None):
31 def __init__(self, parent = None):
33 """
32 """
34 Constructor
33 Constructor
35 """
34 """
36 print "Inicio de Programa Interfaz Gráfica"
35 print "Inicio de Programa Interfaz Gráfica"
37 QMainWindow.__init__(self, parent)
36 QMainWindow.__init__(self, parent)
38 self.setupUi(self)
37 self.setupUi(self)
39
38
40 self.online=0
39 self.online=0
41 self.datatype=0
40 self.datatype=0
42 self.variableList=[]
41 self.variableList=[]
43
42
44 self.proObjList=[]
43 self.proObjList=[]
45 self.idp=0
44 self.idp=0
46 self.namep=0
45 self.namep=0
47 self.description=0
46 self.description=0
48 self.namepTree=0
47 self.namepTree=0
49 self.valuep=0
48 self.valuep=0
50
49
51 self.upObjList= []
50 self.upObjList= []
52 self.upn=0
51 self.upn=0
53 self.upName=0
52 self.upName=0
54 self.upType=0
53 self.upType=0
55 self.uporProObjRecover=0
54 self.uporProObjRecover=0
56
55
57
58 self.readUnitConfObjList=[]
56 self.readUnitConfObjList=[]
59
57
60 self.upObjVolList=[]
58 self.upObjVolList=[]
61 self.upobjSpecList=[]
59 self.upobjSpecList=[]
62
60
63
64 self.operObjList=[]
61 self.operObjList=[]
65
62
66 self.configProject=None
63 self.configProject=None
67 self.configUP=None
64 self.configUP=None
68
65
69 self.controllerObj=None
66 self.controllerObj=None
70 self.readUnitConfObj=None
67 self.readUnitConfObj=None
71 self.procUnitConfObj0=None
68 self.procUnitConfObj0=None
72 self.opObj10=None
69 self.opObj10=None
73 self.opObj12=None
70 self.opObj12=None
74
71
75
76 self.setParam()
72 self.setParam()
77
73
78 #++++++++++++++++++NEW PROPERTIES+++++++++++++++++#
74 #-----------------------------------NEW PROPERTIES-----------------------------------------------#
79 QtGui.QToolTip.setFont(QtGui.QFont('SansSerif', 10))
75 QtGui.QToolTip.setFont(QtGui.QFont('SansSerif', 10))
80 self.addpBtn.setToolTip('Add_New_Project')
76 self.addprojectBtn.setToolTip('Add_New_Project')
81 self.addUnitProces.setToolTip('Add_New_Processing_Unit')
77 self.addUnitProces.setToolTip('Add_New_Processing_Unit')
82
78
83 #++++++++++++++++++NEW PROPERTIES+++++++++++++++++#
79 #-----------------------------------NEW PROPERTIES-----------------------------------------------#
84 self.model = QtGui.QStandardItemModel()
80 self.model = QtGui.QStandardItemModel()
85 self.treeView.setModel(self.model)
81 self.treeView.setModel(self.model)
86 self.treeView.clicked.connect(self.clickFunctiontree)
82 self.treeView.clicked.connect(self.clickFunctiontree)
87 self.treeView.expandAll()
83 self.treeView.expandAll()
88 #self.treeView.clicked.connect(self.treefunction1)
84 #self.treeView.clicked.connect(self.treefunction1)
89
85
86 #-----------------------------------BARRA DE MENU-------------------------------------------------#
87
88 #----------------------------------- MENU_Project-------------------------------------------------#
89
90 @pyqtSignature("")
91 def on_menuFileAbrirObj_triggered(self):
92 """
93 METODO CARGA UN ARCHIVO DE CONFIGURACION ANTERIOR
94 """
95 print "Leer un archivo xml y extraer sus atributos Not implemented yet"
96
97 @pyqtSignature("")
98 def on_menuFileCrearObj_triggered(self):
99 """
100 CREAR PROJECT,ANADE UN NUEVO PROYECTO, LLAMA AL MÉTODO QUE CONTIENE LAS OPERACION DE CREACION DE PROYECTOS
101 Llama al metodo addProject..
102 """
103 self.addProject()
104
105 @pyqtSignature("")
106 def on_menuFileGuardarObj_clicked(self):
107 """
108 METODO EJECUTADO CUANDO OCURRE EL EVENTO GUARDAR PROJECTO
109 Llama al metodo saveProject.
110 """
111 self.saveProject()
112
113 @pyqtSignature("")
114 def on_menuFileCerrarObj_clicked(self):
115 """
116 METODO EJECUTADO CUANDO OCURRE EL EVENTO CERRAR
117 Llama al metodo close.
118 """
119 self.close()
120
121 #-----------------------------------MENU_RUN----------------------------------------------------#
122
123 @pyqtSignature("")
124 def on_menuRUNStartObj_clicked(self):
125 """
126 METODO EJECUTADO CUANDO OCURRE EL EVENTO RUN
127 Llama al metodo RUN.
128 """
129 print "Not implemented yet"
130
131 @pyqtSignature("")
132 def on_menuRUNPausaObj_clicked(self):
133 """
134 METODO EJECUTADO CUANDO OCURRE EL EVENTO PAUSA
135 Llama al metodo PAUSA.
136 """
137 print "Not implemented yet"
138
139 #-----------------------------------MENU_OPTION-------------------------------------------------#
140 @pyqtSignature("")
141 def on_menuOptConfigLogfileObj_clicked(self):
142 """
143 METODO EJECUTADO CUANDO OCURRE EL EVENTO ConfigLog
144 Llama al metodo close.
145 """
146 print "Not implemented yet"
147
148
149 @pyqtSignature("")
150 def on_menuOptConfigserverObj_clicked(self):
151 """
152 METODO EJECUTADO CUANDO OCURRE EL EVENTO Config Server
153 Llama al metodo close.
154 """
155 print "Not implemented yet"
156 #-----------------------------------MENU_HELP--------------------------------------------------#
157 @pyqtSignature("")
158 def on_menuHELPAboutObj_clicked(self):
159 """
160 METODO EJECUTADO CUANDO OCURRE EL EVENTO HELP
161 Llama al metodo close.
162 """
163 print "Not implemented yet"
164
165 @pyqtSignature("")
166 def on_menuHELPPrfObj_clicked(self):
167 """
168 METODO EJECUTADO CUANDO OCURRE EL EVENTO HElp
169 Llama al metodo close.
170 """
171 print "Not implemented yet"
172
173 #-----------------------------------BARRA DE HERRAMIENTAS----------------------------------------#
174
175 @pyqtSignature("")
176 def on_actOpenObj_triggered(self):
177 """
178 METODO CARGA UN ARCHIVO DE CONFIGURACION ANTERIOR
179 """
180 print "Leer un archivo xml y extraer sus atributos Not implemented yet"
181
182 @pyqtSignature("")
183 def on_actCreateObj_triggered(self):
184 """
185 CREAR PROJECT ,ANADE UN NUEVO PROYECTO, LLAMA AL MÉTODO QUE CONTIENE LAS OPERACION DE CREACION DE PROYECTOS
186 Llama al metodo addProject.
187 """
188 self.addProject()
189
190
191 @pyqtSignature("")
192 def on_actStopObj_triggered(self):
193 """
194 METODO EJECUTADO CUANDO OCURRE EL EVENTO PAUSA
195 Llama al metodo PAUSA.
196 """
197 print "Not implemented yet"
198
199 @pyqtSignature("")
200 def on_actPlayObj_triggered(self):
201 """
202 METODO EJECUTADO CUANDO OCURRE EL EVENTO PAUSA
203 Llama al metodo PAUSA.
204 """
205 print "Not implemented yet"
206
207 #-----------------------------------PUSHBUTTON_CREATE PROJECT-----------------------------------#
208
209 @pyqtSignature("")
210 def on_addprojectBtn_clicked(self):
211 """
212 CREAR PROJECT ,ANADE UN NUEVO PROYECTO, LLAMA AL MÉTODO QUE CONTIENE LAS OPERACION DE CREACION DE PROYECTOS
213 Llama al metodo addProject.
214 """
215 self.addProject()
216
217 #-----------------------------------PUSHBUTTON_PROCESSING UNIT PROJECT--------------------------#
218 @pyqtSignature("")
219 def on_addUnitProces_clicked(self):
220 """
221 CREAR PROCESSING UNI ,ANADE UNA UNIDAD DE PROCESAMIENTO, LLAMA AL MÉTODO addUP QUE CONTIENE LAS OPERACION DE CREACION DE UNIDADES DE PROCESAMIENTO
222 Llama al metodo addUP.
223 """
224 # print "En este nivel se adiciona una rama de procesamiento, y se le concatena con el id"
225 # self.procUnitConfObj0 = self.controllerObj.addProcUnit(datatype='Voltage', inputId=self.readUnitConfObj.getId())
226 self.addUP()
227
228
229 #-----------------------------------PUSHBUTTON_dataOkBtn----------------------------------------#
230
231 @pyqtSignature("")
232 def on_dataOkBtn_clicked(self):
233 """
234 Añade al Obj XML de Projecto, name,datatype,date,time,readmode,wait,etc, crea el readUnitProcess del archivo xml.
235 Prepara la configuración del diágrama del Arbol del treeView numero 2
236 """
237 print "En este nivel se pasa el tipo de dato con el que se trabaja,path,startDate,endDate,startTime,endTime,online"
238
239 projectObj=self.proObjList[int(self.proConfCmbBox.currentIndex())]
240 datatype=str(self.dataTypeCmbBox.currentText())
241 path=str(self.dataPathTxt.text())
242 online=int(self.online)
243 starDate=str(self.starDateCmbBox.currentText())
244 endDate=str(self.endDateCmbBox.currentText())
245
246
247 self.readUnitConfObj = projectObj.addReadUnit(datatype=datatype,
248 path=path,
249 startDate=starDate,
250 endDate=endDate,
251 startTime='06:10:00',
252 endTime='23:59:59',
253 online=online)
254
255 self.readUnitConfObjList.append(self.readUnitConfObj)
256
257 print "self.readUnitConfObj.getId",self.readUnitConfObj.getId(),datatype,path,starDate,endDate,online
258
259
260 self.model_2=treeModel()
261
262 self.model_2.setParams(name=projectObj.name+str(projectObj.id),
263 directorio=path,
264 workspace="C:\\WorkspaceGUI",
265 remode=str(self.readModeCmBox.currentText()),
266 dataformat=datatype,
267 date=str(starDate)+"-"+str(endDate),
268 initTime='06:10:00',
269 endTime='23:59:59',
270 timezone="Local" ,
271 Summary="test de prueba")
272 self.model_2.arbol()
273 self.treeView_2.setModel(self.model_2)
274 self.treeView_2.expandAll()
275
276
90 def getNumberofProject(self):
277 def getNumberofProject(self):
91 # for i in self.proObjList:
278 # for i in self.proObjList:
92 # print i
279 # print i
93 return self.proObjList
280 return self.proObjList
94 # for i in self.proObjList:
281 # for i in self.proObjList:
95 # print i
282 # print i
96
283
97 def setParam(self):
284 def setParam(self):
285
286 self.tabWidgetProject.setEnabled(False)
98 self.dataPathTxt.setText('C:\data')
287 self.dataPathTxt.setText('C:\data')
288 self.nameProjectTxt.setText("Test")
99 self.numberChannelopVol.setEnabled(False)
289 self.numberChannelopVol.setEnabled(False)
100 self.lineHeighProfileTxtopVol.setEnabled(False)
290 self.lineHeighProfileTxtopVol.setEnabled(False)
101 self.numberIntegration.setEnabled(False)
291 self.numberIntegration.setEnabled(False)
102 self.valuenFFTPointOpSpec.setEnabled(False)
292 self.valuenFFTPointOpSpec.setEnabled(False)
103 self.lineProfileSelecopVolCEB.setEnabled(False)
293 self.lineProfileSelecopVolCEB.setEnabled(False)
104
294
105
295
106 def clickFunctiontree(self,index):
296 def clickFunctiontree(self,index):
107 indexclick= index.model().itemFromIndex(index).text()
297 indexclick= index.model().itemFromIndex(index).text()
108 #print indexclick
298 #print indexclick
109 NumofPro=indexclick[8:10]
299 NumofPro=indexclick[8:10]
110 self.valuep=NumofPro
300 self.valuep=NumofPro
111 #print self.valuep
301 #print self.valuep
112 NameofPro=indexclick[0:7]
302 NameofPro=indexclick[0:7]
113 self.namepTree=NameofPro
303 self.namepTree=NameofPro
114 #print self.namepTree
304 #print self.namepTree
115
305
306 def addProject(self):
307 self.tabWidgetProject.setEnabled(True)
308 self.idp += 1
309 self.projectObj = Project()
116
310
117 @pyqtSignature("")
311 id=int(self.idp)
118 def on_addpBtn_clicked(self):
312 name=str(self.nameProjectTxt.text())
119 """
313 desc=str(self.description)
120 ANADIR UN NUEVO PROYECTO
121 """
122 print "En este nivel se abre el window"
123
124
314
125 self.showWindow()
315 self.projectObj.setup(id = id, name=name, description=desc)
126
316
127 def showWindow(self):
317 #self.configProject=Window(self)
128 self.configProject=Window(self)
129 #self.configProject.closed.connect(self.show)
318 #self.configProject.closed.connect(self.show)
130 self.configProject.show()
319 #self.configProject.show()
131 #self.configProject.closed.connect(self.show)
320 #self.configProject.closed.connect(self.show)
132 self.configProject.saveButton.clicked.connect(self.reciveParameters)
321 # self.configProject.saveButton.clicked.connect(self.reciveParameters)
133 self.configProject.closed.connect(self.createProject)
322 #self.configProject.closed.connect(self.createProject)
134
323
135 def reciveParameters(self):
324 def reciveParameters(self):
136 self.namep,self.description =self.configProject.almacena()
325 self.namep,self.description =self.configProject.almacena()
137
326
138 def createProject(self):
327 def createProject(self):
139
328
140 print "En este nivel se debe crear el proyecto,id,nombre,desc"
329 print "En este nivel se debe crear el proyecto,id,nombre,desc"
141 #+++++Creacion del Objeto Controller-XML++++++++++#
330 #+++++Creacion del Objeto Controller-XML++++++++++#
142 self.idp += 1
331 self.idp += 1
143 self.controllerObj = Project()
332 self.controllerObj = Project()
144 id=int(self.idp)
333 id=int(self.idp)
145 name=str(self.namep)
334 name=str(self.namep)
146 desc=str(self.description)
335 desc=str(self.description)
147 self.parentItem=self.model.invisibleRootItem()
336 self.parentItem=self.model.invisibleRootItem()
148 self.controllerObj.arbol=QtGui.QStandardItem(QtCore.QString("Project %0").arg(self.idp))
337 self.controllerObj.arbol=QtGui.QStandardItem(QtCore.QString("Project %0").arg(self.idp))
149 self.controllerObj.setup(id = id, name=name, description=desc)
338 self.controllerObj.setup(id = id, name=name, description=desc)
150 self.parentItem.appendRow(self.controllerObj.arbol)
339 self.parentItem.appendRow(self.controllerObj.arbol)
151 self.proObjList.append(self.controllerObj)#+++++++++++++++++++LISTA DE PROYECTO++++++++++++++++++++++++++++#
340 self.proObjList.append(self.controllerObj)#+++++++++++++++++++LISTA DE PROYECTO++++++++++++++++++++++++++++#
152 self.parentItem=self.controllerObj.arbol
341 self.parentItem=self.controllerObj.arbol
153 self.loadProjects()
342 self.loadProjects()
154
343
155 print "Porfavor ingrese los parámetros de configuracion del Proyecto"
344 print "Porfavor ingrese los parámetros de configuracion del Proyecto"
156
345
157 def loadProjects(self):
346 def loadProjects(self):
158 self.proConfCmbBox.clear()
347 self.proConfCmbBox.clear()
159 for i in self.proObjList:
348 for i in self.proObjList:
160 self.proConfCmbBox.addItem("Project"+str(i.id))
349 self.proConfCmbBox.addItem("Project"+str(i.id))
161
350
162 @pyqtSignature("int")
351 @pyqtSignature("int")
163 def on_dataTypeCmbBox_activated(self,index):
352 def on_dataTypeCmbBox_activated(self,index):
164 self.dataFormatTxt.setReadOnly(True)
353 self.dataFormatTxt.setReadOnly(True)
165 if index==0:
354 if index==0:
166 self.datatype='Voltage'
355 self.datatype='Voltage'
167 elif index==1:
356 elif index==1:
168 self.datatype='Spectra'
357 self.datatype='Spectra'
169 else :
358 else :
170 self.datatype=''
359 self.datatype=''
171 self.dataFormatTxt.setReadOnly(False)
360 self.dataFormatTxt.setReadOnly(False)
172 self.dataFormatTxt.setText(self.datatype)
361 self.dataFormatTxt.setText(self.datatype)
173
362
174 def existDir(self, var_dir):
363 def existDir(self, var_dir):
175 """
364 """
176 METODO PARA VERIFICAR SI LA RUTA EXISTE-VAR_DIR
365 METODO PARA VERIFICAR SI LA RUTA EXISTE-VAR_DIR
177 VARIABLE DIRECCION
366 VARIABLE DIRECCION
178 """
367 """
179 if os.path.isdir(var_dir):
368 if os.path.isdir(var_dir):
180 return True
369 return True
181 else:
370 else:
182 self.textEdit.append("Incorrect path:" + str(var_dir))
371 self.textEdit.append("Incorrect path:" + str(var_dir))
183 return False
372 return False
184
373
185 def loadDays(self):
374 def loadDays(self):
186 """
375 """
187 METODO PARA CARGAR LOS DIAS
376 METODO PARA CARGAR LOS DIAS
188 """
377 """
189 self.variableList=[]
378 self.variableList=[]
190 self.starDateCmbBox.clear()
379 self.starDateCmbBox.clear()
191 self.endDateCmbBox.clear()
380 self.endDateCmbBox.clear()
192
381
193 Dirlist = os.listdir(self.dataPath)
382 Dirlist = os.listdir(self.dataPath)
194 Dirlist.sort()
383 Dirlist.sort()
195
384
196 for a in range(0, len(Dirlist)):
385 for a in range(0, len(Dirlist)):
197 fname= Dirlist[a]
386 fname= Dirlist[a]
198 Doy=fname[5:8]
387 Doy=fname[5:8]
199 fname = fname[1:5]
388 fname = fname[1:5]
200 print fname
389 print fname
201 fecha=Doy2Date(int(fname),int(Doy))
390 fecha=Doy2Date(int(fname),int(Doy))
202 fechaList=fecha.change2date()
391 fechaList=fecha.change2date()
203 #print fechaList[0]
392 #print fechaList[0]
204 Dirlist[a]=fname+"/"+str(fechaList[0])+"/"+str(fechaList[1])
393 Dirlist[a]=fname+"/"+str(fechaList[0])+"/"+str(fechaList[1])
205 #+"-"+ fechaList[0]+"-"+fechaList[1]
394 #+"-"+ fechaList[0]+"-"+fechaList[1]
206
395
207 #---------------AQUI TIENE QUE SER MODIFICADO--------#
396 #---------------AQUI TIENE QUE SER MODIFICADO--------#
208
397
209 #Se cargan las listas para seleccionar StartDay y StopDay (QComboBox)
398 #Se cargan las listas para seleccionar StartDay y StopDay (QComboBox)
210 for i in range(0, (len(Dirlist))):
399 for i in range(0, (len(Dirlist))):
211 self.variableList.append(Dirlist[i])
400 self.variableList.append(Dirlist[i])
212
401
213 for i in self.variableList:
402 for i in self.variableList:
214 self.starDateCmbBox.addItem(i)
403 self.starDateCmbBox.addItem(i)
215 self.endDateCmbBox.addItem(i)
404 self.endDateCmbBox.addItem(i)
216 self.endDateCmbBox.setCurrentIndex(self.starDateCmbBox.count()-1)
405 self.endDateCmbBox.setCurrentIndex(self.starDateCmbBox.count()-1)
217
406
218 self.getsubList()
407 self.getsubList()
219 self.dataOkBtn.setEnabled(True)
408 self.dataOkBtn.setEnabled(True)
220
409
221 def getsubList(self):
410 def getsubList(self):
222 """
411 """
223 OBTIENE EL RANDO DE LAS FECHAS SELECCIONADAS
412 OBTIENE EL RANDO DE LAS FECHAS SELECCIONADAS
224 """
413 """
225 self.subList=[]
414 self.subList=[]
226 for i in self.variableList[self.starDateCmbBox.currentIndex():self.starDateCmbBox.currentIndex() + self.endDateCmbBox.currentIndex()+1]:
415 for i in self.variableList[self.starDateCmbBox.currentIndex():self.starDateCmbBox.currentIndex() + self.endDateCmbBox.currentIndex()+1]:
227 self.subList.append(i)
416 self.subList.append(i)
228
417
229 @pyqtSignature("")
418 @pyqtSignature("")
230 def on_dataPathBrowse_clicked(self):
419 def on_dataPathBrowse_clicked(self):
231 """
420 """
232 OBTENCION DE LA RUTA DE DATOS
421 OBTENCION DE LA RUTA DE DATOS
233 """
422 """
234 self.dataPath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
423 self.dataPath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
235 self.dataPathTxt.setText(self.dataPath)
424 self.dataPathTxt.setText(self.dataPath)
236 self.statusDpath=self.existDir(self.dataPath)
425 self.statusDpath=self.existDir(self.dataPath)
237 self.loadDays()
426 self.loadDays()
238
427
239 @pyqtSignature("int")
428 @pyqtSignature("int")
240 def on_starDateCmbBox_activated(self, index):
429 def on_starDateCmbBox_activated(self, index):
241 """
430 """
242 SELECCION DEL RANGO DE FECHAS -STAR DATE
431 SELECCION DEL RANGO DE FECHAS -STAR DATE
243 """
432 """
244 var_StopDay_index=self.endDateCmbBox.count() - self.endDateCmbBox.currentIndex()
433 var_StopDay_index=self.endDateCmbBox.count() - self.endDateCmbBox.currentIndex()
245 self.endDateCmbBox.clear()
434 self.endDateCmbBox.clear()
246 for i in self.variableList[index:]:
435 for i in self.variableList[index:]:
247 self.endDateCmbBox.addItem(i)
436 self.endDateCmbBox.addItem(i)
248 self.endDateCmbBox.setCurrentIndex(self.endDateCmbBox.count() - var_StopDay_index)
437 self.endDateCmbBox.setCurrentIndex(self.endDateCmbBox.count() - var_StopDay_index)
249 self.getsubList()
438 self.getsubList()
250
439
251 @pyqtSignature("int")
440 @pyqtSignature("int")
252 def on_endDateCmbBox_activated(self, index):
441 def on_endDateCmbBox_activated(self, index):
253 """
442 """
254 SELECCION DEL RANGO DE FECHAS-END DATE
443 SELECCION DEL RANGO DE FECHAS-END DATE
255 """
444 """
256 var_StartDay_index=self.starDateCmbBox.currentIndex()
445 var_StartDay_index=self.starDateCmbBox.currentIndex()
257 var_end_index = self.endDateCmbBox.count() - index
446 var_end_index = self.endDateCmbBox.count() - index
258 self.starDateCmbBox.clear()
447 self.starDateCmbBox.clear()
259 for i in self.variableList[:len(self.variableList) - var_end_index + 1]:
448 for i in self.variableList[:len(self.variableList) - var_end_index + 1]:
260 self.starDateCmbBox.addItem(i)
449 self.starDateCmbBox.addItem(i)
261 self.starDateCmbBox.setCurrentIndex(var_StartDay_index)
450 self.starDateCmbBox.setCurrentIndex(var_StartDay_index)
262 self.getsubList() #Se carga var_sublist[] con el rango de las fechas seleccionadas
451 self.getsubList() #Se carga var_sublist[] con el rango de las fechas seleccionadas
263
452
264 @pyqtSignature("int")
453 @pyqtSignature("int")
265 def on_readModeCmBox_activated(self, p0):
454 def on_readModeCmBox_activated(self, p0):
266 """
455 """
267 Slot documentation goes here.
456 Slot documentation goes here.
268 """
457 """
269 if p0==0:
458 if p0==0:
270 self.online=0
459 self.online=0
271 elif p0==1:
460 elif p0==1:
272 self.online=1
461 self.online=1
273
462
274 @pyqtSignature("")
275 def on_dataOkBtn_clicked(self):
276 """
277 Slot documentation goes here.
278 """
279 print "En este nivel se pasa el tipo de dato con el que se trabaja,path,startDate,endDate,startTime,endTime,online"
280
463
281 projectObj=self.proObjList[int(self.proConfCmbBox.currentIndex())]
282 datatype=str(self.dataTypeCmbBox.currentText())
283 path=str(self.dataPathTxt.text())
284 online=int(self.online)
285 starDate=str(self.starDateCmbBox.currentText())
286 endDate=str(self.endDateCmbBox.currentText())
287
288
289 self.readUnitConfObj = projectObj.addReadUnit(datatype=datatype,
290 path=path,
291 startDate=starDate,
292 endDate=endDate,
293 startTime='06:10:00',
294 endTime='23:59:59',
295 online=online)
296
297 self.readUnitConfObjList.append(self.readUnitConfObj)
298
299 print "self.readUnitConfObj.getId",self.readUnitConfObj.getId(),datatype,path,starDate,endDate,online
300
301
302 self.model_2=treeModel()
303
304 self.model_2.setParams(name=projectObj.name+str(projectObj.id),
305 directorio=path,
306 workspace="C:\\WorkspaceGUI",
307 remode=str(self.readModeCmBox.currentText()),
308 dataformat=datatype,
309 date=str(starDate)+"-"+str(endDate),
310 initTime='06:10:00',
311 endTime='23:59:59',
312 timezone="Local" ,
313 Summary="test de prueba")
314 self.model_2.arbol()
315 self.treeView_2.setModel(self.model_2)
316 self.treeView_2.expandAll()
317
464
318
465 def addUP(self):
319 @pyqtSignature("")
320 def on_addUnitProces_clicked(self):
321 """
322 Slot documentation goes here.
323 """
324 # print "En este nivel se adiciona una rama de procesamiento, y se le concatena con el id"
325 # self.procUnitConfObj0 = self.controllerObj.addProcUnit(datatype='Voltage', inputId=self.readUnitConfObj.getId())
326 self.showUp()
327
328 def showUp(self):
329
466
330 self.configUP=UnitProcess(self)
467 self.configUP=UnitProcess(self)
331 for i in self.proObjList:
468 for i in self.proObjList:
332 self.configUP.getfromWindowList.append(i)
469 self.configUP.getfromWindowList.append(i)
333 #print i
470 #print i
334 for i in self.upObjList:
471 for i in self.upObjList:
335 self.configUP.getfromWindowList.append(i)
472 self.configUP.getfromWindowList.append(i)
336 self.configUP.loadTotalList()
473 self.configUP.loadTotalList()
337 self.configUP.show()
474 self.configUP.show()
338 self.configUP.unitPsavebut.clicked.connect(self.reciveUPparameters)
475 self.configUP.unitPsavebut.clicked.connect(self.reciveUPparameters)
339 self.configUP.closed.connect(self.createUP)
476 self.configUP.closed.connect(self.createUP)
340
477
341 def reciveUPparameters(self):
478 def reciveUPparameters(self):
342
479
343 self.uporProObjRecover,self.upType=self.configUP.almacena()
480 self.uporProObjRecover,self.upType=self.configUP.almacena()
344
481
345
482
346 def createUP(self):
483 def createUP(self):
347 print "En este nivel se adiciona una rama de procesamiento, y se le concatena con el id"
484 print "En este nivel se adiciona una rama de procesamiento, y se le concatena con el id"
348 projectObj=self.proObjList[int(self.proConfCmbBox.currentIndex())]
485 projectObj=self.proObjList[int(self.proConfCmbBox.currentIndex())]
349
486
350 datatype=str(self.upType)
487 datatype=str(self.upType)
351 uporprojectObj=self.uporProObjRecover
488 uporprojectObj=self.uporProObjRecover
352 #+++++++++++LET FLY+++++++++++#
489 #+++++++++++LET FLY+++++++++++#
353 if uporprojectObj.getElementName()=='ProcUnit':
490 if uporprojectObj.getElementName()=='ProcUnit':
354 inputId=uporprojectObj.getId()
491 inputId=uporprojectObj.getId()
355 elif uporprojectObj.getElementName()=='Project':
492 elif uporprojectObj.getElementName()=='Project':
356 inputId=self.readUnitConfObjList[uporprojectObj.id-1].getId()
493 inputId=self.readUnitConfObjList[uporprojectObj.id-1].getId()
357
494
358
495
359 self.procUnitConfObj1 = projectObj.addProcUnit(datatype=datatype, inputId=inputId)
496 self.procUnitConfObj1 = projectObj.addProcUnit(datatype=datatype, inputId=inputId)
360 self.upObjList.append(self.procUnitConfObj1)
497 self.upObjList.append(self.procUnitConfObj1)
361 print inputId
498 print inputId
362 print self.procUnitConfObj1.getId()
499 print self.procUnitConfObj1.getId()
363 self.parentItem=uporprojectObj.arbol
500 self.parentItem=uporprojectObj.arbol
364 self.numbertree=int(self.procUnitConfObj1.getId())-1
501 self.numbertree=int(self.procUnitConfObj1.getId())-1
365 self.procUnitConfObj1.arbol=QtGui.QStandardItem(QtCore.QString(datatype +"%1 ").arg(self.numbertree))
502 self.procUnitConfObj1.arbol=QtGui.QStandardItem(QtCore.QString(datatype +"%1 ").arg(self.numbertree))
366 self.parentItem.appendRow(self.procUnitConfObj1.arbol)
503 self.parentItem.appendRow(self.procUnitConfObj1.arbol)
367 self.parentItem=self.procUnitConfObj1.arbol
504 self.parentItem=self.procUnitConfObj1.arbol
368 self.loadUp()
505 self.loadUp()
369 self.treeView.expandAll()
506 self.treeView.expandAll()
370
507
371 def loadUp(self):
508 def loadUp(self):
372 self.addOpUpselec.clear()
509 self.addOpUpselec.clear()
373 self.addOpSpecUpselec.clear()
510 self.addOpSpecUpselec.clear()
374 for i in self.upObjList:
511 for i in self.upObjList:
375 if i.datatype=='Voltage':
512 if i.datatype=='Voltage':
376 self.upObjVolList.append(i)
513 self.upObjVolList.append(i)
377 name=i.getElementName()
514 name=i.getElementName()
378 id=int(i.id)-1
515 id=int(i.id)-1
379 self.addOpUpselec.addItem(name+str(id))
516 self.addOpUpselec.addItem(name+str(id))
380 if i.datatype=='Spectra':
517 if i.datatype=='Spectra':
381 self.upobjSpecList.append(i)
518 self.upobjSpecList.append(i)
382 name=i.getElementName()
519 name=i.getElementName()
383 id=int(i.id)-1
520 id=int(i.id)-1
384 self.addOpSpecUpselec.addItem(name+str(id))
521 self.addOpSpecUpselec.addItem(name+str(id))
385
522
386 self.resetopVolt()
523 self.resetopVolt()
387 self.resetopSpec()
524 self.resetopSpec()
388
525
389
526
390 @pyqtSignature("int")
527 @pyqtSignature("int")
391 def on_selecChannelopVolCEB_stateChanged(self, p0):
528 def on_selecChannelopVolCEB_stateChanged(self, p0):
392 """
529 """
393 Slot documentation goes here.
530 Slot documentation goes here.
394 """
531 """
395 if p0==2:
532 if p0==2:
396 self.numberChannelopVol.setEnabled(True)
533 self.numberChannelopVol.setEnabled(True)
397 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
534 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
398 opObj10=upProcessSelect.addOperation(name='selectChannels')
535 opObj10=upProcessSelect.addOperation(name='selectChannels')
399 print opObj10.id
536 print opObj10.id
400 self.operObjList.append(opObj10)
537 self.operObjList.append(opObj10)
401 print " Ingresa seleccion de Canales"
538 print " Ingresa seleccion de Canales"
402 if p0==0:
539 if p0==0:
403 print " deshabilitado"
540 print " deshabilitado"
404
541
405 @pyqtSignature("int")
542 @pyqtSignature("int")
406 def on_selecHeighopVolCEB_stateChanged(self, p0):
543 def on_selecHeighopVolCEB_stateChanged(self, p0):
407 """
544 """
408 Slot documentation goes here.
545 Slot documentation goes here.
409 """
546 """
410 if p0==2:
547 if p0==2:
411 self.lineHeighProfileTxtopVol.setEnabled(True)
548 self.lineHeighProfileTxtopVol.setEnabled(True)
412 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
549 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
413 opObj10=upProcessSelect.addOperation(name='selectHeights')
550 opObj10=upProcessSelect.addOperation(name='selectHeights')
414 print opObj10.id
551 print opObj10.id
415 self.operObjList.append(opObj10)
552 self.operObjList.append(opObj10)
416 print " Select Type of Profile"
553 print " Select Type of Profile"
417 if p0==0:
554 if p0==0:
418 print " deshabilitado"
555 print " deshabilitado"
419
556
420
557
421 @pyqtSignature("int")
558 @pyqtSignature("int")
422 def on_profileSelecopVolCEB_stateChanged(self, p0):
559 def on_profileSelecopVolCEB_stateChanged(self, p0):
423 """
560 """
424 Slot documentation goes here.
561 Slot documentation goes here.
425 """
562 """
426 if p0==2:
563 if p0==2:
427 self.lineProfileSelecopVolCEB.setEnabled(True)
564 self.lineProfileSelecopVolCEB.setEnabled(True)
428 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
565 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
429 opObj10=upProcessSelect.addOperation(name='ProfileSelector', optype='other')
566 opObj10=upProcessSelect.addOperation(name='ProfileSelector', optype='other')
430 print opObj10.id
567 print opObj10.id
431 self.operObjList.append(opObj10)
568 self.operObjList.append(opObj10)
432 print " Select Type of Profile"
569 print " Select Type of Profile"
433 if p0==0:
570 if p0==0:
434 print " deshabilitado"
571 print " deshabilitado"
435
572
436
573
437 @pyqtSignature("int")
574 @pyqtSignature("int")
438 def on_coherentIntegrationCEB_stateChanged(self, p0):
575 def on_coherentIntegrationCEB_stateChanged(self, p0):
439 """
576 """
440 Slot documentation goes here.
577 Slot documentation goes here.
441 """
578 """
442 if p0==2:
579 if p0==2:
443 self.numberIntegration.setEnabled(True)
580 self.numberIntegration.setEnabled(True)
444 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
581 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
445 opObj10=upProcessSelect.addOperation(name='CohInt', optype='other')
582 opObj10=upProcessSelect.addOperation(name='CohInt', optype='other')
446 print opObj10.id
583 print opObj10.id
447 self.operObjList.append(opObj10)
584 self.operObjList.append(opObj10)
448 print "Choose number of Cohint"
585 print "Choose number of Cohint"
449 if p0==0:
586 if p0==0:
450 print " deshabilitado"
587 print " deshabilitado"
451 self.numberChannelopVol.setEnabled(False)
588 self.numberChannelopVol.setEnabled(False)
452
589
453 def resetopVolt(self):
590 def resetopVolt(self):
454 self.selecChannelopVolCEB.setChecked(False)
591 self.selecChannelopVolCEB.setChecked(False)
455 self.selecHeighopVolCEB.setChecked(False)
592 self.selecHeighopVolCEB.setChecked(False)
456 self.coherentIntegrationCEB.setChecked(False)
593 self.coherentIntegrationCEB.setChecked(False)
457 self.profileSelecopVolCEB.setChecked(False)
594 self.profileSelecopVolCEB.setChecked(False)
458 #self.selecChannelopVolCEB.setEnabled(False)
595 #self.selecChannelopVolCEB.setEnabled(False)
459 self.lineHeighProfileTxtopVol.clear()
596 self.lineHeighProfileTxtopVol.clear()
460 self.lineProfileSelecopVolCEB.clear()
597 self.lineProfileSelecopVolCEB.clear()
461 self.numberChannelopVol.clear()
598 self.numberChannelopVol.clear()
462 self.numberIntegration.clear()
599 self.numberIntegration.clear()
463
600
464
601
465 @pyqtSignature("")
602 @pyqtSignature("")
466 def on_dataopVolOkBtn_clicked(self):
603 def on_dataopVolOkBtn_clicked(self):
467 """
604 """
468 Slot documentation goes here.
605 Slot documentation goes here.
469 """
606 """
470 if self.selecChannelopVolCEB.isChecked():
607 if self.selecChannelopVolCEB.isChecked():
471 for i in self.operObjList:
608 for i in self.operObjList:
472 if i.name=='selectChannels':
609 if i.name=='selectChannels':
473 value=self.numberChannelopVol.text()
610 value=self.numberChannelopVol.text()
474 i.addParameter(name='channelList', value=value, format='intlist')
611 i.addParameter(name='channelList', value=value, format='intlist')
475
612
476
613
477 print "channel"
614 print "channel"
478
615
479 if self.selecHeighopVolCEB.isChecked():
616 if self.selecHeighopVolCEB.isChecked():
480 for i in self.operObjList:
617 for i in self.operObjList:
481 if i.name=='selectHeights' :
618 if i.name=='selectHeights' :
482 value=self.lineHeighProfileTxtopVol.text()
619 value=self.lineHeighProfileTxtopVol.text()
483 valueList=value.split(',')
620 valueList=value.split(',')
484 i.addParameter(name='minHei', value=valueList[0], format='float')
621 i.addParameter(name='minHei', value=valueList[0], format='float')
485 i.addParameter(name='maxHei', value=valueList[1], format='float')
622 i.addParameter(name='maxHei', value=valueList[1], format='float')
486
623
487 print "height"
624 print "height"
488
625
489
626
490 if self.selecHeighopVolCEB.isChecked():
627 if self.selecHeighopVolCEB.isChecked():
491 for i in self.operObjList:
628 for i in self.operObjList:
492 if i.name=='ProfileSelector' :
629 if i.name=='ProfileSelector' :
493 value=self.lineProfileSelecopVolCEB.text()
630 value=self.lineProfileSelecopVolCEB.text()
494 i.addParameter(name='ProfileSelector', value=value, format='intlist')
631 i.addParameter(name='ProfileSelector', value=value, format='intlist')
495
632
496
633
497
634
498 if self.coherentIntegrationCEB.isChecked():
635 if self.coherentIntegrationCEB.isChecked():
499 for i in self.operObjList:
636 for i in self.operObjList:
500 if i.name=='CohInt':
637 if i.name=='CohInt':
501 value=self.numberIntegration.text()
638 value=self.numberIntegration.text()
502 i.addParameter(name='n', value=value, format='int')
639 i.addParameter(name='n', value=value, format='int')
503
640
504
641
505 @pyqtSignature("int")
642 @pyqtSignature("int")
506 def on_nFFTPointOpSpecCEB_stateChanged(self, p0):
643 def on_nFFTPointOpSpecCEB_stateChanged(self, p0):
507 """
644 """
508 Slot documentation goes here.
645 Slot documentation goes here.
509 """
646 """
510 if p0==2:
647 if p0==2:
511 self.valuenFFTPointOpSpec.setEnabled(True)
648 self.valuenFFTPointOpSpec.setEnabled(True)
512 print " nFFTPoint"
649 print " nFFTPoint"
513 if p0==0:
650 if p0==0:
514 print " deshabilitado"
651 print " deshabilitado"
515
652
516
653
517 def resetopSpec(self):
654 def resetopSpec(self):
518 self.nFFTPointOpSpecCEB.setChecked(False)
655 self.nFFTPointOpSpecCEB.setChecked(False)
519
656
520 self.valuenFFTPointOpSpec.clear()
657 self.valuenFFTPointOpSpec.clear()
521
658
522
659
523 @pyqtSignature("")
660 @pyqtSignature("")
524 def on_dataopSpecOkBtn_clicked(self):
661 def on_dataopSpecOkBtn_clicked(self):
525 """
662 """
526 Slot documentation goes here.
663 Slot documentation goes here.
527 """
664 """
528 print "Añadimos operaciones Spectra,nchannels,value,format"
665 print "Añadimos operaciones Spectra,nchannels,value,format"
529 if self.nFFTPointOpSpecCEB.isChecked():
666 if self.nFFTPointOpSpecCEB.isChecked():
530 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
667 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
531 value=self.valuenFFTPointOpSpec.text()
668 value=self.valuenFFTPointOpSpec.text()
532 upProcessSelect.addParameter(name='nFFTPoints',value=value,format='int')
669 upProcessSelect.addParameter(name='nFFTPoints',value=value,format='int')
533
670
534 @pyqtSignature("int")
671 @pyqtSignature("int")
535 def on_SpectraPlotGraphCEB_stateChanged(self, p0):
672 def on_SpectraPlotGraphCEB_stateChanged(self, p0):
536 """
673 """
537 Slot documentation goes here.
674 Slot documentation goes here.
538 """
675 """
539 if p0==2:
676 if p0==2:
540 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
677 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
541 opObj10=upProcessSelect.addOperation(name='SpectraPlot',optype='other')
678 opObj10=upProcessSelect.addOperation(name='SpectraPlot',optype='other')
542 print opObj10.id
679 print opObj10.id
543 self.operObjList.append(opObj10)
680 self.operObjList.append(opObj10)
544
681
545 if p0==0:
682 if p0==0:
546 print " deshabilitado"
683 print " deshabilitado"
547
684
548 @pyqtSignature("int")
685 @pyqtSignature("int")
549 def on_CrossSpectraPlotGraphceb_stateChanged(self, p0):
686 def on_CrossSpectraPlotGraphceb_stateChanged(self, p0):
550 """
687 """
551 Slot documentation goes here.
688 Slot documentation goes here.
552 """
689 """
553 if p0==2:
690 if p0==2:
554 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
691 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
555 opObj10=upProcessSelect.addOperation(name='CrossSpectraPlot',optype='other')
692 opObj10=upProcessSelect.addOperation(name='CrossSpectraPlot',optype='other')
556 print opObj10.id
693 print opObj10.id
557 self.operObjList.append(opObj10)
694 self.operObjList.append(opObj10)
558 if p0==0:
695 if p0==0:
559 print " deshabilitado"
696 print " deshabilitado"
560
697
561 @pyqtSignature("int")
698 @pyqtSignature("int")
562 def on_RTIPlotGraphCEB_stateChanged(self, p0):
699 def on_RTIPlotGraphCEB_stateChanged(self, p0):
563 """
700 """
564 Slot documentation goes here.
701 Slot documentation goes here.
565 """
702 """
566 if p0==2:
703 if p0==2:
567 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
704 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
568 opObj10=upProcessSelect.addOperation(name='RTIPlot',optype='other')
705 opObj10=upProcessSelect.addOperation(name='RTIPlot',optype='other')
569 print opObj10.id
706 print opObj10.id
570 self.operObjList.append(opObj10)
707 self.operObjList.append(opObj10)
571 if p0==0:
708 if p0==0:
572 print " deshabilitado"
709 print " deshabilitado"
573
710
574
711
575 def resetgraphSpec(self):
712 def resetgraphSpec(self):
576 self.SpectraPlotGraphCEB.setChecked(False)
713 self.SpectraPlotGraphCEB.setChecked(False)
577 self.CrossSpectraPlotGraphceb.setChecked(False)
714 self.CrossSpectraPlotGraphceb.setChecked(False)
578 self.RTIPlotGraphCEB.setChecked(False)
715 self.RTIPlotGraphCEB.setChecked(False)
579
716
580 @pyqtSignature("")
717 @pyqtSignature("")
581 def on_dataGraphSpecOkBtn_clicked(self):
718 def on_dataGraphSpecOkBtn_clicked(self):
582 """
719 """
583 Slot documentation goes here.
720 Slot documentation goes here.
584 """
721 """
585 print "Graficar Spec op"
722 print "Graficar Spec op"
586 if self.SpectraPlotGraphCEB.isChecked():
723 if self.SpectraPlotGraphCEB.isChecked():
587 for i in self.operObjList:
724 for i in self.operObjList:
588 if i.name=='SpectraPlot':
725 if i.name=='SpectraPlot':
589 i.addParameter(name='idfigure', value='1', format='int')
726 i.addParameter(name='idfigure', value='1', format='int')
590 i.addParameter(name='wintitle', value='SpectraPlot0', format='str')
727 i.addParameter(name='wintitle', value='SpectraPlot0', format='str')
591 i.addParameter(name='zmin', value='40', format='int')
728 i.addParameter(name='zmin', value='40', format='int')
592 i.addParameter(name='zmax', value='90', format='int')
729 i.addParameter(name='zmax', value='90', format='int')
593 i.addParameter(name='showprofile', value='1', format='int')
730 i.addParameter(name='showprofile', value='1', format='int')
594
731
595 if self.CrossSpectraPlotGraphceb.isChecked():
732 if self.CrossSpectraPlotGraphceb.isChecked():
596 for i in self.operObjList:
733 for i in self.operObjList:
597 if i.name=='CrossSpectraPlot' :
734 if i.name=='CrossSpectraPlot' :
598 i.addParameter(name='idfigure', value='2', format='int')
735 i.addParameter(name='idfigure', value='2', format='int')
599 i.addParameter(name='wintitle', value='CrossSpectraPlot', format='str')
736 i.addParameter(name='wintitle', value='CrossSpectraPlot', format='str')
600 i.addParameter(name='zmin', value='40', format='int')
737 i.addParameter(name='zmin', value='40', format='int')
601 i.addParameter(name='zmax', value='90', format='int')
738 i.addParameter(name='zmax', value='90', format='int')
602
739
603 if self.RTIPlotGraphCEB.isChecked():
740 if self.RTIPlotGraphCEB.isChecked():
604 for i in self.operObjList:
741 for i in self.operObjList:
605 if i.name=='RTIPlot':
742 if i.name=='RTIPlot':
606 i.addParameter(name='n', value='2', format='int')
743 i.addParameter(name='n', value='2', format='int')
607 i.addParameter(name='overlapping', value='1', format='int')
744 i.addParameter(name='overlapping', value='1', format='int')
608
745
609 @pyqtSignature("")
746 @pyqtSignature("")
610 def on_actionguardarObj_triggered(self):
747 def on_actionguardarObj_triggered(self):
611 """
748 """
612 GUARDAR EL ARCHIVO DE CONFIGURACION XML
749 GUARDAR EL ARCHIVO DE CONFIGURACION XML
613 """
750 """
751 self.saveProject()
752
753
754 def saveProject(self):
614 if self.idp==1:
755 if self.idp==1:
615 self.valuep=1
756 self.valuep=1
616
757
617 print "Escribiendo el archivo XML"
758 print "Escribiendo el archivo XML"
618 filename="C:\\WorkspaceGUI\\CONFIG"+str(self.valuep)+".xml"
759 filename="C:\\WorkspaceGUI\\CONFIG"+str(self.valuep)+".xml"
619 self.controllerObj=self.proObjList[int(self.valuep)-1]
760 self.controllerObj=self.proObjList[int(self.valuep)-1]
620 self.controllerObj.writeXml(filename)
761 self.controllerObj.writeXml(filename)
621
762
622
763
623 class Window(QMainWindow, Ui_window):
764 class Window(QMainWindow, Ui_window):
624 """
765 """
625 Class documentation goes here.
766 Class documentation goes here.
626 """
767 """
627 closed=pyqtSignal()
768 closed=pyqtSignal()
628 def __init__(self, parent = None):
769 def __init__(self, parent = None):
629 """
770 """
630 Constructor
771 Constructor
631 """
772 """
632 QMainWindow.__init__(self, parent)
773 QMainWindow.__init__(self, parent)
633 self.setupUi(self)
774 self.setupUi(self)
634 self.name=0
775 self.name=0
635 self.nameproject=None
776 self.nameproject=None
636 self.proyectNameLine.setText('My_name_is...')
777 self.proyectNameLine.setText('My_name_is...')
637 self.descriptionTextEdit.setText('Write a description...')
778 self.descriptionTextEdit.setText('Write a description...')
638
779
639
780
640 @pyqtSignature("")
781 @pyqtSignature("")
641 def on_cancelButton_clicked(self):
782 def on_cancelButton_clicked(self):
642 """
783 """
643 Slot documentation goes here.
784 Slot documentation goes here.
644 """
785 """
645 # TODO: not implemented yet
786 # TODO: not implemented yet
646 #raise NotImplementedError
787 #raise NotImplementedError
647
788
648 self.hide()
789 self.hide()
649
790
650 @pyqtSignature("")
791 @pyqtSignature("")
651 def on_okButton_clicked(self):
792 def on_okButton_clicked(self):
652 """
793 """
653 Slot documentation goes here.
794 Slot documentation goes here.
654 """
795 """
655 #self.almacena()
796 #self.almacena()
656 self.close()
797 self.close()
657
798
658 @pyqtSignature("")
799 @pyqtSignature("")
659 def on_saveButton_clicked(self):
800 def on_saveButton_clicked(self):
660 """
801 """
661 Slot documentation goes here.
802 Slot documentation goes here.
662 """
803 """
663 self.almacena()
804 self.almacena()
664 # self.close()
805 # self.close()
665
806
666 def almacena(self):
807 def almacena(self):
667 #print str(self.proyectNameLine.text())
808 #print str(self.proyectNameLine.text())
668 self.nameproject=str(self.proyectNameLine.text())
809 self.nameproject=str(self.proyectNameLine.text())
669 self.description=str(self.descriptionTextEdit.toPlainText())
810 self.description=str(self.descriptionTextEdit.toPlainText())
670 return self.nameproject,self.description
811 return self.nameproject,self.description
671
812
672 def closeEvent(self, event):
813 def closeEvent(self, event):
673 self.closed.emit()
814 self.closed.emit()
674 event.accept()
815 event.accept()
675
816
676
817
677 class UnitProcess(QMainWindow, Ui_UnitProcess):
818 class UnitProcess(QMainWindow, Ui_UnitProcess):
678 """
819 """
679 Class documentation goes here.
820 Class documentation goes here.
680 """
821 """
681 closed=pyqtSignal()
822 closed=pyqtSignal()
682 def __init__(self, parent = None):
823 def __init__(self, parent = None):
683 """
824 """
684 Constructor
825 Constructor
685 """
826 """
686 QMainWindow.__init__(self, parent)
827 QMainWindow.__init__(self, parent)
687 self.setupUi(self)
828 self.setupUi(self)
688 self.getFromWindow=None
829 self.getFromWindow=None
689 self.getfromWindowList=[]
830 self.getfromWindowList=[]
690
831
691 self.listUP=None
832 self.listUP=None
692
833
693 def loadTotalList(self):
834 def loadTotalList(self):
694 self.comboInputBox.clear()
835 self.comboInputBox.clear()
695 for i in self.getfromWindowList:
836 for i in self.getfromWindowList:
696 name=i.getElementName()
837 name=i.getElementName()
697 id= i.id
838 id= i.id
698 if i.getElementName()=='ProcUnit':
839 if i.getElementName()=='ProcUnit':
699 id=int(i.id)-1
840 id=int(i.id)-1
700 self.comboInputBox.addItem(str(name)+str(id))
841 self.comboInputBox.addItem(str(name)+str(id))
701
842
702 @pyqtSignature("QString")
843 @pyqtSignature("QString")
703 def on_comboInputBox_activated(self, p0):
844 def on_comboInputBox_activated(self, p0):
704 """
845 """
705 Slot documentation goes here.
846 Slot documentation goes here.
706 """
847 """
707
848
708 # TODO: not implemented yet
849 # TODO: not implemented yet
709 #raise NotImplementedError
850 #raise NotImplementedError
710
851
711 @pyqtSignature("QString")
852 @pyqtSignature("QString")
712 def on_comboTypeBox_activated(self, p0):
853 def on_comboTypeBox_activated(self, p0):
713 """
854 """
714 Slot documentation goes here.
855 Slot documentation goes here.
715 """
856 """
716 # TODO: not implemented yet
857 # TODO: not implemented yet
717 #raise NotImplementedError
858 #raise NotImplementedError
718
859
719 @pyqtSignature("")
860 @pyqtSignature("")
720 def on_unitPokbut_clicked(self):
861 def on_unitPokbut_clicked(self):
721 """
862 """
722 Slot documentation goes here.
863 Slot documentation goes here.
723 """
864 """
724 self.close()
865 self.close()
725
866
726 @pyqtSignature("")
867 @pyqtSignature("")
727 def on_unitPsavebut_clicked(self):
868 def on_unitPsavebut_clicked(self):
728 """
869 """
729 Slot documentation goes here.
870 Slot documentation goes here.
730 """
871 """
731
872
732 print "alex"
873 print "alex"
733 self.almacena()
874 self.almacena()
734
875
735 @pyqtSignature("")
876 @pyqtSignature("")
736 def on_unitPcancelbut_clicked(self):
877 def on_unitPcancelbut_clicked(self):
737 """
878 """
738 Slot documentation goes here.
879 Slot documentation goes here.
739 """
880 """
740 # TODO: not implemented yet
881 # TODO: not implemented yet
741 #raise NotImplementedError
882 #raise NotImplementedError
742 self.hide()
883 self.hide()
743
884
744 def almacena(self):
885 def almacena(self):
745 self.getFromWindow=self.getfromWindowList[int(self.comboInputBox.currentIndex())]
886 self.getFromWindow=self.getfromWindowList[int(self.comboInputBox.currentIndex())]
746 #self.nameofUP= str(self.nameUptxt.text())
887 #self.nameofUP= str(self.nameUptxt.text())
747 self.typeofUP= str(self.comboTypeBox.currentText())
888 self.typeofUP= str(self.comboTypeBox.currentText())
748 return self.getFromWindow,self.typeofUP
889 return self.getFromWindow,self.typeofUP
749
890
750 def closeEvent(self, event):
891 def closeEvent(self, event):
751 self.closed.emit()
892 self.closed.emit()
752 event.accept()
893 event.accept()
753
894
754
895
755
896
756
897
757
898
758
899
759 No newline at end of file
900
@@ -1,807 +1,807
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """
2 """
3 Module implementing MainWindow.
3 Module implementing MainWindow.
4 #+++++++++++++++++++++INTERFAZ DE USUARIO V1.1++++++++++++++++++++++++#
4 #+++++++++++++++++++++INTERFAZ DE USUARIO V1.1++++++++++++++++++++++++#
5 """
5 """
6 from PyQt4.QtGui import QMainWindow
6 from PyQt4.QtGui import QMainWindow
7 from PyQt4.QtCore import pyqtSignature
7 from PyQt4.QtCore import pyqtSignature
8 from PyQt4.QtCore import pyqtSignal
8 from PyQt4.QtCore import pyqtSignal
9 from PyQt4 import QtCore
9 from PyQt4 import QtCore
10 from PyQt4 import QtGui
10 from PyQt4 import QtGui
11 from timeconversions import Doy2Date
11 from timeconversions import Doy2Date
12 from modelProperties import treeModel
12 from modelProperties import treeModel
13 from viewer.ui_unitprocess import Ui_UnitProcess
13 from viewer.ui_unitprocess import Ui_UnitProcess
14 from viewer.ui_window import Ui_window
14 from viewer.ui_window import Ui_window
15 from viewer.ui_mainwindow import Ui_MainWindow
15 from viewer.ui_mainwindow import Ui_MainWindow
16 from viewer.ui_workspace import Ui_Workspace
16 from viewer.ui_workspace import Ui_Workspace
17 from viewer.ui_initwindow import Ui_InitWindow
17 from viewer.ui_initwindow import Ui_InitWindow
18
18
19 from controller import Project,ReadUnitConf,ProcUnitConf,OperationConf,ParameterConf
19 from controller import Project,ReadUnitConf,ProcUnitConf,OperationConf,ParameterConf
20 import os
20 import os
21
21
22 HORIZONTAL_HEADERS = ("ITEM :"," DATOS : " )
22 HORIZONTAL_HEADERS = ("ITEM :"," DATOS : " )
23
23
24 HORIZONTAL = ("RAMA :",)
24 HORIZONTAL = ("RAMA :",)
25
25
26 class MainWindow(QMainWindow, Ui_MainWindow):
26 class MainWindow(QMainWindow, Ui_MainWindow):
27
27
28 nop=None
28 nop=None
29
29
30 __projObjDict = {}
30 __projObjDict = {}
31 __arbolDict = {}
31 __arbolDict = {}
32
32
33 """
33 """
34 Class documentation goes here.
34 Class documentation goes here.
35 #*##################VENTANA CUERPO DEL PROGRAMA####################
35 #*##################VENTANA CUERPO DEL PROGRAMA####################
36 """
36 """
37 def __init__(self, parent = None):
37 def __init__(self, parent = None):
38 """
38 """
39 Constructor
39 Constructor
40 """
40 """
41 print "Inicio de Programa Interfaz Gráfica"
41 print "Inicio de Programa Interfaz Gráfica"
42 QMainWindow.__init__(self, parent)
42 QMainWindow.__init__(self, parent)
43 self.setupUi(self)
43 self.setupUi(self)
44
44
45 self.online=0
45 self.online=0
46 self.datatype=0
46 self.datatype=0
47 self.variableList=[]
47 self.variableList=[]
48
48
49 self.proObjList=[]
49 self.proObjList=[]
50 self.idp=0
50 self.idp=0
51 self.projectName=0
51 self.projectName=0
52 self.description=0
52 self.description=0
53 self.namepTree=0
53 self.namepTree=0
54 self.valuep=0
54 self.valuep=0
55
55
56 self.upObjList= []
56 self.upObjList= []
57 self.upn=0
57 self.upn=0
58 self.upName=0
58 self.upName=0
59 self.upType=0
59 self.upType=0
60 self.uporProObjRecover=0
60 self.uporProObjRecover=0
61
61
62
62
63 self.readUnitConfObjList=[]
63 self.readUnitConfObjList=[]
64
64
65 self.upObjVolList=[]
65 self.upObjVolList=[]
66 self.upobjSpecList=[]
66 self.upobjSpecList=[]
67
67
68
68
69 self.operObjList=[]
69 self.operObjList=[]
70
70
71 self.projectWindow=None
71 self.projectWindow=None
72 self.configUP=None
72 self.configUP=None
73
73
74 self.projectObj=None
74 self.projectObj=None
75 self.readUnitConfObj=None
75 self.readUnitConfObj=None
76 self.procUnitConfObj0=None
76 self.procUnitConfObj0=None
77 self.opObj10=None
77 self.opObj10=None
78 self.opObj12=None
78 self.opObj12=None
79
79
80
80
81 self.setParam()
81 self.setParam()
82
82
83 #++++++++++++++++++NEW PROPERTIES+++++++++++++++++#
83 #++++++++++++++++++NEW PROPERTIES+++++++++++++++++#
84 QtGui.QToolTip.setFont(QtGui.QFont('SansSerif', 10))
84 QtGui.QToolTip.setFont(QtGui.QFont('SansSerif', 10))
85 self.addpBtn.setToolTip('Add_New_Project')
85 self.addpBtn.setToolTip('Add_New_Project')
86 self.addUnitProces.setToolTip('Add_New_Processing_Unit')
86 self.addUnitProces.setToolTip('Add_New_Processing_Unit')
87
87
88 #++++++++++++++++++NEW PROPERTIES+++++++++++++++++#
88 #++++++++++++++++++NEW PROPERTIES+++++++++++++++++#
89 self.model = QtGui.QStandardItemModel()
89 self.model = QtGui.QStandardItemModel()
90 self.treeView.setModel(self.model)
90 self.treeView.setModel(self.model)
91 self.treeView.clicked.connect(self.clickFunctiontree)
91 self.treeView.clicked.connect(self.clickFunctiontree)
92 self.treeView.expandAll()
92 self.treeView.expandAll()
93 #self.treeView.clicked.connect(self.treefunction1)
93 #self.treeView.clicked.connect(self.treefunction1)
94
94
95 def getNumberofProject(self):
95 def getNumberofProject(self):
96 # for i in self.proObjList:
96 # for i in self.proObjList:
97 # print i
97 # print i
98 return self.proObjList
98 return self.proObjList
99 # for i in self.proObjList:
99 # for i in self.proObjList:
100 # print i
100 # print i
101
101
102 def setParam(self):
102 def setParam(self):
103 self.dataPathTxt.setText('C:\data')
103 self.dataPathTxt.setText('C:\data')
104 self.numberChannelopVol.setEnabled(False)
104 self.numberChannelopVol.setEnabled(False)
105 self.lineHeighProfileTxtopVol.setEnabled(False)
105 self.lineHeighProfileTxtopVol.setEnabled(False)
106 self.numberIntegration.setEnabled(False)
106 self.numberIntegration.setEnabled(False)
107 self.valuenFFTPointOpSpec.setEnabled(False)
107 self.valuenFFTPointOpSpec.setEnabled(False)
108 self.lineProfileSelecopVolCEB.setEnabled(False)
108 self.lineProfileSelecopVolCEB.setEnabled(False)
109
109
110
110
111 def clickFunctiontree(self,index):
111 def clickFunctiontree(self,index):
112 indexclick= index.model().itemFromIndex(index).text()
112 indexclick= index.model().itemFromIndex(index).text()
113 #print indexclick
113 #print indexclick
114 NumofPro=indexclick[8:10]
114 NumofPro=indexclick[8:10]
115 self.valuep=NumofPro
115 self.valuep=NumofPro
116 #print self.valuep
116 #print self.valuep
117 NameofPro=indexclick[0:7]
117 NameofPro=indexclick[0:7]
118 self.namepTree=NameofPro
118 self.namepTree=NameofPro
119 #print self.namepTree
119 #print self.namepTree
120
120
121
121
122 @pyqtSignature("")
122 @pyqtSignature("")
123 def on_addpBtn_clicked(self):
123 def on_addprojectBtn_clicked(self):
124 """
124 """
125 Llama al metodo addProject.
125 Llama al metodo addProject.
126 """
126 """
127 print "En este nivel se abre el window"
127 print "En este nivel se abre el window"
128
128
129
129
130 self.addProject()
130 self.addProject()
131
131
132 def addProject(self):
132 def addProject(self):
133 """
133 """
134 Muestra una
134 Muestra una
135 """
135 """
136
136
137 self.projectWindow = ProjectWindow(self)
137 self.projectWindow = ProjectWindow(self)
138 self.projectWindow.show()
138 self.projectWindow.show()
139
139
140 #Al cerrar la venta de proyecto se ejecutara el metodo createProject
140 #Al cerrar la venta de proyecto se ejecutara el metodo createProject
141 self.projectWindow.closed.connect(self.createProject)
141 self.projectWindow.closed.connect(self.createProject)
142
142
143 def createProject(self):
143 def createProject(self):
144 """
144 """
145 Crea un nuevo proyecto del tipo Controller.Project() y lo adiciona al diccionario
145 Crea un nuevo proyecto del tipo Controller.Project() y lo adiciona al diccionario
146 self.__projectDict.
146 self.__projectDict.
147 """
147 """
148
148
149 if not self.projectWindow.create:
149 if not self.projectWindow.create:
150 return
150 return
151
151
152 self.projectName = self.projectWindow.name
152 self.projectName = self.projectWindow.name
153 self.description = self.projectWindow.description
153 self.description = self.projectWindow.description
154
154
155 print "En este nivel se debe crear el proyecto,id,nombre,desc"
155 print "En este nivel se debe crear el proyecto,id,nombre,desc"
156 #+++++Creacion del Objeto Controller-XML++++++++++#
156 #+++++Creacion del Objeto Controller-XML++++++++++#
157 self.idp += 1
157 self.idp += 1
158 self.projectObj = Project()
158 self.projectObj = Project()
159
159
160 id=int(self.idp)
160 id=int(self.idp)
161 name=str(self.projectName)
161 name=str(self.projectName)
162 desc=str(self.description)
162 desc=str(self.description)
163
163
164 self.projectObj.setup(id = id, name=name, description=desc)
164 self.projectObj.setup(id = id, name=name, description=desc)
165 self.__projObjDict[id] = self.projectObj
165 self.__projObjDict[id] = self.projectObj
166 self.proObjList.append(self.projectObj)
166 self.proObjList.append(self.projectObj)
167
167
168 self.parentItem = self.model.invisibleRootItem()
168 self.parentItem = self.model.invisibleRootItem()
169 self.__arbolDict[id] = QtGui.QStandardItem(QtCore.QString("Project %0").arg(self.idp))
169 self.__arbolDict[id] = QtGui.QStandardItem(QtCore.QString("Project %0").arg(self.idp))
170
170
171 self.parentItem.appendRow(self.__arbolDict[projectObj.id])
171 self.parentItem.appendRow(self.__arbolDict[projectObj.id])
172
172
173 #+++++++++++++++++++LISTA DE PROYECTO++++++++++++++++++++++++++++#
173 #+++++++++++++++++++LISTA DE PROYECTO++++++++++++++++++++++++++++#
174
174
175
175
176 # self.parentItem=self.projectObj.arbol
176 # self.parentItem=self.projectObj.arbol
177 # self.loadProjects()
177 # self.loadProjects()
178
178
179 print "Porfavor ingrese los parámetros de configuracion del Proyecto"
179 print "Porfavor ingrese los parámetros de configuracion del Proyecto"
180
180
181 def loadProjects(self):
181 def loadProjects(self):
182 self.proConfCmbBox.clear()
182 self.proConfCmbBox.clear()
183 for i in self.__projObjDict.values():
183 for i in self.__projObjDict.values():
184 self.proConfCmbBox.addItem("Project"+str(i.id))
184 self.proConfCmbBox.addItem("Project"+str(i.id))
185
185
186 @pyqtSignature("int")
186 @pyqtSignature("int")
187 def on_dataTypeCmbBox_activated(self,index):
187 def on_dataTypeCmbBox_activated(self,index):
188 self.dataFormatTxt.setReadOnly(True)
188 self.dataFormatTxt.setReadOnly(True)
189 if index==0:
189 if index==0:
190 self.datatype='Voltage'
190 self.datatype='Voltage'
191 elif index==1:
191 elif index==1:
192 self.datatype='Spectra'
192 self.datatype='Spectra'
193 else :
193 else :
194 self.datatype=''
194 self.datatype=''
195 self.dataFormatTxt.setReadOnly(False)
195 self.dataFormatTxt.setReadOnly(False)
196 self.dataFormatTxt.setText(self.datatype)
196 self.dataFormatTxt.setText(self.datatype)
197
197
198 def existDir(self, var_dir):
198 def existDir(self, var_dir):
199 """
199 """
200 METODO PARA VERIFICAR SI LA RUTA EXISTE-VAR_DIR
200 METODO PARA VERIFICAR SI LA RUTA EXISTE-VAR_DIR
201 VARIABLE DIRECCION
201 VARIABLE DIRECCION
202 """
202 """
203 if os.path.isdir(var_dir):
203 if os.path.isdir(var_dir):
204 return True
204 return True
205 else:
205 else:
206 self.textEdit.append("Incorrect path:" + str(var_dir))
206 self.textEdit.append("Incorrect path:" + str(var_dir))
207 return False
207 return False
208
208
209 def loadDays(self):
209 def loadDays(self):
210 """
210 """
211 METODO PARA CARGAR LOS DIAS
211 METODO PARA CARGAR LOS DIAS
212 """
212 """
213 self.variableList=[]
213 self.variableList=[]
214 self.starDateCmbBox.clear()
214 self.starDateCmbBox.clear()
215 self.endDateCmbBox.clear()
215 self.endDateCmbBox.clear()
216
216
217 Dirlist = os.listdir(self.dataPath)
217 Dirlist = os.listdir(self.dataPath)
218 Dirlist.sort()
218 Dirlist.sort()
219
219
220 for a in range(0, len(Dirlist)):
220 for a in range(0, len(Dirlist)):
221 fname= Dirlist[a]
221 fname= Dirlist[a]
222 Doy=fname[5:8]
222 Doy=fname[5:8]
223 fname = fname[1:5]
223 fname = fname[1:5]
224 print fname
224 print fname
225 fecha=Doy2Date(int(fname),int(Doy))
225 fecha=Doy2Date(int(fname),int(Doy))
226 fechaList=fecha.change2date()
226 fechaList=fecha.change2date()
227 #print fechaList[0]
227 #print fechaList[0]
228 Dirlist[a]=fname+"/"+str(fechaList[0])+"/"+str(fechaList[1])
228 Dirlist[a]=fname+"/"+str(fechaList[0])+"/"+str(fechaList[1])
229 #+"-"+ fechaList[0]+"-"+fechaList[1]
229 #+"-"+ fechaList[0]+"-"+fechaList[1]
230
230
231 #---------------AQUI TIENE QUE SER MODIFICADO--------#
231 #---------------AQUI TIENE QUE SER MODIFICADO--------#
232
232
233 #Se cargan las listas para seleccionar StartDay y StopDay (QComboBox)
233 #Se cargan las listas para seleccionar StartDay y StopDay (QComboBox)
234 for i in range(0, (len(Dirlist))):
234 for i in range(0, (len(Dirlist))):
235 self.variableList.append(Dirlist[i])
235 self.variableList.append(Dirlist[i])
236
236
237 for i in self.variableList:
237 for i in self.variableList:
238 self.starDateCmbBox.addItem(i)
238 self.starDateCmbBox.addItem(i)
239 self.endDateCmbBox.addItem(i)
239 self.endDateCmbBox.addItem(i)
240 self.endDateCmbBox.setCurrentIndex(self.starDateCmbBox.count()-1)
240 self.endDateCmbBox.setCurrentIndex(self.starDateCmbBox.count()-1)
241
241
242 self.getsubList()
242 self.getsubList()
243 self.dataOkBtn.setEnabled(True)
243 self.dataOkBtn.setEnabled(True)
244
244
245 def getsubList(self):
245 def getsubList(self):
246 """
246 """
247 OBTIENE EL RANDO DE LAS FECHAS SELECCIONADAS
247 OBTIENE EL RANDO DE LAS FECHAS SELECCIONADAS
248 """
248 """
249 self.subList=[]
249 self.subList=[]
250 for i in self.variableList[self.starDateCmbBox.currentIndex():self.starDateCmbBox.currentIndex() + self.endDateCmbBox.currentIndex()+1]:
250 for i in self.variableList[self.starDateCmbBox.currentIndex():self.starDateCmbBox.currentIndex() + self.endDateCmbBox.currentIndex()+1]:
251 self.subList.append(i)
251 self.subList.append(i)
252
252
253 @pyqtSignature("")
253 @pyqtSignature("")
254 def on_dataPathBrowse_clicked(self):
254 def on_dataPathBrowse_clicked(self):
255 """
255 """
256 OBTENCION DE LA RUTA DE DATOS
256 OBTENCION DE LA RUTA DE DATOS
257 """
257 """
258 self.dataPath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
258 self.dataPath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
259 self.dataPathTxt.setText(self.dataPath)
259 self.dataPathTxt.setText(self.dataPath)
260 self.statusDpath=self.existDir(self.dataPath)
260 self.statusDpath=self.existDir(self.dataPath)
261 self.loadDays()
261 self.loadDays()
262
262
263 @pyqtSignature("int")
263 @pyqtSignature("int")
264 def on_starDateCmbBox_activated(self, index):
264 def on_starDateCmbBox_activated(self, index):
265 """
265 """
266 SELECCION DEL RANGO DE FECHAS -STAR DATE
266 SELECCION DEL RANGO DE FECHAS -STAR DATE
267 """
267 """
268 var_StopDay_index=self.endDateCmbBox.count() - self.endDateCmbBox.currentIndex()
268 var_StopDay_index=self.endDateCmbBox.count() - self.endDateCmbBox.currentIndex()
269 self.endDateCmbBox.clear()
269 self.endDateCmbBox.clear()
270 for i in self.variableList[index:]:
270 for i in self.variableList[index:]:
271 self.endDateCmbBox.addItem(i)
271 self.endDateCmbBox.addItem(i)
272 self.endDateCmbBox.setCurrentIndex(self.endDateCmbBox.count() - var_StopDay_index)
272 self.endDateCmbBox.setCurrentIndex(self.endDateCmbBox.count() - var_StopDay_index)
273 self.getsubList()
273 self.getsubList()
274
274
275 @pyqtSignature("int")
275 @pyqtSignature("int")
276 def on_endDateCmbBox_activated(self, index):
276 def on_endDateCmbBox_activated(self, index):
277 """
277 """
278 SELECCION DEL RANGO DE FECHAS-END DATE
278 SELECCION DEL RANGO DE FECHAS-END DATE
279 """
279 """
280 var_StartDay_index=self.starDateCmbBox.currentIndex()
280 var_StartDay_index=self.starDateCmbBox.currentIndex()
281 var_end_index = self.endDateCmbBox.count() - index
281 var_end_index = self.endDateCmbBox.count() - index
282 self.starDateCmbBox.clear()
282 self.starDateCmbBox.clear()
283 for i in self.variableList[:len(self.variableList) - var_end_index + 1]:
283 for i in self.variableList[:len(self.variableList) - var_end_index + 1]:
284 self.starDateCmbBox.addItem(i)
284 self.starDateCmbBox.addItem(i)
285 self.starDateCmbBox.setCurrentIndex(var_StartDay_index)
285 self.starDateCmbBox.setCurrentIndex(var_StartDay_index)
286 self.getsubList() #Se carga var_sublist[] con el rango de las fechas seleccionadas
286 self.getsubList() #Se carga var_sublist[] con el rango de las fechas seleccionadas
287
287
288 @pyqtSignature("int")
288 @pyqtSignature("int")
289 def on_readModeCmBox_activated(self, p0):
289 def on_readModeCmBox_activated(self, p0):
290 """
290 """
291 Slot documentation goes here.
291 Slot documentation goes here.
292 """
292 """
293 if p0==0:
293 if p0==0:
294 self.online=0
294 self.online=0
295 elif p0==1:
295 elif p0==1:
296 self.online=1
296 self.online=1
297
297
298 @pyqtSignature("")
298 @pyqtSignature("")
299 def on_dataOkBtn_clicked(self):
299 def on_dataOkBtn_clicked(self):
300 """
300 """
301 Slot documentation goes here.
301 Slot documentation goes here.
302 """
302 """
303 print "En este nivel se pasa el tipo de dato con el que se trabaja,path,startDate,endDate,startTime,endTime,online"
303 print "En este nivel se pasa el tipo de dato con el que se trabaja,path,startDate,endDate,startTime,endTime,online"
304
304
305 projectObj=self.proObjList[int(self.proConfCmbBox.currentIndex())]
305 projectObj=self.proObjList[int(self.proConfCmbBox.currentIndex())]
306 datatype=str(self.dataTypeCmbBox.currentText())
306 datatype=str(self.dataTypeCmbBox.currentText())
307 path=str(self.dataPathTxt.text())
307 path=str(self.dataPathTxt.text())
308 online=int(self.online)
308 online=int(self.online)
309 starDate=str(self.starDateCmbBox.currentText())
309 starDate=str(self.starDateCmbBox.currentText())
310 endDate=str(self.endDateCmbBox.currentText())
310 endDate=str(self.endDateCmbBox.currentText())
311
311
312
312
313 self.readUnitConfObj = projectObj.addReadUnit(datatype=datatype,
313 self.readUnitConfObj = projectObj.addReadUnit(datatype=datatype,
314 path=path,
314 path=path,
315 startDate=starDate,
315 startDate=starDate,
316 endDate=endDate,
316 endDate=endDate,
317 startTime='06:10:00',
317 startTime='06:10:00',
318 endTime='23:59:59',
318 endTime='23:59:59',
319 online=online)
319 online=online)
320
320
321 self.readUnitConfObjList.append(self.readUnitConfObj)
321 self.readUnitConfObjList.append(self.readUnitConfObj)
322
322
323 print "self.readUnitConfObj.getId",self.readUnitConfObj.getId(),datatype,path,starDate,endDate,online
323 print "self.readUnitConfObj.getId",self.readUnitConfObj.getId(),datatype,path,starDate,endDate,online
324
324
325
325
326 self.model_2=treeModel()
326 self.model_2=treeModel()
327
327
328 self.model_2.setParams(name=projectObj.name+str(projectObj.id),
328 self.model_2.setParams(name=projectObj.name+str(projectObj.id),
329 directorio=path,
329 directorio=path,
330 workspace="C:\\WorkspaceGUI",
330 workspace="C:\\WorkspaceGUI",
331 remode=str(self.readModeCmBox.currentText()),
331 remode=str(self.readModeCmBox.currentText()),
332 dataformat=datatype,
332 dataformat=datatype,
333 date=str(starDate)+"-"+str(endDate),
333 date=str(starDate)+"-"+str(endDate),
334 initTime='06:10:00',
334 initTime='06:10:00',
335 endTime='23:59:59',
335 endTime='23:59:59',
336 timezone="Local" ,
336 timezone="Local" ,
337 Summary="test de prueba")
337 Summary="test de prueba")
338 self.model_2.arbol()
338 self.model_2.arbol()
339 self.treeView_2.setModel(self.model_2)
339 self.treeView_2.setModel(self.model_2)
340 self.treeView_2.expandAll()
340 self.treeView_2.expandAll()
341
341
342
342
343 @pyqtSignature("")
343 @pyqtSignature("")
344 def on_addUnitProces_clicked(self):
344 def on_addUnitProces_clicked(self):
345 """
345 """
346 Slot documentation goes here.
346 Slot documentation goes here.
347 """
347 """
348 # print "En este nivel se adiciona una rama de procesamiento, y se le concatena con el id"
348 # print "En este nivel se adiciona una rama de procesamiento, y se le concatena con el id"
349 # self.procUnitConfObj0 = self.projectObj.addProcUnit(datatype='Voltage', inputId=self.readUnitConfObj.getId())
349 # self.procUnitConfObj0 = self.projectObj.addProcUnit(datatype='Voltage', inputId=self.readUnitConfObj.getId())
350 self.showUp()
350 self.showUp()
351
351
352 def showUp(self):
352 def showUp(self):
353
353
354 self.configUP=UnitProcess(self)
354 self.configUP=UnitProcess(self)
355 for i in self.proObjList:
355 for i in self.proObjList:
356 self.configUP.getfromWindowList.append(i)
356 self.configUP.getfromWindowList.append(i)
357 #print i
357 #print i
358 for i in self.upObjList:
358 for i in self.upObjList:
359 self.configUP.getfromWindowList.append(i)
359 self.configUP.getfromWindowList.append(i)
360 self.configUP.loadTotalList()
360 self.configUP.loadTotalList()
361 self.configUP.show()
361 self.configUP.show()
362 self.configUP.unitPsavebut.clicked.connect(self.reciveUPparameters)
362 self.configUP.unitPsavebut.clicked.connect(self.reciveUPparameters)
363 self.configUP.closed.connect(self.createUP)
363 self.configUP.closed.connect(self.createUP)
364
364
365 def reciveUPparameters(self):
365 def reciveUPparameters(self):
366
366
367 self.uporProObjRecover,self.upType=self.configUP.almacena()
367 self.uporProObjRecover,self.upType=self.configUP.almacena()
368
368
369
369
370 def createUP(self):
370 def createUP(self):
371 print "En este nivel se adiciona una rama de procesamiento, y se le concatena con el id"
371 print "En este nivel se adiciona una rama de procesamiento, y se le concatena con el id"
372 projectObj=self.proObjList[int(self.proConfCmbBox.currentIndex())]
372 projectObj=self.proObjList[int(self.proConfCmbBox.currentIndex())]
373
373
374 datatype=str(self.upType)
374 datatype=str(self.upType)
375 uporprojectObj=self.uporProObjRecover
375 uporprojectObj=self.uporProObjRecover
376 #+++++++++++LET FLY+++++++++++#
376 #+++++++++++LET FLY+++++++++++#
377 if uporprojectObj.getElementName()=='ProcUnit':
377 if uporprojectObj.getElementName()=='ProcUnit':
378 inputId=uporprojectObj.getId()
378 inputId=uporprojectObj.getId()
379 elif uporprojectObj.getElementName()=='Project':
379 elif uporprojectObj.getElementName()=='Project':
380 inputId=self.readUnitConfObjList[uporprojectObj.id-1].getId()
380 inputId=self.readUnitConfObjList[uporprojectObj.id-1].getId()
381
381
382
382
383 self.procUnitConfObj1 = projectObj.addProcUnit(datatype=datatype, inputId=inputId)
383 self.procUnitConfObj1 = projectObj.addProcUnit(datatype=datatype, inputId=inputId)
384 self.upObjList.append(self.procUnitConfObj1)
384 self.upObjList.append(self.procUnitConfObj1)
385 print inputId
385 print inputId
386 print self.procUnitConfObj1.getId()
386 print self.procUnitConfObj1.getId()
387 self.parentItem=uporprojectObj.arbol
387 self.parentItem=uporprojectObj.arbol
388 self.numbertree=int(self.procUnitConfObj1.getId())-1
388 self.numbertree=int(self.procUnitConfObj1.getId())-1
389 self.procUnitConfObj1.arbol=QtGui.QStandardItem(QtCore.QString(datatype +"%1 ").arg(self.numbertree))
389 self.procUnitConfObj1.arbol=QtGui.QStandardItem(QtCore.QString(datatype +"%1 ").arg(self.numbertree))
390 self.parentItem.appendRow(self.procUnitConfObj1.arbol)
390 self.parentItem.appendRow(self.procUnitConfObj1.arbol)
391 self.parentItem=self.procUnitConfObj1.arbol
391 self.parentItem=self.procUnitConfObj1.arbol
392 self.loadUp()
392 self.loadUp()
393 self.treeView.expandAll()
393 self.treeView.expandAll()
394
394
395 def loadUp(self):
395 def loadUp(self):
396 self.addOpUpselec.clear()
396 self.addOpUpselec.clear()
397 self.addOpSpecUpselec.clear()
397 self.addOpSpecUpselec.clear()
398 for i in self.upObjList:
398 for i in self.upObjList:
399 if i.datatype=='Voltage':
399 if i.datatype=='Voltage':
400 self.upObjVolList.append(i)
400 self.upObjVolList.append(i)
401 name=i.getElementName()
401 name=i.getElementName()
402 id=int(i.id)-1
402 id=int(i.id)-1
403 self.addOpUpselec.addItem(name+str(id))
403 self.addOpUpselec.addItem(name+str(id))
404 if i.datatype=='Spectra':
404 if i.datatype=='Spectra':
405 self.upobjSpecList.append(i)
405 self.upobjSpecList.append(i)
406 name=i.getElementName()
406 name=i.getElementName()
407 id=int(i.id)-1
407 id=int(i.id)-1
408 self.addOpSpecUpselec.addItem(name+str(id))
408 self.addOpSpecUpselec.addItem(name+str(id))
409
409
410 self.resetopVolt()
410 self.resetopVolt()
411 self.resetopSpec()
411 self.resetopSpec()
412
412
413
413
414 @pyqtSignature("int")
414 @pyqtSignature("int")
415 def on_selecChannelopVolCEB_stateChanged(self, p0):
415 def on_selecChannelopVolCEB_stateChanged(self, p0):
416 """
416 """
417 Slot documentation goes here.
417 Slot documentation goes here.
418 """
418 """
419 if p0==2:
419 if p0==2:
420 self.numberChannelopVol.setEnabled(True)
420 self.numberChannelopVol.setEnabled(True)
421 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
421 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
422 opObj10=upProcessSelect.addOperation(name='selectChannels')
422 opObj10=upProcessSelect.addOperation(name='selectChannels')
423 print opObj10.id
423 print opObj10.id
424 self.operObjList.append(opObj10)
424 self.operObjList.append(opObj10)
425 print " Ingresa seleccion de Canales"
425 print " Ingresa seleccion de Canales"
426 if p0==0:
426 if p0==0:
427 print " deshabilitado"
427 print " deshabilitado"
428
428
429 @pyqtSignature("int")
429 @pyqtSignature("int")
430 def on_selecHeighopVolCEB_stateChanged(self, p0):
430 def on_selecHeighopVolCEB_stateChanged(self, p0):
431 """
431 """
432 Slot documentation goes here.
432 Slot documentation goes here.
433 """
433 """
434 if p0==2:
434 if p0==2:
435 self.lineHeighProfileTxtopVol.setEnabled(True)
435 self.lineHeighProfileTxtopVol.setEnabled(True)
436 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
436 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
437 opObj10=upProcessSelect.addOperation(name='selectHeights')
437 opObj10=upProcessSelect.addOperation(name='selectHeights')
438 print opObj10.id
438 print opObj10.id
439 self.operObjList.append(opObj10)
439 self.operObjList.append(opObj10)
440 print " Select Type of Profile"
440 print " Select Type of Profile"
441 if p0==0:
441 if p0==0:
442 print " deshabilitado"
442 print " deshabilitado"
443
443
444
444
445 @pyqtSignature("int")
445 @pyqtSignature("int")
446 def on_profileSelecopVolCEB_stateChanged(self, p0):
446 def on_profileSelecopVolCEB_stateChanged(self, p0):
447 """
447 """
448 Slot documentation goes here.
448 Slot documentation goes here.
449 """
449 """
450 if p0==2:
450 if p0==2:
451 self.lineProfileSelecopVolCEB.setEnabled(True)
451 self.lineProfileSelecopVolCEB.setEnabled(True)
452 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
452 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
453 opObj10=upProcessSelect.addOperation(name='ProfileSelector', optype='other')
453 opObj10=upProcessSelect.addOperation(name='ProfileSelector', optype='other')
454 print opObj10.id
454 print opObj10.id
455 self.operObjList.append(opObj10)
455 self.operObjList.append(opObj10)
456 print " Select Type of Profile"
456 print " Select Type of Profile"
457 if p0==0:
457 if p0==0:
458 print " deshabilitado"
458 print " deshabilitado"
459
459
460
460
461 @pyqtSignature("int")
461 @pyqtSignature("int")
462 def on_coherentIntegrationCEB_stateChanged(self, p0):
462 def on_coherentIntegrationCEB_stateChanged(self, p0):
463 """
463 """
464 Slot documentation goes here.
464 Slot documentation goes here.
465 """
465 """
466 if p0==2:
466 if p0==2:
467 self.numberIntegration.setEnabled(True)
467 self.numberIntegration.setEnabled(True)
468 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
468 upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())]
469 opObj10=upProcessSelect.addOperation(name='CohInt', optype='other')
469 opObj10=upProcessSelect.addOperation(name='CohInt', optype='other')
470 print opObj10.id
470 print opObj10.id
471 self.operObjList.append(opObj10)
471 self.operObjList.append(opObj10)
472 print "Choose number of Cohint"
472 print "Choose number of Cohint"
473 if p0==0:
473 if p0==0:
474 print " deshabilitado"
474 print " deshabilitado"
475 self.numberChannelopVol.setEnabled(False)
475 self.numberChannelopVol.setEnabled(False)
476
476
477 def resetopVolt(self):
477 def resetopVolt(self):
478 self.selecChannelopVolCEB.setChecked(False)
478 self.selecChannelopVolCEB.setChecked(False)
479 self.selecHeighopVolCEB.setChecked(False)
479 self.selecHeighopVolCEB.setChecked(False)
480 self.coherentIntegrationCEB.setChecked(False)
480 self.coherentIntegrationCEB.setChecked(False)
481 self.profileSelecopVolCEB.setChecked(False)
481 self.profileSelecopVolCEB.setChecked(False)
482 #self.selecChannelopVolCEB.setEnabled(False)
482 #self.selecChannelopVolCEB.setEnabled(False)
483 self.lineHeighProfileTxtopVol.clear()
483 self.lineHeighProfileTxtopVol.clear()
484 self.lineProfileSelecopVolCEB.clear()
484 self.lineProfileSelecopVolCEB.clear()
485 self.numberChannelopVol.clear()
485 self.numberChannelopVol.clear()
486 self.numberIntegration.clear()
486 self.numberIntegration.clear()
487
487
488
488
489 @pyqtSignature("")
489 @pyqtSignature("")
490 def on_dataopVolOkBtn_clicked(self):
490 def on_dataopVolOkBtn_clicked(self):
491 """
491 """
492 Slot documentation goes here.
492 Slot documentation goes here.
493 """
493 """
494 if self.selecChannelopVolCEB.isChecked():
494 if self.selecChannelopVolCEB.isChecked():
495 for i in self.operObjList:
495 for i in self.operObjList:
496 if i.name=='selectChannels':
496 if i.name=='selectChannels':
497 value=self.numberChannelopVol.text()
497 value=self.numberChannelopVol.text()
498 i.addParameter(name='channelList', value=value, format='intlist')
498 i.addParameter(name='channelList', value=value, format='intlist')
499
499
500
500
501 print "channel"
501 print "channel"
502
502
503 if self.selecHeighopVolCEB.isChecked():
503 if self.selecHeighopVolCEB.isChecked():
504 for i in self.operObjList:
504 for i in self.operObjList:
505 if i.name=='selectHeights' :
505 if i.name=='selectHeights' :
506 value=self.lineHeighProfileTxtopVol.text()
506 value=self.lineHeighProfileTxtopVol.text()
507 valueList=value.split(',')
507 valueList=value.split(',')
508 i.addParameter(name='minHei', value=valueList[0], format='float')
508 i.addParameter(name='minHei', value=valueList[0], format='float')
509 i.addParameter(name='maxHei', value=valueList[1], format='float')
509 i.addParameter(name='maxHei', value=valueList[1], format='float')
510
510
511 print "height"
511 print "height"
512
512
513
513
514 if self.selecHeighopVolCEB.isChecked():
514 if self.selecHeighopVolCEB.isChecked():
515 for i in self.operObjList:
515 for i in self.operObjList:
516 if i.name=='ProfileSelector' :
516 if i.name=='ProfileSelector' :
517 value=self.lineProfileSelecopVolCEB.text()
517 value=self.lineProfileSelecopVolCEB.text()
518 i.addParameter(name='ProfileSelector', value=value, format='intlist')
518 i.addParameter(name='ProfileSelector', value=value, format='intlist')
519
519
520
520
521
521
522 if self.coherentIntegrationCEB.isChecked():
522 if self.coherentIntegrationCEB.isChecked():
523 for i in self.operObjList:
523 for i in self.operObjList:
524 if i.name=='CohInt':
524 if i.name=='CohInt':
525 value=self.numberIntegration.text()
525 value=self.numberIntegration.text()
526 i.addParameter(name='n', value=value, format='int')
526 i.addParameter(name='n', value=value, format='int')
527
527
528
528
529 @pyqtSignature("int")
529 @pyqtSignature("int")
530 def on_nFFTPointOpSpecCEB_stateChanged(self, p0):
530 def on_nFFTPointOpSpecCEB_stateChanged(self, p0):
531 """
531 """
532 Slot documentation goes here.
532 Slot documentation goes here.
533 """
533 """
534 if p0==2:
534 if p0==2:
535 self.valuenFFTPointOpSpec.setEnabled(True)
535 self.valuenFFTPointOpSpec.setEnabled(True)
536 print " nFFTPoint"
536 print " nFFTPoint"
537 if p0==0:
537 if p0==0:
538 print " deshabilitado"
538 print " deshabilitado"
539
539
540
540
541 def resetopSpec(self):
541 def resetopSpec(self):
542 self.nFFTPointOpSpecCEB.setChecked(False)
542 self.nFFTPointOpSpecCEB.setChecked(False)
543
543
544 self.valuenFFTPointOpSpec.clear()
544 self.valuenFFTPointOpSpec.clear()
545
545
546
546
547 @pyqtSignature("")
547 @pyqtSignature("")
548 def on_dataopSpecOkBtn_clicked(self):
548 def on_dataopSpecOkBtn_clicked(self):
549 """
549 """
550 Slot documentation goes here.
550 Slot documentation goes here.
551 """
551 """
552 print "Añadimos operaciones Spectra,nchannels,value,format"
552 print "Añadimos operaciones Spectra,nchannels,value,format"
553 if self.nFFTPointOpSpecCEB.isChecked():
553 if self.nFFTPointOpSpecCEB.isChecked():
554 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
554 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
555 value=self.valuenFFTPointOpSpec.text()
555 value=self.valuenFFTPointOpSpec.text()
556 upProcessSelect.addParameter(name='nFFTPoints',value=value,format='int')
556 upProcessSelect.addParameter(name='nFFTPoints',value=value,format='int')
557
557
558 @pyqtSignature("int")
558 @pyqtSignature("int")
559 def on_SpectraPlotGraphCEB_stateChanged(self, p0):
559 def on_SpectraPlotGraphCEB_stateChanged(self, p0):
560 """
560 """
561 Slot documentation goes here.
561 Slot documentation goes here.
562 """
562 """
563 if p0==2:
563 if p0==2:
564 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
564 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
565 opObj10=upProcessSelect.addOperation(name='SpectraPlot',optype='other')
565 opObj10=upProcessSelect.addOperation(name='SpectraPlot',optype='other')
566 print opObj10.id
566 print opObj10.id
567 self.operObjList.append(opObj10)
567 self.operObjList.append(opObj10)
568
568
569 if p0==0:
569 if p0==0:
570 print " deshabilitado"
570 print " deshabilitado"
571
571
572 @pyqtSignature("int")
572 @pyqtSignature("int")
573 def on_CrossSpectraPlotGraphceb_stateChanged(self, p0):
573 def on_CrossSpectraPlotGraphceb_stateChanged(self, p0):
574 """
574 """
575 Slot documentation goes here.
575 Slot documentation goes here.
576 """
576 """
577 if p0==2:
577 if p0==2:
578 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
578 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
579 opObj10=upProcessSelect.addOperation(name='CrossSpectraPlot',optype='other')
579 opObj10=upProcessSelect.addOperation(name='CrossSpectraPlot',optype='other')
580 print opObj10.id
580 print opObj10.id
581 self.operObjList.append(opObj10)
581 self.operObjList.append(opObj10)
582 if p0==0:
582 if p0==0:
583 print " deshabilitado"
583 print " deshabilitado"
584
584
585 @pyqtSignature("int")
585 @pyqtSignature("int")
586 def on_RTIPlotGraphCEB_stateChanged(self, p0):
586 def on_RTIPlotGraphCEB_stateChanged(self, p0):
587 """
587 """
588 Slot documentation goes here.
588 Slot documentation goes here.
589 """
589 """
590 if p0==2:
590 if p0==2:
591 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
591 upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())]
592 opObj10=upProcessSelect.addOperation(name='RTIPlot',optype='other')
592 opObj10=upProcessSelect.addOperation(name='RTIPlot',optype='other')
593 print opObj10.id
593 print opObj10.id
594 self.operObjList.append(opObj10)
594 self.operObjList.append(opObj10)
595 if p0==0:
595 if p0==0:
596 print " deshabilitado"
596 print " deshabilitado"
597
597
598
598
599 def resetgraphSpec(self):
599 def resetgraphSpec(self):
600 self.SpectraPlotGraphCEB.setChecked(False)
600 self.SpectraPlotGraphCEB.setChecked(False)
601 self.CrossSpectraPlotGraphceb.setChecked(False)
601 self.CrossSpectraPlotGraphceb.setChecked(False)
602 self.RTIPlotGraphCEB.setChecked(False)
602 self.RTIPlotGraphCEB.setChecked(False)
603
603
604 @pyqtSignature("")
604 @pyqtSignature("")
605 def on_dataGraphSpecOkBtn_clicked(self):
605 def on_dataGraphSpecOkBtn_clicked(self):
606 """
606 """
607 Slot documentation goes here.
607 Slot documentation goes here.
608 """
608 """
609 print "Graficar Spec op"
609 print "Graficar Spec op"
610 if self.SpectraPlotGraphCEB.isChecked():
610 if self.SpectraPlotGraphCEB.isChecked():
611 for i in self.operObjList:
611 for i in self.operObjList:
612 if i.name=='SpectraPlot':
612 if i.name=='SpectraPlot':
613 i.addParameter(name='idfigure', value='1', format='int')
613 i.addParameter(name='idfigure', value='1', format='int')
614 i.addParameter(name='wintitle', value='SpectraPlot0', format='str')
614 i.addParameter(name='wintitle', value='SpectraPlot0', format='str')
615 i.addParameter(name='zmin', value='40', format='int')
615 i.addParameter(name='zmin', value='40', format='int')
616 i.addParameter(name='zmax', value='90', format='int')
616 i.addParameter(name='zmax', value='90', format='int')
617 i.addParameter(name='showprofile', value='1', format='int')
617 i.addParameter(name='showprofile', value='1', format='int')
618
618
619 if self.CrossSpectraPlotGraphceb.isChecked():
619 if self.CrossSpectraPlotGraphceb.isChecked():
620 for i in self.operObjList:
620 for i in self.operObjList:
621 if i.name=='CrossSpectraPlot' :
621 if i.name=='CrossSpectraPlot' :
622 i.addParameter(name='idfigure', value='2', format='int')
622 i.addParameter(name='idfigure', value='2', format='int')
623 i.addParameter(name='wintitle', value='CrossSpectraPlot', format='str')
623 i.addParameter(name='wintitle', value='CrossSpectraPlot', format='str')
624 i.addParameter(name='zmin', value='40', format='int')
624 i.addParameter(name='zmin', value='40', format='int')
625 i.addParameter(name='zmax', value='90', format='int')
625 i.addParameter(name='zmax', value='90', format='int')
626
626
627 if self.RTIPlotGraphCEB.isChecked():
627 if self.RTIPlotGraphCEB.isChecked():
628 for i in self.operObjList:
628 for i in self.operObjList:
629 if i.name=='RTIPlot':
629 if i.name=='RTIPlot':
630 i.addParameter(name='n', value='2', format='int')
630 i.addParameter(name='n', value='2', format='int')
631 i.addParameter(name='overlapping', value='1', format='int')
631 i.addParameter(name='overlapping', value='1', format='int')
632
632
633 @pyqtSignature("")
633 @pyqtSignature("")
634 def on_actionguardarObj_triggered(self):
634 def on_actionguardarObj_triggered(self):
635 """
635 """
636 GUARDAR EL ARCHIVO DE CONFIGURACION XML
636 GUARDAR EL ARCHIVO DE CONFIGURACION XML
637 """
637 """
638 if self.idp==1:
638 if self.idp==1:
639 self.valuep=1
639 self.valuep=1
640
640
641 print "Escribiendo el archivo XML"
641 print "Escribiendo el archivo XML"
642 filename="C:\\WorkspaceGUI\\CONFIG"+str(self.valuep)+".xml"
642 filename="C:\\WorkspaceGUI\\CONFIG"+str(self.valuep)+".xml"
643 self.projectObj=self.proObjList[int(self.valuep)-1]
643 self.projectObj=self.proObjList[int(self.valuep)-1]
644 self.projectObj.writeXml(filename)
644 self.projectObj.writeXml(filename)
645
645
646
646
647 class BasicWindow(MainWindow):
647 class BasicWindow(MainWindow):
648
648
649 def __init__(self):
649 def __init__(self):
650 pass
650 pass
651
651
652 class AdvancedWindow(MainWindow):
652 class AdvancedWindow(MainWindow):
653
653
654 def __init__(self):
654 def __init__(self):
655 pass
655 pass
656
656
657
657
658
658
659 class ProjectWindow(QMainWindow, Ui_window):
659 class ProjectWindow(QMainWindow, Ui_window):
660 """
660 """
661 Class documentation goes here.
661 Class documentation goes here.
662 """
662 """
663 closed = pyqtSignal()
663 closed = pyqtSignal()
664
664
665 create = False
665 create = False
666 name = None
666 name = None
667 description = None
667 description = None
668
668
669
669
670
670
671 def __init__(self, parent = None):
671 def __init__(self, parent = None):
672 """
672 """
673 Constructor
673 Constructor
674 """
674 """
675 QMainWindow.__init__(self, parent)
675 QMainWindow.__init__(self, parent)
676 self.setupUi(self)
676 self.setupUi(self)
677 self.name=None
677 self.name=None
678
678
679 self.proyectNameLine.setText('My_name_is...')
679 self.proyectNameLine.setText('My_name_is...')
680 self.descriptionTextEdit.setText('Write a description...')
680 self.descriptionTextEdit.setText('Write a description...')
681
681
682
682
683 @pyqtSignature("")
683 @pyqtSignature("")
684 def on_cancelButton_clicked(self):
684 def on_cancelButton_clicked(self):
685 """
685 """
686 Slot documentation goes here.
686 Slot documentation goes here.
687 """
687 """
688 # TODO: not implemented yet
688 # TODO: not implemented yet
689 #raise NotImplementedError
689 #raise NotImplementedError
690 self.create = False
690 self.create = False
691 self.close()
691 self.close()
692
692
693 @pyqtSignature("")
693 @pyqtSignature("")
694 def on_okButton_clicked(self):
694 def on_okButton_clicked(self):
695 """
695 """
696 Slot documentation goes here.
696 Slot documentation goes here.
697 """
697 """
698 #self.almacena()
698 #self.almacena()
699 self.create = True
699 self.create = True
700 self.name = str(self.proyectNameLine.text())
700 self.name = str(self.proyectNameLine.text())
701 self.description = str(self.descriptionTextEdit.toPlainText())
701 self.description = str(self.descriptionTextEdit.toPlainText())
702
702
703 self.close()
703 self.close()
704
704
705 # @pyqtSignature("")
705 # @pyqtSignature("")
706 # def on_saveButton_clicked(self):
706 # def on_saveButton_clicked(self):
707 # """
707 # """
708 # Slot documentation goes here.
708 # Slot documentation goes here.
709 # """
709 # """
710 # self.almacena()
710 # self.almacena()
711 ## self.close()
711 ## self.close()
712 #
712 #
713 # def almacena(self):
713 # def almacena(self):
714 # #print str(self.proyectNameLine.text())
714 # #print str(self.proyectNameLine.text())
715 # self.nameproject=str(self.proyectNameLine.text())
715 # self.nameproject=str(self.proyectNameLine.text())
716 # self.description=str(self.descriptionTextEdit.toPlainText())
716 # self.description=str(self.descriptionTextEdit.toPlainText())
717 # return self.nameproject,self.description
717 # return self.nameproject,self.description
718 #
718 #
719 def closeEvent(self, event):
719 def closeEvent(self, event):
720 self.closed.emit()
720 self.closed.emit()
721 event.accept()
721 event.accept()
722
722
723
723
724 class UnitProcess(QMainWindow, Ui_UnitProcess):
724 class UnitProcess(QMainWindow, Ui_UnitProcess):
725 """
725 """
726 Class documentation goes here.
726 Class documentation goes here.
727 """
727 """
728 closed=pyqtSignal()
728 closed=pyqtSignal()
729 def __init__(self, parent = None):
729 def __init__(self, parent = None):
730 """
730 """
731 Constructor
731 Constructor
732 """
732 """
733 QMainWindow.__init__(self, parent)
733 QMainWindow.__init__(self, parent)
734 self.setupUi(self)
734 self.setupUi(self)
735 self.getFromWindow=None
735 self.getFromWindow=None
736 self.getfromWindowList=[]
736 self.getfromWindowList=[]
737
737
738 self.listUP=None
738 self.listUP=None
739
739
740 def loadTotalList(self):
740 def loadTotalList(self):
741 self.comboInputBox.clear()
741 self.comboInputBox.clear()
742 for i in self.getfromWindowList:
742 for i in self.getfromWindowList:
743 name=i.getElementName()
743 name=i.getElementName()
744 id= i.id
744 id= i.id
745 if i.getElementName()=='ProcUnit':
745 if i.getElementName()=='ProcUnit':
746 id=int(i.id)-1
746 id=int(i.id)-1
747 self.comboInputBox.addItem(str(name)+str(id))
747 self.comboInputBox.addItem(str(name)+str(id))
748
748
749 @pyqtSignature("QString")
749 @pyqtSignature("QString")
750 def on_comboInputBox_activated(self, p0):
750 def on_comboInputBox_activated(self, p0):
751 """
751 """
752 Slot documentation goes here.
752 Slot documentation goes here.
753 """
753 """
754
754
755 # TODO: not implemented yet
755 # TODO: not implemented yet
756 #raise NotImplementedError
756 #raise NotImplementedError
757
757
758 @pyqtSignature("QString")
758 @pyqtSignature("QString")
759 def on_comboTypeBox_activated(self, p0):
759 def on_comboTypeBox_activated(self, p0):
760 """
760 """
761 Slot documentation goes here.
761 Slot documentation goes here.
762 """
762 """
763 # TODO: not implemented yet
763 # TODO: not implemented yet
764 #raise NotImplementedError
764 #raise NotImplementedError
765
765
766 @pyqtSignature("")
766 @pyqtSignature("")
767 def on_unitPokbut_clicked(self):
767 def on_unitPokbut_clicked(self):
768 """
768 """
769 Slot documentation goes here.
769 Slot documentation goes here.
770 """
770 """
771 self.close()
771 self.close()
772
772
773 @pyqtSignature("")
773 @pyqtSignature("")
774 def on_unitPsavebut_clicked(self):
774 def on_unitPsavebut_clicked(self):
775 """
775 """
776 Slot documentation goes here.
776 Slot documentation goes here.
777 """
777 """
778
778
779 print "alex"
779 print "alex"
780 self.almacena()
780 self.almacena()
781
781
782 @pyqtSignature("")
782 @pyqtSignature("")
783 def on_unitPcancelbut_clicked(self):
783 def on_unitPcancelbut_clicked(self):
784 """
784 """
785 Slot documentation goes here.
785 Slot documentation goes here.
786 """
786 """
787 # TODO: not implemented yet
787 # TODO: not implemented yet
788 #raise NotImplementedError
788 #raise NotImplementedError
789 self.hide()
789 self.hide()
790
790
791 def almacena(self):
791 def almacena(self):
792 self.getFromWindow=self.getfromWindowList[int(self.comboInputBox.currentIndex())]
792 self.getFromWindow=self.getfromWindowList[int(self.comboInputBox.currentIndex())]
793 #self.nameofUP= str(self.nameUptxt.text())
793 #self.nameofUP= str(self.nameUptxt.text())
794 self.typeofUP= str(self.comboTypeBox.currentText())
794 self.typeofUP= str(self.comboTypeBox.currentText())
795 return self.getFromWindow,self.typeofUP
795 return self.getFromWindow,self.typeofUP
796
796
797 def closeEvent(self, event):
797 def closeEvent(self, event):
798 self.closed.emit()
798 self.closed.emit()
799 event.accept()
799 event.accept()
800
800
801
801
802
802
803
803
804
804
805
805
806
806
807 No newline at end of file
807
@@ -1,1074 +1,1060
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Form implementation generated from reading ui file 'C:\Users\alex\ericworkspace\UIDOS\MainWindow_NOVTRES.ui'
3 # Form implementation generated from reading ui file 'C:\Users\alex\ericworkspace\UIDOS\MainWindow_NEWVER.ui'
4 #
4 #
5 # Created: Wed Dec 12 10:10:03 2012
5 # Created: Wed Dec 12 17:45:57 2012
6 # by: PyQt4 UI code generator 4.9.4
6 # by: PyQt4 UI code generator 4.9.4
7 #
7 #
8 # WARNING! All changes made in this file will be lost!
8 # WARNING! All changes made in this file will be lost!
9
9
10 from PyQt4 import QtCore, QtGui
10 from PyQt4 import QtCore, QtGui
11
11
12 try:
12 try:
13 _fromUtf8 = QtCore.QString.fromUtf8
13 _fromUtf8 = QtCore.QString.fromUtf8
14 except AttributeError:
14 except AttributeError:
15 _fromUtf8 = lambda s: s
15 _fromUtf8 = lambda s: s
16
16
17 class Ui_MainWindow(object):
17 class Ui_MainWindow(object):
18 def setupUi(self, MainWindow):
18 def setupUi(self, MainWindow):
19 MainWindow.setObjectName(_fromUtf8("MainWindow"))
19 MainWindow.setObjectName(_fromUtf8("MainWindow"))
20 MainWindow.resize(867, 567)
20 MainWindow.resize(866, 587)
21 self.centralWidget = QtGui.QWidget(MainWindow)
21 self.centralWidget = QtGui.QWidget(MainWindow)
22 self.centralWidget.setObjectName(_fromUtf8("centralWidget"))
22 self.centralWidget.setObjectName(_fromUtf8("centralWidget"))
23 self.frame_2 = QtGui.QFrame(self.centralWidget)
23 self.frame_2 = QtGui.QFrame(self.centralWidget)
24 self.frame_2.setGeometry(QtCore.QRect(580, 0, 281, 511))
24 self.frame_2.setGeometry(QtCore.QRect(580, 0, 281, 531))
25 self.frame_2.setFrameShape(QtGui.QFrame.StyledPanel)
25 self.frame_2.setFrameShape(QtGui.QFrame.StyledPanel)
26 self.frame_2.setFrameShadow(QtGui.QFrame.Plain)
26 self.frame_2.setFrameShadow(QtGui.QFrame.Plain)
27 self.frame_2.setObjectName(_fromUtf8("frame_2"))
27 self.frame_2.setObjectName(_fromUtf8("frame_2"))
28 self.frame_6 = QtGui.QFrame(self.frame_2)
28 self.frame_6 = QtGui.QFrame(self.frame_2)
29 self.frame_6.setGeometry(QtCore.QRect(10, 10, 261, 31))
29 self.frame_6.setGeometry(QtCore.QRect(10, 10, 261, 31))
30 self.frame_6.setFrameShape(QtGui.QFrame.StyledPanel)
30 self.frame_6.setFrameShape(QtGui.QFrame.StyledPanel)
31 self.frame_6.setFrameShadow(QtGui.QFrame.Plain)
31 self.frame_6.setFrameShadow(QtGui.QFrame.Plain)
32 self.frame_6.setObjectName(_fromUtf8("frame_6"))
32 self.frame_6.setObjectName(_fromUtf8("frame_6"))
33 self.label_46 = QtGui.QLabel(self.frame_6)
33 self.label_46 = QtGui.QLabel(self.frame_6)
34 self.label_46.setGeometry(QtCore.QRect(70, 0, 125, 21))
34 self.label_46.setGeometry(QtCore.QRect(70, 0, 125, 21))
35 font = QtGui.QFont()
35 font = QtGui.QFont()
36 font.setPointSize(11)
36 font.setPointSize(11)
37 self.label_46.setFont(font)
37 self.label_46.setFont(font)
38 self.label_46.setObjectName(_fromUtf8("label_46"))
38 self.label_46.setObjectName(_fromUtf8("label_46"))
39 self.treeView_2 = QtGui.QTreeView(self.frame_2)
39 self.treeView_2 = QtGui.QTreeView(self.frame_2)
40 self.treeView_2.setGeometry(QtCore.QRect(10, 50, 261, 451))
40 self.treeView_2.setGeometry(QtCore.QRect(10, 50, 261, 471))
41 self.treeView_2.setObjectName(_fromUtf8("treeView_2"))
41 self.treeView_2.setObjectName(_fromUtf8("treeView_2"))
42 self.frame = QtGui.QFrame(self.centralWidget)
42 self.frame = QtGui.QFrame(self.centralWidget)
43 self.frame.setGeometry(QtCore.QRect(0, 0, 251, 511))
43 self.frame.setGeometry(QtCore.QRect(0, 0, 251, 531))
44 self.frame.setFrameShape(QtGui.QFrame.StyledPanel)
44 self.frame.setFrameShape(QtGui.QFrame.StyledPanel)
45 self.frame.setFrameShadow(QtGui.QFrame.Plain)
45 self.frame.setFrameShadow(QtGui.QFrame.Plain)
46 self.frame.setObjectName(_fromUtf8("frame"))
46 self.frame.setObjectName(_fromUtf8("frame"))
47 self.frame_9 = QtGui.QFrame(self.frame)
47 self.frame_9 = QtGui.QFrame(self.frame)
48 self.frame_9.setGeometry(QtCore.QRect(10, 10, 231, 61))
48 self.frame_9.setGeometry(QtCore.QRect(10, 10, 231, 61))
49 self.frame_9.setFrameShape(QtGui.QFrame.StyledPanel)
49 self.frame_9.setFrameShape(QtGui.QFrame.StyledPanel)
50 self.frame_9.setFrameShadow(QtGui.QFrame.Plain)
50 self.frame_9.setFrameShadow(QtGui.QFrame.Plain)
51 self.frame_9.setObjectName(_fromUtf8("frame_9"))
51 self.frame_9.setObjectName(_fromUtf8("frame_9"))
52 self.label = QtGui.QLabel(self.frame_9)
52 self.label = QtGui.QLabel(self.frame_9)
53 self.label.setGeometry(QtCore.QRect(70, 0, 101, 31))
53 self.label.setGeometry(QtCore.QRect(70, 0, 101, 31))
54 font = QtGui.QFont()
54 font = QtGui.QFont()
55 font.setPointSize(11)
55 font.setPointSize(11)
56 self.label.setFont(font)
56 self.label.setFont(font)
57 self.label.setObjectName(_fromUtf8("label"))
57 self.label.setObjectName(_fromUtf8("label"))
58 self.addpBtn = QtGui.QPushButton(self.frame_9)
58 self.addprojectBtn = QtGui.QPushButton(self.frame_9)
59 self.addpBtn.setGeometry(QtCore.QRect(10, 30, 101, 23))
59 self.addprojectBtn.setGeometry(QtCore.QRect(10, 30, 101, 23))
60 self.addpBtn.setObjectName(_fromUtf8("addpBtn"))
60 self.addprojectBtn.setObjectName(_fromUtf8("addprojectBtn"))
61 self.addUnitProces = QtGui.QPushButton(self.frame_9)
61 self.addUnitProces = QtGui.QPushButton(self.frame_9)
62 self.addUnitProces.setGeometry(QtCore.QRect(120, 30, 101, 23))
62 self.addUnitProces.setGeometry(QtCore.QRect(120, 30, 101, 23))
63 self.addUnitProces.setObjectName(_fromUtf8("addUnitProces"))
63 self.addUnitProces.setObjectName(_fromUtf8("addUnitProces"))
64 self.treeView = QtGui.QTreeView(self.frame)
64 self.treeView = QtGui.QTreeView(self.frame)
65 self.treeView.setGeometry(QtCore.QRect(10, 80, 231, 421))
65 self.treeView.setGeometry(QtCore.QRect(10, 80, 231, 441))
66 self.treeView.setObjectName(_fromUtf8("treeView"))
66 self.treeView.setObjectName(_fromUtf8("treeView"))
67 self.frame_7 = QtGui.QFrame(self.centralWidget)
67 self.frame_7 = QtGui.QFrame(self.centralWidget)
68 self.frame_7.setGeometry(QtCore.QRect(250, 0, 331, 511))
68 self.frame_7.setGeometry(QtCore.QRect(250, 0, 331, 531))
69 self.frame_7.setFrameShape(QtGui.QFrame.StyledPanel)
69 self.frame_7.setFrameShape(QtGui.QFrame.StyledPanel)
70 self.frame_7.setFrameShadow(QtGui.QFrame.Plain)
70 self.frame_7.setFrameShadow(QtGui.QFrame.Plain)
71 self.frame_7.setObjectName(_fromUtf8("frame_7"))
71 self.frame_7.setObjectName(_fromUtf8("frame_7"))
72 self.tabWidget = QtGui.QTabWidget(self.frame_7)
72 self.tabWidgetProject = QtGui.QTabWidget(self.frame_7)
73 self.tabWidget.setGeometry(QtCore.QRect(10, 10, 311, 381))
73 self.tabWidgetProject.setEnabled(True)
74 self.tabWidgetProject.setGeometry(QtCore.QRect(10, 10, 311, 391))
74 font = QtGui.QFont()
75 font = QtGui.QFont()
75 font.setPointSize(10)
76 font.setPointSize(10)
76 self.tabWidget.setFont(font)
77 self.tabWidgetProject.setFont(font)
77 self.tabWidget.setObjectName(_fromUtf8("tabWidget"))
78 self.tabWidgetProject.setObjectName(_fromUtf8("tabWidgetProject"))
78 self.tab_5 = QtGui.QWidget()
79 self.tab_5 = QtGui.QWidget()
79 self.tab_5.setObjectName(_fromUtf8("tab_5"))
80 self.tab_5.setObjectName(_fromUtf8("tab_5"))
80 self.frame_5 = QtGui.QFrame(self.tab_5)
81 self.frame_5 = QtGui.QFrame(self.tab_5)
81 self.frame_5.setGeometry(QtCore.QRect(10, 120, 281, 31))
82 self.frame_5.setGeometry(QtCore.QRect(10, 130, 281, 31))
82 font = QtGui.QFont()
83 font = QtGui.QFont()
83 font.setPointSize(10)
84 font.setPointSize(10)
84 self.frame_5.setFont(font)
85 self.frame_5.setFont(font)
85 self.frame_5.setFrameShape(QtGui.QFrame.StyledPanel)
86 self.frame_5.setFrameShape(QtGui.QFrame.StyledPanel)
86 self.frame_5.setFrameShadow(QtGui.QFrame.Plain)
87 self.frame_5.setFrameShadow(QtGui.QFrame.Plain)
87 self.frame_5.setObjectName(_fromUtf8("frame_5"))
88 self.frame_5.setObjectName(_fromUtf8("frame_5"))
88 self.label_55 = QtGui.QLabel(self.frame_5)
89 self.label_55 = QtGui.QLabel(self.frame_5)
89 self.label_55.setGeometry(QtCore.QRect(10, 10, 72, 16))
90 self.label_55.setGeometry(QtCore.QRect(10, 10, 72, 16))
90 font = QtGui.QFont()
91 font = QtGui.QFont()
91 font.setPointSize(10)
92 font.setPointSize(10)
92 self.label_55.setFont(font)
93 self.label_55.setFont(font)
93 self.label_55.setObjectName(_fromUtf8("label_55"))
94 self.label_55.setObjectName(_fromUtf8("label_55"))
94 self.readModeCmBox = QtGui.QComboBox(self.frame_5)
95 self.readModeCmBox = QtGui.QComboBox(self.frame_5)
95 self.readModeCmBox.setGeometry(QtCore.QRect(90, 10, 71, 16))
96 self.readModeCmBox.setGeometry(QtCore.QRect(90, 10, 71, 16))
96 font = QtGui.QFont()
97 font = QtGui.QFont()
97 font.setPointSize(10)
98 font.setPointSize(10)
98 self.readModeCmBox.setFont(font)
99 self.readModeCmBox.setFont(font)
99 self.readModeCmBox.setObjectName(_fromUtf8("readModeCmBox"))
100 self.readModeCmBox.setObjectName(_fromUtf8("readModeCmBox"))
100 self.readModeCmBox.addItem(_fromUtf8(""))
101 self.readModeCmBox.addItem(_fromUtf8(""))
101 self.readModeCmBox.addItem(_fromUtf8(""))
102 self.readModeCmBox.addItem(_fromUtf8(""))
102 self.dataWaitLine = QtGui.QLabel(self.frame_5)
103 self.dataWaitLine = QtGui.QLabel(self.frame_5)
103 self.dataWaitLine.setGeometry(QtCore.QRect(170, 10, 61, 20))
104 self.dataWaitLine.setGeometry(QtCore.QRect(170, 10, 61, 20))
104 font = QtGui.QFont()
105 font = QtGui.QFont()
105 font.setPointSize(10)
106 font.setPointSize(10)
106 self.dataWaitLine.setFont(font)
107 self.dataWaitLine.setFont(font)
107 self.dataWaitLine.setObjectName(_fromUtf8("dataWaitLine"))
108 self.dataWaitLine.setObjectName(_fromUtf8("dataWaitLine"))
108 self.dataWaitTxt = QtGui.QLineEdit(self.frame_5)
109 self.dataWaitTxt = QtGui.QLineEdit(self.frame_5)
109 self.dataWaitTxt.setGeometry(QtCore.QRect(240, 10, 31, 16))
110 self.dataWaitTxt.setGeometry(QtCore.QRect(240, 10, 31, 16))
110 self.dataWaitTxt.setObjectName(_fromUtf8("dataWaitTxt"))
111 self.dataWaitTxt.setObjectName(_fromUtf8("dataWaitTxt"))
111 self.frame_4 = QtGui.QFrame(self.tab_5)
112 self.frame_4 = QtGui.QFrame(self.tab_5)
112 self.frame_4.setGeometry(QtCore.QRect(10, 50, 281, 61))
113 self.frame_4.setGeometry(QtCore.QRect(10, 60, 281, 61))
113 self.frame_4.setFrameShape(QtGui.QFrame.StyledPanel)
114 self.frame_4.setFrameShape(QtGui.QFrame.StyledPanel)
114 self.frame_4.setFrameShadow(QtGui.QFrame.Plain)
115 self.frame_4.setFrameShadow(QtGui.QFrame.Plain)
115 self.frame_4.setObjectName(_fromUtf8("frame_4"))
116 self.frame_4.setObjectName(_fromUtf8("frame_4"))
116 self.dataTypeLine = QtGui.QLabel(self.frame_4)
117 self.dataTypeLine = QtGui.QLabel(self.frame_4)
117 self.dataTypeLine.setGeometry(QtCore.QRect(10, 10, 81, 16))
118 self.dataTypeLine.setGeometry(QtCore.QRect(10, 10, 81, 16))
118 font = QtGui.QFont()
119 font = QtGui.QFont()
119 font.setPointSize(10)
120 font.setPointSize(10)
120 self.dataTypeLine.setFont(font)
121 self.dataTypeLine.setFont(font)
121 self.dataTypeLine.setObjectName(_fromUtf8("dataTypeLine"))
122 self.dataTypeLine.setObjectName(_fromUtf8("dataTypeLine"))
122 self.dataPathline = QtGui.QLabel(self.frame_4)
123 self.dataPathline = QtGui.QLabel(self.frame_4)
123 self.dataPathline.setGeometry(QtCore.QRect(10, 40, 81, 19))
124 self.dataPathline.setGeometry(QtCore.QRect(10, 40, 81, 19))
124 font = QtGui.QFont()
125 font = QtGui.QFont()
125 font.setPointSize(10)
126 font.setPointSize(10)
126 self.dataPathline.setFont(font)
127 self.dataPathline.setFont(font)
127 self.dataPathline.setObjectName(_fromUtf8("dataPathline"))
128 self.dataPathline.setObjectName(_fromUtf8("dataPathline"))
128 self.dataTypeCmbBox = QtGui.QComboBox(self.frame_4)
129 self.dataTypeCmbBox = QtGui.QComboBox(self.frame_4)
129 self.dataTypeCmbBox.setGeometry(QtCore.QRect(80, 10, 141, 21))
130 self.dataTypeCmbBox.setGeometry(QtCore.QRect(80, 10, 141, 21))
130 font = QtGui.QFont()
131 font = QtGui.QFont()
131 font.setPointSize(10)
132 font.setPointSize(10)
132 self.dataTypeCmbBox.setFont(font)
133 self.dataTypeCmbBox.setFont(font)
133 self.dataTypeCmbBox.setObjectName(_fromUtf8("dataTypeCmbBox"))
134 self.dataTypeCmbBox.setObjectName(_fromUtf8("dataTypeCmbBox"))
134 self.dataTypeCmbBox.addItem(_fromUtf8(""))
135 self.dataTypeCmbBox.addItem(_fromUtf8(""))
135 self.dataTypeCmbBox.addItem(_fromUtf8(""))
136 self.dataTypeCmbBox.addItem(_fromUtf8(""))
136 self.dataPathTxt = QtGui.QLineEdit(self.frame_4)
137 self.dataPathTxt = QtGui.QLineEdit(self.frame_4)
137 self.dataPathTxt.setGeometry(QtCore.QRect(80, 40, 161, 16))
138 self.dataPathTxt.setGeometry(QtCore.QRect(80, 40, 161, 16))
138 self.dataPathTxt.setObjectName(_fromUtf8("dataPathTxt"))
139 self.dataPathTxt.setObjectName(_fromUtf8("dataPathTxt"))
139 self.dataPathBrowse = QtGui.QPushButton(self.frame_4)
140 self.dataPathBrowse = QtGui.QPushButton(self.frame_4)
140 self.dataPathBrowse.setGeometry(QtCore.QRect(250, 40, 20, 16))
141 self.dataPathBrowse.setGeometry(QtCore.QRect(249, 36, 21, 20))
141 self.dataPathBrowse.setObjectName(_fromUtf8("dataPathBrowse"))
142 self.dataPathBrowse.setObjectName(_fromUtf8("dataPathBrowse"))
142 self.dataFormatTxt = QtGui.QLineEdit(self.frame_4)
143 self.dataFormatTxt = QtGui.QLineEdit(self.frame_4)
143 self.dataFormatTxt.setGeometry(QtCore.QRect(230, 10, 41, 16))
144 self.dataFormatTxt.setGeometry(QtCore.QRect(230, 10, 41, 16))
144 self.dataFormatTxt.setObjectName(_fromUtf8("dataFormatTxt"))
145 self.dataFormatTxt.setObjectName(_fromUtf8("dataFormatTxt"))
145 self.frame_3 = QtGui.QFrame(self.tab_5)
146 self.frame_3 = QtGui.QFrame(self.tab_5)
146 self.frame_3.setGeometry(QtCore.QRect(10, 10, 281, 31))
147 self.frame_3.setGeometry(QtCore.QRect(10, 10, 281, 41))
147 self.frame_3.setFrameShape(QtGui.QFrame.StyledPanel)
148 self.frame_3.setFrameShape(QtGui.QFrame.StyledPanel)
148 self.frame_3.setFrameShadow(QtGui.QFrame.Plain)
149 self.frame_3.setFrameShadow(QtGui.QFrame.Plain)
149 self.frame_3.setObjectName(_fromUtf8("frame_3"))
150 self.frame_3.setObjectName(_fromUtf8("frame_3"))
150 self.dataOperationModeline = QtGui.QLabel(self.frame_3)
151 self.dataOperationModeline = QtGui.QLabel(self.frame_3)
151 self.dataOperationModeline.setGeometry(QtCore.QRect(10, 10, 131, 20))
152 self.dataOperationModeline.setGeometry(QtCore.QRect(10, 10, 111, 20))
152 font = QtGui.QFont()
153 font = QtGui.QFont()
153 font.setPointSize(10)
154 font.setPointSize(12)
154 self.dataOperationModeline.setFont(font)
155 self.dataOperationModeline.setFont(font)
155 self.dataOperationModeline.setObjectName(_fromUtf8("dataOperationModeline"))
156 self.dataOperationModeline.setObjectName(_fromUtf8("dataOperationModeline"))
156 self.proConfCmbBox = QtGui.QComboBox(self.frame_3)
157 self.nameProjectTxt = QtGui.QLineEdit(self.frame_3)
157 self.proConfCmbBox.setGeometry(QtCore.QRect(150, 6, 121, 20))
158 self.nameProjectTxt.setGeometry(QtCore.QRect(120, 10, 151, 21))
158 font = QtGui.QFont()
159 self.nameProjectTxt.setObjectName(_fromUtf8("nameProjectTxt"))
159 font.setPointSize(10)
160 self.proConfCmbBox.setFont(font)
161 self.proConfCmbBox.setObjectName(_fromUtf8("proConfCmbBox"))
162 self.frame_8 = QtGui.QFrame(self.tab_5)
160 self.frame_8 = QtGui.QFrame(self.tab_5)
163 self.frame_8.setGeometry(QtCore.QRect(10, 160, 281, 71))
161 self.frame_8.setGeometry(QtCore.QRect(10, 170, 281, 81))
164 self.frame_8.setFrameShape(QtGui.QFrame.StyledPanel)
162 self.frame_8.setFrameShape(QtGui.QFrame.StyledPanel)
165 self.frame_8.setFrameShadow(QtGui.QFrame.Plain)
163 self.frame_8.setFrameShadow(QtGui.QFrame.Plain)
166 self.frame_8.setObjectName(_fromUtf8("frame_8"))
164 self.frame_8.setObjectName(_fromUtf8("frame_8"))
167 self.dataStartLine = QtGui.QLabel(self.frame_8)
165 self.dataStartLine = QtGui.QLabel(self.frame_8)
168 self.dataStartLine.setGeometry(QtCore.QRect(10, 10, 69, 16))
166 self.dataStartLine.setGeometry(QtCore.QRect(10, 10, 69, 16))
169 font = QtGui.QFont()
167 font = QtGui.QFont()
170 font.setPointSize(10)
168 font.setPointSize(10)
171 self.dataStartLine.setFont(font)
169 self.dataStartLine.setFont(font)
172 self.dataStartLine.setObjectName(_fromUtf8("dataStartLine"))
170 self.dataStartLine.setObjectName(_fromUtf8("dataStartLine"))
173 self.dataEndline = QtGui.QLabel(self.frame_8)
171 self.dataEndline = QtGui.QLabel(self.frame_8)
174 self.dataEndline.setGeometry(QtCore.QRect(10, 30, 61, 16))
172 self.dataEndline.setGeometry(QtCore.QRect(10, 30, 61, 16))
175 font = QtGui.QFont()
173 font = QtGui.QFont()
176 font.setPointSize(10)
174 font.setPointSize(10)
177 self.dataEndline.setFont(font)
175 self.dataEndline.setFont(font)
178 self.dataEndline.setObjectName(_fromUtf8("dataEndline"))
176 self.dataEndline.setObjectName(_fromUtf8("dataEndline"))
179 self.starDateCmbBox = QtGui.QComboBox(self.frame_8)
177 self.starDateCmbBox = QtGui.QComboBox(self.frame_8)
180 self.starDateCmbBox.setGeometry(QtCore.QRect(130, 10, 141, 16))
178 self.starDateCmbBox.setGeometry(QtCore.QRect(130, 10, 141, 16))
181 self.starDateCmbBox.setObjectName(_fromUtf8("starDateCmbBox"))
179 self.starDateCmbBox.setObjectName(_fromUtf8("starDateCmbBox"))
182 self.endDateCmbBox = QtGui.QComboBox(self.frame_8)
180 self.endDateCmbBox = QtGui.QComboBox(self.frame_8)
183 self.endDateCmbBox.setGeometry(QtCore.QRect(130, 30, 141, 16))
181 self.endDateCmbBox.setGeometry(QtCore.QRect(130, 30, 141, 16))
184 self.endDateCmbBox.setObjectName(_fromUtf8("endDateCmbBox"))
182 self.endDateCmbBox.setObjectName(_fromUtf8("endDateCmbBox"))
185 self.LTReferenceRdBtn = QtGui.QRadioButton(self.frame_8)
183 self.LTReferenceRdBtn = QtGui.QRadioButton(self.frame_8)
186 self.LTReferenceRdBtn.setGeometry(QtCore.QRect(30, 50, 211, 21))
184 self.LTReferenceRdBtn.setGeometry(QtCore.QRect(30, 50, 211, 21))
187 font = QtGui.QFont()
185 font = QtGui.QFont()
188 font.setPointSize(8)
186 font.setPointSize(8)
189 self.LTReferenceRdBtn.setFont(font)
187 self.LTReferenceRdBtn.setFont(font)
190 self.LTReferenceRdBtn.setObjectName(_fromUtf8("LTReferenceRdBtn"))
188 self.LTReferenceRdBtn.setObjectName(_fromUtf8("LTReferenceRdBtn"))
191 self.dataOkBtn = QtGui.QPushButton(self.tab_5)
189 self.dataOkBtn = QtGui.QPushButton(self.tab_5)
192 self.dataOkBtn.setGeometry(QtCore.QRect(70, 320, 81, 21))
190 self.dataOkBtn.setGeometry(QtCore.QRect(70, 340, 81, 21))
193 self.dataOkBtn.setObjectName(_fromUtf8("dataOkBtn"))
191 self.dataOkBtn.setObjectName(_fromUtf8("dataOkBtn"))
194 self.dataCancelBtn = QtGui.QPushButton(self.tab_5)
192 self.dataCancelBtn = QtGui.QPushButton(self.tab_5)
195 self.dataCancelBtn.setGeometry(QtCore.QRect(170, 320, 81, 21))
193 self.dataCancelBtn.setGeometry(QtCore.QRect(170, 340, 81, 21))
196 self.dataCancelBtn.setObjectName(_fromUtf8("dataCancelBtn"))
194 self.dataCancelBtn.setObjectName(_fromUtf8("dataCancelBtn"))
197 self.frame_10 = QtGui.QFrame(self.tab_5)
195 self.frame_10 = QtGui.QFrame(self.tab_5)
198 self.frame_10.setGeometry(QtCore.QRect(10, 240, 281, 71))
196 self.frame_10.setGeometry(QtCore.QRect(10, 260, 281, 71))
199 self.frame_10.setFrameShape(QtGui.QFrame.StyledPanel)
197 self.frame_10.setFrameShape(QtGui.QFrame.StyledPanel)
200 self.frame_10.setFrameShadow(QtGui.QFrame.Plain)
198 self.frame_10.setFrameShadow(QtGui.QFrame.Plain)
201 self.frame_10.setObjectName(_fromUtf8("frame_10"))
199 self.frame_10.setObjectName(_fromUtf8("frame_10"))
202 self.dataInitialTimeLine = QtGui.QLabel(self.frame_10)
200 self.dataInitialTimeLine = QtGui.QLabel(self.frame_10)
203 self.dataInitialTimeLine.setGeometry(QtCore.QRect(30, 10, 61, 16))
201 self.dataInitialTimeLine.setGeometry(QtCore.QRect(30, 10, 61, 16))
204 font = QtGui.QFont()
202 font = QtGui.QFont()
205 font.setPointSize(9)
203 font.setPointSize(9)
206 self.dataInitialTimeLine.setFont(font)
204 self.dataInitialTimeLine.setFont(font)
207 self.dataInitialTimeLine.setObjectName(_fromUtf8("dataInitialTimeLine"))
205 self.dataInitialTimeLine.setObjectName(_fromUtf8("dataInitialTimeLine"))
208 self.dataFinelTimeLine = QtGui.QLabel(self.frame_10)
206 self.dataFinelTimeLine = QtGui.QLabel(self.frame_10)
209 self.dataFinelTimeLine.setGeometry(QtCore.QRect(30, 40, 61, 16))
207 self.dataFinelTimeLine.setGeometry(QtCore.QRect(30, 40, 61, 16))
210 font = QtGui.QFont()
208 font = QtGui.QFont()
211 font.setPointSize(9)
209 font.setPointSize(9)
212 self.dataFinelTimeLine.setFont(font)
210 self.dataFinelTimeLine.setFont(font)
213 self.dataFinelTimeLine.setObjectName(_fromUtf8("dataFinelTimeLine"))
211 self.dataFinelTimeLine.setObjectName(_fromUtf8("dataFinelTimeLine"))
214 self.startTimeEdit = QtGui.QTimeEdit(self.frame_10)
212 self.startTimeEdit = QtGui.QTimeEdit(self.frame_10)
215 self.startTimeEdit.setGeometry(QtCore.QRect(150, 10, 121, 20))
213 self.startTimeEdit.setGeometry(QtCore.QRect(150, 10, 121, 20))
216 self.startTimeEdit.setObjectName(_fromUtf8("startTimeEdit"))
214 self.startTimeEdit.setObjectName(_fromUtf8("startTimeEdit"))
217 self.timeEdit_2 = QtGui.QTimeEdit(self.frame_10)
215 self.timeEdit_2 = QtGui.QTimeEdit(self.frame_10)
218 self.timeEdit_2.setGeometry(QtCore.QRect(150, 40, 121, 20))
216 self.timeEdit_2.setGeometry(QtCore.QRect(150, 40, 121, 20))
219 self.timeEdit_2.setObjectName(_fromUtf8("timeEdit_2"))
217 self.timeEdit_2.setObjectName(_fromUtf8("timeEdit_2"))
220 self.tabWidget.addTab(self.tab_5, _fromUtf8(""))
218 self.tabWidgetProject.addTab(self.tab_5, _fromUtf8(""))
221 self.tab_7 = QtGui.QWidget()
219 self.tab_7 = QtGui.QWidget()
222 self.tab_7.setObjectName(_fromUtf8("tab_7"))
220 self.tab_7.setObjectName(_fromUtf8("tab_7"))
223 self.tabWidget_3 = QtGui.QTabWidget(self.tab_7)
221 self.tabWidgetVol = QtGui.QTabWidget(self.tab_7)
224 self.tabWidget_3.setGeometry(QtCore.QRect(10, 30, 291, 311))
222 self.tabWidgetVol.setEnabled(True)
225 self.tabWidget_3.setObjectName(_fromUtf8("tabWidget_3"))
223 self.tabWidgetVol.setGeometry(QtCore.QRect(10, 10, 291, 331))
224 self.tabWidgetVol.setObjectName(_fromUtf8("tabWidgetVol"))
226 self.tab_3 = QtGui.QWidget()
225 self.tab_3 = QtGui.QWidget()
227 self.tab_3.setObjectName(_fromUtf8("tab_3"))
226 self.tab_3.setObjectName(_fromUtf8("tab_3"))
228 self.selecChannelopVolCEB = QtGui.QCheckBox(self.tab_3)
227 self.selecChannelopVolCEB = QtGui.QCheckBox(self.tab_3)
229 self.selecChannelopVolCEB.setGeometry(QtCore.QRect(10, 10, 121, 21))
228 self.selecChannelopVolCEB.setGeometry(QtCore.QRect(10, 10, 121, 21))
230 self.selecChannelopVolCEB.setObjectName(_fromUtf8("selecChannelopVolCEB"))
229 self.selecChannelopVolCEB.setObjectName(_fromUtf8("selecChannelopVolCEB"))
231 self.numberChannelopVol = QtGui.QLineEdit(self.tab_3)
230 self.numberChannelopVol = QtGui.QLineEdit(self.tab_3)
232 self.numberChannelopVol.setEnabled(True)
231 self.numberChannelopVol.setEnabled(True)
233 self.numberChannelopVol.setGeometry(QtCore.QRect(170, 10, 91, 20))
232 self.numberChannelopVol.setGeometry(QtCore.QRect(170, 10, 91, 20))
234 self.numberChannelopVol.setObjectName(_fromUtf8("numberChannelopVol"))
233 self.numberChannelopVol.setObjectName(_fromUtf8("numberChannelopVol"))
235 self.selecHeighopVolCEB = QtGui.QCheckBox(self.tab_3)
234 self.selecHeighopVolCEB = QtGui.QCheckBox(self.tab_3)
236 self.selecHeighopVolCEB.setGeometry(QtCore.QRect(10, 40, 121, 21))
235 self.selecHeighopVolCEB.setGeometry(QtCore.QRect(10, 40, 121, 21))
237 self.selecHeighopVolCEB.setObjectName(_fromUtf8("selecHeighopVolCEB"))
236 self.selecHeighopVolCEB.setObjectName(_fromUtf8("selecHeighopVolCEB"))
238 self.removeDCCEB = QtGui.QCheckBox(self.tab_3)
237 self.removeDCCEB = QtGui.QCheckBox(self.tab_3)
239 self.removeDCCEB.setGeometry(QtCore.QRect(10, 70, 91, 17))
238 self.removeDCCEB.setGeometry(QtCore.QRect(10, 70, 91, 17))
240 font = QtGui.QFont()
239 font = QtGui.QFont()
241 font.setPointSize(10)
240 font.setPointSize(10)
242 self.removeDCCEB.setFont(font)
241 self.removeDCCEB.setFont(font)
243 self.removeDCCEB.setObjectName(_fromUtf8("removeDCCEB"))
242 self.removeDCCEB.setObjectName(_fromUtf8("removeDCCEB"))
244 self.profileSelecopVolCEB = QtGui.QCheckBox(self.tab_3)
243 self.profileSelecopVolCEB = QtGui.QCheckBox(self.tab_3)
245 self.profileSelecopVolCEB.setGeometry(QtCore.QRect(10, 100, 111, 17))
244 self.profileSelecopVolCEB.setGeometry(QtCore.QRect(10, 100, 111, 17))
246 self.profileSelecopVolCEB.setObjectName(_fromUtf8("profileSelecopVolCEB"))
245 self.profileSelecopVolCEB.setObjectName(_fromUtf8("profileSelecopVolCEB"))
247 self.decodeCEB = QtGui.QCheckBox(self.tab_3)
246 self.decodeCEB = QtGui.QCheckBox(self.tab_3)
248 self.decodeCEB.setGeometry(QtCore.QRect(10, 130, 101, 21))
247 self.decodeCEB.setGeometry(QtCore.QRect(10, 130, 101, 21))
249 font = QtGui.QFont()
248 font = QtGui.QFont()
250 font.setPointSize(10)
249 font.setPointSize(10)
251 self.decodeCEB.setFont(font)
250 self.decodeCEB.setFont(font)
252 self.decodeCEB.setObjectName(_fromUtf8("decodeCEB"))
251 self.decodeCEB.setObjectName(_fromUtf8("decodeCEB"))
253 self.coherentIntegrationCEB = QtGui.QCheckBox(self.tab_3)
252 self.coherentIntegrationCEB = QtGui.QCheckBox(self.tab_3)
254 self.coherentIntegrationCEB.setGeometry(QtCore.QRect(10, 160, 141, 17))
253 self.coherentIntegrationCEB.setGeometry(QtCore.QRect(10, 160, 141, 17))
255 font = QtGui.QFont()
254 font = QtGui.QFont()
256 font.setPointSize(10)
255 font.setPointSize(10)
257 self.coherentIntegrationCEB.setFont(font)
256 self.coherentIntegrationCEB.setFont(font)
258 self.coherentIntegrationCEB.setObjectName(_fromUtf8("coherentIntegrationCEB"))
257 self.coherentIntegrationCEB.setObjectName(_fromUtf8("coherentIntegrationCEB"))
259 self.lineHeighProfileTxtopVol = QtGui.QLineEdit(self.tab_3)
258 self.lineHeighProfileTxtopVol = QtGui.QLineEdit(self.tab_3)
260 self.lineHeighProfileTxtopVol.setGeometry(QtCore.QRect(170, 40, 91, 20))
259 self.lineHeighProfileTxtopVol.setGeometry(QtCore.QRect(170, 40, 91, 20))
261 self.lineHeighProfileTxtopVol.setObjectName(_fromUtf8("lineHeighProfileTxtopVol"))
260 self.lineHeighProfileTxtopVol.setObjectName(_fromUtf8("lineHeighProfileTxtopVol"))
262 self.removeDCcob = QtGui.QComboBox(self.tab_3)
261 self.removeDCcob = QtGui.QComboBox(self.tab_3)
263 self.removeDCcob.setGeometry(QtCore.QRect(170, 70, 91, 20))
262 self.removeDCcob.setGeometry(QtCore.QRect(170, 70, 91, 20))
264 self.removeDCcob.setObjectName(_fromUtf8("removeDCcob"))
263 self.removeDCcob.setObjectName(_fromUtf8("removeDCcob"))
265 self.lineProfileSelecopVolCEB = QtGui.QLineEdit(self.tab_3)
264 self.lineProfileSelecopVolCEB = QtGui.QLineEdit(self.tab_3)
266 self.lineProfileSelecopVolCEB.setGeometry(QtCore.QRect(170, 100, 91, 20))
265 self.lineProfileSelecopVolCEB.setGeometry(QtCore.QRect(170, 100, 91, 20))
267 self.lineProfileSelecopVolCEB.setObjectName(_fromUtf8("lineProfileSelecopVolCEB"))
266 self.lineProfileSelecopVolCEB.setObjectName(_fromUtf8("lineProfileSelecopVolCEB"))
268 self.decodeCcob = QtGui.QComboBox(self.tab_3)
267 self.decodeCcob = QtGui.QComboBox(self.tab_3)
269 self.decodeCcob.setGeometry(QtCore.QRect(170, 130, 91, 20))
268 self.decodeCcob.setGeometry(QtCore.QRect(170, 130, 91, 20))
270 self.decodeCcob.setObjectName(_fromUtf8("decodeCcob"))
269 self.decodeCcob.setObjectName(_fromUtf8("decodeCcob"))
271 self.numberIntegration = QtGui.QLineEdit(self.tab_3)
270 self.numberIntegration = QtGui.QLineEdit(self.tab_3)
272 self.numberIntegration.setGeometry(QtCore.QRect(170, 160, 91, 21))
271 self.numberIntegration.setGeometry(QtCore.QRect(170, 160, 91, 21))
273 self.numberIntegration.setObjectName(_fromUtf8("numberIntegration"))
272 self.numberIntegration.setObjectName(_fromUtf8("numberIntegration"))
274 self.dataopVolOkBtn = QtGui.QPushButton(self.tab_3)
273 self.dataopVolOkBtn = QtGui.QPushButton(self.tab_3)
275 self.dataopVolOkBtn.setGeometry(QtCore.QRect(60, 210, 71, 21))
274 self.dataopVolOkBtn.setGeometry(QtCore.QRect(60, 210, 71, 21))
276 self.dataopVolOkBtn.setObjectName(_fromUtf8("dataopVolOkBtn"))
275 self.dataopVolOkBtn.setObjectName(_fromUtf8("dataopVolOkBtn"))
277 self.dataopVolCancelBtn = QtGui.QPushButton(self.tab_3)
276 self.dataopVolCancelBtn = QtGui.QPushButton(self.tab_3)
278 self.dataopVolCancelBtn.setGeometry(QtCore.QRect(150, 210, 71, 21))
277 self.dataopVolCancelBtn.setGeometry(QtCore.QRect(150, 210, 71, 21))
279 self.dataopVolCancelBtn.setObjectName(_fromUtf8("dataopVolCancelBtn"))
278 self.dataopVolCancelBtn.setObjectName(_fromUtf8("dataopVolCancelBtn"))
280 self.tabWidget_3.addTab(self.tab_3, _fromUtf8(""))
279 self.tabWidgetVol.addTab(self.tab_3, _fromUtf8(""))
281 self.tab_2 = QtGui.QWidget()
280 self.tab_2 = QtGui.QWidget()
282 self.tab_2.setObjectName(_fromUtf8("tab_2"))
281 self.tab_2.setObjectName(_fromUtf8("tab_2"))
283 self.frame_17 = QtGui.QFrame(self.tab_2)
282 self.frame_17 = QtGui.QFrame(self.tab_2)
284 self.frame_17.setGeometry(QtCore.QRect(10, 90, 251, 71))
283 self.frame_17.setGeometry(QtCore.QRect(10, 90, 251, 71))
285 self.frame_17.setFrameShape(QtGui.QFrame.StyledPanel)
284 self.frame_17.setFrameShape(QtGui.QFrame.StyledPanel)
286 self.frame_17.setFrameShadow(QtGui.QFrame.Plain)
285 self.frame_17.setFrameShadow(QtGui.QFrame.Plain)
287 self.frame_17.setObjectName(_fromUtf8("frame_17"))
286 self.frame_17.setObjectName(_fromUtf8("frame_17"))
288 self.datalabelGraphicsVol = QtGui.QLabel(self.frame_17)
287 self.datalabelGraphicsVol = QtGui.QLabel(self.frame_17)
289 self.datalabelGraphicsVol.setGeometry(QtCore.QRect(10, 10, 66, 21))
288 self.datalabelGraphicsVol.setGeometry(QtCore.QRect(10, 10, 66, 21))
290 font = QtGui.QFont()
289 font = QtGui.QFont()
291 font.setPointSize(10)
290 font.setPointSize(10)
292 self.datalabelGraphicsVol.setFont(font)
291 self.datalabelGraphicsVol.setFont(font)
293 self.datalabelGraphicsVol.setObjectName(_fromUtf8("datalabelGraphicsVol"))
292 self.datalabelGraphicsVol.setObjectName(_fromUtf8("datalabelGraphicsVol"))
294 self.dataPotlabelGraphicsVol = QtGui.QLabel(self.frame_17)
293 self.dataPotlabelGraphicsVol = QtGui.QLabel(self.frame_17)
295 self.dataPotlabelGraphicsVol.setGeometry(QtCore.QRect(10, 30, 66, 21))
294 self.dataPotlabelGraphicsVol.setGeometry(QtCore.QRect(10, 30, 66, 21))
296 font = QtGui.QFont()
295 font = QtGui.QFont()
297 font.setPointSize(10)
296 font.setPointSize(10)
298 self.dataPotlabelGraphicsVol.setFont(font)
297 self.dataPotlabelGraphicsVol.setFont(font)
299 self.dataPotlabelGraphicsVol.setObjectName(_fromUtf8("dataPotlabelGraphicsVol"))
298 self.dataPotlabelGraphicsVol.setObjectName(_fromUtf8("dataPotlabelGraphicsVol"))
300 self.showdataGraphicsVol = QtGui.QCheckBox(self.frame_17)
299 self.showdataGraphicsVol = QtGui.QCheckBox(self.frame_17)
301 self.showdataGraphicsVol.setGeometry(QtCore.QRect(140, 10, 31, 26))
300 self.showdataGraphicsVol.setGeometry(QtCore.QRect(140, 10, 31, 26))
302 self.showdataGraphicsVol.setText(_fromUtf8(""))
301 self.showdataGraphicsVol.setText(_fromUtf8(""))
303 self.showdataGraphicsVol.setObjectName(_fromUtf8("showdataGraphicsVol"))
302 self.showdataGraphicsVol.setObjectName(_fromUtf8("showdataGraphicsVol"))
304 self.savedataCEBGraphicsVol = QtGui.QCheckBox(self.frame_17)
303 self.savedataCEBGraphicsVol = QtGui.QCheckBox(self.frame_17)
305 self.savedataCEBGraphicsVol.setGeometry(QtCore.QRect(200, 10, 31, 26))
304 self.savedataCEBGraphicsVol.setGeometry(QtCore.QRect(200, 10, 31, 26))
306 self.savedataCEBGraphicsVol.setText(_fromUtf8(""))
305 self.savedataCEBGraphicsVol.setText(_fromUtf8(""))
307 self.savedataCEBGraphicsVol.setObjectName(_fromUtf8("savedataCEBGraphicsVol"))
306 self.savedataCEBGraphicsVol.setObjectName(_fromUtf8("savedataCEBGraphicsVol"))
308 self.showPotCEBGraphicsVol = QtGui.QCheckBox(self.frame_17)
307 self.showPotCEBGraphicsVol = QtGui.QCheckBox(self.frame_17)
309 self.showPotCEBGraphicsVol.setGeometry(QtCore.QRect(140, 30, 31, 26))
308 self.showPotCEBGraphicsVol.setGeometry(QtCore.QRect(140, 30, 31, 26))
310 self.showPotCEBGraphicsVol.setText(_fromUtf8(""))
309 self.showPotCEBGraphicsVol.setText(_fromUtf8(""))
311 self.showPotCEBGraphicsVol.setObjectName(_fromUtf8("showPotCEBGraphicsVol"))
310 self.showPotCEBGraphicsVol.setObjectName(_fromUtf8("showPotCEBGraphicsVol"))
312 self.checkBox_18 = QtGui.QCheckBox(self.frame_17)
311 self.checkBox_18 = QtGui.QCheckBox(self.frame_17)
313 self.checkBox_18.setGeometry(QtCore.QRect(200, 30, 31, 26))
312 self.checkBox_18.setGeometry(QtCore.QRect(200, 30, 31, 26))
314 self.checkBox_18.setText(_fromUtf8(""))
313 self.checkBox_18.setText(_fromUtf8(""))
315 self.checkBox_18.setObjectName(_fromUtf8("checkBox_18"))
314 self.checkBox_18.setObjectName(_fromUtf8("checkBox_18"))
316 self.frame_19 = QtGui.QFrame(self.tab_2)
315 self.frame_19 = QtGui.QFrame(self.tab_2)
317 self.frame_19.setGeometry(QtCore.QRect(10, 170, 251, 61))
316 self.frame_19.setGeometry(QtCore.QRect(10, 170, 251, 61))
318 self.frame_19.setFrameShape(QtGui.QFrame.StyledPanel)
317 self.frame_19.setFrameShape(QtGui.QFrame.StyledPanel)
319 self.frame_19.setFrameShadow(QtGui.QFrame.Plain)
318 self.frame_19.setFrameShadow(QtGui.QFrame.Plain)
320 self.frame_19.setObjectName(_fromUtf8("frame_19"))
319 self.frame_19.setObjectName(_fromUtf8("frame_19"))
321 self.label_13 = QtGui.QLabel(self.frame_19)
320 self.label_13 = QtGui.QLabel(self.frame_19)
322 self.label_13.setGeometry(QtCore.QRect(10, 10, 61, 16))
321 self.label_13.setGeometry(QtCore.QRect(10, 10, 61, 16))
323 font = QtGui.QFont()
322 font = QtGui.QFont()
324 font.setPointSize(10)
323 font.setPointSize(10)
325 self.label_13.setFont(font)
324 self.label_13.setFont(font)
326 self.label_13.setObjectName(_fromUtf8("label_13"))
325 self.label_13.setObjectName(_fromUtf8("label_13"))
327 self.label_14 = QtGui.QLabel(self.frame_19)
326 self.label_14 = QtGui.QLabel(self.frame_19)
328 self.label_14.setGeometry(QtCore.QRect(10, 30, 51, 21))
327 self.label_14.setGeometry(QtCore.QRect(10, 30, 51, 21))
329 font = QtGui.QFont()
328 font = QtGui.QFont()
330 font.setPointSize(10)
329 font.setPointSize(10)
331 self.label_14.setFont(font)
330 self.label_14.setFont(font)
332 self.label_14.setObjectName(_fromUtf8("label_14"))
331 self.label_14.setObjectName(_fromUtf8("label_14"))
333 self.lineEdit_4 = QtGui.QLineEdit(self.frame_19)
332 self.lineEdit_4 = QtGui.QLineEdit(self.frame_19)
334 self.lineEdit_4.setGeometry(QtCore.QRect(90, 30, 101, 21))
333 self.lineEdit_4.setGeometry(QtCore.QRect(90, 30, 101, 21))
335 self.lineEdit_4.setObjectName(_fromUtf8("lineEdit_4"))
334 self.lineEdit_4.setObjectName(_fromUtf8("lineEdit_4"))
336 self.toolButton_2 = QtGui.QToolButton(self.frame_19)
335 self.toolButton_2 = QtGui.QToolButton(self.frame_19)
337 self.toolButton_2.setGeometry(QtCore.QRect(210, 30, 31, 21))
336 self.toolButton_2.setGeometry(QtCore.QRect(210, 30, 31, 21))
338 self.toolButton_2.setObjectName(_fromUtf8("toolButton_2"))
337 self.toolButton_2.setObjectName(_fromUtf8("toolButton_2"))
339 self.comboBox_10 = QtGui.QComboBox(self.frame_19)
338 self.comboBox_10 = QtGui.QComboBox(self.frame_19)
340 self.comboBox_10.setGeometry(QtCore.QRect(90, 10, 151, 16))
339 self.comboBox_10.setGeometry(QtCore.QRect(90, 10, 151, 16))
341 self.comboBox_10.setObjectName(_fromUtf8("comboBox_10"))
340 self.comboBox_10.setObjectName(_fromUtf8("comboBox_10"))
342 self.dataGraphVolOkBtn = QtGui.QPushButton(self.tab_2)
341 self.dataGraphVolOkBtn = QtGui.QPushButton(self.tab_2)
343 self.dataGraphVolOkBtn.setGeometry(QtCore.QRect(60, 240, 71, 21))
342 self.dataGraphVolOkBtn.setGeometry(QtCore.QRect(60, 240, 71, 21))
344 self.dataGraphVolOkBtn.setObjectName(_fromUtf8("dataGraphVolOkBtn"))
343 self.dataGraphVolOkBtn.setObjectName(_fromUtf8("dataGraphVolOkBtn"))
345 self.dataGraphVolCancelBtn = QtGui.QPushButton(self.tab_2)
344 self.dataGraphVolCancelBtn = QtGui.QPushButton(self.tab_2)
346 self.dataGraphVolCancelBtn.setGeometry(QtCore.QRect(150, 240, 71, 21))
345 self.dataGraphVolCancelBtn.setGeometry(QtCore.QRect(150, 240, 71, 21))
347 self.dataGraphVolCancelBtn.setObjectName(_fromUtf8("dataGraphVolCancelBtn"))
346 self.dataGraphVolCancelBtn.setObjectName(_fromUtf8("dataGraphVolCancelBtn"))
348 self.dataPathlabelGraphicsVol = QtGui.QLabel(self.tab_2)
347 self.dataPathlabelGraphicsVol = QtGui.QLabel(self.tab_2)
349 self.dataPathlabelGraphicsVol.setGeometry(QtCore.QRect(20, 10, 66, 16))
348 self.dataPathlabelGraphicsVol.setGeometry(QtCore.QRect(20, 10, 66, 16))
350 font = QtGui.QFont()
349 font = QtGui.QFont()
351 font.setPointSize(10)
350 font.setPointSize(10)
352 self.dataPathlabelGraphicsVol.setFont(font)
351 self.dataPathlabelGraphicsVol.setFont(font)
353 self.dataPathlabelGraphicsVol.setObjectName(_fromUtf8("dataPathlabelGraphicsVol"))
352 self.dataPathlabelGraphicsVol.setObjectName(_fromUtf8("dataPathlabelGraphicsVol"))
354 self.dataPrefixlabelGraphicsVol = QtGui.QLabel(self.tab_2)
353 self.dataPrefixlabelGraphicsVol = QtGui.QLabel(self.tab_2)
355 self.dataPrefixlabelGraphicsVol.setGeometry(QtCore.QRect(20, 40, 41, 16))
354 self.dataPrefixlabelGraphicsVol.setGeometry(QtCore.QRect(20, 40, 41, 16))
356 font = QtGui.QFont()
355 font = QtGui.QFont()
357 font.setPointSize(10)
356 font.setPointSize(10)
358 self.dataPrefixlabelGraphicsVol.setFont(font)
357 self.dataPrefixlabelGraphicsVol.setFont(font)
359 self.dataPrefixlabelGraphicsVol.setObjectName(_fromUtf8("dataPrefixlabelGraphicsVol"))
358 self.dataPrefixlabelGraphicsVol.setObjectName(_fromUtf8("dataPrefixlabelGraphicsVol"))
360 self.dataPathtxtGraphicsVol = QtGui.QLineEdit(self.tab_2)
359 self.dataPathtxtGraphicsVol = QtGui.QLineEdit(self.tab_2)
361 self.dataPathtxtGraphicsVol.setGeometry(QtCore.QRect(70, 10, 161, 21))
360 self.dataPathtxtGraphicsVol.setGeometry(QtCore.QRect(70, 10, 161, 21))
362 self.dataPathtxtGraphicsVol.setObjectName(_fromUtf8("dataPathtxtGraphicsVol"))
361 self.dataPathtxtGraphicsVol.setObjectName(_fromUtf8("dataPathtxtGraphicsVol"))
363 self.dataPrefixtxtGraphicsVol = QtGui.QLineEdit(self.tab_2)
362 self.dataPrefixtxtGraphicsVol = QtGui.QLineEdit(self.tab_2)
364 self.dataPrefixtxtGraphicsVol.setGeometry(QtCore.QRect(70, 40, 191, 21))
363 self.dataPrefixtxtGraphicsVol.setGeometry(QtCore.QRect(70, 40, 191, 21))
365 self.dataPrefixtxtGraphicsVol.setObjectName(_fromUtf8("dataPrefixtxtGraphicsVol"))
364 self.dataPrefixtxtGraphicsVol.setObjectName(_fromUtf8("dataPrefixtxtGraphicsVol"))
366 self.dataGraphicsVolPathBrowse = QtGui.QToolButton(self.tab_2)
365 self.dataGraphicsVolPathBrowse = QtGui.QToolButton(self.tab_2)
367 self.dataGraphicsVolPathBrowse.setGeometry(QtCore.QRect(240, 10, 21, 21))
366 self.dataGraphicsVolPathBrowse.setGeometry(QtCore.QRect(240, 10, 21, 21))
368 self.dataGraphicsVolPathBrowse.setObjectName(_fromUtf8("dataGraphicsVolPathBrowse"))
367 self.dataGraphicsVolPathBrowse.setObjectName(_fromUtf8("dataGraphicsVolPathBrowse"))
369 self.label_6 = QtGui.QLabel(self.tab_2)
368 self.label_6 = QtGui.QLabel(self.tab_2)
370 self.label_6.setGeometry(QtCore.QRect(20, 70, 31, 16))
369 self.label_6.setGeometry(QtCore.QRect(20, 70, 31, 16))
371 font = QtGui.QFont()
370 font = QtGui.QFont()
372 font.setPointSize(10)
371 font.setPointSize(10)
373 self.label_6.setFont(font)
372 self.label_6.setFont(font)
374 self.label_6.setObjectName(_fromUtf8("label_6"))
373 self.label_6.setObjectName(_fromUtf8("label_6"))
375 self.label_7 = QtGui.QLabel(self.tab_2)
374 self.label_7 = QtGui.QLabel(self.tab_2)
376 self.label_7.setGeometry(QtCore.QRect(140, 70, 41, 16))
375 self.label_7.setGeometry(QtCore.QRect(140, 70, 41, 16))
377 font = QtGui.QFont()
376 font = QtGui.QFont()
378 font.setPointSize(10)
377 font.setPointSize(10)
379 self.label_7.setFont(font)
378 self.label_7.setFont(font)
380 self.label_7.setObjectName(_fromUtf8("label_7"))
379 self.label_7.setObjectName(_fromUtf8("label_7"))
381 self.label_8 = QtGui.QLabel(self.tab_2)
380 self.label_8 = QtGui.QLabel(self.tab_2)
382 self.label_8.setGeometry(QtCore.QRect(210, 70, 41, 16))
381 self.label_8.setGeometry(QtCore.QRect(210, 70, 41, 16))
383 font = QtGui.QFont()
382 font = QtGui.QFont()
384 font.setPointSize(10)
383 font.setPointSize(10)
385 self.label_8.setFont(font)
384 self.label_8.setFont(font)
386 self.label_8.setObjectName(_fromUtf8("label_8"))
385 self.label_8.setObjectName(_fromUtf8("label_8"))
387 self.tabWidget_3.addTab(self.tab_2, _fromUtf8(""))
386 self.tabWidgetVol.addTab(self.tab_2, _fromUtf8(""))
388 self.tab_4 = QtGui.QWidget()
387 self.tab_4 = QtGui.QWidget()
389 self.tab_4.setObjectName(_fromUtf8("tab_4"))
388 self.tab_4.setObjectName(_fromUtf8("tab_4"))
390 self.frame_15 = QtGui.QFrame(self.tab_4)
389 self.frame_15 = QtGui.QFrame(self.tab_4)
391 self.frame_15.setGeometry(QtCore.QRect(10, 20, 251, 71))
390 self.frame_15.setGeometry(QtCore.QRect(10, 20, 251, 71))
392 self.frame_15.setFrameShape(QtGui.QFrame.StyledPanel)
391 self.frame_15.setFrameShape(QtGui.QFrame.StyledPanel)
393 self.frame_15.setFrameShadow(QtGui.QFrame.Plain)
392 self.frame_15.setFrameShadow(QtGui.QFrame.Plain)
394 self.frame_15.setObjectName(_fromUtf8("frame_15"))
393 self.frame_15.setObjectName(_fromUtf8("frame_15"))
395 self.dataPathlabelOutVol = QtGui.QLabel(self.frame_15)
394 self.dataPathlabelOutVol = QtGui.QLabel(self.frame_15)
396 self.dataPathlabelOutVol.setGeometry(QtCore.QRect(20, 10, 31, 16))
395 self.dataPathlabelOutVol.setGeometry(QtCore.QRect(20, 10, 31, 16))
397 self.dataPathlabelOutVol.setObjectName(_fromUtf8("dataPathlabelOutVol"))
396 self.dataPathlabelOutVol.setObjectName(_fromUtf8("dataPathlabelOutVol"))
398 self.dataPathtxtOutVol = QtGui.QLineEdit(self.frame_15)
397 self.dataPathtxtOutVol = QtGui.QLineEdit(self.frame_15)
399 self.dataPathtxtOutVol.setGeometry(QtCore.QRect(62, 10, 131, 20))
398 self.dataPathtxtOutVol.setGeometry(QtCore.QRect(62, 10, 131, 20))
400 self.dataPathtxtOutVol.setObjectName(_fromUtf8("dataPathtxtOutVol"))
399 self.dataPathtxtOutVol.setObjectName(_fromUtf8("dataPathtxtOutVol"))
401 self.dataOutVolPathBrowse = QtGui.QToolButton(self.frame_15)
400 self.dataOutVolPathBrowse = QtGui.QToolButton(self.frame_15)
402 self.dataOutVolPathBrowse.setGeometry(QtCore.QRect(210, 10, 25, 19))
401 self.dataOutVolPathBrowse.setGeometry(QtCore.QRect(210, 10, 25, 19))
403 self.dataOutVolPathBrowse.setObjectName(_fromUtf8("dataOutVolPathBrowse"))
402 self.dataOutVolPathBrowse.setObjectName(_fromUtf8("dataOutVolPathBrowse"))
404 self.dataSufixlabelOutVol = QtGui.QLabel(self.frame_15)
403 self.dataSufixlabelOutVol = QtGui.QLabel(self.frame_15)
405 self.dataSufixlabelOutVol.setGeometry(QtCore.QRect(20, 40, 41, 16))
404 self.dataSufixlabelOutVol.setGeometry(QtCore.QRect(20, 40, 41, 16))
406 self.dataSufixlabelOutVol.setObjectName(_fromUtf8("dataSufixlabelOutVol"))
405 self.dataSufixlabelOutVol.setObjectName(_fromUtf8("dataSufixlabelOutVol"))
407 self.dataSufixtxtOutVol = QtGui.QLineEdit(self.frame_15)
406 self.dataSufixtxtOutVol = QtGui.QLineEdit(self.frame_15)
408 self.dataSufixtxtOutVol.setGeometry(QtCore.QRect(60, 40, 171, 20))
407 self.dataSufixtxtOutVol.setGeometry(QtCore.QRect(60, 40, 171, 20))
409 self.dataSufixtxtOutVol.setObjectName(_fromUtf8("dataSufixtxtOutVol"))
408 self.dataSufixtxtOutVol.setObjectName(_fromUtf8("dataSufixtxtOutVol"))
410 self.datasaveVolOkBtn = QtGui.QPushButton(self.tab_4)
409 self.datasaveVolOkBtn = QtGui.QPushButton(self.tab_4)
411 self.datasaveVolOkBtn.setGeometry(QtCore.QRect(60, 120, 71, 21))
410 self.datasaveVolOkBtn.setGeometry(QtCore.QRect(60, 120, 71, 21))
412 self.datasaveVolOkBtn.setObjectName(_fromUtf8("datasaveVolOkBtn"))
411 self.datasaveVolOkBtn.setObjectName(_fromUtf8("datasaveVolOkBtn"))
413 self.datasaveVolCancelBtn = QtGui.QPushButton(self.tab_4)
412 self.datasaveVolCancelBtn = QtGui.QPushButton(self.tab_4)
414 self.datasaveVolCancelBtn.setGeometry(QtCore.QRect(150, 120, 71, 21))
413 self.datasaveVolCancelBtn.setGeometry(QtCore.QRect(150, 120, 71, 21))
415 self.datasaveVolCancelBtn.setObjectName(_fromUtf8("datasaveVolCancelBtn"))
414 self.datasaveVolCancelBtn.setObjectName(_fromUtf8("datasaveVolCancelBtn"))
416 self.tabWidget_3.addTab(self.tab_4, _fromUtf8(""))
415 self.tabWidgetVol.addTab(self.tab_4, _fromUtf8(""))
417 self.addOpUpselec = QtGui.QComboBox(self.tab_7)
416 self.tabWidgetProject.addTab(self.tab_7, _fromUtf8(""))
418 self.addOpUpselec.setGeometry(QtCore.QRect(10, 1, 91, 20))
419 self.addOpUpselec.setObjectName(_fromUtf8("addOpUpselec"))
420 self.tabWidget.addTab(self.tab_7, _fromUtf8(""))
421 self.tab_6 = QtGui.QWidget()
417 self.tab_6 = QtGui.QWidget()
422 self.tab_6.setObjectName(_fromUtf8("tab_6"))
418 self.tab_6.setObjectName(_fromUtf8("tab_6"))
423 self.tabWidget_4 = QtGui.QTabWidget(self.tab_6)
419 self.tabWidgetSpec = QtGui.QTabWidget(self.tab_6)
424 self.tabWidget_4.setGeometry(QtCore.QRect(10, 30, 291, 311))
420 self.tabWidgetSpec.setEnabled(True)
425 self.tabWidget_4.setObjectName(_fromUtf8("tabWidget_4"))
421 self.tabWidgetSpec.setGeometry(QtCore.QRect(10, 10, 291, 331))
422 self.tabWidgetSpec.setObjectName(_fromUtf8("tabWidgetSpec"))
426 self.tab_8 = QtGui.QWidget()
423 self.tab_8 = QtGui.QWidget()
427 self.tab_8.setObjectName(_fromUtf8("tab_8"))
424 self.tab_8.setObjectName(_fromUtf8("tab_8"))
428 self.nFFTPointOpSpecCEB = QtGui.QCheckBox(self.tab_8)
425 self.nFFTPointOpSpecCEB = QtGui.QCheckBox(self.tab_8)
429 self.nFFTPointOpSpecCEB.setGeometry(QtCore.QRect(10, 10, 111, 21))
426 self.nFFTPointOpSpecCEB.setGeometry(QtCore.QRect(10, 10, 111, 21))
430 self.nFFTPointOpSpecCEB.setObjectName(_fromUtf8("nFFTPointOpSpecCEB"))
427 self.nFFTPointOpSpecCEB.setObjectName(_fromUtf8("nFFTPointOpSpecCEB"))
431 self.selecChannelopSpecCEB = QtGui.QCheckBox(self.tab_8)
428 self.selecChannelopSpecCEB = QtGui.QCheckBox(self.tab_8)
432 self.selecChannelopSpecCEB.setGeometry(QtCore.QRect(10, 40, 111, 17))
429 self.selecChannelopSpecCEB.setGeometry(QtCore.QRect(10, 40, 111, 17))
433 font = QtGui.QFont()
430 font = QtGui.QFont()
434 font.setPointSize(10)
431 font.setPointSize(10)
435 self.selecChannelopSpecCEB.setFont(font)
432 self.selecChannelopSpecCEB.setFont(font)
436 self.selecChannelopSpecCEB.setObjectName(_fromUtf8("selecChannelopSpecCEB"))
433 self.selecChannelopSpecCEB.setObjectName(_fromUtf8("selecChannelopSpecCEB"))
437 self.IncohIntOpSpecCEB = QtGui.QCheckBox(self.tab_8)
434 self.IncohIntOpSpecCEB = QtGui.QCheckBox(self.tab_8)
438 self.IncohIntOpSpecCEB.setGeometry(QtCore.QRect(10, 70, 151, 17))
435 self.IncohIntOpSpecCEB.setGeometry(QtCore.QRect(10, 70, 151, 17))
439 font = QtGui.QFont()
436 font = QtGui.QFont()
440 font.setPointSize(10)
437 font.setPointSize(10)
441 self.IncohIntOpSpecCEB.setFont(font)
438 self.IncohIntOpSpecCEB.setFont(font)
442 self.IncohIntOpSpecCEB.setObjectName(_fromUtf8("IncohIntOpSpecCEB"))
439 self.IncohIntOpSpecCEB.setObjectName(_fromUtf8("IncohIntOpSpecCEB"))
443 self.DecoderOpSpecCEB = QtGui.QCheckBox(self.tab_8)
440 self.DecoderOpSpecCEB = QtGui.QCheckBox(self.tab_8)
444 self.DecoderOpSpecCEB.setGeometry(QtCore.QRect(10, 100, 141, 17))
441 self.DecoderOpSpecCEB.setGeometry(QtCore.QRect(10, 100, 141, 17))
445 font = QtGui.QFont()
442 font = QtGui.QFont()
446 font.setPointSize(10)
443 font.setPointSize(10)
447 self.DecoderOpSpecCEB.setFont(font)
444 self.DecoderOpSpecCEB.setFont(font)
448 self.DecoderOpSpecCEB.setObjectName(_fromUtf8("DecoderOpSpecCEB"))
445 self.DecoderOpSpecCEB.setObjectName(_fromUtf8("DecoderOpSpecCEB"))
449 self.checkBox_52 = QtGui.QCheckBox(self.tab_8)
446 self.checkBox_52 = QtGui.QCheckBox(self.tab_8)
450 self.checkBox_52.setGeometry(QtCore.QRect(10, 130, 141, 17))
447 self.checkBox_52.setGeometry(QtCore.QRect(10, 130, 141, 17))
451 font = QtGui.QFont()
448 font = QtGui.QFont()
452 font.setPointSize(10)
449 font.setPointSize(10)
453 self.checkBox_52.setFont(font)
450 self.checkBox_52.setFont(font)
454 self.checkBox_52.setObjectName(_fromUtf8("checkBox_52"))
451 self.checkBox_52.setObjectName(_fromUtf8("checkBox_52"))
455 self.valuenFFTPointOpSpec = QtGui.QLineEdit(self.tab_8)
452 self.valuenFFTPointOpSpec = QtGui.QLineEdit(self.tab_8)
456 self.valuenFFTPointOpSpec.setGeometry(QtCore.QRect(200, 10, 71, 20))
453 self.valuenFFTPointOpSpec.setGeometry(QtCore.QRect(200, 10, 71, 20))
457 self.valuenFFTPointOpSpec.setObjectName(_fromUtf8("valuenFFTPointOpSpec"))
454 self.valuenFFTPointOpSpec.setObjectName(_fromUtf8("valuenFFTPointOpSpec"))
458 self.numberChannelopSpec = QtGui.QLineEdit(self.tab_8)
455 self.numberChannelopSpec = QtGui.QLineEdit(self.tab_8)
459 self.numberChannelopSpec.setGeometry(QtCore.QRect(200, 40, 71, 20))
456 self.numberChannelopSpec.setGeometry(QtCore.QRect(200, 40, 71, 20))
460 self.numberChannelopSpec.setObjectName(_fromUtf8("numberChannelopSpec"))
457 self.numberChannelopSpec.setObjectName(_fromUtf8("numberChannelopSpec"))
461 self.valueIncohIntOpSpec = QtGui.QLineEdit(self.tab_8)
458 self.valueIncohIntOpSpec = QtGui.QLineEdit(self.tab_8)
462 self.valueIncohIntOpSpec.setGeometry(QtCore.QRect(200, 70, 71, 20))
459 self.valueIncohIntOpSpec.setGeometry(QtCore.QRect(200, 70, 71, 20))
463 self.valueIncohIntOpSpec.setObjectName(_fromUtf8("valueIncohIntOpSpec"))
460 self.valueIncohIntOpSpec.setObjectName(_fromUtf8("valueIncohIntOpSpec"))
464 self.comboBox_23 = QtGui.QComboBox(self.tab_8)
461 self.comboBox_23 = QtGui.QComboBox(self.tab_8)
465 self.comboBox_23.setGeometry(QtCore.QRect(200, 100, 71, 20))
462 self.comboBox_23.setGeometry(QtCore.QRect(200, 100, 71, 20))
466 self.comboBox_23.setObjectName(_fromUtf8("comboBox_23"))
463 self.comboBox_23.setObjectName(_fromUtf8("comboBox_23"))
467 self.comboBox_23.addItem(_fromUtf8(""))
464 self.comboBox_23.addItem(_fromUtf8(""))
468 self.comboBox_23.addItem(_fromUtf8(""))
465 self.comboBox_23.addItem(_fromUtf8(""))
469 self.comboBox_23.addItem(_fromUtf8(""))
466 self.comboBox_23.addItem(_fromUtf8(""))
470 self.lineEdit_33 = QtGui.QLineEdit(self.tab_8)
467 self.lineEdit_33 = QtGui.QLineEdit(self.tab_8)
471 self.lineEdit_33.setGeometry(QtCore.QRect(200, 130, 71, 20))
468 self.lineEdit_33.setGeometry(QtCore.QRect(200, 130, 71, 20))
472 self.lineEdit_33.setObjectName(_fromUtf8("lineEdit_33"))
469 self.lineEdit_33.setObjectName(_fromUtf8("lineEdit_33"))
473 self.dataopSpecOkBtn = QtGui.QPushButton(self.tab_8)
470 self.dataopSpecOkBtn = QtGui.QPushButton(self.tab_8)
474 self.dataopSpecOkBtn.setGeometry(QtCore.QRect(50, 180, 71, 21))
471 self.dataopSpecOkBtn.setGeometry(QtCore.QRect(50, 180, 71, 21))
475 self.dataopSpecOkBtn.setObjectName(_fromUtf8("dataopSpecOkBtn"))
472 self.dataopSpecOkBtn.setObjectName(_fromUtf8("dataopSpecOkBtn"))
476 self.dataopSpecCancelBtn = QtGui.QPushButton(self.tab_8)
473 self.dataopSpecCancelBtn = QtGui.QPushButton(self.tab_8)
477 self.dataopSpecCancelBtn.setGeometry(QtCore.QRect(160, 180, 71, 21))
474 self.dataopSpecCancelBtn.setGeometry(QtCore.QRect(160, 180, 71, 21))
478 self.dataopSpecCancelBtn.setObjectName(_fromUtf8("dataopSpecCancelBtn"))
475 self.dataopSpecCancelBtn.setObjectName(_fromUtf8("dataopSpecCancelBtn"))
479 self.tabWidget_4.addTab(self.tab_8, _fromUtf8(""))
476 self.tabWidgetSpec.addTab(self.tab_8, _fromUtf8(""))
480 self.tab_10 = QtGui.QWidget()
477 self.tab_10 = QtGui.QWidget()
481 self.tab_10.setObjectName(_fromUtf8("tab_10"))
478 self.tab_10.setObjectName(_fromUtf8("tab_10"))
482 self.dataGraphSpecCancelBtn = QtGui.QPushButton(self.tab_10)
479 self.dataGraphSpecCancelBtn = QtGui.QPushButton(self.tab_10)
483 self.dataGraphSpecCancelBtn.setGeometry(QtCore.QRect(160, 240, 71, 21))
480 self.dataGraphSpecCancelBtn.setGeometry(QtCore.QRect(160, 240, 71, 21))
484 self.dataGraphSpecCancelBtn.setObjectName(_fromUtf8("dataGraphSpecCancelBtn"))
481 self.dataGraphSpecCancelBtn.setObjectName(_fromUtf8("dataGraphSpecCancelBtn"))
485 self.frame_40 = QtGui.QFrame(self.tab_10)
482 self.frame_40 = QtGui.QFrame(self.tab_10)
486 self.frame_40.setGeometry(QtCore.QRect(10, 80, 261, 91))
483 self.frame_40.setGeometry(QtCore.QRect(10, 80, 261, 91))
487 self.frame_40.setFrameShape(QtGui.QFrame.StyledPanel)
484 self.frame_40.setFrameShape(QtGui.QFrame.StyledPanel)
488 self.frame_40.setFrameShadow(QtGui.QFrame.Plain)
485 self.frame_40.setFrameShadow(QtGui.QFrame.Plain)
489 self.frame_40.setObjectName(_fromUtf8("frame_40"))
486 self.frame_40.setObjectName(_fromUtf8("frame_40"))
490 self.RTIPlotGraphLabel = QtGui.QLabel(self.frame_40)
487 self.RTIPlotGraphLabel = QtGui.QLabel(self.frame_40)
491 self.RTIPlotGraphLabel.setGeometry(QtCore.QRect(10, 0, 66, 16))
488 self.RTIPlotGraphLabel.setGeometry(QtCore.QRect(10, 0, 66, 16))
492 font = QtGui.QFont()
489 font = QtGui.QFont()
493 font.setPointSize(10)
490 font.setPointSize(10)
494 self.RTIPlotGraphLabel.setFont(font)
491 self.RTIPlotGraphLabel.setFont(font)
495 self.RTIPlotGraphLabel.setObjectName(_fromUtf8("RTIPlotGraphLabel"))
492 self.RTIPlotGraphLabel.setObjectName(_fromUtf8("RTIPlotGraphLabel"))
496 self.CrossSpectraPlotGraphLabel = QtGui.QLabel(self.frame_40)
493 self.CrossSpectraPlotGraphLabel = QtGui.QLabel(self.frame_40)
497 self.CrossSpectraPlotGraphLabel.setGeometry(QtCore.QRect(10, 40, 111, 21))
494 self.CrossSpectraPlotGraphLabel.setGeometry(QtCore.QRect(10, 40, 111, 21))
498 self.CrossSpectraPlotGraphLabel.setObjectName(_fromUtf8("CrossSpectraPlotGraphLabel"))
495 self.CrossSpectraPlotGraphLabel.setObjectName(_fromUtf8("CrossSpectraPlotGraphLabel"))
499 self.SpectraPlotGraphLabel = QtGui.QLabel(self.frame_40)
496 self.SpectraPlotGraphLabel = QtGui.QLabel(self.frame_40)
500 self.SpectraPlotGraphLabel.setGeometry(QtCore.QRect(10, 20, 91, 16))
497 self.SpectraPlotGraphLabel.setGeometry(QtCore.QRect(10, 20, 91, 16))
501 self.SpectraPlotGraphLabel.setObjectName(_fromUtf8("SpectraPlotGraphLabel"))
498 self.SpectraPlotGraphLabel.setObjectName(_fromUtf8("SpectraPlotGraphLabel"))
502 self.label_86 = QtGui.QLabel(self.frame_40)
499 self.label_86 = QtGui.QLabel(self.frame_40)
503 self.label_86.setGeometry(QtCore.QRect(10, 60, 66, 21))
500 self.label_86.setGeometry(QtCore.QRect(10, 60, 66, 21))
504 self.label_86.setObjectName(_fromUtf8("label_86"))
501 self.label_86.setObjectName(_fromUtf8("label_86"))
505 self.RTIPlotGraphCEB = QtGui.QCheckBox(self.frame_40)
502 self.RTIPlotGraphCEB = QtGui.QCheckBox(self.frame_40)
506 self.RTIPlotGraphCEB.setGeometry(QtCore.QRect(150, 0, 31, 26))
503 self.RTIPlotGraphCEB.setGeometry(QtCore.QRect(150, 0, 31, 26))
507 self.RTIPlotGraphCEB.setText(_fromUtf8(""))
504 self.RTIPlotGraphCEB.setText(_fromUtf8(""))
508 self.RTIPlotGraphCEB.setObjectName(_fromUtf8("RTIPlotGraphCEB"))
505 self.RTIPlotGraphCEB.setObjectName(_fromUtf8("RTIPlotGraphCEB"))
509 self.checkBox_58 = QtGui.QCheckBox(self.frame_40)
506 self.checkBox_58 = QtGui.QCheckBox(self.frame_40)
510 self.checkBox_58.setGeometry(QtCore.QRect(210, 0, 31, 26))
507 self.checkBox_58.setGeometry(QtCore.QRect(210, 0, 31, 26))
511 self.checkBox_58.setText(_fromUtf8(""))
508 self.checkBox_58.setText(_fromUtf8(""))
512 self.checkBox_58.setObjectName(_fromUtf8("checkBox_58"))
509 self.checkBox_58.setObjectName(_fromUtf8("checkBox_58"))
513 self.SpectraPlotGraphCEB = QtGui.QCheckBox(self.frame_40)
510 self.SpectraPlotGraphCEB = QtGui.QCheckBox(self.frame_40)
514 self.SpectraPlotGraphCEB.setGeometry(QtCore.QRect(150, 20, 31, 26))
511 self.SpectraPlotGraphCEB.setGeometry(QtCore.QRect(150, 20, 31, 26))
515 self.SpectraPlotGraphCEB.setText(_fromUtf8(""))
512 self.SpectraPlotGraphCEB.setText(_fromUtf8(""))
516 self.SpectraPlotGraphCEB.setObjectName(_fromUtf8("SpectraPlotGraphCEB"))
513 self.SpectraPlotGraphCEB.setObjectName(_fromUtf8("SpectraPlotGraphCEB"))
517 self.checkBox_60 = QtGui.QCheckBox(self.frame_40)
514 self.checkBox_60 = QtGui.QCheckBox(self.frame_40)
518 self.checkBox_60.setGeometry(QtCore.QRect(210, 20, 31, 26))
515 self.checkBox_60.setGeometry(QtCore.QRect(210, 20, 31, 26))
519 self.checkBox_60.setText(_fromUtf8(""))
516 self.checkBox_60.setText(_fromUtf8(""))
520 self.checkBox_60.setObjectName(_fromUtf8("checkBox_60"))
517 self.checkBox_60.setObjectName(_fromUtf8("checkBox_60"))
521 self.CrossSpectraPlotGraphceb = QtGui.QCheckBox(self.frame_40)
518 self.CrossSpectraPlotGraphceb = QtGui.QCheckBox(self.frame_40)
522 self.CrossSpectraPlotGraphceb.setGeometry(QtCore.QRect(150, 40, 31, 21))
519 self.CrossSpectraPlotGraphceb.setGeometry(QtCore.QRect(150, 40, 31, 21))
523 self.CrossSpectraPlotGraphceb.setText(_fromUtf8(""))
520 self.CrossSpectraPlotGraphceb.setText(_fromUtf8(""))
524 self.CrossSpectraPlotGraphceb.setObjectName(_fromUtf8("CrossSpectraPlotGraphceb"))
521 self.CrossSpectraPlotGraphceb.setObjectName(_fromUtf8("CrossSpectraPlotGraphceb"))
525 self.checkBox_62 = QtGui.QCheckBox(self.frame_40)
522 self.checkBox_62 = QtGui.QCheckBox(self.frame_40)
526 self.checkBox_62.setGeometry(QtCore.QRect(210, 40, 31, 26))
523 self.checkBox_62.setGeometry(QtCore.QRect(210, 40, 31, 26))
527 self.checkBox_62.setText(_fromUtf8(""))
524 self.checkBox_62.setText(_fromUtf8(""))
528 self.checkBox_62.setObjectName(_fromUtf8("checkBox_62"))
525 self.checkBox_62.setObjectName(_fromUtf8("checkBox_62"))
529 self.checkBox_63 = QtGui.QCheckBox(self.frame_40)
526 self.checkBox_63 = QtGui.QCheckBox(self.frame_40)
530 self.checkBox_63.setGeometry(QtCore.QRect(150, 60, 20, 26))
527 self.checkBox_63.setGeometry(QtCore.QRect(150, 60, 20, 26))
531 self.checkBox_63.setText(_fromUtf8(""))
528 self.checkBox_63.setText(_fromUtf8(""))
532 self.checkBox_63.setObjectName(_fromUtf8("checkBox_63"))
529 self.checkBox_63.setObjectName(_fromUtf8("checkBox_63"))
533 self.checkBox_64 = QtGui.QCheckBox(self.frame_40)
530 self.checkBox_64 = QtGui.QCheckBox(self.frame_40)
534 self.checkBox_64.setGeometry(QtCore.QRect(210, 60, 31, 26))
531 self.checkBox_64.setGeometry(QtCore.QRect(210, 60, 31, 26))
535 self.checkBox_64.setText(_fromUtf8(""))
532 self.checkBox_64.setText(_fromUtf8(""))
536 self.checkBox_64.setObjectName(_fromUtf8("checkBox_64"))
533 self.checkBox_64.setObjectName(_fromUtf8("checkBox_64"))
537 self.dataGraphSpecOkBtn = QtGui.QPushButton(self.tab_10)
534 self.dataGraphSpecOkBtn = QtGui.QPushButton(self.tab_10)
538 self.dataGraphSpecOkBtn.setGeometry(QtCore.QRect(60, 240, 71, 21))
535 self.dataGraphSpecOkBtn.setGeometry(QtCore.QRect(60, 240, 71, 21))
539 self.dataGraphSpecOkBtn.setObjectName(_fromUtf8("dataGraphSpecOkBtn"))
536 self.dataGraphSpecOkBtn.setObjectName(_fromUtf8("dataGraphSpecOkBtn"))
540 self.frame_41 = QtGui.QFrame(self.tab_10)
537 self.frame_41 = QtGui.QFrame(self.tab_10)
541 self.frame_41.setGeometry(QtCore.QRect(10, 180, 261, 51))
538 self.frame_41.setGeometry(QtCore.QRect(10, 180, 261, 51))
542 self.frame_41.setFrameShape(QtGui.QFrame.StyledPanel)
539 self.frame_41.setFrameShape(QtGui.QFrame.StyledPanel)
543 self.frame_41.setFrameShadow(QtGui.QFrame.Plain)
540 self.frame_41.setFrameShadow(QtGui.QFrame.Plain)
544 self.frame_41.setObjectName(_fromUtf8("frame_41"))
541 self.frame_41.setObjectName(_fromUtf8("frame_41"))
545 self.label_87 = QtGui.QLabel(self.frame_41)
542 self.label_87 = QtGui.QLabel(self.frame_41)
546 self.label_87.setGeometry(QtCore.QRect(10, 10, 61, 16))
543 self.label_87.setGeometry(QtCore.QRect(10, 10, 61, 16))
547 font = QtGui.QFont()
544 font = QtGui.QFont()
548 font.setPointSize(10)
545 font.setPointSize(10)
549 self.label_87.setFont(font)
546 self.label_87.setFont(font)
550 self.label_87.setObjectName(_fromUtf8("label_87"))
547 self.label_87.setObjectName(_fromUtf8("label_87"))
551 self.label_88 = QtGui.QLabel(self.frame_41)
548 self.label_88 = QtGui.QLabel(self.frame_41)
552 self.label_88.setGeometry(QtCore.QRect(10, 30, 51, 21))
549 self.label_88.setGeometry(QtCore.QRect(10, 30, 51, 21))
553 font = QtGui.QFont()
550 font = QtGui.QFont()
554 font.setPointSize(10)
551 font.setPointSize(10)
555 self.label_88.setFont(font)
552 self.label_88.setFont(font)
556 self.label_88.setObjectName(_fromUtf8("label_88"))
553 self.label_88.setObjectName(_fromUtf8("label_88"))
557 self.lineEdit_37 = QtGui.QLineEdit(self.frame_41)
554 self.lineEdit_37 = QtGui.QLineEdit(self.frame_41)
558 self.lineEdit_37.setGeometry(QtCore.QRect(90, 30, 111, 16))
555 self.lineEdit_37.setGeometry(QtCore.QRect(90, 30, 111, 16))
559 self.lineEdit_37.setObjectName(_fromUtf8("lineEdit_37"))
556 self.lineEdit_37.setObjectName(_fromUtf8("lineEdit_37"))
560 self.toolButton_18 = QtGui.QToolButton(self.frame_41)
557 self.toolButton_18 = QtGui.QToolButton(self.frame_41)
561 self.toolButton_18.setGeometry(QtCore.QRect(210, 30, 21, 16))
558 self.toolButton_18.setGeometry(QtCore.QRect(210, 30, 21, 16))
562 self.toolButton_18.setObjectName(_fromUtf8("toolButton_18"))
559 self.toolButton_18.setObjectName(_fromUtf8("toolButton_18"))
563 self.comboBox_27 = QtGui.QComboBox(self.frame_41)
560 self.comboBox_27 = QtGui.QComboBox(self.frame_41)
564 self.comboBox_27.setGeometry(QtCore.QRect(90, 10, 141, 16))
561 self.comboBox_27.setGeometry(QtCore.QRect(90, 10, 141, 16))
565 self.comboBox_27.setObjectName(_fromUtf8("comboBox_27"))
562 self.comboBox_27.setObjectName(_fromUtf8("comboBox_27"))
566 self.label_78 = QtGui.QLabel(self.tab_10)
563 self.label_78 = QtGui.QLabel(self.tab_10)
567 self.label_78.setGeometry(QtCore.QRect(20, 10, 66, 16))
564 self.label_78.setGeometry(QtCore.QRect(20, 10, 66, 16))
568 font = QtGui.QFont()
565 font = QtGui.QFont()
569 font.setPointSize(10)
566 font.setPointSize(10)
570 self.label_78.setFont(font)
567 self.label_78.setFont(font)
571 self.label_78.setObjectName(_fromUtf8("label_78"))
568 self.label_78.setObjectName(_fromUtf8("label_78"))
572 self.label_79 = QtGui.QLabel(self.tab_10)
569 self.label_79 = QtGui.QLabel(self.tab_10)
573 self.label_79.setGeometry(QtCore.QRect(20, 40, 41, 16))
570 self.label_79.setGeometry(QtCore.QRect(20, 40, 41, 16))
574 font = QtGui.QFont()
571 font = QtGui.QFont()
575 font.setPointSize(10)
572 font.setPointSize(10)
576 self.label_79.setFont(font)
573 self.label_79.setFont(font)
577 self.label_79.setObjectName(_fromUtf8("label_79"))
574 self.label_79.setObjectName(_fromUtf8("label_79"))
578 self.lineEdit_35 = QtGui.QLineEdit(self.tab_10)
575 self.lineEdit_35 = QtGui.QLineEdit(self.tab_10)
579 self.lineEdit_35.setGeometry(QtCore.QRect(70, 10, 161, 16))
576 self.lineEdit_35.setGeometry(QtCore.QRect(70, 10, 161, 16))
580 self.lineEdit_35.setObjectName(_fromUtf8("lineEdit_35"))
577 self.lineEdit_35.setObjectName(_fromUtf8("lineEdit_35"))
581 self.lineEdit_36 = QtGui.QLineEdit(self.tab_10)
578 self.lineEdit_36 = QtGui.QLineEdit(self.tab_10)
582 self.lineEdit_36.setGeometry(QtCore.QRect(70, 40, 201, 16))
579 self.lineEdit_36.setGeometry(QtCore.QRect(70, 40, 201, 16))
583 self.lineEdit_36.setObjectName(_fromUtf8("lineEdit_36"))
580 self.lineEdit_36.setObjectName(_fromUtf8("lineEdit_36"))
584 self.toolButton_17 = QtGui.QToolButton(self.tab_10)
581 self.toolButton_17 = QtGui.QToolButton(self.tab_10)
585 self.toolButton_17.setGeometry(QtCore.QRect(250, 10, 21, 20))
582 self.toolButton_17.setGeometry(QtCore.QRect(250, 10, 21, 20))
586 self.toolButton_17.setObjectName(_fromUtf8("toolButton_17"))
583 self.toolButton_17.setObjectName(_fromUtf8("toolButton_17"))
587 self.label_80 = QtGui.QLabel(self.tab_10)
584 self.label_80 = QtGui.QLabel(self.tab_10)
588 self.label_80.setGeometry(QtCore.QRect(20, 60, 31, 16))
585 self.label_80.setGeometry(QtCore.QRect(20, 60, 31, 16))
589 font = QtGui.QFont()
586 font = QtGui.QFont()
590 font.setPointSize(10)
587 font.setPointSize(10)
591 self.label_80.setFont(font)
588 self.label_80.setFont(font)
592 self.label_80.setObjectName(_fromUtf8("label_80"))
589 self.label_80.setObjectName(_fromUtf8("label_80"))
593 self.label_81 = QtGui.QLabel(self.tab_10)
590 self.label_81 = QtGui.QLabel(self.tab_10)
594 self.label_81.setGeometry(QtCore.QRect(150, 60, 41, 16))
591 self.label_81.setGeometry(QtCore.QRect(150, 60, 41, 16))
595 font = QtGui.QFont()
592 font = QtGui.QFont()
596 font.setPointSize(10)
593 font.setPointSize(10)
597 self.label_81.setFont(font)
594 self.label_81.setFont(font)
598 self.label_81.setObjectName(_fromUtf8("label_81"))
595 self.label_81.setObjectName(_fromUtf8("label_81"))
599 self.label_82 = QtGui.QLabel(self.tab_10)
596 self.label_82 = QtGui.QLabel(self.tab_10)
600 self.label_82.setGeometry(QtCore.QRect(210, 60, 41, 16))
597 self.label_82.setGeometry(QtCore.QRect(210, 60, 41, 16))
601 font = QtGui.QFont()
598 font = QtGui.QFont()
602 font.setPointSize(10)
599 font.setPointSize(10)
603 self.label_82.setFont(font)
600 self.label_82.setFont(font)
604 self.label_82.setObjectName(_fromUtf8("label_82"))
601 self.label_82.setObjectName(_fromUtf8("label_82"))
605 self.tabWidget_4.addTab(self.tab_10, _fromUtf8(""))
602 self.tabWidgetSpec.addTab(self.tab_10, _fromUtf8(""))
606 self.tab_11 = QtGui.QWidget()
603 self.tab_11 = QtGui.QWidget()
607 self.tab_11.setObjectName(_fromUtf8("tab_11"))
604 self.tab_11.setObjectName(_fromUtf8("tab_11"))
608 self.label_22 = QtGui.QLabel(self.tab_11)
605 self.label_22 = QtGui.QLabel(self.tab_11)
609 self.label_22.setGeometry(QtCore.QRect(140, 100, 58, 16))
606 self.label_22.setGeometry(QtCore.QRect(140, 100, 58, 16))
610 self.label_22.setObjectName(_fromUtf8("label_22"))
607 self.label_22.setObjectName(_fromUtf8("label_22"))
611 self.frame_47 = QtGui.QFrame(self.tab_11)
608 self.frame_47 = QtGui.QFrame(self.tab_11)
612 self.frame_47.setGeometry(QtCore.QRect(10, 20, 261, 71))
609 self.frame_47.setGeometry(QtCore.QRect(10, 20, 261, 71))
613 self.frame_47.setFrameShape(QtGui.QFrame.StyledPanel)
610 self.frame_47.setFrameShape(QtGui.QFrame.StyledPanel)
614 self.frame_47.setFrameShadow(QtGui.QFrame.Plain)
611 self.frame_47.setFrameShadow(QtGui.QFrame.Plain)
615 self.frame_47.setObjectName(_fromUtf8("frame_47"))
612 self.frame_47.setObjectName(_fromUtf8("frame_47"))
616 self.label_20 = QtGui.QLabel(self.frame_47)
613 self.label_20 = QtGui.QLabel(self.frame_47)
617 self.label_20.setGeometry(QtCore.QRect(20, 10, 22, 16))
614 self.label_20.setGeometry(QtCore.QRect(20, 10, 22, 16))
618 self.label_20.setObjectName(_fromUtf8("label_20"))
615 self.label_20.setObjectName(_fromUtf8("label_20"))
619 self.lineEdit_11 = QtGui.QLineEdit(self.frame_47)
616 self.lineEdit_11 = QtGui.QLineEdit(self.frame_47)
620 self.lineEdit_11.setGeometry(QtCore.QRect(50, 10, 151, 20))
617 self.lineEdit_11.setGeometry(QtCore.QRect(50, 10, 151, 20))
621 self.lineEdit_11.setObjectName(_fromUtf8("lineEdit_11"))
618 self.lineEdit_11.setObjectName(_fromUtf8("lineEdit_11"))
622 self.toolButton_5 = QtGui.QToolButton(self.frame_47)
619 self.toolButton_5 = QtGui.QToolButton(self.frame_47)
623 self.toolButton_5.setGeometry(QtCore.QRect(220, 10, 25, 19))
620 self.toolButton_5.setGeometry(QtCore.QRect(220, 10, 25, 19))
624 self.toolButton_5.setObjectName(_fromUtf8("toolButton_5"))
621 self.toolButton_5.setObjectName(_fromUtf8("toolButton_5"))
625 self.label_21 = QtGui.QLabel(self.frame_47)
622 self.label_21 = QtGui.QLabel(self.frame_47)
626 self.label_21.setGeometry(QtCore.QRect(20, 40, 24, 16))
623 self.label_21.setGeometry(QtCore.QRect(20, 40, 24, 16))
627 self.label_21.setObjectName(_fromUtf8("label_21"))
624 self.label_21.setObjectName(_fromUtf8("label_21"))
628 self.lineEdit_12 = QtGui.QLineEdit(self.frame_47)
625 self.lineEdit_12 = QtGui.QLineEdit(self.frame_47)
629 self.lineEdit_12.setGeometry(QtCore.QRect(50, 40, 191, 20))
626 self.lineEdit_12.setGeometry(QtCore.QRect(50, 40, 191, 20))
630 self.lineEdit_12.setObjectName(_fromUtf8("lineEdit_12"))
627 self.lineEdit_12.setObjectName(_fromUtf8("lineEdit_12"))
631 self.frame_49 = QtGui.QFrame(self.tab_11)
628 self.frame_49 = QtGui.QFrame(self.tab_11)
632 self.frame_49.setGeometry(QtCore.QRect(10, 130, 261, 41))
629 self.frame_49.setGeometry(QtCore.QRect(10, 130, 261, 41))
633 self.frame_49.setFrameShape(QtGui.QFrame.StyledPanel)
630 self.frame_49.setFrameShape(QtGui.QFrame.StyledPanel)
634 self.frame_49.setFrameShadow(QtGui.QFrame.Plain)
631 self.frame_49.setFrameShadow(QtGui.QFrame.Plain)
635 self.frame_49.setObjectName(_fromUtf8("frame_49"))
632 self.frame_49.setObjectName(_fromUtf8("frame_49"))
636 self.datasaveSpecOkBtn = QtGui.QPushButton(self.frame_49)
633 self.datasaveSpecOkBtn = QtGui.QPushButton(self.frame_49)
637 self.datasaveSpecOkBtn.setGeometry(QtCore.QRect(30, 10, 71, 21))
634 self.datasaveSpecOkBtn.setGeometry(QtCore.QRect(30, 10, 71, 21))
638 self.datasaveSpecOkBtn.setObjectName(_fromUtf8("datasaveSpecOkBtn"))
635 self.datasaveSpecOkBtn.setObjectName(_fromUtf8("datasaveSpecOkBtn"))
639 self.datasaveSpecCancelBtn = QtGui.QPushButton(self.frame_49)
636 self.datasaveSpecCancelBtn = QtGui.QPushButton(self.frame_49)
640 self.datasaveSpecCancelBtn.setGeometry(QtCore.QRect(130, 10, 71, 21))
637 self.datasaveSpecCancelBtn.setGeometry(QtCore.QRect(130, 10, 71, 21))
641 self.datasaveSpecCancelBtn.setObjectName(_fromUtf8("datasaveSpecCancelBtn"))
638 self.datasaveSpecCancelBtn.setObjectName(_fromUtf8("datasaveSpecCancelBtn"))
642 self.tabWidget_4.addTab(self.tab_11, _fromUtf8(""))
639 self.tabWidgetSpec.addTab(self.tab_11, _fromUtf8(""))
643 self.addOpSpecUpselec = QtGui.QComboBox(self.tab_6)
640 self.tabWidgetProject.addTab(self.tab_6, _fromUtf8(""))
644 self.addOpSpecUpselec.setGeometry(QtCore.QRect(10, 2, 91, 20))
645 self.addOpSpecUpselec.setObjectName(_fromUtf8("addOpSpecUpselec"))
646 self.tabWidget.addTab(self.tab_6, _fromUtf8(""))
647 self.tab_9 = QtGui.QWidget()
641 self.tab_9 = QtGui.QWidget()
648 self.tab_9.setObjectName(_fromUtf8("tab_9"))
642 self.tab_9.setObjectName(_fromUtf8("tab_9"))
649 self.tabWidget_5 = QtGui.QTabWidget(self.tab_9)
643 self.tabWidgetCor = QtGui.QTabWidget(self.tab_9)
650 self.tabWidget_5.setGeometry(QtCore.QRect(10, 30, 291, 291))
644 self.tabWidgetCor.setGeometry(QtCore.QRect(10, 10, 291, 311))
651 self.tabWidget_5.setObjectName(_fromUtf8("tabWidget_5"))
645 self.tabWidgetCor.setObjectName(_fromUtf8("tabWidgetCor"))
652 self.tab_12 = QtGui.QWidget()
646 self.tab_12 = QtGui.QWidget()
653 self.tab_12.setObjectName(_fromUtf8("tab_12"))
647 self.tab_12.setObjectName(_fromUtf8("tab_12"))
654 self.checkBox_53 = QtGui.QCheckBox(self.tab_12)
648 self.checkBox_53 = QtGui.QCheckBox(self.tab_12)
655 self.checkBox_53.setGeometry(QtCore.QRect(20, 30, 91, 17))
649 self.checkBox_53.setGeometry(QtCore.QRect(20, 30, 91, 17))
656 font = QtGui.QFont()
650 font = QtGui.QFont()
657 font.setPointSize(10)
651 font.setPointSize(10)
658 self.checkBox_53.setFont(font)
652 self.checkBox_53.setFont(font)
659 self.checkBox_53.setObjectName(_fromUtf8("checkBox_53"))
653 self.checkBox_53.setObjectName(_fromUtf8("checkBox_53"))
660 self.comboBox_24 = QtGui.QComboBox(self.tab_12)
654 self.comboBox_24 = QtGui.QComboBox(self.tab_12)
661 self.comboBox_24.setGeometry(QtCore.QRect(160, 30, 111, 20))
655 self.comboBox_24.setGeometry(QtCore.QRect(160, 30, 111, 20))
662 self.comboBox_24.setObjectName(_fromUtf8("comboBox_24"))
656 self.comboBox_24.setObjectName(_fromUtf8("comboBox_24"))
663 self.dataopCorrOkBtn = QtGui.QPushButton(self.tab_12)
657 self.dataopCorrOkBtn = QtGui.QPushButton(self.tab_12)
664 self.dataopCorrOkBtn.setGeometry(QtCore.QRect(50, 160, 71, 21))
658 self.dataopCorrOkBtn.setGeometry(QtCore.QRect(50, 160, 71, 21))
665 self.dataopCorrOkBtn.setObjectName(_fromUtf8("dataopCorrOkBtn"))
659 self.dataopCorrOkBtn.setObjectName(_fromUtf8("dataopCorrOkBtn"))
666 self.dataopCorrCancelBtn = QtGui.QPushButton(self.tab_12)
660 self.dataopCorrCancelBtn = QtGui.QPushButton(self.tab_12)
667 self.dataopCorrCancelBtn.setGeometry(QtCore.QRect(170, 160, 71, 21))
661 self.dataopCorrCancelBtn.setGeometry(QtCore.QRect(170, 160, 71, 21))
668 self.dataopCorrCancelBtn.setObjectName(_fromUtf8("dataopCorrCancelBtn"))
662 self.dataopCorrCancelBtn.setObjectName(_fromUtf8("dataopCorrCancelBtn"))
669 self.tabWidget_5.addTab(self.tab_12, _fromUtf8(""))
663 self.tabWidgetCor.addTab(self.tab_12, _fromUtf8(""))
670 self.tab_13 = QtGui.QWidget()
664 self.tab_13 = QtGui.QWidget()
671 self.tab_13.setObjectName(_fromUtf8("tab_13"))
665 self.tab_13.setObjectName(_fromUtf8("tab_13"))
672 self.frame_44 = QtGui.QFrame(self.tab_13)
666 self.frame_44 = QtGui.QFrame(self.tab_13)
673 self.frame_44.setGeometry(QtCore.QRect(10, 70, 261, 21))
667 self.frame_44.setGeometry(QtCore.QRect(10, 70, 261, 21))
674 self.frame_44.setFrameShape(QtGui.QFrame.StyledPanel)
668 self.frame_44.setFrameShape(QtGui.QFrame.StyledPanel)
675 self.frame_44.setFrameShadow(QtGui.QFrame.Plain)
669 self.frame_44.setFrameShadow(QtGui.QFrame.Plain)
676 self.frame_44.setObjectName(_fromUtf8("frame_44"))
670 self.frame_44.setObjectName(_fromUtf8("frame_44"))
677 self.label_95 = QtGui.QLabel(self.frame_44)
671 self.label_95 = QtGui.QLabel(self.frame_44)
678 self.label_95.setGeometry(QtCore.QRect(10, 0, 31, 16))
672 self.label_95.setGeometry(QtCore.QRect(10, 0, 31, 16))
679 font = QtGui.QFont()
673 font = QtGui.QFont()
680 font.setPointSize(10)
674 font.setPointSize(10)
681 self.label_95.setFont(font)
675 self.label_95.setFont(font)
682 self.label_95.setObjectName(_fromUtf8("label_95"))
676 self.label_95.setObjectName(_fromUtf8("label_95"))
683 self.label_96 = QtGui.QLabel(self.frame_44)
677 self.label_96 = QtGui.QLabel(self.frame_44)
684 self.label_96.setGeometry(QtCore.QRect(130, 0, 41, 16))
678 self.label_96.setGeometry(QtCore.QRect(130, 0, 41, 16))
685 font = QtGui.QFont()
679 font = QtGui.QFont()
686 font.setPointSize(10)
680 font.setPointSize(10)
687 self.label_96.setFont(font)
681 self.label_96.setFont(font)
688 self.label_96.setObjectName(_fromUtf8("label_96"))
682 self.label_96.setObjectName(_fromUtf8("label_96"))
689 self.label_97 = QtGui.QLabel(self.frame_44)
683 self.label_97 = QtGui.QLabel(self.frame_44)
690 self.label_97.setGeometry(QtCore.QRect(190, 0, 41, 16))
684 self.label_97.setGeometry(QtCore.QRect(190, 0, 41, 16))
691 font = QtGui.QFont()
685 font = QtGui.QFont()
692 font.setPointSize(10)
686 font.setPointSize(10)
693 self.label_97.setFont(font)
687 self.label_97.setFont(font)
694 self.label_97.setObjectName(_fromUtf8("label_97"))
688 self.label_97.setObjectName(_fromUtf8("label_97"))
695 self.frame_42 = QtGui.QFrame(self.tab_13)
689 self.frame_42 = QtGui.QFrame(self.tab_13)
696 self.frame_42.setGeometry(QtCore.QRect(10, 160, 261, 61))
690 self.frame_42.setGeometry(QtCore.QRect(10, 160, 261, 61))
697 self.frame_42.setFrameShape(QtGui.QFrame.StyledPanel)
691 self.frame_42.setFrameShape(QtGui.QFrame.StyledPanel)
698 self.frame_42.setFrameShadow(QtGui.QFrame.Plain)
692 self.frame_42.setFrameShadow(QtGui.QFrame.Plain)
699 self.frame_42.setObjectName(_fromUtf8("frame_42"))
693 self.frame_42.setObjectName(_fromUtf8("frame_42"))
700 self.label_89 = QtGui.QLabel(self.frame_42)
694 self.label_89 = QtGui.QLabel(self.frame_42)
701 self.label_89.setGeometry(QtCore.QRect(10, 10, 61, 16))
695 self.label_89.setGeometry(QtCore.QRect(10, 10, 61, 16))
702 font = QtGui.QFont()
696 font = QtGui.QFont()
703 font.setPointSize(10)
697 font.setPointSize(10)
704 self.label_89.setFont(font)
698 self.label_89.setFont(font)
705 self.label_89.setObjectName(_fromUtf8("label_89"))
699 self.label_89.setObjectName(_fromUtf8("label_89"))
706 self.label_90 = QtGui.QLabel(self.frame_42)
700 self.label_90 = QtGui.QLabel(self.frame_42)
707 self.label_90.setGeometry(QtCore.QRect(10, 30, 51, 21))
701 self.label_90.setGeometry(QtCore.QRect(10, 30, 51, 21))
708 font = QtGui.QFont()
702 font = QtGui.QFont()
709 font.setPointSize(10)
703 font.setPointSize(10)
710 self.label_90.setFont(font)
704 self.label_90.setFont(font)
711 self.label_90.setObjectName(_fromUtf8("label_90"))
705 self.label_90.setObjectName(_fromUtf8("label_90"))
712 self.lineEdit_38 = QtGui.QLineEdit(self.frame_42)
706 self.lineEdit_38 = QtGui.QLineEdit(self.frame_42)
713 self.lineEdit_38.setGeometry(QtCore.QRect(90, 30, 101, 16))
707 self.lineEdit_38.setGeometry(QtCore.QRect(90, 30, 101, 16))
714 self.lineEdit_38.setObjectName(_fromUtf8("lineEdit_38"))
708 self.lineEdit_38.setObjectName(_fromUtf8("lineEdit_38"))
715 self.toolButton_19 = QtGui.QToolButton(self.frame_42)
709 self.toolButton_19 = QtGui.QToolButton(self.frame_42)
716 self.toolButton_19.setGeometry(QtCore.QRect(200, 30, 21, 16))
710 self.toolButton_19.setGeometry(QtCore.QRect(200, 30, 21, 16))
717 self.toolButton_19.setObjectName(_fromUtf8("toolButton_19"))
711 self.toolButton_19.setObjectName(_fromUtf8("toolButton_19"))
718 self.comboBox_28 = QtGui.QComboBox(self.frame_42)
712 self.comboBox_28 = QtGui.QComboBox(self.frame_42)
719 self.comboBox_28.setGeometry(QtCore.QRect(90, 10, 131, 16))
713 self.comboBox_28.setGeometry(QtCore.QRect(90, 10, 131, 16))
720 self.comboBox_28.setObjectName(_fromUtf8("comboBox_28"))
714 self.comboBox_28.setObjectName(_fromUtf8("comboBox_28"))
721 self.frame_43 = QtGui.QFrame(self.tab_13)
715 self.frame_43 = QtGui.QFrame(self.tab_13)
722 self.frame_43.setGeometry(QtCore.QRect(10, 100, 261, 51))
716 self.frame_43.setGeometry(QtCore.QRect(10, 100, 261, 51))
723 self.frame_43.setFrameShape(QtGui.QFrame.StyledPanel)
717 self.frame_43.setFrameShape(QtGui.QFrame.StyledPanel)
724 self.frame_43.setFrameShadow(QtGui.QFrame.Plain)
718 self.frame_43.setFrameShadow(QtGui.QFrame.Plain)
725 self.frame_43.setObjectName(_fromUtf8("frame_43"))
719 self.frame_43.setObjectName(_fromUtf8("frame_43"))
726 self.label_91 = QtGui.QLabel(self.frame_43)
720 self.label_91 = QtGui.QLabel(self.frame_43)
727 self.label_91.setGeometry(QtCore.QRect(20, 10, 66, 21))
721 self.label_91.setGeometry(QtCore.QRect(20, 10, 66, 21))
728 font = QtGui.QFont()
722 font = QtGui.QFont()
729 font.setPointSize(10)
723 font.setPointSize(10)
730 self.label_91.setFont(font)
724 self.label_91.setFont(font)
731 self.label_91.setObjectName(_fromUtf8("label_91"))
725 self.label_91.setObjectName(_fromUtf8("label_91"))
732 self.checkBox_67 = QtGui.QCheckBox(self.frame_43)
726 self.checkBox_67 = QtGui.QCheckBox(self.frame_43)
733 self.checkBox_67.setGeometry(QtCore.QRect(140, 10, 31, 26))
727 self.checkBox_67.setGeometry(QtCore.QRect(140, 10, 31, 26))
734 self.checkBox_67.setText(_fromUtf8(""))
728 self.checkBox_67.setText(_fromUtf8(""))
735 self.checkBox_67.setObjectName(_fromUtf8("checkBox_67"))
729 self.checkBox_67.setObjectName(_fromUtf8("checkBox_67"))
736 self.checkBox_68 = QtGui.QCheckBox(self.frame_43)
730 self.checkBox_68 = QtGui.QCheckBox(self.frame_43)
737 self.checkBox_68.setGeometry(QtCore.QRect(190, 10, 31, 26))
731 self.checkBox_68.setGeometry(QtCore.QRect(190, 10, 31, 26))
738 self.checkBox_68.setText(_fromUtf8(""))
732 self.checkBox_68.setText(_fromUtf8(""))
739 self.checkBox_68.setObjectName(_fromUtf8("checkBox_68"))
733 self.checkBox_68.setObjectName(_fromUtf8("checkBox_68"))
740 self.dataGraphCorrOkBtn = QtGui.QPushButton(self.tab_13)
734 self.dataGraphCorrOkBtn = QtGui.QPushButton(self.tab_13)
741 self.dataGraphCorrOkBtn.setGeometry(QtCore.QRect(60, 230, 71, 21))
735 self.dataGraphCorrOkBtn.setGeometry(QtCore.QRect(60, 230, 71, 21))
742 self.dataGraphCorrOkBtn.setObjectName(_fromUtf8("dataGraphCorrOkBtn"))
736 self.dataGraphCorrOkBtn.setObjectName(_fromUtf8("dataGraphCorrOkBtn"))
743 self.dataGraphCorrCancelBtn = QtGui.QPushButton(self.tab_13)
737 self.dataGraphCorrCancelBtn = QtGui.QPushButton(self.tab_13)
744 self.dataGraphCorrCancelBtn.setGeometry(QtCore.QRect(150, 230, 71, 21))
738 self.dataGraphCorrCancelBtn.setGeometry(QtCore.QRect(150, 230, 71, 21))
745 self.dataGraphCorrCancelBtn.setObjectName(_fromUtf8("dataGraphCorrCancelBtn"))
739 self.dataGraphCorrCancelBtn.setObjectName(_fromUtf8("dataGraphCorrCancelBtn"))
746 self.label_98 = QtGui.QLabel(self.tab_13)
740 self.label_98 = QtGui.QLabel(self.tab_13)
747 self.label_98.setGeometry(QtCore.QRect(20, 10, 66, 16))
741 self.label_98.setGeometry(QtCore.QRect(20, 10, 66, 16))
748 font = QtGui.QFont()
742 font = QtGui.QFont()
749 font.setPointSize(10)
743 font.setPointSize(10)
750 self.label_98.setFont(font)
744 self.label_98.setFont(font)
751 self.label_98.setObjectName(_fromUtf8("label_98"))
745 self.label_98.setObjectName(_fromUtf8("label_98"))
752 self.label_99 = QtGui.QLabel(self.tab_13)
746 self.label_99 = QtGui.QLabel(self.tab_13)
753 self.label_99.setGeometry(QtCore.QRect(20, 40, 41, 16))
747 self.label_99.setGeometry(QtCore.QRect(20, 40, 41, 16))
754 font = QtGui.QFont()
748 font = QtGui.QFont()
755 font.setPointSize(10)
749 font.setPointSize(10)
756 self.label_99.setFont(font)
750 self.label_99.setFont(font)
757 self.label_99.setObjectName(_fromUtf8("label_99"))
751 self.label_99.setObjectName(_fromUtf8("label_99"))
758 self.lineEdit_39 = QtGui.QLineEdit(self.tab_13)
752 self.lineEdit_39 = QtGui.QLineEdit(self.tab_13)
759 self.lineEdit_39.setGeometry(QtCore.QRect(80, 10, 141, 21))
753 self.lineEdit_39.setGeometry(QtCore.QRect(80, 10, 141, 21))
760 self.lineEdit_39.setObjectName(_fromUtf8("lineEdit_39"))
754 self.lineEdit_39.setObjectName(_fromUtf8("lineEdit_39"))
761 self.toolButton_20 = QtGui.QToolButton(self.tab_13)
755 self.toolButton_20 = QtGui.QToolButton(self.tab_13)
762 self.toolButton_20.setGeometry(QtCore.QRect(250, 10, 21, 21))
756 self.toolButton_20.setGeometry(QtCore.QRect(250, 10, 21, 21))
763 self.toolButton_20.setObjectName(_fromUtf8("toolButton_20"))
757 self.toolButton_20.setObjectName(_fromUtf8("toolButton_20"))
764 self.lineEdit_40 = QtGui.QLineEdit(self.tab_13)
758 self.lineEdit_40 = QtGui.QLineEdit(self.tab_13)
765 self.lineEdit_40.setGeometry(QtCore.QRect(70, 40, 201, 21))
759 self.lineEdit_40.setGeometry(QtCore.QRect(70, 40, 201, 21))
766 self.lineEdit_40.setObjectName(_fromUtf8("lineEdit_40"))
760 self.lineEdit_40.setObjectName(_fromUtf8("lineEdit_40"))
767 self.tabWidget_5.addTab(self.tab_13, _fromUtf8(""))
761 self.tabWidgetCor.addTab(self.tab_13, _fromUtf8(""))
768 self.tab_14 = QtGui.QWidget()
762 self.tab_14 = QtGui.QWidget()
769 self.tab_14.setObjectName(_fromUtf8("tab_14"))
763 self.tab_14.setObjectName(_fromUtf8("tab_14"))
770 self.label_17 = QtGui.QLabel(self.tab_14)
764 self.label_17 = QtGui.QLabel(self.tab_14)
771 self.label_17.setGeometry(QtCore.QRect(140, 100, 58, 16))
765 self.label_17.setGeometry(QtCore.QRect(140, 100, 58, 16))
772 self.label_17.setObjectName(_fromUtf8("label_17"))
766 self.label_17.setObjectName(_fromUtf8("label_17"))
773 self.frame_46 = QtGui.QFrame(self.tab_14)
767 self.frame_46 = QtGui.QFrame(self.tab_14)
774 self.frame_46.setGeometry(QtCore.QRect(10, 20, 261, 71))
768 self.frame_46.setGeometry(QtCore.QRect(10, 20, 261, 71))
775 self.frame_46.setFrameShape(QtGui.QFrame.StyledPanel)
769 self.frame_46.setFrameShape(QtGui.QFrame.StyledPanel)
776 self.frame_46.setFrameShadow(QtGui.QFrame.Plain)
770 self.frame_46.setFrameShadow(QtGui.QFrame.Plain)
777 self.frame_46.setObjectName(_fromUtf8("frame_46"))
771 self.frame_46.setObjectName(_fromUtf8("frame_46"))
778 self.label_18 = QtGui.QLabel(self.frame_46)
772 self.label_18 = QtGui.QLabel(self.frame_46)
779 self.label_18.setGeometry(QtCore.QRect(20, 10, 22, 16))
773 self.label_18.setGeometry(QtCore.QRect(20, 10, 22, 16))
780 self.label_18.setObjectName(_fromUtf8("label_18"))
774 self.label_18.setObjectName(_fromUtf8("label_18"))
781 self.lineEdit_9 = QtGui.QLineEdit(self.frame_46)
775 self.lineEdit_9 = QtGui.QLineEdit(self.frame_46)
782 self.lineEdit_9.setGeometry(QtCore.QRect(50, 10, 151, 20))
776 self.lineEdit_9.setGeometry(QtCore.QRect(50, 10, 151, 20))
783 self.lineEdit_9.setObjectName(_fromUtf8("lineEdit_9"))
777 self.lineEdit_9.setObjectName(_fromUtf8("lineEdit_9"))
784 self.toolButton_4 = QtGui.QToolButton(self.frame_46)
778 self.toolButton_4 = QtGui.QToolButton(self.frame_46)
785 self.toolButton_4.setGeometry(QtCore.QRect(220, 10, 25, 19))
779 self.toolButton_4.setGeometry(QtCore.QRect(220, 10, 25, 19))
786 self.toolButton_4.setObjectName(_fromUtf8("toolButton_4"))
780 self.toolButton_4.setObjectName(_fromUtf8("toolButton_4"))
787 self.label_19 = QtGui.QLabel(self.frame_46)
781 self.label_19 = QtGui.QLabel(self.frame_46)
788 self.label_19.setGeometry(QtCore.QRect(20, 40, 24, 16))
782 self.label_19.setGeometry(QtCore.QRect(20, 40, 24, 16))
789 self.label_19.setObjectName(_fromUtf8("label_19"))
783 self.label_19.setObjectName(_fromUtf8("label_19"))
790 self.lineEdit_10 = QtGui.QLineEdit(self.frame_46)
784 self.lineEdit_10 = QtGui.QLineEdit(self.frame_46)
791 self.lineEdit_10.setGeometry(QtCore.QRect(50, 40, 191, 20))
785 self.lineEdit_10.setGeometry(QtCore.QRect(50, 40, 191, 20))
792 self.lineEdit_10.setObjectName(_fromUtf8("lineEdit_10"))
786 self.lineEdit_10.setObjectName(_fromUtf8("lineEdit_10"))
793 self.frame_50 = QtGui.QFrame(self.tab_14)
787 self.frame_50 = QtGui.QFrame(self.tab_14)
794 self.frame_50.setGeometry(QtCore.QRect(10, 140, 261, 41))
788 self.frame_50.setGeometry(QtCore.QRect(10, 140, 261, 41))
795 self.frame_50.setFrameShape(QtGui.QFrame.StyledPanel)
789 self.frame_50.setFrameShape(QtGui.QFrame.StyledPanel)
796 self.frame_50.setFrameShadow(QtGui.QFrame.Plain)
790 self.frame_50.setFrameShadow(QtGui.QFrame.Plain)
797 self.frame_50.setObjectName(_fromUtf8("frame_50"))
791 self.frame_50.setObjectName(_fromUtf8("frame_50"))
798 self.datasaveCorrOkBtn = QtGui.QPushButton(self.frame_50)
792 self.datasaveCorrOkBtn = QtGui.QPushButton(self.frame_50)
799 self.datasaveCorrOkBtn.setGeometry(QtCore.QRect(30, 10, 71, 21))
793 self.datasaveCorrOkBtn.setGeometry(QtCore.QRect(30, 10, 71, 21))
800 self.datasaveCorrOkBtn.setObjectName(_fromUtf8("datasaveCorrOkBtn"))
794 self.datasaveCorrOkBtn.setObjectName(_fromUtf8("datasaveCorrOkBtn"))
801 self.dataSaveCorrCancelBtn = QtGui.QPushButton(self.frame_50)
795 self.dataSaveCorrCancelBtn = QtGui.QPushButton(self.frame_50)
802 self.dataSaveCorrCancelBtn.setGeometry(QtCore.QRect(150, 10, 71, 21))
796 self.dataSaveCorrCancelBtn.setGeometry(QtCore.QRect(150, 10, 71, 21))
803 self.dataSaveCorrCancelBtn.setObjectName(_fromUtf8("dataSaveCorrCancelBtn"))
797 self.dataSaveCorrCancelBtn.setObjectName(_fromUtf8("dataSaveCorrCancelBtn"))
804 self.tabWidget_5.addTab(self.tab_14, _fromUtf8(""))
798 self.tabWidgetCor.addTab(self.tab_14, _fromUtf8(""))
805 self.comboBox_2 = QtGui.QComboBox(self.tab_9)
799 self.tabWidgetProject.addTab(self.tab_9, _fromUtf8(""))
806 self.comboBox_2.setGeometry(QtCore.QRect(10, 2, 91, 20))
807 self.comboBox_2.setObjectName(_fromUtf8("comboBox_2"))
808 self.tabWidget.addTab(self.tab_9, _fromUtf8(""))
809 self.tabWidget_2 = QtGui.QTabWidget(self.frame_7)
800 self.tabWidget_2 = QtGui.QTabWidget(self.frame_7)
810 self.tabWidget_2.setGeometry(QtCore.QRect(10, 390, 311, 111))
801 self.tabWidget_2.setGeometry(QtCore.QRect(10, 400, 311, 121))
811 self.tabWidget_2.setObjectName(_fromUtf8("tabWidget_2"))
802 self.tabWidget_2.setObjectName(_fromUtf8("tabWidget_2"))
812 self.tab = QtGui.QWidget()
803 self.tab = QtGui.QWidget()
813 self.tab.setObjectName(_fromUtf8("tab"))
804 self.tab.setObjectName(_fromUtf8("tab"))
814 self.textEdit = Qsci.QsciScintilla(self.tab)
805 self.textEdit = Qsci.QsciScintilla(self.tab)
815 self.textEdit.setGeometry(QtCore.QRect(10, 10, 291, 71))
806 self.textEdit.setGeometry(QtCore.QRect(10, 10, 291, 81))
816 self.textEdit.setToolTip(_fromUtf8(""))
807 self.textEdit.setToolTip(_fromUtf8(""))
817 self.textEdit.setWhatsThis(_fromUtf8(""))
808 self.textEdit.setWhatsThis(_fromUtf8(""))
818 self.textEdit.setObjectName(_fromUtf8("textEdit"))
809 self.textEdit.setObjectName(_fromUtf8("textEdit"))
819 self.tabWidget_2.addTab(self.tab, _fromUtf8(""))
810 self.tabWidget_2.addTab(self.tab, _fromUtf8(""))
820 MainWindow.setCentralWidget(self.centralWidget)
811 MainWindow.setCentralWidget(self.centralWidget)
821 self.menuBar = QtGui.QMenuBar(MainWindow)
812 self.menuBar = QtGui.QMenuBar(MainWindow)
822 self.menuBar.setGeometry(QtCore.QRect(0, 0, 867, 21))
813 self.menuBar.setGeometry(QtCore.QRect(0, 0, 866, 21))
823 self.menuBar.setObjectName(_fromUtf8("menuBar"))
814 self.menuBar.setObjectName(_fromUtf8("menuBar"))
824 self.menuFILE = QtGui.QMenu(self.menuBar)
815 self.menuFILE = QtGui.QMenu(self.menuBar)
825 self.menuFILE.setObjectName(_fromUtf8("menuFILE"))
816 self.menuFILE.setObjectName(_fromUtf8("menuFILE"))
826 self.menuRUN = QtGui.QMenu(self.menuBar)
817 self.menuRUN = QtGui.QMenu(self.menuBar)
827 self.menuRUN.setObjectName(_fromUtf8("menuRUN"))
818 self.menuRUN.setObjectName(_fromUtf8("menuRUN"))
828 self.menuOPTIONS = QtGui.QMenu(self.menuBar)
819 self.menuOPTIONS = QtGui.QMenu(self.menuBar)
829 self.menuOPTIONS.setObjectName(_fromUtf8("menuOPTIONS"))
820 self.menuOPTIONS.setObjectName(_fromUtf8("menuOPTIONS"))
830 self.menuHELP = QtGui.QMenu(self.menuBar)
821 self.menuHELP = QtGui.QMenu(self.menuBar)
831 self.menuHELP.setObjectName(_fromUtf8("menuHELP"))
822 self.menuHELP.setObjectName(_fromUtf8("menuHELP"))
832 MainWindow.setMenuBar(self.menuBar)
823 MainWindow.setMenuBar(self.menuBar)
833 self.toolBar_2 = QtGui.QToolBar(MainWindow)
834 self.toolBar_2.setObjectName(_fromUtf8("toolBar_2"))
835 MainWindow.addToolBar(QtCore.Qt.TopToolBarArea, self.toolBar_2)
836 self.toolBar = QtGui.QToolBar(MainWindow)
824 self.toolBar = QtGui.QToolBar(MainWindow)
837 self.toolBar.setObjectName(_fromUtf8("toolBar"))
825 self.toolBar.setObjectName(_fromUtf8("toolBar"))
838 MainWindow.addToolBar(QtCore.Qt.TopToolBarArea, self.toolBar)
826 MainWindow.addToolBar(QtCore.Qt.TopToolBarArea, self.toolBar)
839 self.actionabrirObj = QtGui.QAction(MainWindow)
827 self.menuFileAbrirObj = QtGui.QAction(MainWindow)
840 self.actionabrirObj.setObjectName(_fromUtf8("actionabrirObj"))
828 self.menuFileAbrirObj.setObjectName(_fromUtf8("menuFileAbrirObj"))
841 self.actioncrearObj = QtGui.QAction(MainWindow)
829 self.menuFileCrearObj = QtGui.QAction(MainWindow)
842 self.actioncrearObj.setObjectName(_fromUtf8("actioncrearObj"))
830 self.menuFileCrearObj.setObjectName(_fromUtf8("menuFileCrearObj"))
843 self.actionguardarObj = QtGui.QAction(MainWindow)
831 self.menuFileGuardarObj = QtGui.QAction(MainWindow)
844 self.actionguardarObj.setObjectName(_fromUtf8("actionguardarObj"))
832 self.menuFileGuardarObj.setObjectName(_fromUtf8("menuFileGuardarObj"))
845 self.actionStartObj = QtGui.QAction(MainWindow)
833 self.menuRUNStartObj = QtGui.QAction(MainWindow)
846 self.actionStartObj.setObjectName(_fromUtf8("actionStartObj"))
834 self.menuRUNStartObj.setObjectName(_fromUtf8("menuRUNStartObj"))
847 self.actionPausaObj = QtGui.QAction(MainWindow)
835 self.menuRUNPausaObj = QtGui.QAction(MainWindow)
848 self.actionPausaObj.setObjectName(_fromUtf8("actionPausaObj"))
836 self.menuRUNPausaObj.setObjectName(_fromUtf8("menuRUNPausaObj"))
849 self.actionconfigLogfileObj = QtGui.QAction(MainWindow)
837 self.menuOptConfigLogfileObj = QtGui.QAction(MainWindow)
850 self.actionconfigLogfileObj.setObjectName(_fromUtf8("actionconfigLogfileObj"))
838 self.menuOptConfigLogfileObj.setObjectName(_fromUtf8("menuOptConfigLogfileObj"))
851 self.actionconfigserverObj = QtGui.QAction(MainWindow)
839 self.menuOptConfigserverObj = QtGui.QAction(MainWindow)
852 self.actionconfigserverObj.setObjectName(_fromUtf8("actionconfigserverObj"))
840 self.menuOptConfigserverObj.setObjectName(_fromUtf8("menuOptConfigserverObj"))
853 self.actionAboutObj = QtGui.QAction(MainWindow)
841 self.menuHELPAboutObj = QtGui.QAction(MainWindow)
854 self.actionAboutObj.setObjectName(_fromUtf8("actionAboutObj"))
842 self.menuHELPAboutObj.setObjectName(_fromUtf8("menuHELPAboutObj"))
855 self.actionPrfObj = QtGui.QAction(MainWindow)
843 self.menuHELPPrfObj = QtGui.QAction(MainWindow)
856 self.actionPrfObj.setObjectName(_fromUtf8("actionPrfObj"))
844 self.menuHELPPrfObj.setObjectName(_fromUtf8("menuHELPPrfObj"))
857 self.actionOpenObj = QtGui.QAction(MainWindow)
845 self.actOpenObj = QtGui.QAction(MainWindow)
858 icon = QtGui.QIcon()
846 icon = QtGui.QIcon()
859 icon.addPixmap(QtGui.QPixmap(_fromUtf8("../../../Downloads/IMAGENES/Open Sign.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
847 icon.addPixmap(QtGui.QPixmap(_fromUtf8("../figure/Open Sign.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
860 self.actionOpenObj.setIcon(icon)
848 self.actOpenObj.setIcon(icon)
861 self.actionOpenObj.setObjectName(_fromUtf8("actionOpenObj"))
849 self.actOpenObj.setObjectName(_fromUtf8("actOpenObj"))
862 self.actionsaveObj = QtGui.QAction(MainWindow)
850 self.actSaveObj = QtGui.QAction(MainWindow)
863 icon1 = QtGui.QIcon()
851 icon1 = QtGui.QIcon()
864 icon1.addPixmap(QtGui.QPixmap(_fromUtf8("../../../Downloads/IMAGENES/guardar.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
852 icon1.addPixmap(QtGui.QPixmap(_fromUtf8("../figure/guardar.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
865 self.actionsaveObj.setIcon(icon1)
853 self.actSaveObj.setIcon(icon1)
866 self.actionsaveObj.setObjectName(_fromUtf8("actionsaveObj"))
854 self.actSaveObj.setObjectName(_fromUtf8("actSaveObj"))
867 self.actionPlayObj = QtGui.QAction(MainWindow)
855 self.actPlayObj = QtGui.QAction(MainWindow)
868 icon2 = QtGui.QIcon()
856 icon2 = QtGui.QIcon()
869 icon2.addPixmap(QtGui.QPixmap(_fromUtf8("../../../Downloads/IMAGENES/play.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
857 icon2.addPixmap(QtGui.QPixmap(_fromUtf8("../figure/play.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
870 self.actionPlayObj.setIcon(icon2)
858 self.actPlayObj.setIcon(icon2)
871 self.actionPlayObj.setObjectName(_fromUtf8("actionPlayObj"))
859 self.actPlayObj.setObjectName(_fromUtf8("actPlayObj"))
872 self.actionstopObj = QtGui.QAction(MainWindow)
860 self.actStopObj = QtGui.QAction(MainWindow)
873 icon3 = QtGui.QIcon()
861 icon3 = QtGui.QIcon()
874 icon3.addPixmap(QtGui.QPixmap(_fromUtf8("../../../Downloads/IMAGENES/stop.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
862 icon3.addPixmap(QtGui.QPixmap(_fromUtf8("../figure/stop.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
875 self.actionstopObj.setIcon(icon3)
863 self.actStopObj.setIcon(icon3)
876 self.actionstopObj.setObjectName(_fromUtf8("actionstopObj"))
864 self.actStopObj.setObjectName(_fromUtf8("actStopObj"))
877 self.actioncreateObj = QtGui.QAction(MainWindow)
865 self.actCreateObj = QtGui.QAction(MainWindow)
878 icon4 = QtGui.QIcon()
866 icon4 = QtGui.QIcon()
879 icon4.addPixmap(QtGui.QPixmap(_fromUtf8("../../../Downloads/IMAGENES/Crear.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
867 icon4.addPixmap(QtGui.QPixmap(_fromUtf8("../figure/Crear.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
880 self.actioncreateObj.setIcon(icon4)
868 self.actCreateObj.setIcon(icon4)
881 self.actioncreateObj.setObjectName(_fromUtf8("actioncreateObj"))
869 self.actCreateObj.setObjectName(_fromUtf8("actCreateObj"))
882 self.actionCerrarObj = QtGui.QAction(MainWindow)
870 self.menuFileCerrarObj = QtGui.QAction(MainWindow)
883 self.actionCerrarObj.setObjectName(_fromUtf8("actionCerrarObj"))
871 self.menuFileCerrarObj.setObjectName(_fromUtf8("menuFileCerrarObj"))
884 self.menuFILE.addAction(self.actionabrirObj)
872 self.menuFILE.addAction(self.menuFileAbrirObj)
885 self.menuFILE.addAction(self.actioncrearObj)
873 self.menuFILE.addAction(self.menuFileCrearObj)
886 self.menuFILE.addAction(self.actionguardarObj)
874 self.menuFILE.addAction(self.menuFileGuardarObj)
887 self.menuFILE.addAction(self.actionCerrarObj)
875 self.menuFILE.addAction(self.menuFileCerrarObj)
888 self.menuRUN.addAction(self.actionStartObj)
876 self.menuRUN.addAction(self.menuRUNStartObj)
889 self.menuRUN.addAction(self.actionPausaObj)
877 self.menuRUN.addAction(self.menuRUNPausaObj)
890 self.menuOPTIONS.addAction(self.actionconfigLogfileObj)
878 self.menuOPTIONS.addAction(self.menuOptConfigLogfileObj)
891 self.menuOPTIONS.addAction(self.actionconfigserverObj)
879 self.menuOPTIONS.addAction(self.menuOptConfigserverObj)
892 self.menuHELP.addAction(self.actionAboutObj)
880 self.menuHELP.addAction(self.menuHELPAboutObj)
893 self.menuHELP.addAction(self.actionPrfObj)
881 self.menuHELP.addAction(self.menuHELPPrfObj)
894 self.menuBar.addAction(self.menuFILE.menuAction())
882 self.menuBar.addAction(self.menuFILE.menuAction())
895 self.menuBar.addAction(self.menuRUN.menuAction())
883 self.menuBar.addAction(self.menuRUN.menuAction())
896 self.menuBar.addAction(self.menuOPTIONS.menuAction())
884 self.menuBar.addAction(self.menuOPTIONS.menuAction())
897 self.menuBar.addAction(self.menuHELP.menuAction())
885 self.menuBar.addAction(self.menuHELP.menuAction())
898 self.toolBar.addSeparator()
886 self.toolBar.addSeparator()
887 self.toolBar.addAction(self.actOpenObj)
899 self.toolBar.addSeparator()
888 self.toolBar.addSeparator()
900 self.toolBar.addAction(self.actionOpenObj)
889 self.toolBar.addAction(self.actCreateObj)
901 self.toolBar.addSeparator()
902 self.toolBar.addAction(self.actioncreateObj)
903 self.toolBar.addSeparator()
890 self.toolBar.addSeparator()
904 self.toolBar.addSeparator()
891 self.toolBar.addSeparator()
905 self.toolBar.addAction(self.actionsaveObj)
892 self.toolBar.addAction(self.actSaveObj)
906 self.toolBar.addSeparator()
893 self.toolBar.addSeparator()
907 self.toolBar.addSeparator()
894 self.toolBar.addSeparator()
908 self.toolBar.addAction(self.actionPlayObj)
895 self.toolBar.addAction(self.actPlayObj)
909 self.toolBar.addSeparator()
896 self.toolBar.addSeparator()
910 self.toolBar.addSeparator()
897 self.toolBar.addSeparator()
911 self.toolBar.addAction(self.actionstopObj)
898 self.toolBar.addAction(self.actStopObj)
912 self.toolBar.addSeparator()
899 self.toolBar.addSeparator()
913
900
914 self.retranslateUi(MainWindow)
901 self.retranslateUi(MainWindow)
915 self.tabWidget.setCurrentIndex(0)
902 self.tabWidgetProject.setCurrentIndex(0)
916 self.tabWidget_3.setCurrentIndex(0)
903 self.tabWidgetVol.setCurrentIndex(0)
917 self.tabWidget_4.setCurrentIndex(0)
904 self.tabWidgetSpec.setCurrentIndex(0)
918 self.tabWidget_5.setCurrentIndex(0)
905 self.tabWidgetCor.setCurrentIndex(2)
919 self.tabWidget_2.setCurrentIndex(0)
906 self.tabWidget_2.setCurrentIndex(0)
920 QtCore.QMetaObject.connectSlotsByName(MainWindow)
907 QtCore.QMetaObject.connectSlotsByName(MainWindow)
921
908
922 def retranslateUi(self, MainWindow):
909 def retranslateUi(self, MainWindow):
923 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8))
910 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8))
924 self.label_46.setText(QtGui.QApplication.translate("MainWindow", "Project Properties", None, QtGui.QApplication.UnicodeUTF8))
911 self.label_46.setText(QtGui.QApplication.translate("MainWindow", "Project Properties", None, QtGui.QApplication.UnicodeUTF8))
925 self.label.setText(QtGui.QApplication.translate("MainWindow", "Project Explorer", None, QtGui.QApplication.UnicodeUTF8))
912 self.label.setText(QtGui.QApplication.translate("MainWindow", "Project Explorer", None, QtGui.QApplication.UnicodeUTF8))
926 self.addpBtn.setText(QtGui.QApplication.translate("MainWindow", "PROJECT", None, QtGui.QApplication.UnicodeUTF8))
913 self.addprojectBtn.setText(QtGui.QApplication.translate("MainWindow", "PROJECT", None, QtGui.QApplication.UnicodeUTF8))
927 self.addUnitProces.setText(QtGui.QApplication.translate("MainWindow", "PROCESSING UNIT", None, QtGui.QApplication.UnicodeUTF8))
914 self.addUnitProces.setText(QtGui.QApplication.translate("MainWindow", "PROCESSING UNIT", None, QtGui.QApplication.UnicodeUTF8))
928 self.label_55.setText(QtGui.QApplication.translate("MainWindow", "Read Mode:", None, QtGui.QApplication.UnicodeUTF8))
915 self.label_55.setText(QtGui.QApplication.translate("MainWindow", "Read Mode:", None, QtGui.QApplication.UnicodeUTF8))
929 self.readModeCmBox.setItemText(0, QtGui.QApplication.translate("MainWindow", "OffLine", None, QtGui.QApplication.UnicodeUTF8))
916 self.readModeCmBox.setItemText(0, QtGui.QApplication.translate("MainWindow", "OffLine", None, QtGui.QApplication.UnicodeUTF8))
930 self.readModeCmBox.setItemText(1, QtGui.QApplication.translate("MainWindow", "OnLine", None, QtGui.QApplication.UnicodeUTF8))
917 self.readModeCmBox.setItemText(1, QtGui.QApplication.translate("MainWindow", "OnLine", None, QtGui.QApplication.UnicodeUTF8))
931 self.dataWaitLine.setText(QtGui.QApplication.translate("MainWindow", "Wait(sec):", None, QtGui.QApplication.UnicodeUTF8))
918 self.dataWaitLine.setText(QtGui.QApplication.translate("MainWindow", "Wait(sec):", None, QtGui.QApplication.UnicodeUTF8))
932 self.dataTypeLine.setText(QtGui.QApplication.translate("MainWindow", "Data type :", None, QtGui.QApplication.UnicodeUTF8))
919 self.dataTypeLine.setText(QtGui.QApplication.translate("MainWindow", "Data type :", None, QtGui.QApplication.UnicodeUTF8))
933 self.dataPathline.setText(QtGui.QApplication.translate("MainWindow", "Data Path :", None, QtGui.QApplication.UnicodeUTF8))
920 self.dataPathline.setText(QtGui.QApplication.translate("MainWindow", "Data Path :", None, QtGui.QApplication.UnicodeUTF8))
934 self.dataTypeCmbBox.setItemText(0, QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8))
921 self.dataTypeCmbBox.setItemText(0, QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8))
935 self.dataTypeCmbBox.setItemText(1, QtGui.QApplication.translate("MainWindow", "Spectra", None, QtGui.QApplication.UnicodeUTF8))
922 self.dataTypeCmbBox.setItemText(1, QtGui.QApplication.translate("MainWindow", "Spectra", None, QtGui.QApplication.UnicodeUTF8))
936 self.dataPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
923 self.dataPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
937 self.dataOperationModeline.setText(QtGui.QApplication.translate("MainWindow", "Project Configuration:", None, QtGui.QApplication.UnicodeUTF8))
924 self.dataOperationModeline.setText(QtGui.QApplication.translate("MainWindow", "Project Name :", None, QtGui.QApplication.UnicodeUTF8))
938 self.dataStartLine.setText(QtGui.QApplication.translate("MainWindow", "Start date :", None, QtGui.QApplication.UnicodeUTF8))
925 self.dataStartLine.setText(QtGui.QApplication.translate("MainWindow", "Start date :", None, QtGui.QApplication.UnicodeUTF8))
939 self.dataEndline.setText(QtGui.QApplication.translate("MainWindow", "End date :", None, QtGui.QApplication.UnicodeUTF8))
926 self.dataEndline.setText(QtGui.QApplication.translate("MainWindow", "End date :", None, QtGui.QApplication.UnicodeUTF8))
940 self.LTReferenceRdBtn.setText(QtGui.QApplication.translate("MainWindow", "Local time frame of reference", None, QtGui.QApplication.UnicodeUTF8))
927 self.LTReferenceRdBtn.setText(QtGui.QApplication.translate("MainWindow", "Local time frame of reference", None, QtGui.QApplication.UnicodeUTF8))
941 self.dataOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
928 self.dataOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
942 self.dataCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
929 self.dataCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
943 self.dataInitialTimeLine.setText(QtGui.QApplication.translate("MainWindow", "Start Time:", None, QtGui.QApplication.UnicodeUTF8))
930 self.dataInitialTimeLine.setText(QtGui.QApplication.translate("MainWindow", "Start Time:", None, QtGui.QApplication.UnicodeUTF8))
944 self.dataFinelTimeLine.setText(QtGui.QApplication.translate("MainWindow", "Final Time:", None, QtGui.QApplication.UnicodeUTF8))
931 self.dataFinelTimeLine.setText(QtGui.QApplication.translate("MainWindow", "Final Time:", None, QtGui.QApplication.UnicodeUTF8))
945 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_5), QtGui.QApplication.translate("MainWindow", "Project", None, QtGui.QApplication.UnicodeUTF8))
932 self.tabWidgetProject.setTabText(self.tabWidgetProject.indexOf(self.tab_5), QtGui.QApplication.translate("MainWindow", "Project", None, QtGui.QApplication.UnicodeUTF8))
946 self.selecChannelopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Channels", None, QtGui.QApplication.UnicodeUTF8))
933 self.selecChannelopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Channels", None, QtGui.QApplication.UnicodeUTF8))
947 self.selecHeighopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Heights", None, QtGui.QApplication.UnicodeUTF8))
934 self.selecHeighopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Heights", None, QtGui.QApplication.UnicodeUTF8))
948 self.removeDCCEB.setText(QtGui.QApplication.translate("MainWindow", "Remove DC", None, QtGui.QApplication.UnicodeUTF8))
935 self.removeDCCEB.setText(QtGui.QApplication.translate("MainWindow", "Remove DC", None, QtGui.QApplication.UnicodeUTF8))
949 self.profileSelecopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Profile Selector", None, QtGui.QApplication.UnicodeUTF8))
936 self.profileSelecopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Profile Selector", None, QtGui.QApplication.UnicodeUTF8))
950 self.decodeCEB.setText(QtGui.QApplication.translate("MainWindow", "Decodification", None, QtGui.QApplication.UnicodeUTF8))
937 self.decodeCEB.setText(QtGui.QApplication.translate("MainWindow", "Decodification", None, QtGui.QApplication.UnicodeUTF8))
951 self.coherentIntegrationCEB.setText(QtGui.QApplication.translate("MainWindow", "Coherent Integration", None, QtGui.QApplication.UnicodeUTF8))
938 self.coherentIntegrationCEB.setText(QtGui.QApplication.translate("MainWindow", "Coherent Integration", None, QtGui.QApplication.UnicodeUTF8))
952 self.dataopVolOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
939 self.dataopVolOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
953 self.dataopVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
940 self.dataopVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
954 self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_3), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8))
941 self.tabWidgetVol.setTabText(self.tabWidgetVol.indexOf(self.tab_3), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8))
955 self.datalabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8))
942 self.datalabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8))
956 self.dataPotlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Potencia", None, QtGui.QApplication.UnicodeUTF8))
943 self.dataPotlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Potencia", None, QtGui.QApplication.UnicodeUTF8))
957 self.label_13.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8))
944 self.label_13.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8))
958 self.label_14.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8))
945 self.label_14.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8))
959 self.toolButton_2.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
946 self.toolButton_2.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
960 self.dataGraphVolOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
947 self.dataGraphVolOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
961 self.dataGraphVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
948 self.dataGraphVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
962 self.dataPathlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
949 self.dataPathlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
963 self.dataPrefixlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Prefix", None, QtGui.QApplication.UnicodeUTF8))
950 self.dataPrefixlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Prefix", None, QtGui.QApplication.UnicodeUTF8))
964 self.dataGraphicsVolPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
951 self.dataGraphicsVolPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
965 self.label_6.setText(QtGui.QApplication.translate("MainWindow", "Type", None, QtGui.QApplication.UnicodeUTF8))
952 self.label_6.setText(QtGui.QApplication.translate("MainWindow", "Type", None, QtGui.QApplication.UnicodeUTF8))
966 self.label_7.setText(QtGui.QApplication.translate("MainWindow", "Show", None, QtGui.QApplication.UnicodeUTF8))
953 self.label_7.setText(QtGui.QApplication.translate("MainWindow", "Show", None, QtGui.QApplication.UnicodeUTF8))
967 self.label_8.setText(QtGui.QApplication.translate("MainWindow", "Save", None, QtGui.QApplication.UnicodeUTF8))
954 self.label_8.setText(QtGui.QApplication.translate("MainWindow", "Save", None, QtGui.QApplication.UnicodeUTF8))
968 self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_2), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8))
955 self.tabWidgetVol.setTabText(self.tabWidgetVol.indexOf(self.tab_2), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8))
969 self.dataPathlabelOutVol.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
956 self.dataPathlabelOutVol.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
970 self.dataOutVolPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
957 self.dataOutVolPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
971 self.dataSufixlabelOutVol.setText(QtGui.QApplication.translate("MainWindow", "Sufix", None, QtGui.QApplication.UnicodeUTF8))
958 self.dataSufixlabelOutVol.setText(QtGui.QApplication.translate("MainWindow", "Sufix", None, QtGui.QApplication.UnicodeUTF8))
972 self.datasaveVolOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
959 self.datasaveVolOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
973 self.datasaveVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
960 self.datasaveVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
974 self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_4), QtGui.QApplication.translate("MainWindow", "Save Data", None, QtGui.QApplication.UnicodeUTF8))
961 self.tabWidgetVol.setTabText(self.tabWidgetVol.indexOf(self.tab_4), QtGui.QApplication.translate("MainWindow", "Save Data", None, QtGui.QApplication.UnicodeUTF8))
975 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_7), QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8))
962 self.tabWidgetProject.setTabText(self.tabWidgetProject.indexOf(self.tab_7), QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8))
976 self.nFFTPointOpSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "nFFTPoints", None, QtGui.QApplication.UnicodeUTF8))
963 self.nFFTPointOpSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "nFFTPoints", None, QtGui.QApplication.UnicodeUTF8))
977 self.selecChannelopSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Channel", None, QtGui.QApplication.UnicodeUTF8))
964 self.selecChannelopSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Channel", None, QtGui.QApplication.UnicodeUTF8))
978 self.IncohIntOpSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "Incoh. Integration", None, QtGui.QApplication.UnicodeUTF8))
965 self.IncohIntOpSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "Incoh. Integration", None, QtGui.QApplication.UnicodeUTF8))
979 self.DecoderOpSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "Decoder", None, QtGui.QApplication.UnicodeUTF8))
966 self.DecoderOpSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "Decoder", None, QtGui.QApplication.UnicodeUTF8))
980 self.checkBox_52.setText(QtGui.QApplication.translate("MainWindow", "Operation 4", None, QtGui.QApplication.UnicodeUTF8))
967 self.checkBox_52.setText(QtGui.QApplication.translate("MainWindow", "Operation 4", None, QtGui.QApplication.UnicodeUTF8))
981 self.comboBox_23.setItemText(0, QtGui.QApplication.translate("MainWindow", "Barker 3", None, QtGui.QApplication.UnicodeUTF8))
968 self.comboBox_23.setItemText(0, QtGui.QApplication.translate("MainWindow", "Barker 3", None, QtGui.QApplication.UnicodeUTF8))
982 self.comboBox_23.setItemText(1, QtGui.QApplication.translate("MainWindow", "Barker 7", None, QtGui.QApplication.UnicodeUTF8))
969 self.comboBox_23.setItemText(1, QtGui.QApplication.translate("MainWindow", "Barker 7", None, QtGui.QApplication.UnicodeUTF8))
983 self.comboBox_23.setItemText(2, QtGui.QApplication.translate("MainWindow", "From File", None, QtGui.QApplication.UnicodeUTF8))
970 self.comboBox_23.setItemText(2, QtGui.QApplication.translate("MainWindow", "From File", None, QtGui.QApplication.UnicodeUTF8))
984 self.dataopSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
971 self.dataopSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
985 self.dataopSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
972 self.dataopSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
986 self.tabWidget_4.setTabText(self.tabWidget_4.indexOf(self.tab_8), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8))
973 self.tabWidgetSpec.setTabText(self.tabWidgetSpec.indexOf(self.tab_8), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8))
987 self.dataGraphSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
974 self.dataGraphSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
988 self.RTIPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "RTI", None, QtGui.QApplication.UnicodeUTF8))
975 self.RTIPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "RTI", None, QtGui.QApplication.UnicodeUTF8))
989 self.CrossSpectraPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "CROSS-CORRELATION+", None, QtGui.QApplication.UnicodeUTF8))
976 self.CrossSpectraPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "CROSS-CORRELATION+", None, QtGui.QApplication.UnicodeUTF8))
990 self.SpectraPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "CROSS-SPECTRA", None, QtGui.QApplication.UnicodeUTF8))
977 self.SpectraPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "CROSS-SPECTRA", None, QtGui.QApplication.UnicodeUTF8))
991 self.label_86.setText(QtGui.QApplication.translate("MainWindow", "NOISE", None, QtGui.QApplication.UnicodeUTF8))
978 self.label_86.setText(QtGui.QApplication.translate("MainWindow", "NOISE", None, QtGui.QApplication.UnicodeUTF8))
992 self.dataGraphSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
979 self.dataGraphSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
993 self.label_87.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8))
980 self.label_87.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8))
994 self.label_88.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8))
981 self.label_88.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8))
995 self.toolButton_18.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
982 self.toolButton_18.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
996 self.label_78.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
983 self.label_78.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
997 self.label_79.setText(QtGui.QApplication.translate("MainWindow", "Prefix", None, QtGui.QApplication.UnicodeUTF8))
984 self.label_79.setText(QtGui.QApplication.translate("MainWindow", "Prefix", None, QtGui.QApplication.UnicodeUTF8))
998 self.toolButton_17.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
985 self.toolButton_17.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
999 self.label_80.setText(QtGui.QApplication.translate("MainWindow", "Type", None, QtGui.QApplication.UnicodeUTF8))
986 self.label_80.setText(QtGui.QApplication.translate("MainWindow", "Type", None, QtGui.QApplication.UnicodeUTF8))
1000 self.label_81.setText(QtGui.QApplication.translate("MainWindow", "Show", None, QtGui.QApplication.UnicodeUTF8))
987 self.label_81.setText(QtGui.QApplication.translate("MainWindow", "Show", None, QtGui.QApplication.UnicodeUTF8))
1001 self.label_82.setText(QtGui.QApplication.translate("MainWindow", "Save", None, QtGui.QApplication.UnicodeUTF8))
988 self.label_82.setText(QtGui.QApplication.translate("MainWindow", "Save", None, QtGui.QApplication.UnicodeUTF8))
1002 self.tabWidget_4.setTabText(self.tabWidget_4.indexOf(self.tab_10), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8))
989 self.tabWidgetSpec.setTabText(self.tabWidgetSpec.indexOf(self.tab_10), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8))
1003 self.label_22.setText(QtGui.QApplication.translate("MainWindow", "Data format", None, QtGui.QApplication.UnicodeUTF8))
990 self.label_22.setText(QtGui.QApplication.translate("MainWindow", "Data format", None, QtGui.QApplication.UnicodeUTF8))
1004 self.label_20.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
991 self.label_20.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
1005 self.toolButton_5.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
992 self.toolButton_5.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
1006 self.label_21.setText(QtGui.QApplication.translate("MainWindow", "Sufix", None, QtGui.QApplication.UnicodeUTF8))
993 self.label_21.setText(QtGui.QApplication.translate("MainWindow", "Sufix", None, QtGui.QApplication.UnicodeUTF8))
1007 self.datasaveSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
994 self.datasaveSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
1008 self.datasaveSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
995 self.datasaveSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
1009 self.tabWidget_4.setTabText(self.tabWidget_4.indexOf(self.tab_11), QtGui.QApplication.translate("MainWindow", "Save Data", None, QtGui.QApplication.UnicodeUTF8))
996 self.tabWidgetSpec.setTabText(self.tabWidgetSpec.indexOf(self.tab_11), QtGui.QApplication.translate("MainWindow", "Save Data", None, QtGui.QApplication.UnicodeUTF8))
1010 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_6), QtGui.QApplication.translate("MainWindow", "Spectra", None, QtGui.QApplication.UnicodeUTF8))
997 self.tabWidgetProject.setTabText(self.tabWidgetProject.indexOf(self.tab_6), QtGui.QApplication.translate("MainWindow", "Spectra", None, QtGui.QApplication.UnicodeUTF8))
1011 self.checkBox_53.setText(QtGui.QApplication.translate("MainWindow", "Integration", None, QtGui.QApplication.UnicodeUTF8))
998 self.checkBox_53.setText(QtGui.QApplication.translate("MainWindow", "Integration", None, QtGui.QApplication.UnicodeUTF8))
1012 self.dataopCorrOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
999 self.dataopCorrOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
1013 self.dataopCorrCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
1000 self.dataopCorrCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
1014 self.tabWidget_5.setTabText(self.tabWidget_5.indexOf(self.tab_12), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8))
1001 self.tabWidgetCor.setTabText(self.tabWidgetCor.indexOf(self.tab_12), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8))
1015 self.label_95.setText(QtGui.QApplication.translate("MainWindow", "Type", None, QtGui.QApplication.UnicodeUTF8))
1002 self.label_95.setText(QtGui.QApplication.translate("MainWindow", "Type", None, QtGui.QApplication.UnicodeUTF8))
1016 self.label_96.setText(QtGui.QApplication.translate("MainWindow", "Show", None, QtGui.QApplication.UnicodeUTF8))
1003 self.label_96.setText(QtGui.QApplication.translate("MainWindow", "Show", None, QtGui.QApplication.UnicodeUTF8))
1017 self.label_97.setText(QtGui.QApplication.translate("MainWindow", "Save", None, QtGui.QApplication.UnicodeUTF8))
1004 self.label_97.setText(QtGui.QApplication.translate("MainWindow", "Save", None, QtGui.QApplication.UnicodeUTF8))
1018 self.label_89.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8))
1005 self.label_89.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8))
1019 self.label_90.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8))
1006 self.label_90.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8))
1020 self.toolButton_19.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
1007 self.toolButton_19.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
1021 self.label_91.setText(QtGui.QApplication.translate("MainWindow", "POTENCIA", None, QtGui.QApplication.UnicodeUTF8))
1008 self.label_91.setText(QtGui.QApplication.translate("MainWindow", "POTENCIA", None, QtGui.QApplication.UnicodeUTF8))
1022 self.dataGraphCorrOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
1009 self.dataGraphCorrOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
1023 self.dataGraphCorrCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
1010 self.dataGraphCorrCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
1024 self.label_98.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
1011 self.label_98.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
1025 self.label_99.setText(QtGui.QApplication.translate("MainWindow", "Prefix", None, QtGui.QApplication.UnicodeUTF8))
1012 self.label_99.setText(QtGui.QApplication.translate("MainWindow", "Prefix", None, QtGui.QApplication.UnicodeUTF8))
1026 self.toolButton_20.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
1013 self.toolButton_20.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
1027 self.tabWidget_5.setTabText(self.tabWidget_5.indexOf(self.tab_13), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8))
1014 self.tabWidgetCor.setTabText(self.tabWidgetCor.indexOf(self.tab_13), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8))
1028 self.label_17.setText(QtGui.QApplication.translate("MainWindow", "Data format", None, QtGui.QApplication.UnicodeUTF8))
1015 self.label_17.setText(QtGui.QApplication.translate("MainWindow", "Data format", None, QtGui.QApplication.UnicodeUTF8))
1029 self.label_18.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
1016 self.label_18.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8))
1030 self.toolButton_4.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
1017 self.toolButton_4.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8))
1031 self.label_19.setText(QtGui.QApplication.translate("MainWindow", "Sufix", None, QtGui.QApplication.UnicodeUTF8))
1018 self.label_19.setText(QtGui.QApplication.translate("MainWindow", "Sufix", None, QtGui.QApplication.UnicodeUTF8))
1032 self.datasaveCorrOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
1019 self.datasaveCorrOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8))
1033 self.dataSaveCorrCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
1020 self.dataSaveCorrCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8))
1034 self.tabWidget_5.setTabText(self.tabWidget_5.indexOf(self.tab_14), QtGui.QApplication.translate("MainWindow", "Save Data", None, QtGui.QApplication.UnicodeUTF8))
1021 self.tabWidgetCor.setTabText(self.tabWidgetCor.indexOf(self.tab_14), QtGui.QApplication.translate("MainWindow", "Save Data", None, QtGui.QApplication.UnicodeUTF8))
1035 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_9), QtGui.QApplication.translate("MainWindow", "Correlation", None, QtGui.QApplication.UnicodeUTF8))
1022 self.tabWidgetProject.setTabText(self.tabWidgetProject.indexOf(self.tab_9), QtGui.QApplication.translate("MainWindow", "Correlation", None, QtGui.QApplication.UnicodeUTF8))
1036 self.tabWidget_2.setTabText(self.tabWidget_2.indexOf(self.tab), QtGui.QApplication.translate("MainWindow", "Ouput Branch", None, QtGui.QApplication.UnicodeUTF8))
1023 self.tabWidget_2.setTabText(self.tabWidget_2.indexOf(self.tab), QtGui.QApplication.translate("MainWindow", "Ouput Branch", None, QtGui.QApplication.UnicodeUTF8))
1037 self.menuFILE.setTitle(QtGui.QApplication.translate("MainWindow", "Project", None, QtGui.QApplication.UnicodeUTF8))
1024 self.menuFILE.setTitle(QtGui.QApplication.translate("MainWindow", "Project", None, QtGui.QApplication.UnicodeUTF8))
1038 self.menuRUN.setTitle(QtGui.QApplication.translate("MainWindow", "Run", None, QtGui.QApplication.UnicodeUTF8))
1025 self.menuRUN.setTitle(QtGui.QApplication.translate("MainWindow", "Run", None, QtGui.QApplication.UnicodeUTF8))
1039 self.menuOPTIONS.setTitle(QtGui.QApplication.translate("MainWindow", "Options", None, QtGui.QApplication.UnicodeUTF8))
1026 self.menuOPTIONS.setTitle(QtGui.QApplication.translate("MainWindow", "Options", None, QtGui.QApplication.UnicodeUTF8))
1040 self.menuHELP.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8))
1027 self.menuHELP.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8))
1041 self.toolBar_2.setWindowTitle(QtGui.QApplication.translate("MainWindow", "toolBar_2", None, QtGui.QApplication.UnicodeUTF8))
1042 self.toolBar.setWindowTitle(QtGui.QApplication.translate("MainWindow", "toolBar", None, QtGui.QApplication.UnicodeUTF8))
1028 self.toolBar.setWindowTitle(QtGui.QApplication.translate("MainWindow", "toolBar", None, QtGui.QApplication.UnicodeUTF8))
1043 self.actionabrirObj.setText(QtGui.QApplication.translate("MainWindow", "Abrir", None, QtGui.QApplication.UnicodeUTF8))
1029 self.menuFileAbrirObj.setText(QtGui.QApplication.translate("MainWindow", "Abrir", None, QtGui.QApplication.UnicodeUTF8))
1044 self.actioncrearObj.setText(QtGui.QApplication.translate("MainWindow", "Crear", None, QtGui.QApplication.UnicodeUTF8))
1030 self.menuFileCrearObj.setText(QtGui.QApplication.translate("MainWindow", "Crear", None, QtGui.QApplication.UnicodeUTF8))
1045 self.actionguardarObj.setText(QtGui.QApplication.translate("MainWindow", "Guardar", None, QtGui.QApplication.UnicodeUTF8))
1031 self.menuFileGuardarObj.setText(QtGui.QApplication.translate("MainWindow", "Guardar", None, QtGui.QApplication.UnicodeUTF8))
1046 self.actionStartObj.setText(QtGui.QApplication.translate("MainWindow", "start", None, QtGui.QApplication.UnicodeUTF8))
1032 self.menuRUNStartObj.setText(QtGui.QApplication.translate("MainWindow", "start", None, QtGui.QApplication.UnicodeUTF8))
1047 self.actionPausaObj.setText(QtGui.QApplication.translate("MainWindow", "pausa", None, QtGui.QApplication.UnicodeUTF8))
1033 self.menuRUNPausaObj.setText(QtGui.QApplication.translate("MainWindow", "pausa", None, QtGui.QApplication.UnicodeUTF8))
1048 self.actionconfigLogfileObj.setText(QtGui.QApplication.translate("MainWindow", "configLogfileObj", None, QtGui.QApplication.UnicodeUTF8))
1034 self.menuOptConfigLogfileObj.setText(QtGui.QApplication.translate("MainWindow", "configLogfileObj", None, QtGui.QApplication.UnicodeUTF8))
1049 self.actionconfigserverObj.setText(QtGui.QApplication.translate("MainWindow", "configServerFTP", None, QtGui.QApplication.UnicodeUTF8))
1035 self.menuOptConfigserverObj.setText(QtGui.QApplication.translate("MainWindow", "configServerFTP", None, QtGui.QApplication.UnicodeUTF8))
1050 self.actionAboutObj.setText(QtGui.QApplication.translate("MainWindow", "aboutObj", None, QtGui.QApplication.UnicodeUTF8))
1036 self.menuHELPAboutObj.setText(QtGui.QApplication.translate("MainWindow", "aboutObj", None, QtGui.QApplication.UnicodeUTF8))
1051 self.actionPrfObj.setText(QtGui.QApplication.translate("MainWindow", "prfObj", None, QtGui.QApplication.UnicodeUTF8))
1037 self.menuHELPPrfObj.setText(QtGui.QApplication.translate("MainWindow", "prfObj", None, QtGui.QApplication.UnicodeUTF8))
1052 self.actionOpenObj.setText(QtGui.QApplication.translate("MainWindow", "openObj", None, QtGui.QApplication.UnicodeUTF8))
1038 self.actOpenObj.setText(QtGui.QApplication.translate("MainWindow", "openObj", None, QtGui.QApplication.UnicodeUTF8))
1053 self.actionOpenObj.setToolTip(QtGui.QApplication.translate("MainWindow", "open file", None, QtGui.QApplication.UnicodeUTF8))
1039 self.actOpenObj.setToolTip(QtGui.QApplication.translate("MainWindow", "open file", None, QtGui.QApplication.UnicodeUTF8))
1054 self.actionsaveObj.setText(QtGui.QApplication.translate("MainWindow", "saveObj", None, QtGui.QApplication.UnicodeUTF8))
1040 self.actSaveObj.setText(QtGui.QApplication.translate("MainWindow", "saveObj", None, QtGui.QApplication.UnicodeUTF8))
1055 self.actionsaveObj.setToolTip(QtGui.QApplication.translate("MainWindow", "Manage Save", None, QtGui.QApplication.UnicodeUTF8))
1041 self.actSaveObj.setToolTip(QtGui.QApplication.translate("MainWindow", "Manage Save", None, QtGui.QApplication.UnicodeUTF8))
1056 self.actionPlayObj.setText(QtGui.QApplication.translate("MainWindow", "playObj", None, QtGui.QApplication.UnicodeUTF8))
1042 self.actPlayObj.setText(QtGui.QApplication.translate("MainWindow", "playObj", None, QtGui.QApplication.UnicodeUTF8))
1057 self.actionPlayObj.setToolTip(QtGui.QApplication.translate("MainWindow", "Manage Play", None, QtGui.QApplication.UnicodeUTF8))
1043 self.actPlayObj.setToolTip(QtGui.QApplication.translate("MainWindow", "Manage Play", None, QtGui.QApplication.UnicodeUTF8))
1058 self.actionstopObj.setText(QtGui.QApplication.translate("MainWindow", "stopObj", None, QtGui.QApplication.UnicodeUTF8))
1044 self.actStopObj.setText(QtGui.QApplication.translate("MainWindow", "stopObj", None, QtGui.QApplication.UnicodeUTF8))
1059 self.actionstopObj.setToolTip(QtGui.QApplication.translate("MainWindow", "Manage Stop", None, QtGui.QApplication.UnicodeUTF8))
1045 self.actStopObj.setToolTip(QtGui.QApplication.translate("MainWindow", "Manage Stop", None, QtGui.QApplication.UnicodeUTF8))
1060 self.actioncreateObj.setText(QtGui.QApplication.translate("MainWindow", "createObj", None, QtGui.QApplication.UnicodeUTF8))
1046 self.actCreateObj.setText(QtGui.QApplication.translate("MainWindow", "createObj", None, QtGui.QApplication.UnicodeUTF8))
1061 self.actioncreateObj.setToolTip(QtGui.QApplication.translate("MainWindow", "Manage Create", None, QtGui.QApplication.UnicodeUTF8))
1047 self.actCreateObj.setToolTip(QtGui.QApplication.translate("MainWindow", "Manage Create", None, QtGui.QApplication.UnicodeUTF8))
1062 self.actionCerrarObj.setText(QtGui.QApplication.translate("MainWindow", "Cerrar", None, QtGui.QApplication.UnicodeUTF8))
1048 self.menuFileCerrarObj.setText(QtGui.QApplication.translate("MainWindow", "Cerrar", None, QtGui.QApplication.UnicodeUTF8))
1063
1049
1064 from PyQt4 import Qsci
1050 from PyQt4 import Qsci
1065
1051
1066 if __name__ == "__main__":
1052 if __name__ == "__main__":
1067 import sys
1053 import sys
1068 app = QtGui.QApplication(sys.argv)
1054 app = QtGui.QApplication(sys.argv)
1069 MainWindow = QtGui.QMainWindow()
1055 MainWindow = QtGui.QMainWindow()
1070 ui = Ui_MainWindow()
1056 ui = Ui_MainWindow()
1071 ui.setupUi(MainWindow)
1057 ui.setupUi(MainWindow)
1072 MainWindow.show()
1058 MainWindow.show()
1073 sys.exit(app.exec_())
1059 sys.exit(app.exec_())
1074
1060
General Comments 0
You need to be logged in to leave comments. Login now