##// END OF EJS Templates
mainwindow:...
Alexander Valdez -
r247:6d26521f3c97
parent child
Show More
@@ -36,7 +36,7 class MainWindow(QMainWindow, Ui_MainWindow):
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=[]
@@ -57,6 +57,9 class MainWindow(QMainWindow, Ui_MainWindow):
57 57
58 58 self.readUnitConfObjList=[]
59 59
60 self.upObjVolList=[]
61 self.upobjSpecList=[]
62
60 63
61 64 self.operObjList=[]
62 65
@@ -72,6 +75,17 class MainWindow(QMainWindow, Ui_MainWindow):
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:
@@ -81,7 +95,10 class MainWindow(QMainWindow, Ui_MainWindow):
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):
@@ -296,12 +313,7 class MainWindow(QMainWindow, Ui_MainWindow):
296 313 self.treeView_2.setModel(self.model_2)
297 314 self.treeView_2.expandAll()
298 315
299
300
301
302
303
304
316
305 317 @pyqtSignature("")
306 318 def on_addUnitProces_clicked(self):
307 319 """
@@ -356,13 +368,22 class MainWindow(QMainWindow, Ui_MainWindow):
356 368
357 369 def loadUp(self):
358 370 self.addOpUpselec.clear()
359
371 self.addOpSpecUpselec.clear()
360 372 for i in self.upObjList:
361 name=i.getElementName()
362 id=int(i.id)-1
363 self.addOpUpselec.addItem(name+str(id))
364
365
373 if i.datatype=='Voltage':
374 self.upObjVolList.append(i)
375 name=i.getElementName()
376 id=int(i.id)-1
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))
383
384 self.resetopVolt()
385 self.resetopSpec()
386
366 387
367 388 @pyqtSignature("int")
368 389 def on_selecChannelopVolCEB_stateChanged(self, p0):
@@ -370,7 +391,8 class MainWindow(QMainWindow, Ui_MainWindow):
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)
@@ -384,7 +406,7 class MainWindow(QMainWindow, Ui_MainWindow):
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)
@@ -400,13 +422,25 class MainWindow(QMainWindow, Ui_MainWindow):
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 print " deshabilitado"
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("")
@@ -414,33 +448,108 class MainWindow(QMainWindow, Ui_MainWindow):
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')
420 473
421 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
490
491 def resetopSpec(self):
492 self.nFFTPointOpSpecCEB.setChecked(False)
422 493
423 # if self.coherentIntegrationCEB.enabled():
424 # self.operObjList[0].
425 #
426
494 self.valuenFFTPointOpSpec.clear()
495
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"
433
434 opObj10 = self.procUnitConfObj0.addOperation(name='selectChannels')
435 opObj10.addParameter(name='channelList', value='3,4,5', format='intlist')
436
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')
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')
440 507
441 opObj12 = self.procUnitConfObj0.addOperation(name='CohInt', optype='other')
442 opObj12.addParameter(name='n', value='10', format='int')
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)
518
519 if p0==0:
520 print " deshabilitado"
521
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"
443 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"
547
548
549 def resetgraphSpec(self):
550 self.SpectraPlotGraphCEB.setChecked(False)
551 self.CrossSpectraPlotGraphceb.setChecked(False)
552 self.RTIPlotGraphCEB.setChecked(False)
444 553
445 554 @pyqtSignature("")
446 555 def on_dataGraphSpecOkBtn_clicked(self):
@@ -448,12 +557,29 class MainWindow(QMainWindow, Ui_MainWindow):
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
456
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')
582
457 583 @pyqtSignature("")
458 584 def on_actionguardarObj_triggered(self):
459 585 """
@@ -569,8 +695,6 class UnitProcess(QMainWindow, Ui_UnitProcess):
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("")
@@ -578,14 +702,8 class UnitProcess(QMainWindow, Ui_UnitProcess):
578 702 """
579 703 Slot documentation goes here.
580 704 """
581 # TODO: not implemented yet
582 #raise NotImplementedError
583 #self.getListMainWindow()
705
584 706 print "alex"
585
586 #for i in self.getfromWindowList:
587 #print i
588
589 707 self.almacena()
590 708
591 709 @pyqtSignature("")
This diff has been collapsed as it changes many lines, (760 lines changed) Show them Hide them
@@ -2,7 +2,7
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!
@@ -17,11 +17,11 except AttributeError:
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"))
@@ -36,13 +36,8 class Ui_MainWindow(object):
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))
@@ -61,31 +56,21 class Ui_MainWindow(object):
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)
@@ -93,7 +78,7 class Ui_MainWindow(object):
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)
@@ -115,16 +100,16 class Ui_MainWindow(object):
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"))
@@ -141,7 +126,7 class Ui_MainWindow(object):
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)
@@ -149,16 +134,16 class Ui_MainWindow(object):
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"))
@@ -169,13 +154,13 class Ui_MainWindow(object):
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"))
@@ -192,10 +177,10 class Ui_MainWindow(object):
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))
@@ -203,8 +188,14 class Ui_MainWindow(object):
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"))
@@ -221,94 +212,76 class Ui_MainWindow(object):
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"))
@@ -329,7 +302,7 class Ui_MainWindow(object):
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)
@@ -337,60 +310,11 class Ui_MainWindow(object):
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"))
@@ -407,25 +331,64 class Ui_MainWindow(object):
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"))
@@ -433,215 +396,149 class Ui_MainWindow(object):
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"))
@@ -658,14 +555,53 class Ui_MainWindow(object):
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"))
@@ -673,7 +609,7 class Ui_MainWindow(object):
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"))
@@ -681,19 +617,19 class Ui_MainWindow(object):
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"))
@@ -704,45 +640,37 class Ui_MainWindow(object):
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"))
@@ -765,7 +693,7 class Ui_MainWindow(object):
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"))
@@ -790,57 +718,52 class Ui_MainWindow(object):
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"))
@@ -848,7 +771,7 class Ui_MainWindow(object):
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"))
@@ -856,19 +779,19 class Ui_MainWindow(object):
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"))
@@ -876,30 +799,27 class Ui_MainWindow(object):
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"))
@@ -998,25 +918,13 class Ui_MainWindow(object):
998 918 self.tabWidget_5.setCurrentIndex(0)
999 919 self.tabWidget_2.setCurrentIndex(0)
1000 920 QtCore.QMetaObject.connectSlotsByName(MainWindow)
1001
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 921
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))
@@ -1030,34 +938,33 class Ui_MainWindow(object):
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))
@@ -1066,29 +973,32 class Ui_MainWindow(object):
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))
@@ -1108,12 +1018,12 class Ui_MainWindow(object):
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))
General Comments 0
You need to be logged in to leave comments. Login now