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