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