@@ -36,7 +36,7 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
36 | print "Inicio de Programa Interfaz Gráfica" |
|
36 | print "Inicio de Programa Interfaz Gráfica" | |
37 | QMainWindow.__init__(self, parent) |
|
37 | QMainWindow.__init__(self, parent) | |
38 | self.setupUi(self) |
|
38 | self.setupUi(self) | |
39 |
|
39 | |||
40 | self.online=0 |
|
40 | self.online=0 | |
41 | self.datatype=0 |
|
41 | self.datatype=0 | |
42 | self.variableList=[] |
|
42 | self.variableList=[] | |
@@ -57,6 +57,9 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
57 |
|
57 | |||
58 | self.readUnitConfObjList=[] |
|
58 | self.readUnitConfObjList=[] | |
59 |
|
59 | |||
|
60 | self.upObjVolList=[] | |||
|
61 | self.upobjSpecList=[] | |||
|
62 | ||||
60 |
|
63 | |||
61 | self.operObjList=[] |
|
64 | self.operObjList=[] | |
62 |
|
65 | |||
@@ -72,6 +75,17 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
72 |
|
75 | |||
73 | self.setParam() |
|
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 | def getNumberofProject(self): |
|
90 | def getNumberofProject(self): | |
77 | # for i in self.proObjList: |
|
91 | # for i in self.proObjList: | |
@@ -81,7 +95,10 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
81 | # print i |
|
95 | # print i | |
82 |
|
96 | |||
83 | def setParam(self): |
|
97 | def setParam(self): | |
84 |
self.dataPathTxt.setText('C:\ |
|
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 | def clickFunctiontree(self,index): |
|
104 | def clickFunctiontree(self,index): | |
@@ -296,12 +313,7 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
296 | self.treeView_2.setModel(self.model_2) |
|
313 | self.treeView_2.setModel(self.model_2) | |
297 | self.treeView_2.expandAll() |
|
314 | self.treeView_2.expandAll() | |
298 |
|
315 | |||
299 |
|
|
316 | ||
300 |
|
||||
301 |
|
||||
302 |
|
||||
303 |
|
||||
304 |
|
||||
305 | @pyqtSignature("") |
|
317 | @pyqtSignature("") | |
306 | def on_addUnitProces_clicked(self): |
|
318 | def on_addUnitProces_clicked(self): | |
307 | """ |
|
319 | """ | |
@@ -356,13 +368,22 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
356 |
|
368 | |||
357 | def loadUp(self): |
|
369 | def loadUp(self): | |
358 | self.addOpUpselec.clear() |
|
370 | self.addOpUpselec.clear() | |
359 |
|
371 | self.addOpSpecUpselec.clear() | ||
360 | for i in self.upObjList: |
|
372 | for i in self.upObjList: | |
361 | name=i.getElementName() |
|
373 | if i.datatype=='Voltage': | |
362 | id=int(i.id)-1 |
|
374 | self.upObjVolList.append(i) | |
363 | self.addOpUpselec.addItem(name+str(id)) |
|
375 | name=i.getElementName() | |
364 |
|
376 | id=int(i.id)-1 | ||
365 |
|
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 | @pyqtSignature("int") |
|
388 | @pyqtSignature("int") | |
368 | def on_selecChannelopVolCEB_stateChanged(self, p0): |
|
389 | def on_selecChannelopVolCEB_stateChanged(self, p0): | |
@@ -370,7 +391,8 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
370 | Slot documentation goes here. |
|
391 | Slot documentation goes here. | |
371 | """ |
|
392 | """ | |
372 | if p0==2: |
|
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 | opObj10=upProcessSelect.addOperation(name='selectChannels') |
|
396 | opObj10=upProcessSelect.addOperation(name='selectChannels') | |
375 | print opObj10.id |
|
397 | print opObj10.id | |
376 | self.operObjList.append(opObj10) |
|
398 | self.operObjList.append(opObj10) | |
@@ -384,7 +406,7 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
384 | Slot documentation goes here. |
|
406 | Slot documentation goes here. | |
385 | """ |
|
407 | """ | |
386 | if p0==2: |
|
408 | if p0==2: | |
387 | upProcessSelect=self.upObjList[int(self.addOpUpselec.currentIndex())] |
|
409 | upProcessSelect=self.upObjVolList[int(self.addOpUpselec.currentIndex())] | |
388 | opObj10=upProcessSelect.addOperation(name='selectHeights') |
|
410 | opObj10=upProcessSelect.addOperation(name='selectHeights') | |
389 | print opObj10.id |
|
411 | print opObj10.id | |
390 | self.operObjList.append(opObj10) |
|
412 | self.operObjList.append(opObj10) | |
@@ -400,13 +422,25 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
400 | Slot documentation goes here. |
|
422 | Slot documentation goes here. | |
401 | """ |
|
423 | """ | |
402 | if p0==2: |
|
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 | opObj10=upProcessSelect.addOperation(name='CohInt', optype='other') |
|
427 | opObj10=upProcessSelect.addOperation(name='CohInt', optype='other') | |
405 | print opObj10.id |
|
428 | print opObj10.id | |
406 | self.operObjList.append(opObj10) |
|
429 | self.operObjList.append(opObj10) | |
407 | print "Choose number of Cohint" |
|
430 | print "Choose number of Cohint" | |
408 | if p0==0: |
|
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 | @pyqtSignature("") |
|
446 | @pyqtSignature("") | |
@@ -414,33 +448,108 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
414 | """ |
|
448 | """ | |
415 | Slot documentation goes here. |
|
449 | Slot documentation goes here. | |
416 | """ |
|
450 | """ | |
417 |
|
|
451 | if self.selecChannelopVolCEB.isChecked(): | |
418 | # print self.selecHeighopVolCEB.isOn() |
|
452 | for i in self.operObjList: | |
419 | # print self.coherentIntegrationCEB.isOn() |
|
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(): |
|
494 | self.valuenFFTPointOpSpec.clear() | |
424 | # self.operObjList[0]. |
|
495 | ||
425 | # |
|
496 | ||
426 |
|
||||
427 | @pyqtSignature("") |
|
497 | @pyqtSignature("") | |
428 | def on_dataopSpecOkBtn_clicked(self): |
|
498 | def on_dataopSpecOkBtn_clicked(self): | |
429 | """ |
|
499 | """ | |
430 | Slot documentation goes here. |
|
500 | Slot documentation goes here. | |
431 | """ |
|
501 | """ | |
432 | print "Añadimos operaciones Spectra,nchannels,value,format" |
|
502 | print "Añadimos operaciones Spectra,nchannels,value,format" | |
433 |
|
503 | if self.nFFTPointOpSpecCEB.isChecked(): | ||
434 | opObj10 = self.procUnitConfObj0.addOperation(name='selectChannels') |
|
504 | upProcessSelect=self.upobjSpecList[int(self.addOpSpecUpselec.currentIndex())] | |
435 | opObj10.addParameter(name='channelList', value='3,4,5', format='intlist') |
|
505 | value=self.valuenFFTPointOpSpec.text() | |
436 |
|
506 | upProcessSelect.addParameter(name='nFFTPoints',value=value,format='int') | ||
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') |
|
|||
440 |
|
507 | |||
441 | opObj12 = self.procUnitConfObj0.addOperation(name='CohInt', optype='other') |
|
508 | @pyqtSignature("int") | |
442 | opObj12.addParameter(name='n', value='10', format='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 | @pyqtSignature("") |
|
554 | @pyqtSignature("") | |
446 | def on_dataGraphSpecOkBtn_clicked(self): |
|
555 | def on_dataGraphSpecOkBtn_clicked(self): | |
@@ -448,12 +557,29 class MainWindow(QMainWindow, Ui_MainWindow): | |||||
448 | Slot documentation goes here. |
|
557 | Slot documentation goes here. | |
449 | """ |
|
558 | """ | |
450 | print "Graficar Spec op" |
|
559 | print "Graficar Spec op" | |
451 | # TODO: not implemented yet |
|
560 | if self.SpectraPlotGraphCEB.isChecked(): | |
452 | #raise NotImplementedError |
|
561 | for i in self.operObjList: | |
453 |
|
562 | if i.name=='SpectraPlot': | ||
454 |
|
563 | i.addParameter(name='idfigure', value='1', format='int') | ||
455 |
|
564 | i.addParameter(name='wintitle', value='SpectraPlot0', format='str') | ||
456 |
|
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 | @pyqtSignature("") |
|
583 | @pyqtSignature("") | |
458 | def on_actionguardarObj_triggered(self): |
|
584 | def on_actionguardarObj_triggered(self): | |
459 | """ |
|
585 | """ | |
@@ -569,8 +695,6 class UnitProcess(QMainWindow, Ui_UnitProcess): | |||||
569 | """ |
|
695 | """ | |
570 | Slot documentation goes here. |
|
696 | Slot documentation goes here. | |
571 | """ |
|
697 | """ | |
572 | # TODO: not implemented yet |
|
|||
573 | #raise NotImplementedError |
|
|||
574 | self.close() |
|
698 | self.close() | |
575 |
|
699 | |||
576 | @pyqtSignature("") |
|
700 | @pyqtSignature("") | |
@@ -578,14 +702,8 class UnitProcess(QMainWindow, Ui_UnitProcess): | |||||
578 | """ |
|
702 | """ | |
579 | Slot documentation goes here. |
|
703 | Slot documentation goes here. | |
580 | """ |
|
704 | """ | |
581 | # TODO: not implemented yet |
|
705 | ||
582 | #raise NotImplementedError |
|
|||
583 | #self.getListMainWindow() |
|
|||
584 | print "alex" |
|
706 | print "alex" | |
585 |
|
||||
586 | #for i in self.getfromWindowList: |
|
|||
587 | #print i |
|
|||
588 |
|
||||
589 | self.almacena() |
|
707 | self.almacena() | |
590 |
|
708 | |||
591 | @pyqtSignature("") |
|
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 | # Form implementation generated from reading ui file 'C:\Users\alex\ericworkspace\UIDOS\MainWindow_NOVTRES.ui' |
|
3 | # Form implementation generated from reading ui file 'C:\Users\alex\ericworkspace\UIDOS\MainWindow_NOVTRES.ui' | |
4 | # |
|
4 | # | |
5 |
# Created: |
|
5 | # Created: Wed Dec 12 10:10:03 2012 | |
6 | # by: PyQt4 UI code generator 4.9.4 |
|
6 | # by: PyQt4 UI code generator 4.9.4 | |
7 | # |
|
7 | # | |
8 | # WARNING! All changes made in this file will be lost! |
|
8 | # WARNING! All changes made in this file will be lost! | |
@@ -17,11 +17,11 except AttributeError: | |||||
17 | class Ui_MainWindow(object): |
|
17 | class Ui_MainWindow(object): | |
18 | def setupUi(self, MainWindow): |
|
18 | def setupUi(self, MainWindow): | |
19 | MainWindow.setObjectName(_fromUtf8("MainWindow")) |
|
19 | MainWindow.setObjectName(_fromUtf8("MainWindow")) | |
20 |
MainWindow.resize(8 |
|
20 | MainWindow.resize(867, 567) | |
21 | self.centralWidget = QtGui.QWidget(MainWindow) |
|
21 | self.centralWidget = QtGui.QWidget(MainWindow) | |
22 | self.centralWidget.setObjectName(_fromUtf8("centralWidget")) |
|
22 | self.centralWidget.setObjectName(_fromUtf8("centralWidget")) | |
23 | self.frame_2 = QtGui.QFrame(self.centralWidget) |
|
23 | self.frame_2 = QtGui.QFrame(self.centralWidget) | |
24 |
self.frame_2.setGeometry(QtCore.QRect(5 |
|
24 | self.frame_2.setGeometry(QtCore.QRect(580, 0, 281, 511)) | |
25 | self.frame_2.setFrameShape(QtGui.QFrame.StyledPanel) |
|
25 | self.frame_2.setFrameShape(QtGui.QFrame.StyledPanel) | |
26 | self.frame_2.setFrameShadow(QtGui.QFrame.Plain) |
|
26 | self.frame_2.setFrameShadow(QtGui.QFrame.Plain) | |
27 | self.frame_2.setObjectName(_fromUtf8("frame_2")) |
|
27 | self.frame_2.setObjectName(_fromUtf8("frame_2")) | |
@@ -36,13 +36,8 class Ui_MainWindow(object): | |||||
36 | font.setPointSize(11) |
|
36 | font.setPointSize(11) | |
37 | self.label_46.setFont(font) |
|
37 | self.label_46.setFont(font) | |
38 | self.label_46.setObjectName(_fromUtf8("label_46")) |
|
38 | self.label_46.setObjectName(_fromUtf8("label_46")) | |
39 |
self. |
|
39 | self.treeView_2 = QtGui.QTreeView(self.frame_2) | |
40 |
self. |
|
40 | self.treeView_2.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)) |
|
|||
46 | self.treeView_2.setObjectName(_fromUtf8("treeView_2")) |
|
41 | self.treeView_2.setObjectName(_fromUtf8("treeView_2")) | |
47 | self.frame = QtGui.QFrame(self.centralWidget) |
|
42 | self.frame = QtGui.QFrame(self.centralWidget) | |
48 | self.frame.setGeometry(QtCore.QRect(0, 0, 251, 511)) |
|
43 | self.frame.setGeometry(QtCore.QRect(0, 0, 251, 511)) | |
@@ -61,31 +56,21 class Ui_MainWindow(object): | |||||
61 | self.label.setFont(font) |
|
56 | self.label.setFont(font) | |
62 | self.label.setObjectName(_fromUtf8("label")) |
|
57 | self.label.setObjectName(_fromUtf8("label")) | |
63 | self.addpBtn = QtGui.QPushButton(self.frame_9) |
|
58 | self.addpBtn = QtGui.QPushButton(self.frame_9) | |
64 |
self.addpBtn.setGeometry(QtCore.QRect( |
|
59 | self.addpBtn.setGeometry(QtCore.QRect(10, 30, 101, 23)) | |
65 | self.addpBtn.setObjectName(_fromUtf8("addpBtn")) |
|
60 | self.addpBtn.setObjectName(_fromUtf8("addpBtn")) | |
66 | self.addUnitProces = QtGui.QPushButton(self.frame_9) |
|
61 | self.addUnitProces = QtGui.QPushButton(self.frame_9) | |
67 |
self.addUnitProces.setGeometry(QtCore.QRect(120, 30, |
|
62 | self.addUnitProces.setGeometry(QtCore.QRect(120, 30, 101, 23)) | |
68 | self.addUnitProces.setObjectName(_fromUtf8("addUnitProces")) |
|
63 | self.addUnitProces.setObjectName(_fromUtf8("addUnitProces")) | |
69 |
self. |
|
64 | self.treeView = QtGui.QTreeView(self.frame) | |
70 |
self. |
|
65 | self.treeView.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) |
|
|||
79 | self.treeView.setObjectName(_fromUtf8("treeView")) |
|
66 | self.treeView.setObjectName(_fromUtf8("treeView")) | |
80 | self.verticalLayout_4.addWidget(self.treeView) |
|
67 | self.frame_7 = QtGui.QFrame(self.centralWidget) | |
81 | self.scrollArea.setWidget(self.scrollAreaWidgetContents) |
|
68 | self.frame_7.setGeometry(QtCore.QRect(250, 0, 331, 511)) | |
82 | self.frame_11 = QtGui.QFrame(self.centralWidget) |
|
69 | self.frame_7.setFrameShape(QtGui.QFrame.StyledPanel) | |
83 | self.frame_11.setGeometry(QtCore.QRect(260, 0, 301, 391)) |
|
70 | self.frame_7.setFrameShadow(QtGui.QFrame.Plain) | |
84 | self.frame_11.setFrameShape(QtGui.QFrame.StyledPanel) |
|
71 | self.frame_7.setObjectName(_fromUtf8("frame_7")) | |
85 | self.frame_11.setFrameShadow(QtGui.QFrame.Plain) |
|
72 | self.tabWidget = QtGui.QTabWidget(self.frame_7) | |
86 | self.frame_11.setObjectName(_fromUtf8("frame_11")) |
|
73 | self.tabWidget.setGeometry(QtCore.QRect(10, 10, 311, 381)) | |
87 | self.tabWidget = QtGui.QTabWidget(self.frame_11) |
|
|||
88 | self.tabWidget.setGeometry(QtCore.QRect(10, 10, 281, 371)) |
|
|||
89 | font = QtGui.QFont() |
|
74 | font = QtGui.QFont() | |
90 | font.setPointSize(10) |
|
75 | font.setPointSize(10) | |
91 | self.tabWidget.setFont(font) |
|
76 | self.tabWidget.setFont(font) | |
@@ -93,7 +78,7 class Ui_MainWindow(object): | |||||
93 | self.tab_5 = QtGui.QWidget() |
|
78 | self.tab_5 = QtGui.QWidget() | |
94 | self.tab_5.setObjectName(_fromUtf8("tab_5")) |
|
79 | self.tab_5.setObjectName(_fromUtf8("tab_5")) | |
95 | self.frame_5 = QtGui.QFrame(self.tab_5) |
|
80 | self.frame_5 = QtGui.QFrame(self.tab_5) | |
96 |
self.frame_5.setGeometry(QtCore.QRect(10, 1 |
|
81 | self.frame_5.setGeometry(QtCore.QRect(10, 120, 281, 31)) | |
97 | font = QtGui.QFont() |
|
82 | font = QtGui.QFont() | |
98 | font.setPointSize(10) |
|
83 | font.setPointSize(10) | |
99 | self.frame_5.setFont(font) |
|
84 | self.frame_5.setFont(font) | |
@@ -115,16 +100,16 class Ui_MainWindow(object): | |||||
115 | self.readModeCmBox.addItem(_fromUtf8("")) |
|
100 | self.readModeCmBox.addItem(_fromUtf8("")) | |
116 | self.readModeCmBox.addItem(_fromUtf8("")) |
|
101 | self.readModeCmBox.addItem(_fromUtf8("")) | |
117 | self.dataWaitLine = QtGui.QLabel(self.frame_5) |
|
102 | self.dataWaitLine = QtGui.QLabel(self.frame_5) | |
118 |
self.dataWaitLine.setGeometry(QtCore.QRect(1 |
|
103 | self.dataWaitLine.setGeometry(QtCore.QRect(170, 10, 61, 20)) | |
119 | font = QtGui.QFont() |
|
104 | font = QtGui.QFont() | |
120 | font.setPointSize(10) |
|
105 | font.setPointSize(10) | |
121 | self.dataWaitLine.setFont(font) |
|
106 | self.dataWaitLine.setFont(font) | |
122 | self.dataWaitLine.setObjectName(_fromUtf8("dataWaitLine")) |
|
107 | self.dataWaitLine.setObjectName(_fromUtf8("dataWaitLine")) | |
123 | self.dataWaitTxt = QtGui.QLineEdit(self.frame_5) |
|
108 | self.dataWaitTxt = QtGui.QLineEdit(self.frame_5) | |
124 |
self.dataWaitTxt.setGeometry(QtCore.QRect(2 |
|
109 | self.dataWaitTxt.setGeometry(QtCore.QRect(240, 10, 31, 16)) | |
125 | self.dataWaitTxt.setObjectName(_fromUtf8("dataWaitTxt")) |
|
110 | self.dataWaitTxt.setObjectName(_fromUtf8("dataWaitTxt")) | |
126 | self.frame_4 = QtGui.QFrame(self.tab_5) |
|
111 | self.frame_4 = QtGui.QFrame(self.tab_5) | |
127 |
self.frame_4.setGeometry(QtCore.QRect(10, |
|
112 | self.frame_4.setGeometry(QtCore.QRect(10, 50, 281, 61)) | |
128 | self.frame_4.setFrameShape(QtGui.QFrame.StyledPanel) |
|
113 | self.frame_4.setFrameShape(QtGui.QFrame.StyledPanel) | |
129 | self.frame_4.setFrameShadow(QtGui.QFrame.Plain) |
|
114 | self.frame_4.setFrameShadow(QtGui.QFrame.Plain) | |
130 | self.frame_4.setObjectName(_fromUtf8("frame_4")) |
|
115 | self.frame_4.setObjectName(_fromUtf8("frame_4")) | |
@@ -141,7 +126,7 class Ui_MainWindow(object): | |||||
141 | self.dataPathline.setFont(font) |
|
126 | self.dataPathline.setFont(font) | |
142 | self.dataPathline.setObjectName(_fromUtf8("dataPathline")) |
|
127 | self.dataPathline.setObjectName(_fromUtf8("dataPathline")) | |
143 | self.dataTypeCmbBox = QtGui.QComboBox(self.frame_4) |
|
128 | self.dataTypeCmbBox = QtGui.QComboBox(self.frame_4) | |
144 |
self.dataTypeCmbBox.setGeometry(QtCore.QRect(80, 10, 1 |
|
129 | self.dataTypeCmbBox.setGeometry(QtCore.QRect(80, 10, 141, 21)) | |
145 | font = QtGui.QFont() |
|
130 | font = QtGui.QFont() | |
146 | font.setPointSize(10) |
|
131 | font.setPointSize(10) | |
147 | self.dataTypeCmbBox.setFont(font) |
|
132 | self.dataTypeCmbBox.setFont(font) | |
@@ -149,16 +134,16 class Ui_MainWindow(object): | |||||
149 | self.dataTypeCmbBox.addItem(_fromUtf8("")) |
|
134 | self.dataTypeCmbBox.addItem(_fromUtf8("")) | |
150 | self.dataTypeCmbBox.addItem(_fromUtf8("")) |
|
135 | self.dataTypeCmbBox.addItem(_fromUtf8("")) | |
151 | self.dataPathTxt = QtGui.QLineEdit(self.frame_4) |
|
136 | self.dataPathTxt = QtGui.QLineEdit(self.frame_4) | |
152 |
self.dataPathTxt.setGeometry(QtCore.QRect(80, 40, 1 |
|
137 | self.dataPathTxt.setGeometry(QtCore.QRect(80, 40, 161, 16)) | |
153 | self.dataPathTxt.setObjectName(_fromUtf8("dataPathTxt")) |
|
138 | self.dataPathTxt.setObjectName(_fromUtf8("dataPathTxt")) | |
154 | self.dataPathBrowse = QtGui.QPushButton(self.frame_4) |
|
139 | self.dataPathBrowse = QtGui.QPushButton(self.frame_4) | |
155 |
self.dataPathBrowse.setGeometry(QtCore.QRect(2 |
|
140 | self.dataPathBrowse.setGeometry(QtCore.QRect(250, 40, 20, 16)) | |
156 | self.dataPathBrowse.setObjectName(_fromUtf8("dataPathBrowse")) |
|
141 | self.dataPathBrowse.setObjectName(_fromUtf8("dataPathBrowse")) | |
157 | self.dataFormatTxt = QtGui.QLineEdit(self.frame_4) |
|
142 | self.dataFormatTxt = QtGui.QLineEdit(self.frame_4) | |
158 |
self.dataFormatTxt.setGeometry(QtCore.QRect(2 |
|
143 | self.dataFormatTxt.setGeometry(QtCore.QRect(230, 10, 41, 16)) | |
159 | self.dataFormatTxt.setObjectName(_fromUtf8("dataFormatTxt")) |
|
144 | self.dataFormatTxt.setObjectName(_fromUtf8("dataFormatTxt")) | |
160 | self.frame_3 = QtGui.QFrame(self.tab_5) |
|
145 | self.frame_3 = QtGui.QFrame(self.tab_5) | |
161 |
self.frame_3.setGeometry(QtCore.QRect(10, 10, 2 |
|
146 | self.frame_3.setGeometry(QtCore.QRect(10, 10, 281, 31)) | |
162 | self.frame_3.setFrameShape(QtGui.QFrame.StyledPanel) |
|
147 | self.frame_3.setFrameShape(QtGui.QFrame.StyledPanel) | |
163 | self.frame_3.setFrameShadow(QtGui.QFrame.Plain) |
|
148 | self.frame_3.setFrameShadow(QtGui.QFrame.Plain) | |
164 | self.frame_3.setObjectName(_fromUtf8("frame_3")) |
|
149 | self.frame_3.setObjectName(_fromUtf8("frame_3")) | |
@@ -169,13 +154,13 class Ui_MainWindow(object): | |||||
169 | self.dataOperationModeline.setFont(font) |
|
154 | self.dataOperationModeline.setFont(font) | |
170 | self.dataOperationModeline.setObjectName(_fromUtf8("dataOperationModeline")) |
|
155 | self.dataOperationModeline.setObjectName(_fromUtf8("dataOperationModeline")) | |
171 | self.proConfCmbBox = QtGui.QComboBox(self.frame_3) |
|
156 | self.proConfCmbBox = QtGui.QComboBox(self.frame_3) | |
172 |
self.proConfCmbBox.setGeometry(QtCore.QRect(150, |
|
157 | self.proConfCmbBox.setGeometry(QtCore.QRect(150, 6, 121, 20)) | |
173 | font = QtGui.QFont() |
|
158 | font = QtGui.QFont() | |
174 | font.setPointSize(10) |
|
159 | font.setPointSize(10) | |
175 | self.proConfCmbBox.setFont(font) |
|
160 | self.proConfCmbBox.setFont(font) | |
176 | self.proConfCmbBox.setObjectName(_fromUtf8("proConfCmbBox")) |
|
161 | self.proConfCmbBox.setObjectName(_fromUtf8("proConfCmbBox")) | |
177 | self.frame_8 = QtGui.QFrame(self.tab_5) |
|
162 | self.frame_8 = QtGui.QFrame(self.tab_5) | |
178 |
self.frame_8.setGeometry(QtCore.QRect(10, 1 |
|
163 | self.frame_8.setGeometry(QtCore.QRect(10, 160, 281, 71)) | |
179 | self.frame_8.setFrameShape(QtGui.QFrame.StyledPanel) |
|
164 | self.frame_8.setFrameShape(QtGui.QFrame.StyledPanel) | |
180 | self.frame_8.setFrameShadow(QtGui.QFrame.Plain) |
|
165 | self.frame_8.setFrameShadow(QtGui.QFrame.Plain) | |
181 | self.frame_8.setObjectName(_fromUtf8("frame_8")) |
|
166 | self.frame_8.setObjectName(_fromUtf8("frame_8")) | |
@@ -192,10 +177,10 class Ui_MainWindow(object): | |||||
192 | self.dataEndline.setFont(font) |
|
177 | self.dataEndline.setFont(font) | |
193 | self.dataEndline.setObjectName(_fromUtf8("dataEndline")) |
|
178 | self.dataEndline.setObjectName(_fromUtf8("dataEndline")) | |
194 | self.starDateCmbBox = QtGui.QComboBox(self.frame_8) |
|
179 | self.starDateCmbBox = QtGui.QComboBox(self.frame_8) | |
195 |
self.starDateCmbBox.setGeometry(QtCore.QRect(1 |
|
180 | self.starDateCmbBox.setGeometry(QtCore.QRect(130, 10, 141, 16)) | |
196 | self.starDateCmbBox.setObjectName(_fromUtf8("starDateCmbBox")) |
|
181 | self.starDateCmbBox.setObjectName(_fromUtf8("starDateCmbBox")) | |
197 | self.endDateCmbBox = QtGui.QComboBox(self.frame_8) |
|
182 | self.endDateCmbBox = QtGui.QComboBox(self.frame_8) | |
198 |
self.endDateCmbBox.setGeometry(QtCore.QRect(1 |
|
183 | self.endDateCmbBox.setGeometry(QtCore.QRect(130, 30, 141, 16)) | |
199 | self.endDateCmbBox.setObjectName(_fromUtf8("endDateCmbBox")) |
|
184 | self.endDateCmbBox.setObjectName(_fromUtf8("endDateCmbBox")) | |
200 | self.LTReferenceRdBtn = QtGui.QRadioButton(self.frame_8) |
|
185 | self.LTReferenceRdBtn = QtGui.QRadioButton(self.frame_8) | |
201 | self.LTReferenceRdBtn.setGeometry(QtCore.QRect(30, 50, 211, 21)) |
|
186 | self.LTReferenceRdBtn.setGeometry(QtCore.QRect(30, 50, 211, 21)) | |
@@ -203,8 +188,14 class Ui_MainWindow(object): | |||||
203 | font.setPointSize(8) |
|
188 | font.setPointSize(8) | |
204 | self.LTReferenceRdBtn.setFont(font) |
|
189 | self.LTReferenceRdBtn.setFont(font) | |
205 | self.LTReferenceRdBtn.setObjectName(_fromUtf8("LTReferenceRdBtn")) |
|
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 | self.frame_10 = QtGui.QFrame(self.tab_5) |
|
197 | self.frame_10 = QtGui.QFrame(self.tab_5) | |
207 |
self.frame_10.setGeometry(QtCore.QRect(10, 2 |
|
198 | self.frame_10.setGeometry(QtCore.QRect(10, 240, 281, 71)) | |
208 | self.frame_10.setFrameShape(QtGui.QFrame.StyledPanel) |
|
199 | self.frame_10.setFrameShape(QtGui.QFrame.StyledPanel) | |
209 | self.frame_10.setFrameShadow(QtGui.QFrame.Plain) |
|
200 | self.frame_10.setFrameShadow(QtGui.QFrame.Plain) | |
210 | self.frame_10.setObjectName(_fromUtf8("frame_10")) |
|
201 | self.frame_10.setObjectName(_fromUtf8("frame_10")) | |
@@ -221,94 +212,76 class Ui_MainWindow(object): | |||||
221 | self.dataFinelTimeLine.setFont(font) |
|
212 | self.dataFinelTimeLine.setFont(font) | |
222 | self.dataFinelTimeLine.setObjectName(_fromUtf8("dataFinelTimeLine")) |
|
213 | self.dataFinelTimeLine.setObjectName(_fromUtf8("dataFinelTimeLine")) | |
223 | self.startTimeEdit = QtGui.QTimeEdit(self.frame_10) |
|
214 | self.startTimeEdit = QtGui.QTimeEdit(self.frame_10) | |
224 |
self.startTimeEdit.setGeometry(QtCore.QRect(1 |
|
215 | self.startTimeEdit.setGeometry(QtCore.QRect(150, 10, 121, 20)) | |
225 | self.startTimeEdit.setObjectName(_fromUtf8("startTimeEdit")) |
|
216 | self.startTimeEdit.setObjectName(_fromUtf8("startTimeEdit")) | |
226 | self.timeEdit_2 = QtGui.QTimeEdit(self.frame_10) |
|
217 | self.timeEdit_2 = QtGui.QTimeEdit(self.frame_10) | |
227 |
self.timeEdit_2.setGeometry(QtCore.QRect(1 |
|
218 | self.timeEdit_2.setGeometry(QtCore.QRect(150, 40, 121, 20)) | |
228 | self.timeEdit_2.setObjectName(_fromUtf8("timeEdit_2")) |
|
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 | self.tabWidget.addTab(self.tab_5, _fromUtf8("")) |
|
220 | self.tabWidget.addTab(self.tab_5, _fromUtf8("")) | |
236 | self.tab_7 = QtGui.QWidget() |
|
221 | self.tab_7 = QtGui.QWidget() | |
237 | self.tab_7.setObjectName(_fromUtf8("tab_7")) |
|
222 | self.tab_7.setObjectName(_fromUtf8("tab_7")) | |
238 | self.tabWidget_3 = QtGui.QTabWidget(self.tab_7) |
|
223 | self.tabWidget_3 = QtGui.QTabWidget(self.tab_7) | |
239 |
self.tabWidget_3.setGeometry(QtCore.QRect(10, |
|
224 | self.tabWidget_3.setGeometry(QtCore.QRect(10, 30, 291, 311)) | |
240 | self.tabWidget_3.setObjectName(_fromUtf8("tabWidget_3")) |
|
225 | self.tabWidget_3.setObjectName(_fromUtf8("tabWidget_3")) | |
241 | self.tab_3 = QtGui.QWidget() |
|
226 | self.tab_3 = QtGui.QWidget() | |
242 | self.tab_3.setObjectName(_fromUtf8("tab_3")) |
|
227 | self.tab_3.setObjectName(_fromUtf8("tab_3")) | |
243 |
self. |
|
228 | self.selecChannelopVolCEB = QtGui.QCheckBox(self.tab_3) | |
244 |
self. |
|
229 | self.selecChannelopVolCEB.setGeometry(QtCore.QRect(10, 10, 121, 21)) | |
245 | self.frame_13.setFrameShape(QtGui.QFrame.StyledPanel) |
|
230 | self.selecChannelopVolCEB.setObjectName(_fromUtf8("selecChannelopVolCEB")) | |
246 | self.frame_13.setFrameShadow(QtGui.QFrame.Plain) |
|
231 | self.numberChannelopVol = QtGui.QLineEdit(self.tab_3) | |
247 | self.frame_13.setObjectName(_fromUtf8("frame_13")) |
|
232 | self.numberChannelopVol.setEnabled(True) | |
248 | self.removeDCCEB = QtGui.QCheckBox(self.frame_13) |
|
233 | self.numberChannelopVol.setGeometry(QtCore.QRect(170, 10, 91, 20)) | |
249 | self.removeDCCEB.setGeometry(QtCore.QRect(10, 100, 91, 17)) |
|
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 | font = QtGui.QFont() |
|
240 | font = QtGui.QFont() | |
251 | font.setPointSize(10) |
|
241 | font.setPointSize(10) | |
252 | self.removeDCCEB.setFont(font) |
|
242 | self.removeDCCEB.setFont(font) | |
253 | self.removeDCCEB.setObjectName(_fromUtf8("removeDCCEB")) |
|
243 | self.removeDCCEB.setObjectName(_fromUtf8("removeDCCEB")) | |
254 |
self. |
|
244 | self.profileSelecopVolCEB = QtGui.QCheckBox(self.tab_3) | |
255 |
self. |
|
245 | self.profileSelecopVolCEB.setGeometry(QtCore.QRect(10, 100, 111, 17)) | |
256 | font = QtGui.QFont() |
|
246 | self.profileSelecopVolCEB.setObjectName(_fromUtf8("profileSelecopVolCEB")) | |
257 | font.setPointSize(10) |
|
247 | self.decodeCEB = QtGui.QCheckBox(self.tab_3) | |
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) |
|
|||
267 | self.decodeCEB.setGeometry(QtCore.QRect(10, 130, 101, 21)) |
|
248 | self.decodeCEB.setGeometry(QtCore.QRect(10, 130, 101, 21)) | |
268 | font = QtGui.QFont() |
|
249 | font = QtGui.QFont() | |
269 | font.setPointSize(10) |
|
250 | font.setPointSize(10) | |
270 | self.decodeCEB.setFont(font) |
|
251 | self.decodeCEB.setFont(font) | |
271 | self.decodeCEB.setObjectName(_fromUtf8("decodeCEB")) |
|
252 | self.decodeCEB.setObjectName(_fromUtf8("decodeCEB")) | |
272 |
self. |
|
253 | self.coherentIntegrationCEB = QtGui.QCheckBox(self.tab_3) | |
273 |
self. |
|
254 | self.coherentIntegrationCEB.setGeometry(QtCore.QRect(10, 160, 141, 17)) | |
274 | self.decodeCcob.setObjectName(_fromUtf8("decodeCcob")) |
|
|||
275 | self.profileOpVolcob = QtGui.QComboBox(self.frame_13) |
|
|||
276 | self.profileOpVolcob.setGeometry(QtCore.QRect(130, 40, 91, 22)) |
|
|||
277 | font = QtGui.QFont() |
|
255 | font = QtGui.QFont() | |
278 |
font.setPointSize( |
|
256 | font.setPointSize(10) | |
279 |
self. |
|
257 | self.coherentIntegrationCEB.setFont(font) | |
280 | self.profileOpVolcob.setObjectName(_fromUtf8("profileOpVolcob")) |
|
258 | self.coherentIntegrationCEB.setObjectName(_fromUtf8("coherentIntegrationCEB")) | |
281 | self.profileOpVolcob.addItem(_fromUtf8("")) |
|
259 | self.lineHeighProfileTxtopVol = QtGui.QLineEdit(self.tab_3) | |
282 | self.profileOpVolcob.addItem(_fromUtf8("")) |
|
260 | self.lineHeighProfileTxtopVol.setGeometry(QtCore.QRect(170, 40, 91, 20)) | |
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)) |
|
|||
295 | self.lineHeighProfileTxtopVol.setObjectName(_fromUtf8("lineHeighProfileTxtopVol")) |
|
261 | self.lineHeighProfileTxtopVol.setObjectName(_fromUtf8("lineHeighProfileTxtopVol")) | |
296 |
self. |
|
262 | self.removeDCcob = QtGui.QComboBox(self.tab_3) | |
297 |
self. |
|
263 | self.removeDCcob.setGeometry(QtCore.QRect(170, 70, 91, 20)) | |
298 | self.frame_14.setFrameShape(QtGui.QFrame.StyledPanel) |
|
264 | self.removeDCcob.setObjectName(_fromUtf8("removeDCcob")) | |
299 | self.frame_14.setFrameShadow(QtGui.QFrame.Plain) |
|
265 | self.lineProfileSelecopVolCEB = QtGui.QLineEdit(self.tab_3) | |
300 | self.frame_14.setObjectName(_fromUtf8("frame_14")) |
|
266 | self.lineProfileSelecopVolCEB.setGeometry(QtCore.QRect(170, 100, 91, 20)) | |
301 | self.dataopVolOkBtn = QtGui.QPushButton(self.frame_14) |
|
267 | self.lineProfileSelecopVolCEB.setObjectName(_fromUtf8("lineProfileSelecopVolCEB")) | |
302 | self.dataopVolOkBtn.setGeometry(QtCore.QRect(30, 10, 71, 21)) |
|
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 | self.dataopVolOkBtn.setObjectName(_fromUtf8("dataopVolOkBtn")) |
|
276 | self.dataopVolOkBtn.setObjectName(_fromUtf8("dataopVolOkBtn")) | |
304 |
self.dataopVolCancelBtn = QtGui.QPushButton(self. |
|
277 | self.dataopVolCancelBtn = QtGui.QPushButton(self.tab_3) | |
305 |
self.dataopVolCancelBtn.setGeometry(QtCore.QRect(1 |
|
278 | self.dataopVolCancelBtn.setGeometry(QtCore.QRect(150, 210, 71, 21)) | |
306 | self.dataopVolCancelBtn.setObjectName(_fromUtf8("dataopVolCancelBtn")) |
|
279 | self.dataopVolCancelBtn.setObjectName(_fromUtf8("dataopVolCancelBtn")) | |
307 | self.tabWidget_3.addTab(self.tab_3, _fromUtf8("")) |
|
280 | self.tabWidget_3.addTab(self.tab_3, _fromUtf8("")) | |
308 | self.tab_2 = QtGui.QWidget() |
|
281 | self.tab_2 = QtGui.QWidget() | |
309 | self.tab_2.setObjectName(_fromUtf8("tab_2")) |
|
282 | self.tab_2.setObjectName(_fromUtf8("tab_2")) | |
310 | self.frame_17 = QtGui.QFrame(self.tab_2) |
|
283 | self.frame_17 = QtGui.QFrame(self.tab_2) | |
311 |
self.frame_17.setGeometry(QtCore.QRect(10, |
|
284 | self.frame_17.setGeometry(QtCore.QRect(10, 90, 251, 71)) | |
312 | self.frame_17.setFrameShape(QtGui.QFrame.StyledPanel) |
|
285 | self.frame_17.setFrameShape(QtGui.QFrame.StyledPanel) | |
313 | self.frame_17.setFrameShadow(QtGui.QFrame.Plain) |
|
286 | self.frame_17.setFrameShadow(QtGui.QFrame.Plain) | |
314 | self.frame_17.setObjectName(_fromUtf8("frame_17")) |
|
287 | self.frame_17.setObjectName(_fromUtf8("frame_17")) | |
@@ -329,7 +302,7 class Ui_MainWindow(object): | |||||
329 | self.showdataGraphicsVol.setText(_fromUtf8("")) |
|
302 | self.showdataGraphicsVol.setText(_fromUtf8("")) | |
330 | self.showdataGraphicsVol.setObjectName(_fromUtf8("showdataGraphicsVol")) |
|
303 | self.showdataGraphicsVol.setObjectName(_fromUtf8("showdataGraphicsVol")) | |
331 | self.savedataCEBGraphicsVol = QtGui.QCheckBox(self.frame_17) |
|
304 | self.savedataCEBGraphicsVol = QtGui.QCheckBox(self.frame_17) | |
332 |
self.savedataCEBGraphicsVol.setGeometry(QtCore.QRect( |
|
305 | self.savedataCEBGraphicsVol.setGeometry(QtCore.QRect(200, 10, 31, 26)) | |
333 | self.savedataCEBGraphicsVol.setText(_fromUtf8("")) |
|
306 | self.savedataCEBGraphicsVol.setText(_fromUtf8("")) | |
334 | self.savedataCEBGraphicsVol.setObjectName(_fromUtf8("savedataCEBGraphicsVol")) |
|
307 | self.savedataCEBGraphicsVol.setObjectName(_fromUtf8("savedataCEBGraphicsVol")) | |
335 | self.showPotCEBGraphicsVol = QtGui.QCheckBox(self.frame_17) |
|
308 | self.showPotCEBGraphicsVol = QtGui.QCheckBox(self.frame_17) | |
@@ -337,60 +310,11 class Ui_MainWindow(object): | |||||
337 | self.showPotCEBGraphicsVol.setText(_fromUtf8("")) |
|
310 | self.showPotCEBGraphicsVol.setText(_fromUtf8("")) | |
338 | self.showPotCEBGraphicsVol.setObjectName(_fromUtf8("showPotCEBGraphicsVol")) |
|
311 | self.showPotCEBGraphicsVol.setObjectName(_fromUtf8("showPotCEBGraphicsVol")) | |
339 | self.checkBox_18 = QtGui.QCheckBox(self.frame_17) |
|
312 | self.checkBox_18 = QtGui.QCheckBox(self.frame_17) | |
340 |
self.checkBox_18.setGeometry(QtCore.QRect( |
|
313 | self.checkBox_18.setGeometry(QtCore.QRect(200, 30, 31, 26)) | |
341 | self.checkBox_18.setText(_fromUtf8("")) |
|
314 | self.checkBox_18.setText(_fromUtf8("")) | |
342 | self.checkBox_18.setObjectName(_fromUtf8("checkBox_18")) |
|
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 | self.frame_19 = QtGui.QFrame(self.tab_2) |
|
316 | self.frame_19 = QtGui.QFrame(self.tab_2) | |
393 |
self.frame_19.setGeometry(QtCore.QRect(10, 1 |
|
317 | self.frame_19.setGeometry(QtCore.QRect(10, 170, 251, 61)) | |
394 | self.frame_19.setFrameShape(QtGui.QFrame.StyledPanel) |
|
318 | self.frame_19.setFrameShape(QtGui.QFrame.StyledPanel) | |
395 | self.frame_19.setFrameShadow(QtGui.QFrame.Plain) |
|
319 | self.frame_19.setFrameShadow(QtGui.QFrame.Plain) | |
396 | self.frame_19.setObjectName(_fromUtf8("frame_19")) |
|
320 | self.frame_19.setObjectName(_fromUtf8("frame_19")) | |
@@ -407,25 +331,64 class Ui_MainWindow(object): | |||||
407 | self.label_14.setFont(font) |
|
331 | self.label_14.setFont(font) | |
408 | self.label_14.setObjectName(_fromUtf8("label_14")) |
|
332 | self.label_14.setObjectName(_fromUtf8("label_14")) | |
409 | self.lineEdit_4 = QtGui.QLineEdit(self.frame_19) |
|
333 | self.lineEdit_4 = QtGui.QLineEdit(self.frame_19) | |
410 |
self.lineEdit_4.setGeometry(QtCore.QRect(90, 30, 101, 1 |
|
334 | self.lineEdit_4.setGeometry(QtCore.QRect(90, 30, 101, 21)) | |
411 | self.lineEdit_4.setObjectName(_fromUtf8("lineEdit_4")) |
|
335 | self.lineEdit_4.setObjectName(_fromUtf8("lineEdit_4")) | |
412 | self.toolButton_2 = QtGui.QToolButton(self.frame_19) |
|
336 | self.toolButton_2 = QtGui.QToolButton(self.frame_19) | |
413 |
self.toolButton_2.setGeometry(QtCore.QRect(2 |
|
337 | self.toolButton_2.setGeometry(QtCore.QRect(210, 30, 31, 21)) | |
414 | self.toolButton_2.setObjectName(_fromUtf8("toolButton_2")) |
|
338 | self.toolButton_2.setObjectName(_fromUtf8("toolButton_2")) | |
415 | self.comboBox_10 = QtGui.QComboBox(self.frame_19) |
|
339 | self.comboBox_10 = QtGui.QComboBox(self.frame_19) | |
416 |
self.comboBox_10.setGeometry(QtCore.QRect(90, 10, 1 |
|
340 | self.comboBox_10.setGeometry(QtCore.QRect(90, 10, 151, 16)) | |
417 | self.comboBox_10.setObjectName(_fromUtf8("comboBox_10")) |
|
341 | self.comboBox_10.setObjectName(_fromUtf8("comboBox_10")) | |
418 | self.dataGraphVolOkBtn = QtGui.QPushButton(self.tab_2) |
|
342 | self.dataGraphVolOkBtn = QtGui.QPushButton(self.tab_2) | |
419 |
self.dataGraphVolOkBtn.setGeometry(QtCore.QRect(60, 2 |
|
343 | self.dataGraphVolOkBtn.setGeometry(QtCore.QRect(60, 240, 71, 21)) | |
420 | self.dataGraphVolOkBtn.setObjectName(_fromUtf8("dataGraphVolOkBtn")) |
|
344 | self.dataGraphVolOkBtn.setObjectName(_fromUtf8("dataGraphVolOkBtn")) | |
421 | self.dataGraphVolCancelBtn = QtGui.QPushButton(self.tab_2) |
|
345 | self.dataGraphVolCancelBtn = QtGui.QPushButton(self.tab_2) | |
422 |
self.dataGraphVolCancelBtn.setGeometry(QtCore.QRect(1 |
|
346 | self.dataGraphVolCancelBtn.setGeometry(QtCore.QRect(150, 240, 71, 21)) | |
423 | self.dataGraphVolCancelBtn.setObjectName(_fromUtf8("dataGraphVolCancelBtn")) |
|
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 | self.tabWidget_3.addTab(self.tab_2, _fromUtf8("")) |
|
387 | self.tabWidget_3.addTab(self.tab_2, _fromUtf8("")) | |
425 | self.tab_4 = QtGui.QWidget() |
|
388 | self.tab_4 = QtGui.QWidget() | |
426 | self.tab_4.setObjectName(_fromUtf8("tab_4")) |
|
389 | self.tab_4.setObjectName(_fromUtf8("tab_4")) | |
427 | self.frame_15 = QtGui.QFrame(self.tab_4) |
|
390 | self.frame_15 = QtGui.QFrame(self.tab_4) | |
428 |
self.frame_15.setGeometry(QtCore.QRect(10, 20, 2 |
|
391 | self.frame_15.setGeometry(QtCore.QRect(10, 20, 251, 71)) | |
429 | self.frame_15.setFrameShape(QtGui.QFrame.StyledPanel) |
|
392 | self.frame_15.setFrameShape(QtGui.QFrame.StyledPanel) | |
430 | self.frame_15.setFrameShadow(QtGui.QFrame.Plain) |
|
393 | self.frame_15.setFrameShadow(QtGui.QFrame.Plain) | |
431 | self.frame_15.setObjectName(_fromUtf8("frame_15")) |
|
394 | self.frame_15.setObjectName(_fromUtf8("frame_15")) | |
@@ -433,215 +396,149 class Ui_MainWindow(object): | |||||
433 | self.dataPathlabelOutVol.setGeometry(QtCore.QRect(20, 10, 31, 16)) |
|
396 | self.dataPathlabelOutVol.setGeometry(QtCore.QRect(20, 10, 31, 16)) | |
434 | self.dataPathlabelOutVol.setObjectName(_fromUtf8("dataPathlabelOutVol")) |
|
397 | self.dataPathlabelOutVol.setObjectName(_fromUtf8("dataPathlabelOutVol")) | |
435 | self.dataPathtxtOutVol = QtGui.QLineEdit(self.frame_15) |
|
398 | self.dataPathtxtOutVol = QtGui.QLineEdit(self.frame_15) | |
436 |
self.dataPathtxtOutVol.setGeometry(QtCore.QRect(62, 10, 1 |
|
399 | self.dataPathtxtOutVol.setGeometry(QtCore.QRect(62, 10, 131, 20)) | |
437 | self.dataPathtxtOutVol.setObjectName(_fromUtf8("dataPathtxtOutVol")) |
|
400 | self.dataPathtxtOutVol.setObjectName(_fromUtf8("dataPathtxtOutVol")) | |
438 | self.dataOutVolPathBrowse = QtGui.QToolButton(self.frame_15) |
|
401 | self.dataOutVolPathBrowse = QtGui.QToolButton(self.frame_15) | |
439 |
self.dataOutVolPathBrowse.setGeometry(QtCore.QRect(1 |
|
402 | self.dataOutVolPathBrowse.setGeometry(QtCore.QRect(210, 10, 25, 19)) | |
440 | self.dataOutVolPathBrowse.setObjectName(_fromUtf8("dataOutVolPathBrowse")) |
|
403 | self.dataOutVolPathBrowse.setObjectName(_fromUtf8("dataOutVolPathBrowse")) | |
441 | self.dataSufixlabelOutVol = QtGui.QLabel(self.frame_15) |
|
404 | self.dataSufixlabelOutVol = QtGui.QLabel(self.frame_15) | |
442 | self.dataSufixlabelOutVol.setGeometry(QtCore.QRect(20, 40, 41, 16)) |
|
405 | self.dataSufixlabelOutVol.setGeometry(QtCore.QRect(20, 40, 41, 16)) | |
443 | self.dataSufixlabelOutVol.setObjectName(_fromUtf8("dataSufixlabelOutVol")) |
|
406 | self.dataSufixlabelOutVol.setObjectName(_fromUtf8("dataSufixlabelOutVol")) | |
444 | self.dataSufixtxtOutVol = QtGui.QLineEdit(self.frame_15) |
|
407 | self.dataSufixtxtOutVol = QtGui.QLineEdit(self.frame_15) | |
445 |
self.dataSufixtxtOutVol.setGeometry(QtCore.QRect(60, 40, 1 |
|
408 | self.dataSufixtxtOutVol.setGeometry(QtCore.QRect(60, 40, 171, 20)) | |
446 | self.dataSufixtxtOutVol.setObjectName(_fromUtf8("dataSufixtxtOutVol")) |
|
409 | self.dataSufixtxtOutVol.setObjectName(_fromUtf8("dataSufixtxtOutVol")) | |
447 |
self. |
|
410 | self.datasaveVolOkBtn = QtGui.QPushButton(self.tab_4) | |
448 |
self. |
|
411 | self.datasaveVolOkBtn.setGeometry(QtCore.QRect(60, 120, 71, 21)) | |
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)) |
|
|||
454 | self.datasaveVolOkBtn.setObjectName(_fromUtf8("datasaveVolOkBtn")) |
|
412 | self.datasaveVolOkBtn.setObjectName(_fromUtf8("datasaveVolOkBtn")) | |
455 |
self.datasaveVolCancelBtn = QtGui.QPushButton(self. |
|
413 | self.datasaveVolCancelBtn = QtGui.QPushButton(self.tab_4) | |
456 |
self.datasaveVolCancelBtn.setGeometry(QtCore.QRect(1 |
|
414 | self.datasaveVolCancelBtn.setGeometry(QtCore.QRect(150, 120, 71, 21)) | |
457 | self.datasaveVolCancelBtn.setObjectName(_fromUtf8("datasaveVolCancelBtn")) |
|
415 | self.datasaveVolCancelBtn.setObjectName(_fromUtf8("datasaveVolCancelBtn")) | |
458 | self.tabWidget_3.addTab(self.tab_4, _fromUtf8("")) |
|
416 | self.tabWidget_3.addTab(self.tab_4, _fromUtf8("")) | |
459 | self.addOpUpselec = QtGui.QComboBox(self.tab_7) |
|
417 | self.addOpUpselec = QtGui.QComboBox(self.tab_7) | |
460 |
self.addOpUpselec.setGeometry(QtCore.QRect(10, |
|
418 | self.addOpUpselec.setGeometry(QtCore.QRect(10, 1, 91, 20)) | |
461 | self.addOpUpselec.setObjectName(_fromUtf8("addOpUpselec")) |
|
419 | self.addOpUpselec.setObjectName(_fromUtf8("addOpUpselec")) | |
462 | self.tabWidget.addTab(self.tab_7, _fromUtf8("")) |
|
420 | self.tabWidget.addTab(self.tab_7, _fromUtf8("")) | |
463 | self.tab_6 = QtGui.QWidget() |
|
421 | self.tab_6 = QtGui.QWidget() | |
464 | self.tab_6.setObjectName(_fromUtf8("tab_6")) |
|
422 | self.tab_6.setObjectName(_fromUtf8("tab_6")) | |
465 | self.tabWidget_4 = QtGui.QTabWidget(self.tab_6) |
|
423 | self.tabWidget_4 = QtGui.QTabWidget(self.tab_6) | |
466 |
self.tabWidget_4.setGeometry(QtCore.QRect( |
|
424 | self.tabWidget_4.setGeometry(QtCore.QRect(10, 30, 291, 311)) | |
467 | self.tabWidget_4.setObjectName(_fromUtf8("tabWidget_4")) |
|
425 | self.tabWidget_4.setObjectName(_fromUtf8("tabWidget_4")) | |
468 | self.tab_8 = QtGui.QWidget() |
|
426 | self.tab_8 = QtGui.QWidget() | |
469 | self.tab_8.setObjectName(_fromUtf8("tab_8")) |
|
427 | self.tab_8.setObjectName(_fromUtf8("tab_8")) | |
470 |
self. |
|
428 | self.nFFTPointOpSpecCEB = QtGui.QCheckBox(self.tab_8) | |
471 |
self. |
|
429 | self.nFFTPointOpSpecCEB.setGeometry(QtCore.QRect(10, 10, 111, 21)) | |
472 | self.frame_34.setFrameShape(QtGui.QFrame.StyledPanel) |
|
430 | self.nFFTPointOpSpecCEB.setObjectName(_fromUtf8("nFFTPointOpSpecCEB")) | |
473 | self.frame_34.setFrameShadow(QtGui.QFrame.Plain) |
|
431 | self.selecChannelopSpecCEB = QtGui.QCheckBox(self.tab_8) | |
474 | self.frame_34.setObjectName(_fromUtf8("frame_34")) |
|
432 | self.selecChannelopSpecCEB.setGeometry(QtCore.QRect(10, 40, 111, 17)) | |
475 | self.checkBox_49 = QtGui.QCheckBox(self.frame_34) |
|
|||
476 | self.checkBox_49.setGeometry(QtCore.QRect(10, 30, 91, 17)) |
|
|||
477 | font = QtGui.QFont() |
|
433 | font = QtGui.QFont() | |
478 | font.setPointSize(10) |
|
434 | font.setPointSize(10) | |
479 |
self. |
|
435 | self.selecChannelopSpecCEB.setFont(font) | |
480 |
self. |
|
436 | self.selecChannelopSpecCEB.setObjectName(_fromUtf8("selecChannelopSpecCEB")) | |
481 |
self. |
|
437 | self.IncohIntOpSpecCEB = QtGui.QCheckBox(self.tab_8) | |
482 |
self. |
|
438 | self.IncohIntOpSpecCEB.setGeometry(QtCore.QRect(10, 70, 151, 17)) | |
483 | font = QtGui.QFont() |
|
439 | font = QtGui.QFont() | |
484 | font.setPointSize(10) |
|
440 | font.setPointSize(10) | |
485 |
self. |
|
441 | self.IncohIntOpSpecCEB.setFont(font) | |
486 |
self. |
|
442 | self.IncohIntOpSpecCEB.setObjectName(_fromUtf8("IncohIntOpSpecCEB")) | |
487 |
self. |
|
443 | self.DecoderOpSpecCEB = QtGui.QCheckBox(self.tab_8) | |
488 |
self. |
|
444 | self.DecoderOpSpecCEB.setGeometry(QtCore.QRect(10, 100, 141, 17)) | |
489 | font = QtGui.QFont() |
|
445 | font = QtGui.QFont() | |
490 | font.setPointSize(10) |
|
446 | font.setPointSize(10) | |
491 |
self. |
|
447 | self.DecoderOpSpecCEB.setFont(font) | |
492 |
self. |
|
448 | self.DecoderOpSpecCEB.setObjectName(_fromUtf8("DecoderOpSpecCEB")) | |
493 |
self.checkBox_52 = QtGui.QCheckBox(self. |
|
449 | self.checkBox_52 = QtGui.QCheckBox(self.tab_8) | |
494 |
self.checkBox_52.setGeometry(QtCore.QRect(10, 1 |
|
450 | self.checkBox_52.setGeometry(QtCore.QRect(10, 130, 141, 17)) | |
495 | font = QtGui.QFont() |
|
451 | font = QtGui.QFont() | |
496 | font.setPointSize(10) |
|
452 | font.setPointSize(10) | |
497 | self.checkBox_52.setFont(font) |
|
453 | self.checkBox_52.setFont(font) | |
498 | self.checkBox_52.setObjectName(_fromUtf8("checkBox_52")) |
|
454 | self.checkBox_52.setObjectName(_fromUtf8("checkBox_52")) | |
499 | self.comboBox_21 = QtGui.QComboBox(self.frame_34) |
|
455 | self.valuenFFTPointOpSpec = QtGui.QLineEdit(self.tab_8) | |
500 |
self.c |
|
456 | self.valuenFFTPointOpSpec.setGeometry(QtCore.QRect(200, 10, 71, 20)) | |
501 |
self.c |
|
457 | self.valuenFFTPointOpSpec.setObjectName(_fromUtf8("valuenFFTPointOpSpec")) | |
502 | self.comboBox_22 = QtGui.QComboBox(self.frame_34) |
|
458 | self.numberChannelopSpec = QtGui.QLineEdit(self.tab_8) | |
503 |
self. |
|
459 | self.numberChannelopSpec.setGeometry(QtCore.QRect(200, 40, 71, 20)) | |
504 |
self. |
|
460 | self.numberChannelopSpec.setObjectName(_fromUtf8("numberChannelopSpec")) | |
505 | self.comboBox_23 = QtGui.QComboBox(self.frame_34) |
|
461 | self.valueIncohIntOpSpec = QtGui.QLineEdit(self.tab_8) | |
506 |
self. |
|
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 | self.comboBox_23.setObjectName(_fromUtf8("comboBox_23")) |
|
466 | self.comboBox_23.setObjectName(_fromUtf8("comboBox_23")) | |
508 | self.lineEdit_33 = QtGui.QLineEdit(self.frame_34) |
|
467 | self.comboBox_23.addItem(_fromUtf8("")) | |
509 | self.lineEdit_33.setGeometry(QtCore.QRect(150, 160, 71, 20)) |
|
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 | self.lineEdit_33.setObjectName(_fromUtf8("lineEdit_33")) |
|
472 | self.lineEdit_33.setObjectName(_fromUtf8("lineEdit_33")) | |
511 |
self. |
|
473 | self.dataopSpecOkBtn = QtGui.QPushButton(self.tab_8) | |
512 |
self. |
|
474 | self.dataopSpecOkBtn.setGeometry(QtCore.QRect(50, 180, 71, 21)) | |
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)) |
|
|||
518 | self.dataopSpecOkBtn.setObjectName(_fromUtf8("dataopSpecOkBtn")) |
|
475 | self.dataopSpecOkBtn.setObjectName(_fromUtf8("dataopSpecOkBtn")) | |
519 |
self.dataopSpecCancelBtn = QtGui.QPushButton(self. |
|
476 | self.dataopSpecCancelBtn = QtGui.QPushButton(self.tab_8) | |
520 |
self.dataopSpecCancelBtn.setGeometry(QtCore.QRect(1 |
|
477 | self.dataopSpecCancelBtn.setGeometry(QtCore.QRect(160, 180, 71, 21)) | |
521 | self.dataopSpecCancelBtn.setObjectName(_fromUtf8("dataopSpecCancelBtn")) |
|
478 | self.dataopSpecCancelBtn.setObjectName(_fromUtf8("dataopSpecCancelBtn")) | |
522 | self.tabWidget_4.addTab(self.tab_8, _fromUtf8("")) |
|
479 | self.tabWidget_4.addTab(self.tab_8, _fromUtf8("")) | |
523 | self.tab_10 = QtGui.QWidget() |
|
480 | self.tab_10 = QtGui.QWidget() | |
524 | self.tab_10.setObjectName(_fromUtf8("tab_10")) |
|
481 | self.tab_10.setObjectName(_fromUtf8("tab_10")) | |
525 | self.dataGraphSpecCancelBtn = QtGui.QPushButton(self.tab_10) |
|
482 | self.dataGraphSpecCancelBtn = QtGui.QPushButton(self.tab_10) | |
526 |
self.dataGraphSpecCancelBtn.setGeometry(QtCore.QRect(1 |
|
483 | self.dataGraphSpecCancelBtn.setGeometry(QtCore.QRect(160, 240, 71, 21)) | |
527 | self.dataGraphSpecCancelBtn.setObjectName(_fromUtf8("dataGraphSpecCancelBtn")) |
|
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 | self.frame_40 = QtGui.QFrame(self.tab_10) |
|
485 | self.frame_40 = QtGui.QFrame(self.tab_10) | |
552 |
self.frame_40.setGeometry(QtCore.QRect(10, |
|
486 | self.frame_40.setGeometry(QtCore.QRect(10, 80, 261, 91)) | |
553 | self.frame_40.setFrameShape(QtGui.QFrame.StyledPanel) |
|
487 | self.frame_40.setFrameShape(QtGui.QFrame.StyledPanel) | |
554 | self.frame_40.setFrameShadow(QtGui.QFrame.Plain) |
|
488 | self.frame_40.setFrameShadow(QtGui.QFrame.Plain) | |
555 | self.frame_40.setObjectName(_fromUtf8("frame_40")) |
|
489 | self.frame_40.setObjectName(_fromUtf8("frame_40")) | |
556 |
self.label |
|
490 | self.RTIPlotGraphLabel = QtGui.QLabel(self.frame_40) | |
557 |
self.label |
|
491 | self.RTIPlotGraphLabel.setGeometry(QtCore.QRect(10, 0, 66, 16)) | |
558 | font = QtGui.QFont() |
|
492 | font = QtGui.QFont() | |
559 | font.setPointSize(10) |
|
493 | font.setPointSize(10) | |
560 |
self.label |
|
494 | self.RTIPlotGraphLabel.setFont(font) | |
561 |
self.label |
|
495 | self.RTIPlotGraphLabel.setObjectName(_fromUtf8("RTIPlotGraphLabel")) | |
562 |
self.label |
|
496 | self.CrossSpectraPlotGraphLabel = QtGui.QLabel(self.frame_40) | |
563 |
self.label |
|
497 | self.CrossSpectraPlotGraphLabel.setGeometry(QtCore.QRect(10, 40, 111, 21)) | |
564 |
self.label |
|
498 | self.CrossSpectraPlotGraphLabel.setObjectName(_fromUtf8("CrossSpectraPlotGraphLabel")) | |
565 |
self.label |
|
499 | self.SpectraPlotGraphLabel = QtGui.QLabel(self.frame_40) | |
566 |
self.label |
|
500 | self.SpectraPlotGraphLabel.setGeometry(QtCore.QRect(10, 20, 91, 16)) | |
567 |
self.label |
|
501 | self.SpectraPlotGraphLabel.setObjectName(_fromUtf8("SpectraPlotGraphLabel")) | |
568 | self.label_86 = QtGui.QLabel(self.frame_40) |
|
502 | self.label_86 = QtGui.QLabel(self.frame_40) | |
569 | self.label_86.setGeometry(QtCore.QRect(10, 60, 66, 21)) |
|
503 | self.label_86.setGeometry(QtCore.QRect(10, 60, 66, 21)) | |
570 | self.label_86.setObjectName(_fromUtf8("label_86")) |
|
504 | self.label_86.setObjectName(_fromUtf8("label_86")) | |
571 |
self. |
|
505 | self.RTIPlotGraphCEB = QtGui.QCheckBox(self.frame_40) | |
572 |
self. |
|
506 | self.RTIPlotGraphCEB.setGeometry(QtCore.QRect(150, 0, 31, 26)) | |
573 |
self. |
|
507 | self.RTIPlotGraphCEB.setText(_fromUtf8("")) | |
574 |
self. |
|
508 | self.RTIPlotGraphCEB.setObjectName(_fromUtf8("RTIPlotGraphCEB")) | |
575 | self.checkBox_58 = QtGui.QCheckBox(self.frame_40) |
|
509 | self.checkBox_58 = QtGui.QCheckBox(self.frame_40) | |
576 |
self.checkBox_58.setGeometry(QtCore.QRect(1 |
|
510 | self.checkBox_58.setGeometry(QtCore.QRect(210, 0, 31, 26)) | |
577 | self.checkBox_58.setText(_fromUtf8("")) |
|
511 | self.checkBox_58.setText(_fromUtf8("")) | |
578 | self.checkBox_58.setObjectName(_fromUtf8("checkBox_58")) |
|
512 | self.checkBox_58.setObjectName(_fromUtf8("checkBox_58")) | |
579 |
self. |
|
513 | self.SpectraPlotGraphCEB = QtGui.QCheckBox(self.frame_40) | |
580 |
self. |
|
514 | self.SpectraPlotGraphCEB.setGeometry(QtCore.QRect(150, 20, 31, 26)) | |
581 |
self. |
|
515 | self.SpectraPlotGraphCEB.setText(_fromUtf8("")) | |
582 |
self. |
|
516 | self.SpectraPlotGraphCEB.setObjectName(_fromUtf8("SpectraPlotGraphCEB")) | |
583 | self.checkBox_60 = QtGui.QCheckBox(self.frame_40) |
|
517 | self.checkBox_60 = QtGui.QCheckBox(self.frame_40) | |
584 |
self.checkBox_60.setGeometry(QtCore.QRect(1 |
|
518 | self.checkBox_60.setGeometry(QtCore.QRect(210, 20, 31, 26)) | |
585 | self.checkBox_60.setText(_fromUtf8("")) |
|
519 | self.checkBox_60.setText(_fromUtf8("")) | |
586 | self.checkBox_60.setObjectName(_fromUtf8("checkBox_60")) |
|
520 | self.checkBox_60.setObjectName(_fromUtf8("checkBox_60")) | |
587 |
self. |
|
521 | self.CrossSpectraPlotGraphceb = QtGui.QCheckBox(self.frame_40) | |
588 |
self. |
|
522 | self.CrossSpectraPlotGraphceb.setGeometry(QtCore.QRect(150, 40, 31, 21)) | |
589 |
self. |
|
523 | self.CrossSpectraPlotGraphceb.setText(_fromUtf8("")) | |
590 |
self. |
|
524 | self.CrossSpectraPlotGraphceb.setObjectName(_fromUtf8("CrossSpectraPlotGraphceb")) | |
591 | self.checkBox_62 = QtGui.QCheckBox(self.frame_40) |
|
525 | self.checkBox_62 = QtGui.QCheckBox(self.frame_40) | |
592 |
self.checkBox_62.setGeometry(QtCore.QRect(1 |
|
526 | self.checkBox_62.setGeometry(QtCore.QRect(210, 40, 31, 26)) | |
593 | self.checkBox_62.setText(_fromUtf8("")) |
|
527 | self.checkBox_62.setText(_fromUtf8("")) | |
594 | self.checkBox_62.setObjectName(_fromUtf8("checkBox_62")) |
|
528 | self.checkBox_62.setObjectName(_fromUtf8("checkBox_62")) | |
595 | self.checkBox_63 = QtGui.QCheckBox(self.frame_40) |
|
529 | self.checkBox_63 = QtGui.QCheckBox(self.frame_40) | |
596 | self.checkBox_63.setGeometry(QtCore.QRect(150, 60, 20, 26)) |
|
530 | self.checkBox_63.setGeometry(QtCore.QRect(150, 60, 20, 26)) | |
597 | self.checkBox_63.setText(_fromUtf8("")) |
|
531 | self.checkBox_63.setText(_fromUtf8("")) | |
598 | self.checkBox_63.setObjectName(_fromUtf8("checkBox_63")) |
|
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 | self.checkBox_64 = QtGui.QCheckBox(self.frame_40) |
|
533 | self.checkBox_64 = QtGui.QCheckBox(self.frame_40) | |
603 |
self.checkBox_64.setGeometry(QtCore.QRect(1 |
|
534 | self.checkBox_64.setGeometry(QtCore.QRect(210, 60, 31, 26)) | |
604 | self.checkBox_64.setText(_fromUtf8("")) |
|
535 | self.checkBox_64.setText(_fromUtf8("")) | |
605 | self.checkBox_64.setObjectName(_fromUtf8("checkBox_64")) |
|
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 | self.dataGraphSpecOkBtn = QtGui.QPushButton(self.tab_10) |
|
537 | self.dataGraphSpecOkBtn = QtGui.QPushButton(self.tab_10) | |
615 |
self.dataGraphSpecOkBtn.setGeometry(QtCore.QRect(60, 2 |
|
538 | self.dataGraphSpecOkBtn.setGeometry(QtCore.QRect(60, 240, 71, 21)) | |
616 | self.dataGraphSpecOkBtn.setObjectName(_fromUtf8("dataGraphSpecOkBtn")) |
|
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 | self.frame_41 = QtGui.QFrame(self.tab_10) |
|
540 | self.frame_41 = QtGui.QFrame(self.tab_10) | |
644 |
self.frame_41.setGeometry(QtCore.QRect(10, |
|
541 | self.frame_41.setGeometry(QtCore.QRect(10, 180, 261, 51)) | |
645 | self.frame_41.setFrameShape(QtGui.QFrame.StyledPanel) |
|
542 | self.frame_41.setFrameShape(QtGui.QFrame.StyledPanel) | |
646 | self.frame_41.setFrameShadow(QtGui.QFrame.Plain) |
|
543 | self.frame_41.setFrameShadow(QtGui.QFrame.Plain) | |
647 | self.frame_41.setObjectName(_fromUtf8("frame_41")) |
|
544 | self.frame_41.setObjectName(_fromUtf8("frame_41")) | |
@@ -658,14 +555,53 class Ui_MainWindow(object): | |||||
658 | self.label_88.setFont(font) |
|
555 | self.label_88.setFont(font) | |
659 | self.label_88.setObjectName(_fromUtf8("label_88")) |
|
556 | self.label_88.setObjectName(_fromUtf8("label_88")) | |
660 | self.lineEdit_37 = QtGui.QLineEdit(self.frame_41) |
|
557 | self.lineEdit_37 = QtGui.QLineEdit(self.frame_41) | |
661 |
self.lineEdit_37.setGeometry(QtCore.QRect(90, 30, 1 |
|
558 | self.lineEdit_37.setGeometry(QtCore.QRect(90, 30, 111, 16)) | |
662 | self.lineEdit_37.setObjectName(_fromUtf8("lineEdit_37")) |
|
559 | self.lineEdit_37.setObjectName(_fromUtf8("lineEdit_37")) | |
663 | self.toolButton_18 = QtGui.QToolButton(self.frame_41) |
|
560 | self.toolButton_18 = QtGui.QToolButton(self.frame_41) | |
664 |
self.toolButton_18.setGeometry(QtCore.QRect(2 |
|
561 | self.toolButton_18.setGeometry(QtCore.QRect(210, 30, 21, 16)) | |
665 | self.toolButton_18.setObjectName(_fromUtf8("toolButton_18")) |
|
562 | self.toolButton_18.setObjectName(_fromUtf8("toolButton_18")) | |
666 | self.comboBox_27 = QtGui.QComboBox(self.frame_41) |
|
563 | self.comboBox_27 = QtGui.QComboBox(self.frame_41) | |
667 |
self.comboBox_27.setGeometry(QtCore.QRect(90, 10, 1 |
|
564 | self.comboBox_27.setGeometry(QtCore.QRect(90, 10, 141, 16)) | |
668 | self.comboBox_27.setObjectName(_fromUtf8("comboBox_27")) |
|
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 | self.tabWidget_4.addTab(self.tab_10, _fromUtf8("")) |
|
605 | self.tabWidget_4.addTab(self.tab_10, _fromUtf8("")) | |
670 | self.tab_11 = QtGui.QWidget() |
|
606 | self.tab_11 = QtGui.QWidget() | |
671 | self.tab_11.setObjectName(_fromUtf8("tab_11")) |
|
607 | self.tab_11.setObjectName(_fromUtf8("tab_11")) | |
@@ -673,7 +609,7 class Ui_MainWindow(object): | |||||
673 | self.label_22.setGeometry(QtCore.QRect(140, 100, 58, 16)) |
|
609 | self.label_22.setGeometry(QtCore.QRect(140, 100, 58, 16)) | |
674 | self.label_22.setObjectName(_fromUtf8("label_22")) |
|
610 | self.label_22.setObjectName(_fromUtf8("label_22")) | |
675 | self.frame_47 = QtGui.QFrame(self.tab_11) |
|
611 | self.frame_47 = QtGui.QFrame(self.tab_11) | |
676 |
self.frame_47.setGeometry(QtCore.QRect(10, 20, 2 |
|
612 | self.frame_47.setGeometry(QtCore.QRect(10, 20, 261, 71)) | |
677 | self.frame_47.setFrameShape(QtGui.QFrame.StyledPanel) |
|
613 | self.frame_47.setFrameShape(QtGui.QFrame.StyledPanel) | |
678 | self.frame_47.setFrameShadow(QtGui.QFrame.Plain) |
|
614 | self.frame_47.setFrameShadow(QtGui.QFrame.Plain) | |
679 | self.frame_47.setObjectName(_fromUtf8("frame_47")) |
|
615 | self.frame_47.setObjectName(_fromUtf8("frame_47")) | |
@@ -681,19 +617,19 class Ui_MainWindow(object): | |||||
681 | self.label_20.setGeometry(QtCore.QRect(20, 10, 22, 16)) |
|
617 | self.label_20.setGeometry(QtCore.QRect(20, 10, 22, 16)) | |
682 | self.label_20.setObjectName(_fromUtf8("label_20")) |
|
618 | self.label_20.setObjectName(_fromUtf8("label_20")) | |
683 | self.lineEdit_11 = QtGui.QLineEdit(self.frame_47) |
|
619 | self.lineEdit_11 = QtGui.QLineEdit(self.frame_47) | |
684 |
self.lineEdit_11.setGeometry(QtCore.QRect(50, 10, 1 |
|
620 | self.lineEdit_11.setGeometry(QtCore.QRect(50, 10, 151, 20)) | |
685 | self.lineEdit_11.setObjectName(_fromUtf8("lineEdit_11")) |
|
621 | self.lineEdit_11.setObjectName(_fromUtf8("lineEdit_11")) | |
686 | self.toolButton_5 = QtGui.QToolButton(self.frame_47) |
|
622 | self.toolButton_5 = QtGui.QToolButton(self.frame_47) | |
687 |
self.toolButton_5.setGeometry(QtCore.QRect( |
|
623 | self.toolButton_5.setGeometry(QtCore.QRect(220, 10, 25, 19)) | |
688 | self.toolButton_5.setObjectName(_fromUtf8("toolButton_5")) |
|
624 | self.toolButton_5.setObjectName(_fromUtf8("toolButton_5")) | |
689 | self.label_21 = QtGui.QLabel(self.frame_47) |
|
625 | self.label_21 = QtGui.QLabel(self.frame_47) | |
690 | self.label_21.setGeometry(QtCore.QRect(20, 40, 24, 16)) |
|
626 | self.label_21.setGeometry(QtCore.QRect(20, 40, 24, 16)) | |
691 | self.label_21.setObjectName(_fromUtf8("label_21")) |
|
627 | self.label_21.setObjectName(_fromUtf8("label_21")) | |
692 | self.lineEdit_12 = QtGui.QLineEdit(self.frame_47) |
|
628 | self.lineEdit_12 = QtGui.QLineEdit(self.frame_47) | |
693 |
self.lineEdit_12.setGeometry(QtCore.QRect(50, 40, 1 |
|
629 | self.lineEdit_12.setGeometry(QtCore.QRect(50, 40, 191, 20)) | |
694 | self.lineEdit_12.setObjectName(_fromUtf8("lineEdit_12")) |
|
630 | self.lineEdit_12.setObjectName(_fromUtf8("lineEdit_12")) | |
695 | self.frame_49 = QtGui.QFrame(self.tab_11) |
|
631 | self.frame_49 = QtGui.QFrame(self.tab_11) | |
696 |
self.frame_49.setGeometry(QtCore.QRect(10, 130, 2 |
|
632 | self.frame_49.setGeometry(QtCore.QRect(10, 130, 261, 41)) | |
697 | self.frame_49.setFrameShape(QtGui.QFrame.StyledPanel) |
|
633 | self.frame_49.setFrameShape(QtGui.QFrame.StyledPanel) | |
698 | self.frame_49.setFrameShadow(QtGui.QFrame.Plain) |
|
634 | self.frame_49.setFrameShadow(QtGui.QFrame.Plain) | |
699 | self.frame_49.setObjectName(_fromUtf8("frame_49")) |
|
635 | self.frame_49.setObjectName(_fromUtf8("frame_49")) | |
@@ -704,45 +640,37 class Ui_MainWindow(object): | |||||
704 | self.datasaveSpecCancelBtn.setGeometry(QtCore.QRect(130, 10, 71, 21)) |
|
640 | self.datasaveSpecCancelBtn.setGeometry(QtCore.QRect(130, 10, 71, 21)) | |
705 | self.datasaveSpecCancelBtn.setObjectName(_fromUtf8("datasaveSpecCancelBtn")) |
|
641 | self.datasaveSpecCancelBtn.setObjectName(_fromUtf8("datasaveSpecCancelBtn")) | |
706 | self.tabWidget_4.addTab(self.tab_11, _fromUtf8("")) |
|
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 | self.tabWidget.addTab(self.tab_6, _fromUtf8("")) |
|
646 | self.tabWidget.addTab(self.tab_6, _fromUtf8("")) | |
708 | self.tab_9 = QtGui.QWidget() |
|
647 | self.tab_9 = QtGui.QWidget() | |
709 | self.tab_9.setObjectName(_fromUtf8("tab_9")) |
|
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 | self.tabWidget_5 = QtGui.QTabWidget(self.tab_9) |
|
649 | self.tabWidget_5 = QtGui.QTabWidget(self.tab_9) | |
|
650 | self.tabWidget_5.setGeometry(QtCore.QRect(10, 30, 291, 291)) | |||
713 | self.tabWidget_5.setObjectName(_fromUtf8("tabWidget_5")) |
|
651 | self.tabWidget_5.setObjectName(_fromUtf8("tabWidget_5")) | |
714 | self.tab_12 = QtGui.QWidget() |
|
652 | self.tab_12 = QtGui.QWidget() | |
715 | self.tab_12.setObjectName(_fromUtf8("tab_12")) |
|
653 | self.tab_12.setObjectName(_fromUtf8("tab_12")) | |
716 |
self. |
|
654 | self.checkBox_53 = QtGui.QCheckBox(self.tab_12) | |
717 |
self. |
|
655 | self.checkBox_53.setGeometry(QtCore.QRect(20, 30, 91, 17)) | |
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)) |
|
|||
723 | font = QtGui.QFont() |
|
656 | font = QtGui.QFont() | |
724 | font.setPointSize(10) |
|
657 | font.setPointSize(10) | |
725 | self.checkBox_53.setFont(font) |
|
658 | self.checkBox_53.setFont(font) | |
726 | self.checkBox_53.setObjectName(_fromUtf8("checkBox_53")) |
|
659 | self.checkBox_53.setObjectName(_fromUtf8("checkBox_53")) | |
727 |
self.comboBox_24 = QtGui.QComboBox(self. |
|
660 | self.comboBox_24 = QtGui.QComboBox(self.tab_12) | |
728 |
self.comboBox_24.setGeometry(QtCore.QRect(1 |
|
661 | self.comboBox_24.setGeometry(QtCore.QRect(160, 30, 111, 20)) | |
729 | self.comboBox_24.setObjectName(_fromUtf8("comboBox_24")) |
|
662 | self.comboBox_24.setObjectName(_fromUtf8("comboBox_24")) | |
730 |
self. |
|
663 | self.dataopCorrOkBtn = QtGui.QPushButton(self.tab_12) | |
731 |
self. |
|
664 | self.dataopCorrOkBtn.setGeometry(QtCore.QRect(50, 160, 71, 21)) | |
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)) |
|
|||
737 | self.dataopCorrOkBtn.setObjectName(_fromUtf8("dataopCorrOkBtn")) |
|
665 | self.dataopCorrOkBtn.setObjectName(_fromUtf8("dataopCorrOkBtn")) | |
738 |
self.dataopCorrCancelBtn = QtGui.QPushButton(self. |
|
666 | self.dataopCorrCancelBtn = QtGui.QPushButton(self.tab_12) | |
739 |
self.dataopCorrCancelBtn.setGeometry(QtCore.QRect(1 |
|
667 | self.dataopCorrCancelBtn.setGeometry(QtCore.QRect(170, 160, 71, 21)) | |
740 | self.dataopCorrCancelBtn.setObjectName(_fromUtf8("dataopCorrCancelBtn")) |
|
668 | self.dataopCorrCancelBtn.setObjectName(_fromUtf8("dataopCorrCancelBtn")) | |
741 | self.tabWidget_5.addTab(self.tab_12, _fromUtf8("")) |
|
669 | self.tabWidget_5.addTab(self.tab_12, _fromUtf8("")) | |
742 | self.tab_13 = QtGui.QWidget() |
|
670 | self.tab_13 = QtGui.QWidget() | |
743 | self.tab_13.setObjectName(_fromUtf8("tab_13")) |
|
671 | self.tab_13.setObjectName(_fromUtf8("tab_13")) | |
744 | self.frame_44 = QtGui.QFrame(self.tab_13) |
|
672 | self.frame_44 = QtGui.QFrame(self.tab_13) | |
745 |
self.frame_44.setGeometry(QtCore.QRect(10, |
|
673 | self.frame_44.setGeometry(QtCore.QRect(10, 70, 261, 21)) | |
746 | self.frame_44.setFrameShape(QtGui.QFrame.StyledPanel) |
|
674 | self.frame_44.setFrameShape(QtGui.QFrame.StyledPanel) | |
747 | self.frame_44.setFrameShadow(QtGui.QFrame.Plain) |
|
675 | self.frame_44.setFrameShadow(QtGui.QFrame.Plain) | |
748 | self.frame_44.setObjectName(_fromUtf8("frame_44")) |
|
676 | self.frame_44.setObjectName(_fromUtf8("frame_44")) | |
@@ -765,7 +693,7 class Ui_MainWindow(object): | |||||
765 | self.label_97.setFont(font) |
|
693 | self.label_97.setFont(font) | |
766 | self.label_97.setObjectName(_fromUtf8("label_97")) |
|
694 | self.label_97.setObjectName(_fromUtf8("label_97")) | |
767 | self.frame_42 = QtGui.QFrame(self.tab_13) |
|
695 | self.frame_42 = QtGui.QFrame(self.tab_13) | |
768 |
self.frame_42.setGeometry(QtCore.QRect(10, |
|
696 | self.frame_42.setGeometry(QtCore.QRect(10, 160, 261, 61)) | |
769 | self.frame_42.setFrameShape(QtGui.QFrame.StyledPanel) |
|
697 | self.frame_42.setFrameShape(QtGui.QFrame.StyledPanel) | |
770 | self.frame_42.setFrameShadow(QtGui.QFrame.Plain) |
|
698 | self.frame_42.setFrameShadow(QtGui.QFrame.Plain) | |
771 | self.frame_42.setObjectName(_fromUtf8("frame_42")) |
|
699 | self.frame_42.setObjectName(_fromUtf8("frame_42")) | |
@@ -790,57 +718,52 class Ui_MainWindow(object): | |||||
790 | self.comboBox_28 = QtGui.QComboBox(self.frame_42) |
|
718 | self.comboBox_28 = QtGui.QComboBox(self.frame_42) | |
791 | self.comboBox_28.setGeometry(QtCore.QRect(90, 10, 131, 16)) |
|
719 | self.comboBox_28.setGeometry(QtCore.QRect(90, 10, 131, 16)) | |
792 | self.comboBox_28.setObjectName(_fromUtf8("comboBox_28")) |
|
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 | self.frame_43 = QtGui.QFrame(self.tab_13) |
|
721 | self.frame_43 = QtGui.QFrame(self.tab_13) | |
820 |
self.frame_43.setGeometry(QtCore.QRect(10, 1 |
|
722 | self.frame_43.setGeometry(QtCore.QRect(10, 100, 261, 51)) | |
821 | self.frame_43.setFrameShape(QtGui.QFrame.StyledPanel) |
|
723 | self.frame_43.setFrameShape(QtGui.QFrame.StyledPanel) | |
822 | self.frame_43.setFrameShadow(QtGui.QFrame.Plain) |
|
724 | self.frame_43.setFrameShadow(QtGui.QFrame.Plain) | |
823 | self.frame_43.setObjectName(_fromUtf8("frame_43")) |
|
725 | self.frame_43.setObjectName(_fromUtf8("frame_43")) | |
824 | self.label_91 = QtGui.QLabel(self.frame_43) |
|
726 | self.label_91 = QtGui.QLabel(self.frame_43) | |
825 |
self.label_91.setGeometry(QtCore.QRect( |
|
727 | self.label_91.setGeometry(QtCore.QRect(20, 10, 66, 21)) | |
826 | font = QtGui.QFont() |
|
728 | font = QtGui.QFont() | |
827 | font.setPointSize(10) |
|
729 | font.setPointSize(10) | |
828 | self.label_91.setFont(font) |
|
730 | self.label_91.setFont(font) | |
829 | self.label_91.setObjectName(_fromUtf8("label_91")) |
|
731 | self.label_91.setObjectName(_fromUtf8("label_91")) | |
830 | self.checkBox_67 = QtGui.QCheckBox(self.frame_43) |
|
732 | self.checkBox_67 = QtGui.QCheckBox(self.frame_43) | |
831 |
self.checkBox_67.setGeometry(QtCore.QRect(140, |
|
733 | self.checkBox_67.setGeometry(QtCore.QRect(140, 10, 31, 26)) | |
832 | self.checkBox_67.setText(_fromUtf8("")) |
|
734 | self.checkBox_67.setText(_fromUtf8("")) | |
833 | self.checkBox_67.setObjectName(_fromUtf8("checkBox_67")) |
|
735 | self.checkBox_67.setObjectName(_fromUtf8("checkBox_67")) | |
834 | self.checkBox_68 = QtGui.QCheckBox(self.frame_43) |
|
736 | self.checkBox_68 = QtGui.QCheckBox(self.frame_43) | |
835 |
self.checkBox_68.setGeometry(QtCore.QRect(190, |
|
737 | self.checkBox_68.setGeometry(QtCore.QRect(190, 10, 31, 26)) | |
836 | self.checkBox_68.setText(_fromUtf8("")) |
|
738 | self.checkBox_68.setText(_fromUtf8("")) | |
837 | self.checkBox_68.setObjectName(_fromUtf8("checkBox_68")) |
|
739 | self.checkBox_68.setObjectName(_fromUtf8("checkBox_68")) | |
838 | self.dataGraphCorrOkBtn = QtGui.QPushButton(self.tab_13) |
|
740 | self.dataGraphCorrOkBtn = QtGui.QPushButton(self.tab_13) | |
839 |
self.dataGraphCorrOkBtn.setGeometry(QtCore.QRect(60, 2 |
|
741 | self.dataGraphCorrOkBtn.setGeometry(QtCore.QRect(60, 230, 71, 21)) | |
840 | self.dataGraphCorrOkBtn.setObjectName(_fromUtf8("dataGraphCorrOkBtn")) |
|
742 | self.dataGraphCorrOkBtn.setObjectName(_fromUtf8("dataGraphCorrOkBtn")) | |
841 | self.dataGraphCorrCancelBtn = QtGui.QPushButton(self.tab_13) |
|
743 | self.dataGraphCorrCancelBtn = QtGui.QPushButton(self.tab_13) | |
842 |
self.dataGraphCorrCancelBtn.setGeometry(QtCore.QRect(1 |
|
744 | self.dataGraphCorrCancelBtn.setGeometry(QtCore.QRect(150, 230, 71, 21)) | |
843 | self.dataGraphCorrCancelBtn.setObjectName(_fromUtf8("dataGraphCorrCancelBtn")) |
|
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 | self.tabWidget_5.addTab(self.tab_13, _fromUtf8("")) |
|
767 | self.tabWidget_5.addTab(self.tab_13, _fromUtf8("")) | |
845 | self.tab_14 = QtGui.QWidget() |
|
768 | self.tab_14 = QtGui.QWidget() | |
846 | self.tab_14.setObjectName(_fromUtf8("tab_14")) |
|
769 | self.tab_14.setObjectName(_fromUtf8("tab_14")) | |
@@ -848,7 +771,7 class Ui_MainWindow(object): | |||||
848 | self.label_17.setGeometry(QtCore.QRect(140, 100, 58, 16)) |
|
771 | self.label_17.setGeometry(QtCore.QRect(140, 100, 58, 16)) | |
849 | self.label_17.setObjectName(_fromUtf8("label_17")) |
|
772 | self.label_17.setObjectName(_fromUtf8("label_17")) | |
850 | self.frame_46 = QtGui.QFrame(self.tab_14) |
|
773 | self.frame_46 = QtGui.QFrame(self.tab_14) | |
851 |
self.frame_46.setGeometry(QtCore.QRect(10, 20, 2 |
|
774 | self.frame_46.setGeometry(QtCore.QRect(10, 20, 261, 71)) | |
852 | self.frame_46.setFrameShape(QtGui.QFrame.StyledPanel) |
|
775 | self.frame_46.setFrameShape(QtGui.QFrame.StyledPanel) | |
853 | self.frame_46.setFrameShadow(QtGui.QFrame.Plain) |
|
776 | self.frame_46.setFrameShadow(QtGui.QFrame.Plain) | |
854 | self.frame_46.setObjectName(_fromUtf8("frame_46")) |
|
777 | self.frame_46.setObjectName(_fromUtf8("frame_46")) | |
@@ -856,19 +779,19 class Ui_MainWindow(object): | |||||
856 | self.label_18.setGeometry(QtCore.QRect(20, 10, 22, 16)) |
|
779 | self.label_18.setGeometry(QtCore.QRect(20, 10, 22, 16)) | |
857 | self.label_18.setObjectName(_fromUtf8("label_18")) |
|
780 | self.label_18.setObjectName(_fromUtf8("label_18")) | |
858 | self.lineEdit_9 = QtGui.QLineEdit(self.frame_46) |
|
781 | self.lineEdit_9 = QtGui.QLineEdit(self.frame_46) | |
859 |
self.lineEdit_9.setGeometry(QtCore.QRect(50, 10, 1 |
|
782 | self.lineEdit_9.setGeometry(QtCore.QRect(50, 10, 151, 20)) | |
860 | self.lineEdit_9.setObjectName(_fromUtf8("lineEdit_9")) |
|
783 | self.lineEdit_9.setObjectName(_fromUtf8("lineEdit_9")) | |
861 | self.toolButton_4 = QtGui.QToolButton(self.frame_46) |
|
784 | self.toolButton_4 = QtGui.QToolButton(self.frame_46) | |
862 |
self.toolButton_4.setGeometry(QtCore.QRect( |
|
785 | self.toolButton_4.setGeometry(QtCore.QRect(220, 10, 25, 19)) | |
863 | self.toolButton_4.setObjectName(_fromUtf8("toolButton_4")) |
|
786 | self.toolButton_4.setObjectName(_fromUtf8("toolButton_4")) | |
864 | self.label_19 = QtGui.QLabel(self.frame_46) |
|
787 | self.label_19 = QtGui.QLabel(self.frame_46) | |
865 | self.label_19.setGeometry(QtCore.QRect(20, 40, 24, 16)) |
|
788 | self.label_19.setGeometry(QtCore.QRect(20, 40, 24, 16)) | |
866 | self.label_19.setObjectName(_fromUtf8("label_19")) |
|
789 | self.label_19.setObjectName(_fromUtf8("label_19")) | |
867 | self.lineEdit_10 = QtGui.QLineEdit(self.frame_46) |
|
790 | self.lineEdit_10 = QtGui.QLineEdit(self.frame_46) | |
868 |
self.lineEdit_10.setGeometry(QtCore.QRect(50, 40, 1 |
|
791 | self.lineEdit_10.setGeometry(QtCore.QRect(50, 40, 191, 20)) | |
869 | self.lineEdit_10.setObjectName(_fromUtf8("lineEdit_10")) |
|
792 | self.lineEdit_10.setObjectName(_fromUtf8("lineEdit_10")) | |
870 | self.frame_50 = QtGui.QFrame(self.tab_14) |
|
793 | self.frame_50 = QtGui.QFrame(self.tab_14) | |
871 |
self.frame_50.setGeometry(QtCore.QRect(10, 140, 2 |
|
794 | self.frame_50.setGeometry(QtCore.QRect(10, 140, 261, 41)) | |
872 | self.frame_50.setFrameShape(QtGui.QFrame.StyledPanel) |
|
795 | self.frame_50.setFrameShape(QtGui.QFrame.StyledPanel) | |
873 | self.frame_50.setFrameShadow(QtGui.QFrame.Plain) |
|
796 | self.frame_50.setFrameShadow(QtGui.QFrame.Plain) | |
874 | self.frame_50.setObjectName(_fromUtf8("frame_50")) |
|
797 | self.frame_50.setObjectName(_fromUtf8("frame_50")) | |
@@ -876,30 +799,27 class Ui_MainWindow(object): | |||||
876 | self.datasaveCorrOkBtn.setGeometry(QtCore.QRect(30, 10, 71, 21)) |
|
799 | self.datasaveCorrOkBtn.setGeometry(QtCore.QRect(30, 10, 71, 21)) | |
877 | self.datasaveCorrOkBtn.setObjectName(_fromUtf8("datasaveCorrOkBtn")) |
|
800 | self.datasaveCorrOkBtn.setObjectName(_fromUtf8("datasaveCorrOkBtn")) | |
878 | self.dataSaveCorrCancelBtn = QtGui.QPushButton(self.frame_50) |
|
801 | self.dataSaveCorrCancelBtn = QtGui.QPushButton(self.frame_50) | |
879 |
self.dataSaveCorrCancelBtn.setGeometry(QtCore.QRect(1 |
|
802 | self.dataSaveCorrCancelBtn.setGeometry(QtCore.QRect(150, 10, 71, 21)) | |
880 | self.dataSaveCorrCancelBtn.setObjectName(_fromUtf8("dataSaveCorrCancelBtn")) |
|
803 | self.dataSaveCorrCancelBtn.setObjectName(_fromUtf8("dataSaveCorrCancelBtn")) | |
881 | self.tabWidget_5.addTab(self.tab_14, _fromUtf8("")) |
|
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 | self.tabWidget.addTab(self.tab_9, _fromUtf8("")) |
|
808 | self.tabWidget.addTab(self.tab_9, _fromUtf8("")) | |
884 |
self. |
|
809 | self.tabWidget_2 = QtGui.QTabWidget(self.frame_7) | |
885 |
self. |
|
810 | self.tabWidget_2.setGeometry(QtCore.QRect(10, 390, 311, 111)) | |
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)) |
|
|||
891 | self.tabWidget_2.setObjectName(_fromUtf8("tabWidget_2")) |
|
811 | self.tabWidget_2.setObjectName(_fromUtf8("tabWidget_2")) | |
892 | self.tab = QtGui.QWidget() |
|
812 | self.tab = QtGui.QWidget() | |
893 | self.tab.setObjectName(_fromUtf8("tab")) |
|
813 | self.tab.setObjectName(_fromUtf8("tab")) | |
894 | self.textEdit = Qsci.QsciScintilla(self.tab) |
|
814 | self.textEdit = Qsci.QsciScintilla(self.tab) | |
895 |
self.textEdit.setGeometry(QtCore.QRect(10, 10, 2 |
|
815 | self.textEdit.setGeometry(QtCore.QRect(10, 10, 291, 71)) | |
896 | self.textEdit.setToolTip(_fromUtf8("")) |
|
816 | self.textEdit.setToolTip(_fromUtf8("")) | |
897 | self.textEdit.setWhatsThis(_fromUtf8("")) |
|
817 | self.textEdit.setWhatsThis(_fromUtf8("")) | |
898 | self.textEdit.setObjectName(_fromUtf8("textEdit")) |
|
818 | self.textEdit.setObjectName(_fromUtf8("textEdit")) | |
899 | self.tabWidget_2.addTab(self.tab, _fromUtf8("")) |
|
819 | self.tabWidget_2.addTab(self.tab, _fromUtf8("")) | |
900 | MainWindow.setCentralWidget(self.centralWidget) |
|
820 | MainWindow.setCentralWidget(self.centralWidget) | |
901 | self.menuBar = QtGui.QMenuBar(MainWindow) |
|
821 | self.menuBar = QtGui.QMenuBar(MainWindow) | |
902 |
self.menuBar.setGeometry(QtCore.QRect(0, 0, 8 |
|
822 | self.menuBar.setGeometry(QtCore.QRect(0, 0, 867, 21)) | |
903 | self.menuBar.setObjectName(_fromUtf8("menuBar")) |
|
823 | self.menuBar.setObjectName(_fromUtf8("menuBar")) | |
904 | self.menuFILE = QtGui.QMenu(self.menuBar) |
|
824 | self.menuFILE = QtGui.QMenu(self.menuBar) | |
905 | self.menuFILE.setObjectName(_fromUtf8("menuFILE")) |
|
825 | self.menuFILE.setObjectName(_fromUtf8("menuFILE")) | |
@@ -998,25 +918,13 class Ui_MainWindow(object): | |||||
998 | self.tabWidget_5.setCurrentIndex(0) |
|
918 | self.tabWidget_5.setCurrentIndex(0) | |
999 | self.tabWidget_2.setCurrentIndex(0) |
|
919 | self.tabWidget_2.setCurrentIndex(0) | |
1000 | QtCore.QMetaObject.connectSlotsByName(MainWindow) |
|
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 | def retranslateUi(self, MainWindow): |
|
922 | def retranslateUi(self, MainWindow): | |
1015 | MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8)) |
|
923 | MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8)) | |
1016 | self.label_46.setText(QtGui.QApplication.translate("MainWindow", "Project Properties", None, QtGui.QApplication.UnicodeUTF8)) |
|
924 | self.label_46.setText(QtGui.QApplication.translate("MainWindow", "Project Properties", None, QtGui.QApplication.UnicodeUTF8)) | |
1017 | self.label.setText(QtGui.QApplication.translate("MainWindow", "Project Explorer", None, QtGui.QApplication.UnicodeUTF8)) |
|
925 | self.label.setText(QtGui.QApplication.translate("MainWindow", "Project Explorer", None, QtGui.QApplication.UnicodeUTF8)) | |
1018 | self.addpBtn.setText(QtGui.QApplication.translate("MainWindow", "PROJECT", None, QtGui.QApplication.UnicodeUTF8)) |
|
926 | self.addpBtn.setText(QtGui.QApplication.translate("MainWindow", "PROJECT", None, QtGui.QApplication.UnicodeUTF8)) | |
1019 |
self.addUnitProces.setText(QtGui.QApplication.translate("MainWindow", " |
|
927 | self.addUnitProces.setText(QtGui.QApplication.translate("MainWindow", "PROCESSING UNIT", None, QtGui.QApplication.UnicodeUTF8)) | |
1020 | self.label_55.setText(QtGui.QApplication.translate("MainWindow", "Read Mode:", None, QtGui.QApplication.UnicodeUTF8)) |
|
928 | self.label_55.setText(QtGui.QApplication.translate("MainWindow", "Read Mode:", None, QtGui.QApplication.UnicodeUTF8)) | |
1021 | self.readModeCmBox.setItemText(0, QtGui.QApplication.translate("MainWindow", "OffLine", None, QtGui.QApplication.UnicodeUTF8)) |
|
929 | self.readModeCmBox.setItemText(0, QtGui.QApplication.translate("MainWindow", "OffLine", None, QtGui.QApplication.UnicodeUTF8)) | |
1022 | self.readModeCmBox.setItemText(1, QtGui.QApplication.translate("MainWindow", "OnLine", None, QtGui.QApplication.UnicodeUTF8)) |
|
930 | self.readModeCmBox.setItemText(1, QtGui.QApplication.translate("MainWindow", "OnLine", None, QtGui.QApplication.UnicodeUTF8)) | |
@@ -1030,34 +938,33 class Ui_MainWindow(object): | |||||
1030 | self.dataStartLine.setText(QtGui.QApplication.translate("MainWindow", "Start date :", None, QtGui.QApplication.UnicodeUTF8)) |
|
938 | self.dataStartLine.setText(QtGui.QApplication.translate("MainWindow", "Start date :", None, QtGui.QApplication.UnicodeUTF8)) | |
1031 | self.dataEndline.setText(QtGui.QApplication.translate("MainWindow", "End date :", None, QtGui.QApplication.UnicodeUTF8)) |
|
939 | self.dataEndline.setText(QtGui.QApplication.translate("MainWindow", "End date :", None, QtGui.QApplication.UnicodeUTF8)) | |
1032 | self.LTReferenceRdBtn.setText(QtGui.QApplication.translate("MainWindow", "Local time frame of reference", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.dataOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) |
|
941 | self.dataOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) | |
1036 | self.dataCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_5), QtGui.QApplication.translate("MainWindow", "Project", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.selecChannelopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Channels", None, QtGui.QApplication.UnicodeUTF8)) |
|
946 | self.selecChannelopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Channels", None, QtGui.QApplication.UnicodeUTF8)) | |
1044 | self.selecHeighopVolCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Heights", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.dataopVolOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) |
|
952 | self.dataopVolOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) | |
1046 | self.dataopVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) |
|
953 | self.dataopVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) | |
1047 | self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_3), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8)) |
|
954 | self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_3), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8)) | |
1048 | self.datalabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8)) |
|
955 | self.datalabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8)) | |
1049 | self.dataPotlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Potencia", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.dataPathlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8)) |
|
962 | self.dataPathlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8)) | |
1051 | self.dataPrefixlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Prefix", None, QtGui.QApplication.UnicodeUTF8)) |
|
963 | self.dataPrefixlabelGraphicsVol.setText(QtGui.QApplication.translate("MainWindow", "Prefix", None, QtGui.QApplication.UnicodeUTF8)) | |
1052 | self.dataGraphicsVolPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8)) |
|
964 | self.dataGraphicsVolPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8)) | |
1053 | self.label_6.setText(QtGui.QApplication.translate("MainWindow", "Type", None, QtGui.QApplication.UnicodeUTF8)) |
|
965 | self.label_6.setText(QtGui.QApplication.translate("MainWindow", "Type", None, QtGui.QApplication.UnicodeUTF8)) | |
1054 | self.label_7.setText(QtGui.QApplication.translate("MainWindow", "Show", None, QtGui.QApplication.UnicodeUTF8)) |
|
966 | self.label_7.setText(QtGui.QApplication.translate("MainWindow", "Show", None, QtGui.QApplication.UnicodeUTF8)) | |
1055 | self.label_8.setText(QtGui.QApplication.translate("MainWindow", "Save", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_2), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8)) |
|
968 | self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_2), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8)) | |
1062 | self.dataPathlabelOutVol.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8)) |
|
969 | self.dataPathlabelOutVol.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8)) | |
1063 | self.dataOutVolPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8)) |
|
970 | self.dataOutVolPathBrowse.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8)) | |
@@ -1066,29 +973,32 class Ui_MainWindow(object): | |||||
1066 | self.datasaveVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) |
|
973 | self.datasaveVolCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) | |
1067 | self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_4), QtGui.QApplication.translate("MainWindow", "Save Data", None, QtGui.QApplication.UnicodeUTF8)) |
|
974 | self.tabWidget_3.setTabText(self.tabWidget_3.indexOf(self.tab_4), QtGui.QApplication.translate("MainWindow", "Save Data", None, QtGui.QApplication.UnicodeUTF8)) | |
1068 | self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_7), QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8)) |
|
975 | self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_7), QtGui.QApplication.translate("MainWindow", "Voltage", None, QtGui.QApplication.UnicodeUTF8)) | |
1069 |
self. |
|
976 | self.nFFTPointOpSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "nFFTPoints", None, QtGui.QApplication.UnicodeUTF8)) | |
1070 |
self. |
|
977 | self.selecChannelopSpecCEB.setText(QtGui.QApplication.translate("MainWindow", "Select Channel", None, QtGui.QApplication.UnicodeUTF8)) | |
1071 |
self. |
|
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 | self.checkBox_52.setText(QtGui.QApplication.translate("MainWindow", "Operation 4", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.dataopSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) |
|
984 | self.dataopSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) | |
1074 | self.dataopSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) |
|
985 | self.dataopSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) | |
1075 | self.tabWidget_4.setTabText(self.tabWidget_4.indexOf(self.tab_8), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8)) |
|
986 | self.tabWidget_4.setTabText(self.tabWidget_4.indexOf(self.tab_8), QtGui.QApplication.translate("MainWindow", "Operations", None, QtGui.QApplication.UnicodeUTF8)) | |
1076 | self.dataGraphSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) |
|
987 | self.dataGraphSpecCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) | |
1077 |
self.label |
|
988 | self.RTIPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "RTI", None, QtGui.QApplication.UnicodeUTF8)) | |
1078 |
self.label |
|
989 | self.CrossSpectraPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "CROSS-CORRELATION+", None, QtGui.QApplication.UnicodeUTF8)) | |
1079 |
self.label |
|
990 | self.SpectraPlotGraphLabel.setText(QtGui.QApplication.translate("MainWindow", "CROSS-SPECTRA", 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)) |
|
|||
1083 | self.label_86.setText(QtGui.QApplication.translate("MainWindow", "NOISE", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.dataGraphSpecOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.label_87.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8)) |
|
993 | self.label_87.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8)) | |
1090 | self.label_88.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8)) |
|
994 | self.label_88.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8)) | |
1091 | self.toolButton_18.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.tabWidget_4.setTabText(self.tabWidget_4.indexOf(self.tab_10), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8)) |
|
1002 | self.tabWidget_4.setTabText(self.tabWidget_4.indexOf(self.tab_10), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8)) | |
1093 | self.label_22.setText(QtGui.QApplication.translate("MainWindow", "Data format", None, QtGui.QApplication.UnicodeUTF8)) |
|
1003 | self.label_22.setText(QtGui.QApplication.translate("MainWindow", "Data format", None, QtGui.QApplication.UnicodeUTF8)) | |
1094 | self.label_20.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8)) |
|
1004 | self.label_20.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8)) | |
@@ -1108,12 +1018,12 class Ui_MainWindow(object): | |||||
1108 | self.label_89.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8)) |
|
1018 | self.label_89.setText(QtGui.QApplication.translate("MainWindow", "FTP server", None, QtGui.QApplication.UnicodeUTF8)) | |
1109 | self.label_90.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8)) |
|
1019 | self.label_90.setText(QtGui.QApplication.translate("MainWindow", "FTP path", None, QtGui.QApplication.UnicodeUTF8)) | |
1110 | self.toolButton_19.setText(QtGui.QApplication.translate("MainWindow", "...", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.label_91.setText(QtGui.QApplication.translate("MainWindow", "POTENCIA", None, QtGui.QApplication.UnicodeUTF8)) |
|
1021 | self.label_91.setText(QtGui.QApplication.translate("MainWindow", "POTENCIA", None, QtGui.QApplication.UnicodeUTF8)) | |
1115 | self.dataGraphCorrOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) |
|
1022 | self.dataGraphCorrOkBtn.setText(QtGui.QApplication.translate("MainWindow", "Ok", None, QtGui.QApplication.UnicodeUTF8)) | |
1116 | self.dataGraphCorrCancelBtn.setText(QtGui.QApplication.translate("MainWindow", "Cancel", None, QtGui.QApplication.UnicodeUTF8)) |
|
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 | self.tabWidget_5.setTabText(self.tabWidget_5.indexOf(self.tab_13), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8)) |
|
1027 | self.tabWidget_5.setTabText(self.tabWidget_5.indexOf(self.tab_13), QtGui.QApplication.translate("MainWindow", "Graphics", None, QtGui.QApplication.UnicodeUTF8)) | |
1118 | self.label_17.setText(QtGui.QApplication.translate("MainWindow", "Data format", None, QtGui.QApplication.UnicodeUTF8)) |
|
1028 | self.label_17.setText(QtGui.QApplication.translate("MainWindow", "Data format", None, QtGui.QApplication.UnicodeUTF8)) | |
1119 | self.label_18.setText(QtGui.QApplication.translate("MainWindow", "Path", None, QtGui.QApplication.UnicodeUTF8)) |
|
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