##// END OF EJS Templates
***
ralonso -
r11:12
parent child
Show More
@@ -1,113 +1,148
1 # -*- coding: utf-8 -*- No newline at end of file
1 # -*- coding: utf-8 -*-
2 No newline at end of file
2
3 """ No newline at end of file
3 """
4 Module implementing MainWindow. No newline at end of file
4 Module implementing MainWindow.
5 """ No newline at end of file
5 """
6 No newline at end of file
6
7 from PyQt4.QtGui import QMainWindow No newline at end of file
7 from PyQt4.QtGui import QMainWindow
8 from PyQt4.QtCore import pyqtSignature No newline at end of file
8 from PyQt4.QtCore import pyqtSignature
9 from Ui_MainWindow import Ui_MainWindow No newline at end of file
9 from Ui_MainWindow import Ui_MainWindow
10 from PyQt4 import QtGui No newline at end of file
10 from PyQt4 import QtGui
11 from subprocess import * No newline at end of file
11 from subprocess import *
12 import sys No newline at end of file
12 import sys
13 #import subprocess No newline at end of file
13 #import subprocess
14 import commands No newline at end of file
14 import commands
15 No newline at end of file
15
16 class MainWindow(QMainWindow, Ui_MainWindow): No newline at end of file
16 class MainWindow(QMainWindow, Ui_MainWindow):
17 """ No newline at end of file
17 """
18 Class documentation goes here. No newline at end of file
18 Class documentation goes here.
19 """ No newline at end of file
19 """
20 def __init__(self, parent = None): No newline at end of file
20 def __init__(self, parent = None):
21 QMainWindow.__init__(self, parent) No newline at end of file
21 QMainWindow.__init__(self, parent)
22 self.setupUi(self) No newline at end of file
22 self.setupUi(self)
23 self.setupUi2() No newline at end of file
23 self.setupUi2()
24 No newline at end of file
24
25 def setupUi2(self): No newline at end of file
25 def setupUi2(self):
26 print 'hi' No newline at end of file
26 print 'hi'
27 No newline at end of file
27
28 No newline at end of file
28 @pyqtSignature("")
29 No newline at end of file
29 def on_btnDpath_clicked(self):
30 @pyqtSignature("") No newline at end of file
30 """
31 def on_btnDpath_clicked(self): No newline at end of file
31 Slot documentation goes here.
32 """ No newline at end of file
32 """
33 Slot documentation goes here. No newline at end of file
33 var_Dpath= QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)
34 """ No newline at end of file
34 self.txtDpath.setText(var_Dpath)
35 var_Dpath= QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly) No newline at end of file
35 self.on_txtDpath_editingFinished()
36 self.txtDpath.setText(var_Dpath) No newline at end of file
36
37 self.on_txtDpath_editingFinished() No newline at end of file
37 @pyqtSignature("")
38 No newline at end of file
38 def on_btnRpath_clicked(self):
39 @pyqtSignature("") No newline at end of file
39 """
40 def on_btnRpath_clicked(self): No newline at end of file
40 Slot documentation goes here.
41 """ No newline at end of file
41 """
42 Slot documentation goes here. No newline at end of file
42 filename = QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)
43 """ No newline at end of file
43 self.txtRpath.setText(filename)
44 filename = QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly) No newline at end of file
44
45 self.txtRpath.setText(filename) No newline at end of file
45
46 No newline at end of file
46
47 No newline at end of file
47 @pyqtSignature("")
48 No newline at end of file
48 def on_txtDpath_editingFinished(self):
49 @pyqtSignature("") No newline at end of file
49
50 def on_txtDpath_editingFinished(self): No newline at end of file
50 #Usando el modulo "subprocess" eric4 pide seleccion del tipo de subproceso (padre o hijo)
51 No newline at end of file
51 #por ello se prefiere usar el modulo "commands"
52 No newline at end of file
52 #p1= Popen(['find', var_Dpath, '-name', '*.r'], stdout=PIPE)
53 #Usando el modulo "subprocess" eric4 pide seleccion del tipo de subproceso (padre o hijo) No newline at end of file
53 #p2= Popen(['awk', '-F/', '{print substr($NF,2,7)}'], stdin=p1.stdout, stdout=PIPE)
54 #por ello se prefiere usar el modulo "commands" No newline at end of file
54 #output_p2= p2.communicate()[0]
55 #p1= Popen(['find', var_Dpath, '-name', '*.r'], stdout=PIPE) No newline at end of file
55 #self.txtInfo.setText(output_p2)
56 #p2= Popen(['awk', '-F/', '{print substr($NF,2,7)}'], stdin=p1.stdout, stdout=PIPE) No newline at end of file
56
57 #output_p2= p2.communicate()[0] No newline at end of file
57 var_Dpath=self.txtDpath.text()
58 #self.txtInfo.setText(output_p2) No newline at end of file
58
59 No newline at end of file
59 #Se verifica que la ruta exista y sea un directorio
60 var_cmd="test -d "+str(var_Dpath) No newline at end of file
60
61 var_output=commands.getstatusoutput(var_cmd)[0]
No newline at end of file
62 if var_output != 0: No newline at end of file
61 var_Dpath=self.txtDpath.text() No newline at end of file
62 var_cmd="test -d "+str(var_Dpath) No newline at end of file
63 self.txtInfo.setText("Ruta no valida, output_error:" + str(var_output))
63 var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
64 return
64 if var_output != 0:
65
No newline at end of file
66 #Se buscan los archivos del tipo especificado No newline at end of file
65 self.txtInfo.setText(str(var_output)) No newline at end of file
66 return No newline at end of file
67 var_Dtype=self.txtDtype.text()
67
68 var_cmd="find " + str(var_Dpath) + " -name *."+ str(var_Dtype) +" | awk -F/ '{print substr($NF,2,7)}' | sort| uniq"
No newline at end of file
69 output_p2=commands.getstatusoutput(var_cmd)[1] No newline at end of file
68 No newline at end of file
69 var_Dtype=self.txtDtype.text() No newline at end of file
70
70 var_cmd="find " + str(var_Dpath) + " -name *."+ str(var_Dtype) +" | awk -F/ '{print substr($NF,2,7)}' | sort| uniq" No newline at end of file
71 #INFO: Muestra los dias que se encontraron
71 output_p2=commands.getstatusoutput(var_cmd)[1] No newline at end of file
72 self.txtInfo.setText(output_p2)
72 No newline at end of file
73
74 #Se cargan las listas para seleccionar StartDay y StopDay No newline at end of file
73 self.txtInfo.setText(output_p2) No newline at end of file
75 self.var_list=[]
74
76 for i in range(0, (len(output_p2)+1)/8):
No newline at end of file
77 self.var_list.append(output_p2[8*i:8*(i+1)-1])
75 var_list=[] No newline at end of file
No newline at end of file
78 No newline at end of file
76 for i in range(0, (len(output_p2)+1)/8):
79 self.lstStartDay.clear()
No newline at end of file
80 self.lstStopDay.clear() No newline at end of file
77 var_list.append(output_p2[8*i:8*(i+1)-1]) No newline at end of file
78 No newline at end of file
81
79 self.lstStartDay.clear() No newline at end of file
82 for i in self.var_list:
80 self.lstStopDay.clear() No newline at end of file
83 self.lstStartDay.addItem(i)
81
84 self.lstStopDay.addItem(i)
No newline at end of file
85 No newline at end of file
82 for i in var_list: No newline at end of file
83 self.lstStartDay.addItem(i) No newline at end of file
86 self.lstStopDay.setCurrentIndex(self.lstStartDay.count()-1)
84 self.lstStopDay.addItem(i) No newline at end of file
87
85
88 #INFO: Muestra cuantos dias se encontraron
No newline at end of file
86 self.txtInfo.setText(str(self.lstStartDay.count())) No newline at end of file
87 self.lstStopDay.setCurrentIndex(self.lstStartDay.count()-1) No newline at end of file
89 # self.txtInfo.setText(str(self.lstStartDay.count()))
90
No newline at end of file
91 @pyqtSignature("int")
No newline at end of file
92 def on_lstDtype_activated(self, index): No newline at end of file
88 No newline at end of file
93 """
89 @pyqtSignature("int") No newline at end of file
94 Permite elegir entre los tipos de archivos
90 def on_lstDtype_activated(self, index): No newline at end of file
95 """
91 """ No newline at end of file
96 if index == 0:
92 Permite elegir entre los tipos de archivos No newline at end of file
97 var_type='r'
93 """ No newline at end of file
98 elif index == 1:
94 if index == 0: No newline at end of file
99 var_type='pdata'
95 var_type='r' No newline at end of file
100 elif index == 2:
96 elif index == 1: No newline at end of file
101 var_type='sswma'
97 var_type='pdata' No newline at end of file
102
98 elif index == 2: No newline at end of file
103 if index != 3:
99 var_type='sswma' No newline at end of file
104 self.txtDtype.setText(var_type)
100 No newline at end of file
105 self.txtDtype.setReadOnly(True)
101 if index != 3: No newline at end of file
106 self.on_txtDpath_editingFinished()
102 self.txtDtype.setText(var_type) No newline at end of file
107 else:
103 self.txtDtype.setReadOnly(True) No newline at end of file
108 self.txtDtype.setText('')
109 self.txtDtype.setReadOnly(False) No newline at end of file
104 else: No newline at end of file
110
105 self.txtDtype.setText('') No newline at end of file
111 @pyqtSignature("")
106 self.txtDtype.setReadOnly(False) No newline at end of file
112 def on_txtDtype_editingFinished(self):
107 No newline at end of file
113 """
108 @pyqtSignature("") No newline at end of file
114 Se activa cuando el tipo de archivo es ingresado manualmente
109 def on_txtDtype_editingFinished(self): No newline at end of file
115 """
110 """ No newline at end of file
116 self.on_txtDpath_editingFinished()
111 Se activa cuando el tipo de archivo es ingresado manualmente No newline at end of file
117
112 """ No newline at end of file
118 @pyqtSignature("int")
113 self.on_txtDpath_editingFinished() No newline at end of file
119 def on_lstStartDay_activated(self, index):
120 """
No newline at end of file
121 Slot documentation goes here.
No newline at end of file
122 """
No newline at end of file
123 self.txtInfo.setText(str(index))
No newline at end of file
124 var_StopDay_index=self.lstStopDay.currentIndex()
No newline at end of file
125 var_StopDay_index -= index
No newline at end of file
126
No newline at end of file
127 self.lstStopDay.clear()
No newline at end of file
128
No newline at end of file
129 for i in self.var_list[index:]:
No newline at end of file
130 self.lstStopDay.addItem(i)
No newline at end of file
131
No newline at end of file
132 self.lstStopDay.setCurrentIndex(var_StopDay_index)
No newline at end of file
133
No newline at end of file
134 @pyqtSignature("int")
No newline at end of file
135 def on_lstStopDay_activated(self, index):
No newline at end of file
136 """
No newline at end of file
137 Slot documentation goes here.
No newline at end of file
138 """
No newline at end of file
139 self.txtInfo.setText(str(index))
No newline at end of file
140 var_StartDay_index=self.lstStartDay.currentIndex()
No newline at end of file
141
No newline at end of file
142 self.lstStartDay.clear()
No newline at end of file
143
No newline at end of file
144 for i in self.var_list[:index+1]:
No newline at end of file
145 self.lstStartDay.addItem(i)
No newline at end of file
146
No newline at end of file
147 self.lstStartDay.setCurrentIndex(var_StartDay_index)
No newline at end of file
148 self.txtInfo.append(str(var_StartDay_index)) No newline at end of file
@@ -1,771 +1,775
1 <?xml version="1.0" encoding="UTF-8"?> No newline at end of file
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0"> No newline at end of file
2 <ui version="4.0">
3 <class>MainWindow</class> No newline at end of file
3 <class>MainWindow</class>
4 <widget class="QMainWindow" name="MainWindow"> No newline at end of file
4 <widget class="QMainWindow" name="MainWindow">
5 <property name="geometry"> No newline at end of file
5 <property name="geometry">
6 <rect> No newline at end of file
6 <rect>
7 <x>0</x> No newline at end of file
7 <x>0</x>
8 <y>0</y> No newline at end of file
8 <y>0</y>
9 <width>593</width> No newline at end of file
9 <width>593</width>
10 <height>787</height> No newline at end of file
10 <height>787</height>
11 </rect> No newline at end of file
11 </rect>
12 </property> No newline at end of file
12 </property>
13 <property name="windowTitle"> No newline at end of file
13 <property name="windowTitle">
14 <string>JRO BACKUP MANAGER</string> No newline at end of file
14 <string>JRO BACKUP MANAGER</string>
15 </property> No newline at end of file
15 </property>
16 <widget class="QWidget" name="centralwidget"> No newline at end of file
16 <widget class="QWidget" name="centralwidget">
17 <layout class="QVBoxLayout" name="verticalLayout_3"> No newline at end of file
17 <layout class="QVBoxLayout" name="verticalLayout_3">
18 <item> No newline at end of file
18 <item>
19 <widget class="QTabWidget" name="tabWidget"> No newline at end of file
19 <widget class="QTabWidget" name="tabWidget">
20 <property name="sizePolicy"> No newline at end of file
20 <property name="sizePolicy">
21 <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> No newline at end of file
21 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
22 <horstretch>0</horstretch> No newline at end of file
22 <horstretch>0</horstretch>
23 <verstretch>0</verstretch> No newline at end of file
23 <verstretch>0</verstretch>
24 </sizepolicy> No newline at end of file
24 </sizepolicy>
25 </property> No newline at end of file
25 </property>
26 <property name="currentIndex"> No newline at end of file
26 <property name="currentIndex">
27 <number>0</number> No newline at end of file
27 <number>0</number>
28 </property> No newline at end of file
28 </property>
29 <widget class="QWidget" name="tabParameters"> No newline at end of file
29 <widget class="QWidget" name="tabParameters">
30 <attribute name="title"> No newline at end of file
30 <attribute name="title">
31 <string>Parameters</string> No newline at end of file
31 <string>Parameters</string>
32 </attribute> No newline at end of file
32 </attribute>
33 <layout class="QVBoxLayout" name="verticalLayout_2"> No newline at end of file
33 <layout class="QVBoxLayout" name="verticalLayout_2">
34 <item> No newline at end of file
34 <item>
35 <layout class="QHBoxLayout" name="horizontalLayout"> No newline at end of file
35 <layout class="QHBoxLayout" name="horizontalLayout">
36 <property name="sizeConstraint"> No newline at end of file
36 <property name="sizeConstraint">
37 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
37 <enum>QLayout::SetDefaultConstraint</enum>
38 </property> No newline at end of file
38 </property>
39 <item> No newline at end of file
39 <item>
40 <widget class="QLineEdit" name="txtDpath"> No newline at end of file
40 <widget class="QLineEdit" name="txtDpath">
41 <property name="sizePolicy"> No newline at end of file
41 <property name="sizePolicy">
42 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> No newline at end of file
42 <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
43 <horstretch>0</horstretch> No newline at end of file
43 <horstretch>0</horstretch>
44 <verstretch>0</verstretch> No newline at end of file
44 <verstretch>0</verstretch>
45 </sizepolicy> No newline at end of file
45 </sizepolicy>
46 </property> No newline at end of file
46 </property>
47 </widget> No newline at end of file
47 </widget>
48 </item> No newline at end of file
48 </item>
49 <item> No newline at end of file
49 <item>
50 <widget class="QPushButton" name="btnDpath"> No newline at end of file
50 <widget class="QPushButton" name="btnDpath">
51 <property name="sizePolicy"> No newline at end of file
51 <property name="sizePolicy">
52 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
52 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
53 <horstretch>0</horstretch> No newline at end of file
53 <horstretch>0</horstretch>
54 <verstretch>0</verstretch> No newline at end of file
54 <verstretch>0</verstretch>
55 </sizepolicy> No newline at end of file
55 </sizepolicy>
56 </property> No newline at end of file
56 </property>
57 <property name="text"> No newline at end of file
57 <property name="text">
58 <string>Data Path</string> No newline at end of file
58 <string>Data Path</string>
59 </property> No newline at end of file
59 </property>
60 <property name="checkable"> No newline at end of file
60 <property name="checkable">
61 <bool>false</bool> No newline at end of file
61 <bool>false</bool>
62 </property> No newline at end of file
62 </property>
63 </widget> No newline at end of file
63 </widget>
64 </item> No newline at end of file
64 </item>
65 </layout> No newline at end of file
65 </layout>
66 </item> No newline at end of file
66 </item>
67 <item> No newline at end of file
67 <item>
68 <layout class="QHBoxLayout" name="horizontalLayout_3"> No newline at end of file
68 <layout class="QHBoxLayout" name="horizontalLayout_3">
69 <item> No newline at end of file
69 <item>
70 <widget class="QLineEdit" name="txtRpath"/> No newline at end of file
70 <widget class="QLineEdit" name="txtRpath"/>
71 </item> No newline at end of file
71 </item>
72 <item> No newline at end of file
72 <item>
73 <widget class="QPushButton" name="btnRpath"> No newline at end of file
73 <widget class="QPushButton" name="btnRpath">
74 <property name="text"> No newline at end of file
74 <property name="text">
75 <string>Resource Path</string> No newline at end of file
75 <string>Resource Path</string>
76 </property> No newline at end of file
76 </property>
77 </widget> No newline at end of file
77 </widget>
78 </item> No newline at end of file
78 </item>
79 </layout> No newline at end of file
79 </layout>
80 </item> No newline at end of file
80 </item>
81 <item> No newline at end of file
81 <item>
82 <widget class="QLabel" name="lblDtype"> No newline at end of file
82 <widget class="QLabel" name="lblDtype">
83 <property name="text"> No newline at end of file
83 <property name="text">
84 <string>Data Type</string> No newline at end of file
84 <string>Data Type</string>
85 </property> No newline at end of file
85 </property>
86 </widget> No newline at end of file
86 </widget>
87 </item> No newline at end of file
87 </item>
88 <item> No newline at end of file
88 <item>
89 <layout class="QHBoxLayout" name="horizontalLayout_4"> No newline at end of file
89 <layout class="QHBoxLayout" name="horizontalLayout_4">
90 <item> No newline at end of file
90 <item>
91 <widget class="QComboBox" name="lstDtype"> No newline at end of file
91 <widget class="QComboBox" name="lstDtype">
92 <item> No newline at end of file
92 <item>
93 <property name="text"> No newline at end of file
93 <property name="text">
94 <string>Raw Data</string> No newline at end of file
94 <string>Raw Data</string>
95 </property> No newline at end of file
95 </property>
96 </item> No newline at end of file
96 </item>
97 <item> No newline at end of file
97 <item>
98 <property name="text"> No newline at end of file
98 <property name="text">
99 <string>Process Data</string> No newline at end of file
99 <string>Process Data</string>
100 </property> No newline at end of file
100 </property>
101 </item> No newline at end of file
101 </item>
102 <item> No newline at end of file
102 <item>
103 <property name="text"> No newline at end of file
103 <property name="text">
104 <string>BLTR Data</string> No newline at end of file
104 <string>BLTR Data</string>
105 </property> No newline at end of file
105 </property>
106 </item> No newline at end of file
106 </item>
107 <item> No newline at end of file
107 <item>
108 <property name="text"> No newline at end of file
108 <property name="text">
109 <string>Other</string> No newline at end of file
109 <string>Other</string>
110 </property> No newline at end of file
110 </property>
111 </item> No newline at end of file
111 </item>
112 </widget> No newline at end of file
112 </widget>
113 </item> No newline at end of file
113 </item>
114 <item> No newline at end of file
114 <item>
115 <widget class="QLineEdit" name="txtDtype"> No newline at end of file
115 <widget class="QLineEdit" name="txtDtype">
116 <property name="text"> No newline at end of file
116 <property name="text">
117 <string>r</string> No newline at end of file
117 <string>r</string>
118 </property> No newline at end of file
118 </property>
119 <property name="readOnly"> No newline at end of file
119 <property name="readOnly">
120 <bool>true</bool> No newline at end of file
120 <bool>true</bool>
121 </property> No newline at end of file
121 </property>
122 </widget> No newline at end of file
122 </widget>
123 </item> No newline at end of file
123 </item>
124 <item> No newline at end of file
124 <item>
125 <widget class="QCheckBox" name="chkMST"> No newline at end of file
125 <widget class="QCheckBox" name="chkMST">
126 <property name="text"> No newline at end of file
126 <property name="text">
127 <string>MST-ISR Data</string> No newline at end of file
127 <string>MST-ISR Data</string>
128 </property> No newline at end of file
128 </property>
129 </widget> No newline at end of file
129 </widget>
130 </item> No newline at end of file
130 </item>
131 </layout> No newline at end of file
131 </layout>
132 </item> No newline at end of file
132 </item>
133 <item> No newline at end of file
133 <item>
134 <layout class="QHBoxLayout" name="horizontalLayout_6"> No newline at end of file
134 <layout class="QHBoxLayout" name="horizontalLayout_6">
135 <item> No newline at end of file
135 <item>
136 <widget class="QLabel" name="lblElabel"> No newline at end of file
136 <widget class="QLabel" name="lblElabel">
137 <property name="text"> No newline at end of file
137 <property name="text">
138 <string>Exp. Label at device</string> No newline at end of file
138 <string>Exp. Label at device</string>
139 </property> No newline at end of file
139 </property>
140 </widget> No newline at end of file
140 </widget>
141 </item> No newline at end of file
141 </item>
142 <item> No newline at end of file
142 <item>
143 <widget class="QLabel" name="lblCopys"> No newline at end of file
143 <widget class="QLabel" name="lblCopys">
144 <property name="text"> No newline at end of file
144 <property name="text">
145 <string>Copys</string> No newline at end of file
145 <string>Copys</string>
146 </property> No newline at end of file
146 </property>
147 </widget> No newline at end of file
147 </widget>
148 </item> No newline at end of file
148 </item>
149 </layout> No newline at end of file
149 </layout>
150 </item> No newline at end of file
150 </item>
151 <item> No newline at end of file
151 <item>
152 <layout class="QHBoxLayout" name="horizontalLayout_5"> No newline at end of file
152 <layout class="QHBoxLayout" name="horizontalLayout_5">
153 <item> No newline at end of file
153 <item>
154 <widget class="QLineEdit" name="txtElabel"/> No newline at end of file
154 <widget class="QLineEdit" name="txtElabel"/>
155 </item> No newline at end of file
155 </item>
156 <item>
156 <item>
No newline at end of file
157 <widget class="QLineEdit" name="txtCopys">
157 <widget class="QLineEdit" name="txtCopys"/> No newline at end of file
No newline at end of file
158 <property name="text">
No newline at end of file
159 <string>0</string>
No newline at end of file
160 </property>
No newline at end of file
161 </widget> No newline at end of file
158 </item> No newline at end of file
162 </item>
159 </layout> No newline at end of file
163 </layout>
160 </item> No newline at end of file
164 </item>
161 <item> No newline at end of file
165 <item>
162 <layout class="QHBoxLayout" name="horizontalLayout_7"> No newline at end of file
166 <layout class="QHBoxLayout" name="horizontalLayout_7">
163 <item> No newline at end of file
167 <item>
164 <widget class="QLabel" name="lblStartDay"> No newline at end of file
168 <widget class="QLabel" name="lblStartDay">
165 <property name="text"> No newline at end of file
169 <property name="text">
166 <string>Start Day:</string> No newline at end of file
170 <string>Start Day:</string>
167 </property> No newline at end of file
171 </property>
168 </widget> No newline at end of file
172 </widget>
169 </item> No newline at end of file
173 </item>
170 <item> No newline at end of file
174 <item>
171 <widget class="QLabel" name="lblStopDay"> No newline at end of file
175 <widget class="QLabel" name="lblStopDay">
172 <property name="text"> No newline at end of file
176 <property name="text">
173 <string>Stop Day:</string> No newline at end of file
177 <string>Stop Day:</string>
174 </property> No newline at end of file
178 </property>
175 </widget> No newline at end of file
179 </widget>
176 </item> No newline at end of file
180 </item>
177 </layout> No newline at end of file
181 </layout>
178 </item> No newline at end of file
182 </item>
179 <item> No newline at end of file
183 <item>
180 <layout class="QHBoxLayout" name="horizontalLayout_8"> No newline at end of file
184 <layout class="QHBoxLayout" name="horizontalLayout_8">
181 <item> No newline at end of file
185 <item>
182 <widget class="QComboBox" name="lstStartDay"/> No newline at end of file
186 <widget class="QComboBox" name="lstStartDay"/>
183 </item> No newline at end of file
187 </item>
184 <item> No newline at end of file
188 <item>
185 <widget class="QComboBox" name="lstStopDay"/> No newline at end of file
189 <widget class="QComboBox" name="lstStopDay"/>
186 </item> No newline at end of file
190 </item>
187 </layout> No newline at end of file
191 </layout>
188 </item> No newline at end of file
192 </item>
189 </layout> No newline at end of file
193 </layout>
190 </widget> No newline at end of file
194 </widget>
191 <widget class="QWidget" name="tabDconfig"> No newline at end of file
195 <widget class="QWidget" name="tabDconfig">
192 <property name="sizePolicy"> No newline at end of file
196 <property name="sizePolicy">
193 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
197 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
194 <horstretch>0</horstretch> No newline at end of file
198 <horstretch>0</horstretch>
195 <verstretch>0</verstretch> No newline at end of file
199 <verstretch>0</verstretch>
196 </sizepolicy> No newline at end of file
200 </sizepolicy>
197 </property> No newline at end of file
201 </property>
198 <attribute name="title"> No newline at end of file
202 <attribute name="title">
199 <string>Device Config.</string> No newline at end of file
203 <string>Device Config.</string>
200 </attribute> No newline at end of file
204 </attribute>
201 <layout class="QVBoxLayout" name="verticalLayout"> No newline at end of file
205 <layout class="QVBoxLayout" name="verticalLayout">
202 <item> No newline at end of file
206 <item>
203 <widget class="QWidget" name="widget" native="true"> No newline at end of file
207 <widget class="QWidget" name="widget" native="true">
204 <property name="sizePolicy"> No newline at end of file
208 <property name="sizePolicy">
205 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
209 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
206 <horstretch>0</horstretch> No newline at end of file
210 <horstretch>0</horstretch>
207 <verstretch>0</verstretch> No newline at end of file
211 <verstretch>0</verstretch>
208 </sizepolicy> No newline at end of file
212 </sizepolicy>
209 </property> No newline at end of file
213 </property>
210 <property name="maximumSize"> No newline at end of file
214 <property name="maximumSize">
211 <size> No newline at end of file
215 <size>
212 <width>500</width> No newline at end of file
216 <width>500</width>
213 <height>16777215</height> No newline at end of file
217 <height>16777215</height>
214 </size> No newline at end of file
218 </size>
215 </property> No newline at end of file
219 </property>
216 <layout class="QGridLayout" name="gridLayout"> No newline at end of file
220 <layout class="QGridLayout" name="gridLayout">
217 <item row="0" column="0"> No newline at end of file
221 <item row="0" column="0">
218 <widget class="QCheckBox" name="chkDevA"> No newline at end of file
222 <widget class="QCheckBox" name="chkDevA">
219 <property name="text"> No newline at end of file
223 <property name="text">
220 <string>Dev A</string> No newline at end of file
224 <string>Dev A</string>
221 </property> No newline at end of file
225 </property>
222 </widget> No newline at end of file
226 </widget>
223 </item> No newline at end of file
227 </item>
224 <item row="0" column="1"> No newline at end of file
228 <item row="0" column="1">
225 <widget class="QCheckBox" name="chkDevB"> No newline at end of file
229 <widget class="QCheckBox" name="chkDevB">
226 <property name="text"> No newline at end of file
230 <property name="text">
227 <string>Dev B</string> No newline at end of file
231 <string>Dev B</string>
228 </property> No newline at end of file
232 </property>
229 </widget> No newline at end of file
233 </widget>
230 </item> No newline at end of file
234 </item>
231 <item row="0" column="2"> No newline at end of file
235 <item row="0" column="2">
232 <widget class="QCheckBox" name="chkDevC"> No newline at end of file
236 <widget class="QCheckBox" name="chkDevC">
233 <property name="text"> No newline at end of file
237 <property name="text">
234 <string>Dev C</string> No newline at end of file
238 <string>Dev C</string>
235 </property> No newline at end of file
239 </property>
236 </widget> No newline at end of file
240 </widget>
237 </item> No newline at end of file
241 </item>
238 <item row="0" column="3"> No newline at end of file
242 <item row="0" column="3">
239 <widget class="QCheckBox" name="chkDevD"> No newline at end of file
243 <widget class="QCheckBox" name="chkDevD">
240 <property name="text"> No newline at end of file
244 <property name="text">
241 <string>Dev D</string> No newline at end of file
245 <string>Dev D</string>
242 </property> No newline at end of file
246 </property>
243 </widget> No newline at end of file
247 </widget>
244 </item> No newline at end of file
248 </item>
245 <item row="2" column="1"> No newline at end of file
249 <item row="2" column="1">
246 <widget class="QLineEdit" name="txtDeviceB"/> No newline at end of file
250 <widget class="QLineEdit" name="txtDeviceB"/>
247 </item> No newline at end of file
251 </item>
248 <item row="4" column="0"> No newline at end of file
252 <item row="4" column="0">
249 <widget class="QLineEdit" name="txtBspeedA"/> No newline at end of file
253 <widget class="QLineEdit" name="txtBspeedA"/>
250 </item> No newline at end of file
254 </item>
251 <item row="2" column="0"> No newline at end of file
255 <item row="2" column="0">
252 <widget class="QLineEdit" name="txtDeviceA"/> No newline at end of file
256 <widget class="QLineEdit" name="txtDeviceA"/>
253 </item> No newline at end of file
257 </item>
254 <item row="4" column="1"> No newline at end of file
258 <item row="4" column="1">
255 <widget class="QLineEdit" name="txtBspeedB"/> No newline at end of file
259 <widget class="QLineEdit" name="txtBspeedB"/>
256 </item> No newline at end of file
260 </item>
257 <item row="2" column="4"> No newline at end of file
261 <item row="2" column="4">
258 <widget class="QLabel" name="lblDevice"> No newline at end of file
262 <widget class="QLabel" name="lblDevice">
259 <property name="text"> No newline at end of file
263 <property name="text">
260 <string>Device</string> No newline at end of file
264 <string>Device</string>
261 </property> No newline at end of file
265 </property>
262 </widget> No newline at end of file
266 </widget>
263 </item> No newline at end of file
267 </item>
264 <item row="2" column="2"> No newline at end of file
268 <item row="2" column="2">
265 <widget class="QLineEdit" name="txtDeviceC"/> No newline at end of file
269 <widget class="QLineEdit" name="txtDeviceC"/>
266 </item> No newline at end of file
270 </item>
267 <item row="2" column="3"> No newline at end of file
271 <item row="2" column="3">
268 <widget class="QLineEdit" name="txtDeviceD"/> No newline at end of file
272 <widget class="QLineEdit" name="txtDeviceD"/>
269 </item> No newline at end of file
273 </item>
270 <item row="4" column="3"> No newline at end of file
274 <item row="4" column="3">
271 <widget class="QLineEdit" name="txtBspeedD"/> No newline at end of file
275 <widget class="QLineEdit" name="txtBspeedD"/>
272 </item> No newline at end of file
276 </item>
273 <item row="5" column="0"> No newline at end of file
277 <item row="5" column="0">
274 <widget class="QLineEdit" name="txtBmodeA"/> No newline at end of file
278 <widget class="QLineEdit" name="txtBmodeA"/>
275 </item> No newline at end of file
279 </item>
276 <item row="5" column="1"> No newline at end of file
280 <item row="5" column="1">
277 <widget class="QLineEdit" name="txtBmodeB"/> No newline at end of file
281 <widget class="QLineEdit" name="txtBmodeB"/>
278 </item> No newline at end of file
282 </item>
279 <item row="4" column="4"> No newline at end of file
283 <item row="4" column="4">
280 <widget class="QLabel" name="lblBspeed"> No newline at end of file
284 <widget class="QLabel" name="lblBspeed">
281 <property name="text"> No newline at end of file
285 <property name="text">
282 <string>Burn Speed</string> No newline at end of file
286 <string>Burn Speed</string>
283 </property> No newline at end of file
287 </property>
284 </widget> No newline at end of file
288 </widget>
285 </item> No newline at end of file
289 </item>
286 <item row="5" column="4"> No newline at end of file
290 <item row="5" column="4">
287 <widget class="QLabel" name="lblBmode"> No newline at end of file
291 <widget class="QLabel" name="lblBmode">
288 <property name="text"> No newline at end of file
292 <property name="text">
289 <string>Burn Mode</string> No newline at end of file
293 <string>Burn Mode</string>
290 </property> No newline at end of file
294 </property>
291 </widget> No newline at end of file
295 </widget>
292 </item> No newline at end of file
296 </item>
293 <item row="5" column="2"> No newline at end of file
297 <item row="5" column="2">
294 <widget class="QLineEdit" name="txtBmodeC"/> No newline at end of file
298 <widget class="QLineEdit" name="txtBmodeC"/>
295 </item> No newline at end of file
299 </item>
296 <item row="5" column="3"> No newline at end of file
300 <item row="5" column="3">
297 <widget class="QLineEdit" name="txtBmodeD"/> No newline at end of file
301 <widget class="QLineEdit" name="txtBmodeD"/>
298 </item> No newline at end of file
302 </item>
299 <item row="6" column="0"> No newline at end of file
303 <item row="6" column="0">
300 <widget class="QPushButton" name="btnTdevA"> No newline at end of file
304 <widget class="QPushButton" name="btnTdevA">
301 <property name="text"> No newline at end of file
305 <property name="text">
302 <string>Test DevA</string> No newline at end of file
306 <string>Test DevA</string>
303 </property> No newline at end of file
307 </property>
304 </widget> No newline at end of file
308 </widget>
305 </item> No newline at end of file
309 </item>
306 <item row="6" column="1"> No newline at end of file
310 <item row="6" column="1">
307 <widget class="QPushButton" name="btnTdevB"> No newline at end of file
311 <widget class="QPushButton" name="btnTdevB">
308 <property name="text"> No newline at end of file
312 <property name="text">
309 <string>Test DevB</string> No newline at end of file
313 <string>Test DevB</string>
310 </property> No newline at end of file
314 </property>
311 </widget> No newline at end of file
315 </widget>
312 </item> No newline at end of file
316 </item>
313 <item row="6" column="2"> No newline at end of file
317 <item row="6" column="2">
314 <widget class="QPushButton" name="btnTdevC"> No newline at end of file
318 <widget class="QPushButton" name="btnTdevC">
315 <property name="text"> No newline at end of file
319 <property name="text">
316 <string>Test DevC</string> No newline at end of file
320 <string>Test DevC</string>
317 </property> No newline at end of file
321 </property>
318 </widget> No newline at end of file
322 </widget>
319 </item> No newline at end of file
323 </item>
320 <item row="6" column="3"> No newline at end of file
324 <item row="6" column="3">
321 <widget class="QPushButton" name="btnTdevD"> No newline at end of file
325 <widget class="QPushButton" name="btnTdevD">
322 <property name="text"> No newline at end of file
326 <property name="text">
323 <string>Test DevD</string> No newline at end of file
327 <string>Test DevD</string>
324 </property> No newline at end of file
328 </property>
325 </widget> No newline at end of file
329 </widget>
326 </item> No newline at end of file
330 </item>
327 <item row="4" column="2"> No newline at end of file
331 <item row="4" column="2">
328 <widget class="QLineEdit" name="txtBspeedC"/> No newline at end of file
332 <widget class="QLineEdit" name="txtBspeedC"/>
329 </item> No newline at end of file
333 </item>
330 </layout> No newline at end of file
334 </layout>
331 </widget> No newline at end of file
335 </widget>
332 </item> No newline at end of file
336 </item>
333 <item> No newline at end of file
337 <item>
334 <layout class="QHBoxLayout" name="horizontalLayout_9"> No newline at end of file
338 <layout class="QHBoxLayout" name="horizontalLayout_9">
335 <property name="sizeConstraint"> No newline at end of file
339 <property name="sizeConstraint">
336 <enum>QLayout::SetFixedSize</enum> No newline at end of file
340 <enum>QLayout::SetFixedSize</enum>
337 </property> No newline at end of file
341 </property>
338 <item> No newline at end of file
342 <item>
339 <widget class="QLabel" name="lblBprocess"> No newline at end of file
343 <widget class="QLabel" name="lblBprocess">
340 <property name="sizePolicy"> No newline at end of file
344 <property name="sizePolicy">
341 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
345 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
342 <horstretch>0</horstretch> No newline at end of file
346 <horstretch>0</horstretch>
343 <verstretch>0</verstretch> No newline at end of file
347 <verstretch>0</verstretch>
344 </sizepolicy> No newline at end of file
348 </sizepolicy>
345 </property> No newline at end of file
349 </property>
346 <property name="text"> No newline at end of file
350 <property name="text">
347 <string>Burning process</string> No newline at end of file
351 <string>Burning process</string>
348 </property> No newline at end of file
352 </property>
349 </widget> No newline at end of file
353 </widget>
350 </item> No newline at end of file
354 </item>
351 <item> No newline at end of file
355 <item>
352 <widget class="QCheckBox" name="chkSimultaneously"> No newline at end of file
356 <widget class="QCheckBox" name="chkSimultaneously">
353 <property name="sizePolicy"> No newline at end of file
357 <property name="sizePolicy">
354 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
358 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
355 <horstretch>0</horstretch> No newline at end of file
359 <horstretch>0</horstretch>
356 <verstretch>0</verstretch> No newline at end of file
360 <verstretch>0</verstretch>
357 </sizepolicy> No newline at end of file
361 </sizepolicy>
358 </property> No newline at end of file
362 </property>
359 <property name="text"> No newline at end of file
363 <property name="text">
360 <string>Simultaneously</string> No newline at end of file
364 <string>Simultaneously</string>
361 </property> No newline at end of file
365 </property>
362 </widget> No newline at end of file
366 </widget>
363 </item> No newline at end of file
367 </item>
364 <item> No newline at end of file
368 <item>
365 <widget class="QCheckBox" name="chkSequentially"> No newline at end of file
369 <widget class="QCheckBox" name="chkSequentially">
366 <property name="sizePolicy"> No newline at end of file
370 <property name="sizePolicy">
367 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
371 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
368 <horstretch>0</horstretch> No newline at end of file
372 <horstretch>0</horstretch>
369 <verstretch>0</verstretch> No newline at end of file
373 <verstretch>0</verstretch>
370 </sizepolicy> No newline at end of file
374 </sizepolicy>
371 </property> No newline at end of file
375 </property>
372 <property name="text"> No newline at end of file
376 <property name="text">
373 <string>Sequentially</string> No newline at end of file
377 <string>Sequentially</string>
374 </property> No newline at end of file
378 </property>
375 </widget> No newline at end of file
379 </widget>
376 </item> No newline at end of file
380 </item>
377 </layout> No newline at end of file
381 </layout>
378 </item> No newline at end of file
382 </item>
379 <item> No newline at end of file
383 <item>
380 <layout class="QHBoxLayout" name="horizontalLayout_11"> No newline at end of file
384 <layout class="QHBoxLayout" name="horizontalLayout_11">
381 <property name="spacing"> No newline at end of file
385 <property name="spacing">
382 <number>6</number> No newline at end of file
386 <number>6</number>
383 </property> No newline at end of file
387 </property>
384 <property name="sizeConstraint"> No newline at end of file
388 <property name="sizeConstraint">
385 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
389 <enum>QLayout::SetDefaultConstraint</enum>
386 </property> No newline at end of file
390 </property>
387 <item> No newline at end of file
391 <item>
388 <widget class="QLabel" name="lblDcapacity"> No newline at end of file
392 <widget class="QLabel" name="lblDcapacity">
389 <property name="sizePolicy"> No newline at end of file
393 <property name="sizePolicy">
390 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
394 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
391 <horstretch>0</horstretch> No newline at end of file
395 <horstretch>0</horstretch>
392 <verstretch>0</verstretch> No newline at end of file
396 <verstretch>0</verstretch>
393 </sizepolicy> No newline at end of file
397 </sizepolicy>
394 </property> No newline at end of file
398 </property>
395 <property name="text"> No newline at end of file
399 <property name="text">
396 <string>Device Capacity</string> No newline at end of file
400 <string>Device Capacity</string>
397 </property> No newline at end of file
401 </property>
398 </widget> No newline at end of file
402 </widget>
399 </item> No newline at end of file
403 </item>
400 <item> No newline at end of file
404 <item>
401 <widget class="QCheckBox" name="chkSalert"> No newline at end of file
405 <widget class="QCheckBox" name="chkSalert">
402 <property name="sizePolicy"> No newline at end of file
406 <property name="sizePolicy">
403 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
407 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
404 <horstretch>0</horstretch> No newline at end of file
408 <horstretch>0</horstretch>
405 <verstretch>0</verstretch> No newline at end of file
409 <verstretch>0</verstretch>
406 </sizepolicy> No newline at end of file
410 </sizepolicy>
407 </property> No newline at end of file
411 </property>
408 <property name="text"> No newline at end of file
412 <property name="text">
409 <string>Sound Alert</string> No newline at end of file
413 <string>Sound Alert</string>
410 </property> No newline at end of file
414 </property>
411 </widget> No newline at end of file
415 </widget>
412 </item> No newline at end of file
416 </item>
413 </layout> No newline at end of file
417 </layout>
414 </item> No newline at end of file
418 </item>
415 <item> No newline at end of file
419 <item>
416 <layout class="QHBoxLayout" name="horizontalLayout_10"> No newline at end of file
420 <layout class="QHBoxLayout" name="horizontalLayout_10">
417 <property name="sizeConstraint"> No newline at end of file
421 <property name="sizeConstraint">
418 <enum>QLayout::SetFixedSize</enum> No newline at end of file
422 <enum>QLayout::SetFixedSize</enum>
419 </property> No newline at end of file
423 </property>
420 <item> No newline at end of file
424 <item>
421 <widget class="QComboBox" name="lstDcapacity"> No newline at end of file
425 <widget class="QComboBox" name="lstDcapacity">
422 <property name="currentIndex"> No newline at end of file
426 <property name="currentIndex">
423 <number>2</number> No newline at end of file
427 <number>2</number>
424 </property> No newline at end of file
428 </property>
425 <item> No newline at end of file
429 <item>
426 <property name="text"> No newline at end of file
430 <property name="text">
427 <string>BluRay [25.0 GB]</string> No newline at end of file
431 <string>BluRay [25.0 GB]</string>
428 </property> No newline at end of file
432 </property>
429 </item> No newline at end of file
433 </item>
430 <item> No newline at end of file
434 <item>
431 <property name="text"> No newline at end of file
435 <property name="text">
432 <string>DVD2 [8.5 GB]</string> No newline at end of file
436 <string>DVD2 [8.5 GB]</string>
433 </property> No newline at end of file
437 </property>
434 </item> No newline at end of file
438 </item>
435 <item> No newline at end of file
439 <item>
436 <property name="text"> No newline at end of file
440 <property name="text">
437 <string>DVD1 [4.7 GB]</string> No newline at end of file
441 <string>DVD1 [4.7 GB]</string>
438 </property> No newline at end of file
442 </property>
439 </item> No newline at end of file
443 </item>
440 <item> No newline at end of file
444 <item>
441 <property name="text"> No newline at end of file
445 <property name="text">
442 <string>CD [0.7 GB]</string> No newline at end of file
446 <string>CD [0.7 GB]</string>
443 </property> No newline at end of file
447 </property>
444 </item> No newline at end of file
448 </item>
445 <item> No newline at end of file
449 <item>
446 <property name="text"> No newline at end of file
450 <property name="text">
447 <string>Other [? GB]</string> No newline at end of file
451 <string>Other [? GB]</string>
448 </property> No newline at end of file
452 </property>
449 </item> No newline at end of file
453 </item>
450 </widget> No newline at end of file
454 </widget>
451 </item> No newline at end of file
455 </item>
452 <item> No newline at end of file
456 <item>
453 <widget class="QLineEdit" name="txtDcapacity"> No newline at end of file
457 <widget class="QLineEdit" name="txtDcapacity">
454 <property name="readOnly"> No newline at end of file
458 <property name="readOnly">
455 <bool>false</bool> No newline at end of file
459 <bool>false</bool>
456 </property> No newline at end of file
460 </property>
457 </widget> No newline at end of file
461 </widget>
458 </item> No newline at end of file
462 </item>
459 <item> No newline at end of file
463 <item>
460 <widget class="QCheckBox" name="chkPSgraphic"> No newline at end of file
464 <widget class="QCheckBox" name="chkPSgraphic">
461 <property name="text"> No newline at end of file
465 <property name="text">
462 <string>PS Graphic</string> No newline at end of file
466 <string>PS Graphic</string>
463 </property> No newline at end of file
467 </property>
464 </widget> No newline at end of file
468 </widget>
465 </item> No newline at end of file
469 </item>
466 <item> No newline at end of file
470 <item>
467 <widget class="QLineEdit" name="lineEdit_17"/> No newline at end of file
471 <widget class="QLineEdit" name="lineEdit_17"/>
468 </item> No newline at end of file
472 </item>
469 </layout> No newline at end of file
473 </layout>
470 </item> No newline at end of file
474 </item>
471 </layout> No newline at end of file
475 </layout>
472 </widget> No newline at end of file
476 </widget>
473 <widget class="QWidget" name="tabSburn"> No newline at end of file
477 <widget class="QWidget" name="tabSburn">
474 <attribute name="title"> No newline at end of file
478 <attribute name="title">
475 <string>Status Burn</string> No newline at end of file
479 <string>Status Burn</string>
476 </attribute> No newline at end of file
480 </attribute>
477 <layout class="QVBoxLayout" name="verticalLayout_4"> No newline at end of file
481 <layout class="QVBoxLayout" name="verticalLayout_4">
478 <item> No newline at end of file
482 <item>
479 <widget class="QWidget" name="widget_2" native="true"> No newline at end of file
483 <widget class="QWidget" name="widget_2" native="true">
480 <property name="sizePolicy"> No newline at end of file
484 <property name="sizePolicy">
481 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
485 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
482 <horstretch>0</horstretch> No newline at end of file
486 <horstretch>0</horstretch>
483 <verstretch>0</verstretch> No newline at end of file
487 <verstretch>0</verstretch>
484 </sizepolicy> No newline at end of file
488 </sizepolicy>
485 </property> No newline at end of file
489 </property>
486 <property name="maximumSize"> No newline at end of file
490 <property name="maximumSize">
487 <size> No newline at end of file
491 <size>
488 <width>500</width> No newline at end of file
492 <width>500</width>
489 <height>16777215</height> No newline at end of file
493 <height>16777215</height>
490 </size> No newline at end of file
494 </size>
491 </property> No newline at end of file
495 </property>
492 <layout class="QGridLayout" name="gridLayout_2"> No newline at end of file
496 <layout class="QGridLayout" name="gridLayout_2">
493 <item row="3" column="2"> No newline at end of file
497 <item row="3" column="2">
494 <widget class="QLineEdit" name="txtSTATUSb"/> No newline at end of file
498 <widget class="QLineEdit" name="txtSTATUSb"/>
495 </item> No newline at end of file
499 </item>
496 <item row="5" column="1"> No newline at end of file
500 <item row="5" column="1">
497 <widget class="QLineEdit" name="txtINFOa"/> No newline at end of file
501 <widget class="QLineEdit" name="txtINFOa"/>
498 </item> No newline at end of file
502 </item>
499 <item row="3" column="1"> No newline at end of file
503 <item row="3" column="1">
500 <widget class="QLineEdit" name="txtSTATUSa"/> No newline at end of file
504 <widget class="QLineEdit" name="txtSTATUSa"/>
501 </item> No newline at end of file
505 </item>
502 <item row="5" column="2"> No newline at end of file
506 <item row="5" column="2">
503 <widget class="QLineEdit" name="txtINFOb"/> No newline at end of file
507 <widget class="QLineEdit" name="txtINFOb"/>
504 </item> No newline at end of file
508 </item>
505 <item row="3" column="3"> No newline at end of file
509 <item row="3" column="3">
506 <widget class="QLineEdit" name="txtSTATUSc"/> No newline at end of file
510 <widget class="QLineEdit" name="txtSTATUSc"/>
507 </item> No newline at end of file
511 </item>
508 <item row="3" column="4"> No newline at end of file
512 <item row="3" column="4">
509 <widget class="QLineEdit" name="txtSTATUSd"/> No newline at end of file
513 <widget class="QLineEdit" name="txtSTATUSd"/>
510 </item> No newline at end of file
514 </item>
511 <item row="5" column="4"> No newline at end of file
515 <item row="5" column="4">
512 <widget class="QLineEdit" name="txtINFOd"/> No newline at end of file
516 <widget class="QLineEdit" name="txtINFOd"/>
513 </item> No newline at end of file
517 </item>
514 <item row="6" column="1"> No newline at end of file
518 <item row="6" column="1">
515 <widget class="QLineEdit" name="txtSETa"/> No newline at end of file
519 <widget class="QLineEdit" name="txtSETa"/>
516 </item> No newline at end of file
520 </item>
517 <item row="6" column="2"> No newline at end of file
521 <item row="6" column="2">
518 <widget class="QLineEdit" name="txtSETb"/> No newline at end of file
522 <widget class="QLineEdit" name="txtSETb"/>
519 </item> No newline at end of file
523 </item>
520 <item row="6" column="3"> No newline at end of file
524 <item row="6" column="3">
521 <widget class="QLineEdit" name="txtSETc"/> No newline at end of file
525 <widget class="QLineEdit" name="txtSETc"/>
522 </item> No newline at end of file
526 </item>
523 <item row="6" column="4"> No newline at end of file
527 <item row="6" column="4">
524 <widget class="QLineEdit" name="txtSETd"/> No newline at end of file
528 <widget class="QLineEdit" name="txtSETd"/>
525 </item> No newline at end of file
529 </item>
526 <item row="3" column="0"> No newline at end of file
530 <item row="3" column="0">
527 <widget class="QLabel" name="lblSTATUS"> No newline at end of file
531 <widget class="QLabel" name="lblSTATUS">
528 <property name="text"> No newline at end of file
532 <property name="text">
529 <string>STATUS</string> No newline at end of file
533 <string>STATUS</string>
530 </property> No newline at end of file
534 </property>
531 </widget> No newline at end of file
535 </widget>
532 </item> No newline at end of file
536 </item>
533 <item row="5" column="0"> No newline at end of file
537 <item row="5" column="0">
534 <widget class="QLabel" name="lblINFO"> No newline at end of file
538 <widget class="QLabel" name="lblINFO">
535 <property name="text"> No newline at end of file
539 <property name="text">
536 <string>INFO</string> No newline at end of file
540 <string>INFO</string>
537 </property> No newline at end of file
541 </property>
538 </widget> No newline at end of file
542 </widget>
539 </item> No newline at end of file
543 </item>
540 <item row="6" column="0"> No newline at end of file
544 <item row="6" column="0">
541 <widget class="QLabel" name="lblSET"> No newline at end of file
545 <widget class="QLabel" name="lblSET">
542 <property name="text"> No newline at end of file
546 <property name="text">
543 <string>SET</string> No newline at end of file
547 <string>SET</string>
544 </property> No newline at end of file
548 </property>
545 </widget> No newline at end of file
549 </widget>
546 </item> No newline at end of file
550 </item>
547 <item row="0" column="1"> No newline at end of file
551 <item row="0" column="1">
548 <widget class="QLabel" name="lblDevA"> No newline at end of file
552 <widget class="QLabel" name="lblDevA">
549 <property name="text"> No newline at end of file
553 <property name="text">
550 <string>DEV A</string> No newline at end of file
554 <string>DEV A</string>
551 </property> No newline at end of file
555 </property>
552 <property name="alignment"> No newline at end of file
556 <property name="alignment">
553 <set>Qt::AlignCenter</set> No newline at end of file
557 <set>Qt::AlignCenter</set>
554 </property> No newline at end of file
558 </property>
555 </widget> No newline at end of file
559 </widget>
556 </item> No newline at end of file
560 </item>
557 <item row="0" column="2"> No newline at end of file
561 <item row="0" column="2">
558 <widget class="QLabel" name="lblDevB"> No newline at end of file
562 <widget class="QLabel" name="lblDevB">
559 <property name="text"> No newline at end of file
563 <property name="text">
560 <string>DEV B</string> No newline at end of file
564 <string>DEV B</string>
561 </property> No newline at end of file
565 </property>
562 <property name="alignment"> No newline at end of file
566 <property name="alignment">
563 <set>Qt::AlignCenter</set> No newline at end of file
567 <set>Qt::AlignCenter</set>
564 </property> No newline at end of file
568 </property>
565 </widget> No newline at end of file
569 </widget>
566 </item> No newline at end of file
570 </item>
567 <item row="0" column="3"> No newline at end of file
571 <item row="0" column="3">
568 <widget class="QLabel" name="lblDevC"> No newline at end of file
572 <widget class="QLabel" name="lblDevC">
569 <property name="text"> No newline at end of file
573 <property name="text">
570 <string>DEV C</string> No newline at end of file
574 <string>DEV C</string>
571 </property> No newline at end of file
575 </property>
572 <property name="alignment"> No newline at end of file
576 <property name="alignment">
573 <set>Qt::AlignCenter</set> No newline at end of file
577 <set>Qt::AlignCenter</set>
574 </property> No newline at end of file
578 </property>
575 </widget> No newline at end of file
579 </widget>
576 </item> No newline at end of file
580 </item>
577 <item row="0" column="4"> No newline at end of file
581 <item row="0" column="4">
578 <widget class="QLabel" name="lblDevD"> No newline at end of file
582 <widget class="QLabel" name="lblDevD">
579 <property name="text"> No newline at end of file
583 <property name="text">
580 <string>DEV D</string> No newline at end of file
584 <string>DEV D</string>
581 </property> No newline at end of file
585 </property>
582 <property name="alignment"> No newline at end of file
586 <property name="alignment">
583 <set>Qt::AlignCenter</set> No newline at end of file
587 <set>Qt::AlignCenter</set>
584 </property> No newline at end of file
588 </property>
585 </widget> No newline at end of file
589 </widget>
586 </item> No newline at end of file
590 </item>
587 <item row="5" column="3"> No newline at end of file
591 <item row="5" column="3">
588 <widget class="QLineEdit" name="txtINFOc"/> No newline at end of file
592 <widget class="QLineEdit" name="txtINFOc"/>
589 </item> No newline at end of file
593 </item>
590 </layout> No newline at end of file
594 </layout>
591 </widget> No newline at end of file
595 </widget>
592 </item> No newline at end of file
596 </item>
593 <item> No newline at end of file
597 <item>
594 <widget class="QTextEdit" name="txtSburn"/> No newline at end of file
598 <widget class="QTextEdit" name="txtSburn"/>
595 </item> No newline at end of file
599 </item>
596 </layout> No newline at end of file
600 </layout>
597 </widget> No newline at end of file
601 </widget>
598 </widget> No newline at end of file
602 </widget>
599 </item> No newline at end of file
603 </item>
600 <item> No newline at end of file
604 <item>
601 <widget class="QTextEdit" name="txtInfo"/> No newline at end of file
605 <widget class="QTextEdit" name="txtInfo"/>
602 </item> No newline at end of file
606 </item>
603 <item> No newline at end of file
607 <item>
604 <layout class="QHBoxLayout" name="horizontalLayout_2"> No newline at end of file
608 <layout class="QHBoxLayout" name="horizontalLayout_2">
605 <property name="sizeConstraint"> No newline at end of file
609 <property name="sizeConstraint">
606 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
610 <enum>QLayout::SetDefaultConstraint</enum>
607 </property> No newline at end of file
611 </property>
608 <item> No newline at end of file
612 <item>
609 <widget class="QPushButton" name="btnGbkp"> No newline at end of file
613 <widget class="QPushButton" name="btnGbkp">
610 <property name="text"> No newline at end of file
614 <property name="text">
611 <string>Generate Bkp</string> No newline at end of file
615 <string>Generate Bkp</string>
612 </property> No newline at end of file
616 </property>
613 </widget> No newline at end of file
617 </widget>
614 </item> No newline at end of file
618 </item>
615 <item> No newline at end of file
619 <item>
616 <widget class="QPushButton" name="btnRestart"> No newline at end of file
620 <widget class="QPushButton" name="btnRestart">
617 <property name="text"> No newline at end of file
621 <property name="text">
618 <string>Restart</string> No newline at end of file
622 <string>Restart</string>
619 </property> No newline at end of file
623 </property>
620 </widget> No newline at end of file
624 </widget>
621 </item> No newline at end of file
625 </item>
622 <item> No newline at end of file
626 <item>
623 <widget class="QPushButton" name="btnStartburn"> No newline at end of file
627 <widget class="QPushButton" name="btnStartburn">
624 <property name="text"> No newline at end of file
628 <property name="text">
625 <string>Start Burn</string> No newline at end of file
629 <string>Start Burn</string>
626 </property> No newline at end of file
630 </property>
627 </widget> No newline at end of file
631 </widget>
628 </item> No newline at end of file
632 </item>
629 <item> No newline at end of file
633 <item>
630 <widget class="QPushButton" name="btnStopburn"> No newline at end of file
634 <widget class="QPushButton" name="btnStopburn">
631 <property name="text"> No newline at end of file
635 <property name="text">
632 <string>Stop Burn</string> No newline at end of file
636 <string>Stop Burn</string>
633 </property> No newline at end of file
637 </property>
634 </widget> No newline at end of file
638 </widget>
635 </item> No newline at end of file
639 </item>
636 </layout> No newline at end of file
640 </layout>
637 </item> No newline at end of file
641 </item>
638 </layout> No newline at end of file
642 </layout>
639 </widget> No newline at end of file
643 </widget>
640 <widget class="QMenuBar" name="menubar"> No newline at end of file
644 <widget class="QMenuBar" name="menubar">
641 <property name="geometry"> No newline at end of file
645 <property name="geometry">
642 <rect> No newline at end of file
646 <rect>
643 <x>0</x> No newline at end of file
647 <x>0</x>
644 <y>0</y> No newline at end of file
648 <y>0</y>
645 <width>593</width> No newline at end of file
649 <width>593</width>
646 <height>25</height> No newline at end of file
650 <height>25</height>
647 </rect> No newline at end of file
651 </rect>
648 </property> No newline at end of file
652 </property>
649 <widget class="QMenu" name="menuFile"> No newline at end of file
653 <widget class="QMenu" name="menuFile">
650 <property name="title"> No newline at end of file
654 <property name="title">
651 <string>File</string> No newline at end of file
655 <string>File</string>
652 </property> No newline at end of file
656 </property>
653 <addaction name="actionSave_Config"/> No newline at end of file
657 <addaction name="actionSave_Config"/>
654 <addaction name="actionQuit"/> No newline at end of file
658 <addaction name="actionQuit"/>
655 </widget> No newline at end of file
659 </widget>
656 <widget class="QMenu" name="menuParameters"> No newline at end of file
660 <widget class="QMenu" name="menuParameters">
657 <property name="title"> No newline at end of file
661 <property name="title">
658 <string>Parameters</string> No newline at end of file
662 <string>Parameters</string>
659 </property> No newline at end of file
663 </property>
660 <addaction name="actionChange_Parameters"/> No newline at end of file
664 <addaction name="actionChange_Parameters"/>
661 </widget> No newline at end of file
665 </widget>
662 <widget class="QMenu" name="menuHelp"> No newline at end of file
666 <widget class="QMenu" name="menuHelp">
663 <property name="title"> No newline at end of file
667 <property name="title">
664 <string>Help</string> No newline at end of file
668 <string>Help</string>
665 </property> No newline at end of file
669 </property>
666 <addaction name="actionAbout"/> No newline at end of file
670 <addaction name="actionAbout"/>
667 </widget> No newline at end of file
671 </widget>
668 <addaction name="menuFile"/> No newline at end of file
672 <addaction name="menuFile"/>
669 <addaction name="menuParameters"/> No newline at end of file
673 <addaction name="menuParameters"/>
670 <addaction name="menuHelp"/> No newline at end of file
674 <addaction name="menuHelp"/>
671 </widget> No newline at end of file
675 </widget>
672 <widget class="QStatusBar" name="statusbar"/> No newline at end of file
676 <widget class="QStatusBar" name="statusbar"/>
673 <action name="actionChange_Parameters"> No newline at end of file
677 <action name="actionChange_Parameters">
674 <property name="text"> No newline at end of file
678 <property name="text">
675 <string>Change Parameters</string> No newline at end of file
679 <string>Change Parameters</string>
676 </property> No newline at end of file
680 </property>
677 </action> No newline at end of file
681 </action>
678 <action name="actionSave_Config"> No newline at end of file
682 <action name="actionSave_Config">
679 <property name="text"> No newline at end of file
683 <property name="text">
680 <string>Save Config</string> No newline at end of file
684 <string>Save Config</string>
681 </property> No newline at end of file
685 </property>
682 </action> No newline at end of file
686 </action>
683 <action name="actionQuit"> No newline at end of file
687 <action name="actionQuit">
684 <property name="text"> No newline at end of file
688 <property name="text">
685 <string>Quit</string> No newline at end of file
689 <string>Quit</string>
686 </property> No newline at end of file
690 </property>
687 </action> No newline at end of file
691 </action>
688 <action name="actionAbout"> No newline at end of file
692 <action name="actionAbout">
689 <property name="text"> No newline at end of file
693 <property name="text">
690 <string>About</string> No newline at end of file
694 <string>About</string>
691 </property> No newline at end of file
695 </property>
692 </action> No newline at end of file
696 </action>
693 </widget> No newline at end of file
697 </widget>
694 <tabstops> No newline at end of file
698 <tabstops>
695 <tabstop>txtDpath</tabstop> No newline at end of file
699 <tabstop>txtDpath</tabstop>
696 <tabstop>btnDpath</tabstop> No newline at end of file
700 <tabstop>btnDpath</tabstop>
697 <tabstop>txtRpath</tabstop> No newline at end of file
701 <tabstop>txtRpath</tabstop>
698 <tabstop>btnRpath</tabstop> No newline at end of file
702 <tabstop>btnRpath</tabstop>
699 <tabstop>lstDtype</tabstop> No newline at end of file
703 <tabstop>lstDtype</tabstop>
700 <tabstop>txtDtype</tabstop> No newline at end of file
704 <tabstop>txtDtype</tabstop>
701 <tabstop>chkMST</tabstop> No newline at end of file
705 <tabstop>chkMST</tabstop>
702 <tabstop>txtElabel</tabstop> No newline at end of file
706 <tabstop>txtElabel</tabstop>
703 <tabstop>txtCopys</tabstop> No newline at end of file
707 <tabstop>txtCopys</tabstop>
704 <tabstop>lstStartDay</tabstop> No newline at end of file
708 <tabstop>lstStartDay</tabstop>
705 <tabstop>lstStopDay</tabstop> No newline at end of file
709 <tabstop>lstStopDay</tabstop>
706 <tabstop>chkDevA</tabstop> No newline at end of file
710 <tabstop>chkDevA</tabstop>
707 <tabstop>chkDevB</tabstop> No newline at end of file
711 <tabstop>chkDevB</tabstop>
708 <tabstop>chkDevC</tabstop> No newline at end of file
712 <tabstop>chkDevC</tabstop>
709 <tabstop>chkDevD</tabstop> No newline at end of file
713 <tabstop>chkDevD</tabstop>
710 <tabstop>txtDeviceA</tabstop> No newline at end of file
714 <tabstop>txtDeviceA</tabstop>
711 <tabstop>txtDeviceB</tabstop> No newline at end of file
715 <tabstop>txtDeviceB</tabstop>
712 <tabstop>txtDeviceC</tabstop> No newline at end of file
716 <tabstop>txtDeviceC</tabstop>
713 <tabstop>txtDeviceD</tabstop> No newline at end of file
717 <tabstop>txtDeviceD</tabstop>
714 <tabstop>txtBspeedA</tabstop> No newline at end of file
718 <tabstop>txtBspeedA</tabstop>
715 <tabstop>txtBspeedB</tabstop> No newline at end of file
719 <tabstop>txtBspeedB</tabstop>
716 <tabstop>txtBspeedC</tabstop> No newline at end of file
720 <tabstop>txtBspeedC</tabstop>
717 <tabstop>txtBspeedD</tabstop> No newline at end of file
721 <tabstop>txtBspeedD</tabstop>
718 <tabstop>txtBmodeA</tabstop> No newline at end of file
722 <tabstop>txtBmodeA</tabstop>
719 <tabstop>txtBmodeB</tabstop> No newline at end of file
723 <tabstop>txtBmodeB</tabstop>
720 <tabstop>txtBmodeC</tabstop> No newline at end of file
724 <tabstop>txtBmodeC</tabstop>
721 <tabstop>txtBmodeD</tabstop> No newline at end of file
725 <tabstop>txtBmodeD</tabstop>
722 <tabstop>btnTdevA</tabstop> No newline at end of file
726 <tabstop>btnTdevA</tabstop>
723 <tabstop>btnTdevB</tabstop> No newline at end of file
727 <tabstop>btnTdevB</tabstop>
724 <tabstop>btnTdevC</tabstop> No newline at end of file
728 <tabstop>btnTdevC</tabstop>
725 <tabstop>btnTdevD</tabstop> No newline at end of file
729 <tabstop>btnTdevD</tabstop>
726 <tabstop>chkSimultaneously</tabstop> No newline at end of file
730 <tabstop>chkSimultaneously</tabstop>
727 <tabstop>chkSequentially</tabstop> No newline at end of file
731 <tabstop>chkSequentially</tabstop>
728 <tabstop>chkSalert</tabstop> No newline at end of file
732 <tabstop>chkSalert</tabstop>
729 <tabstop>lstDcapacity</tabstop> No newline at end of file
733 <tabstop>lstDcapacity</tabstop>
730 <tabstop>txtDcapacity</tabstop> No newline at end of file
734 <tabstop>txtDcapacity</tabstop>
731 <tabstop>chkPSgraphic</tabstop> No newline at end of file
735 <tabstop>chkPSgraphic</tabstop>
732 <tabstop>lineEdit_17</tabstop> No newline at end of file
736 <tabstop>lineEdit_17</tabstop>
733 <tabstop>txtSTATUSa</tabstop> No newline at end of file
737 <tabstop>txtSTATUSa</tabstop>
734 <tabstop>txtSTATUSb</tabstop> No newline at end of file
738 <tabstop>txtSTATUSb</tabstop>
735 <tabstop>txtSTATUSc</tabstop> No newline at end of file
739 <tabstop>txtSTATUSc</tabstop>
736 <tabstop>txtSTATUSd</tabstop> No newline at end of file
740 <tabstop>txtSTATUSd</tabstop>
737 <tabstop>txtINFOa</tabstop> No newline at end of file
741 <tabstop>txtINFOa</tabstop>
738 <tabstop>txtINFOb</tabstop> No newline at end of file
742 <tabstop>txtINFOb</tabstop>
739 <tabstop>txtINFOc</tabstop> No newline at end of file
743 <tabstop>txtINFOc</tabstop>
740 <tabstop>txtINFOd</tabstop> No newline at end of file
744 <tabstop>txtINFOd</tabstop>
741 <tabstop>txtSETa</tabstop> No newline at end of file
745 <tabstop>txtSETa</tabstop>
742 <tabstop>txtSETb</tabstop> No newline at end of file
746 <tabstop>txtSETb</tabstop>
743 <tabstop>txtSETc</tabstop> No newline at end of file
747 <tabstop>txtSETc</tabstop>
744 <tabstop>txtSETd</tabstop> No newline at end of file
748 <tabstop>txtSETd</tabstop>
745 <tabstop>tabWidget</tabstop> No newline at end of file
749 <tabstop>tabWidget</tabstop>
746 <tabstop>txtSburn</tabstop> No newline at end of file
750 <tabstop>txtSburn</tabstop>
747 <tabstop>btnGbkp</tabstop> No newline at end of file
751 <tabstop>btnGbkp</tabstop>
748 <tabstop>btnRestart</tabstop> No newline at end of file
752 <tabstop>btnRestart</tabstop>
749 <tabstop>btnStartburn</tabstop> No newline at end of file
753 <tabstop>btnStartburn</tabstop>
750 <tabstop>btnStopburn</tabstop> No newline at end of file
754 <tabstop>btnStopburn</tabstop>
751 </tabstops> No newline at end of file
755 </tabstops>
752 <resources/> No newline at end of file
756 <resources/>
753 <connections> No newline at end of file
757 <connections>
754 <connection> No newline at end of file
758 <connection>
755 <sender>chkDevA</sender> No newline at end of file
759 <sender>chkDevA</sender>
756 <signal>toggled(bool)</signal> No newline at end of file
760 <signal>toggled(bool)</signal>
757 <receiver>txtDeviceA</receiver> No newline at end of file
761 <receiver>txtDeviceA</receiver>
758 <slot>setEnabled(bool)</slot> No newline at end of file
762 <slot>setEnabled(bool)</slot>
759 <hints> No newline at end of file
763 <hints>
760 <hint type="sourcelabel"> No newline at end of file
764 <hint type="sourcelabel">
761 <x>102</x> No newline at end of file
765 <x>102</x>
762 <y>93</y> No newline at end of file
766 <y>93</y>
763 </hint> No newline at end of file
767 </hint>
764 <hint type="destinationlabel"> No newline at end of file
768 <hint type="destinationlabel">
765 <x>102</x> No newline at end of file
769 <x>102</x>
766 <y>135</y> No newline at end of file
770 <y>135</y>
767 </hint> No newline at end of file
771 </hint>
768 </hints> No newline at end of file
772 </hints>
769 </connection> No newline at end of file
773 </connection>
770 </connections> No newline at end of file
774 </connections>
771 </ui> No newline at end of file
775 </ui>
@@ -1,538 +1,539
1 # -*- coding: utf-8 -*- No newline at end of file
1 # -*- coding: utf-8 -*-
2 No newline at end of file
2
3 # Form implementation generated from reading ui file '/home/ricardoar/principal/JRO_SVN/eric4/jro_backup_manager/ui/MainWindow.ui' No newline at end of file
3 # Form implementation generated from reading ui file '/home/ricardoar/principal/JRO_SVN/eric4/jro_backup_manager/ui/MainWindow.ui'
4 #
4 #
No newline at end of file
5 # Created: Mon Apr 26 11:25:08 2010 No newline at end of file
5 # Created: Mon Apr 26 10:36:51 2010 No newline at end of file
6 # by: PyQt4 UI code generator 4.7.2 No newline at end of file
6 # by: PyQt4 UI code generator 4.7.2
7 # No newline at end of file
7 #
8 # WARNING! All changes made in this file will be lost! No newline at end of file
8 # WARNING! All changes made in this file will be lost!
9 No newline at end of file
9
10 from PyQt4 import QtCore, QtGui No newline at end of file
10 from PyQt4 import QtCore, QtGui
11 No newline at end of file
11
12 class Ui_MainWindow(object): No newline at end of file
12 class Ui_MainWindow(object):
13 def setupUi(self, MainWindow): No newline at end of file
13 def setupUi(self, MainWindow):
14 MainWindow.setObjectName("MainWindow") No newline at end of file
14 MainWindow.setObjectName("MainWindow")
15 MainWindow.resize(593, 787) No newline at end of file
15 MainWindow.resize(593, 787)
16 self.centralwidget = QtGui.QWidget(MainWindow) No newline at end of file
16 self.centralwidget = QtGui.QWidget(MainWindow)
17 self.centralwidget.setObjectName("centralwidget") No newline at end of file
17 self.centralwidget.setObjectName("centralwidget")
18 self.verticalLayout_3 = QtGui.QVBoxLayout(self.centralwidget) No newline at end of file
18 self.verticalLayout_3 = QtGui.QVBoxLayout(self.centralwidget)
19 self.verticalLayout_3.setObjectName("verticalLayout_3") No newline at end of file
19 self.verticalLayout_3.setObjectName("verticalLayout_3")
20 self.tabWidget = QtGui.QTabWidget(self.centralwidget) No newline at end of file
20 self.tabWidget = QtGui.QTabWidget(self.centralwidget)
21 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) No newline at end of file
21 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
22 sizePolicy.setHorizontalStretch(0) No newline at end of file
22 sizePolicy.setHorizontalStretch(0)
23 sizePolicy.setVerticalStretch(0) No newline at end of file
23 sizePolicy.setVerticalStretch(0)
24 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth()) No newline at end of file
24 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth())
25 self.tabWidget.setSizePolicy(sizePolicy) No newline at end of file
25 self.tabWidget.setSizePolicy(sizePolicy)
26 self.tabWidget.setObjectName("tabWidget") No newline at end of file
26 self.tabWidget.setObjectName("tabWidget")
27 self.tabParameters = QtGui.QWidget() No newline at end of file
27 self.tabParameters = QtGui.QWidget()
28 self.tabParameters.setObjectName("tabParameters") No newline at end of file
28 self.tabParameters.setObjectName("tabParameters")
29 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters) No newline at end of file
29 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters)
30 self.verticalLayout_2.setObjectName("verticalLayout_2") No newline at end of file
30 self.verticalLayout_2.setObjectName("verticalLayout_2")
31 self.horizontalLayout = QtGui.QHBoxLayout() No newline at end of file
31 self.horizontalLayout = QtGui.QHBoxLayout()
32 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
32 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
33 self.horizontalLayout.setObjectName("horizontalLayout") No newline at end of file
33 self.horizontalLayout.setObjectName("horizontalLayout")
34 self.txtDpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
34 self.txtDpath = QtGui.QLineEdit(self.tabParameters)
35 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) No newline at end of file
35 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
36 sizePolicy.setHorizontalStretch(0) No newline at end of file
36 sizePolicy.setHorizontalStretch(0)
37 sizePolicy.setVerticalStretch(0) No newline at end of file
37 sizePolicy.setVerticalStretch(0)
38 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
38 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth())
39 self.txtDpath.setSizePolicy(sizePolicy) No newline at end of file
39 self.txtDpath.setSizePolicy(sizePolicy)
40 self.txtDpath.setObjectName("txtDpath") No newline at end of file
40 self.txtDpath.setObjectName("txtDpath")
41 self.horizontalLayout.addWidget(self.txtDpath) No newline at end of file
41 self.horizontalLayout.addWidget(self.txtDpath)
42 self.btnDpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
42 self.btnDpath = QtGui.QPushButton(self.tabParameters)
43 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
43 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
44 sizePolicy.setHorizontalStretch(0) No newline at end of file
44 sizePolicy.setHorizontalStretch(0)
45 sizePolicy.setVerticalStretch(0) No newline at end of file
45 sizePolicy.setVerticalStretch(0)
46 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
46 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth())
47 self.btnDpath.setSizePolicy(sizePolicy) No newline at end of file
47 self.btnDpath.setSizePolicy(sizePolicy)
48 self.btnDpath.setCheckable(False) No newline at end of file
48 self.btnDpath.setCheckable(False)
49 self.btnDpath.setObjectName("btnDpath") No newline at end of file
49 self.btnDpath.setObjectName("btnDpath")
50 self.horizontalLayout.addWidget(self.btnDpath) No newline at end of file
50 self.horizontalLayout.addWidget(self.btnDpath)
51 self.verticalLayout_2.addLayout(self.horizontalLayout) No newline at end of file
51 self.verticalLayout_2.addLayout(self.horizontalLayout)
52 self.horizontalLayout_3 = QtGui.QHBoxLayout() No newline at end of file
52 self.horizontalLayout_3 = QtGui.QHBoxLayout()
53 self.horizontalLayout_3.setObjectName("horizontalLayout_3") No newline at end of file
53 self.horizontalLayout_3.setObjectName("horizontalLayout_3")
54 self.txtRpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
54 self.txtRpath = QtGui.QLineEdit(self.tabParameters)
55 self.txtRpath.setObjectName("txtRpath") No newline at end of file
55 self.txtRpath.setObjectName("txtRpath")
56 self.horizontalLayout_3.addWidget(self.txtRpath) No newline at end of file
56 self.horizontalLayout_3.addWidget(self.txtRpath)
57 self.btnRpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
57 self.btnRpath = QtGui.QPushButton(self.tabParameters)
58 self.btnRpath.setObjectName("btnRpath") No newline at end of file
58 self.btnRpath.setObjectName("btnRpath")
59 self.horizontalLayout_3.addWidget(self.btnRpath) No newline at end of file
59 self.horizontalLayout_3.addWidget(self.btnRpath)
60 self.verticalLayout_2.addLayout(self.horizontalLayout_3) No newline at end of file
60 self.verticalLayout_2.addLayout(self.horizontalLayout_3)
61 self.lblDtype = QtGui.QLabel(self.tabParameters) No newline at end of file
61 self.lblDtype = QtGui.QLabel(self.tabParameters)
62 self.lblDtype.setObjectName("lblDtype") No newline at end of file
62 self.lblDtype.setObjectName("lblDtype")
63 self.verticalLayout_2.addWidget(self.lblDtype) No newline at end of file
63 self.verticalLayout_2.addWidget(self.lblDtype)
64 self.horizontalLayout_4 = QtGui.QHBoxLayout() No newline at end of file
64 self.horizontalLayout_4 = QtGui.QHBoxLayout()
65 self.horizontalLayout_4.setObjectName("horizontalLayout_4") No newline at end of file
65 self.horizontalLayout_4.setObjectName("horizontalLayout_4")
66 self.lstDtype = QtGui.QComboBox(self.tabParameters) No newline at end of file
66 self.lstDtype = QtGui.QComboBox(self.tabParameters)
67 self.lstDtype.setObjectName("lstDtype") No newline at end of file
67 self.lstDtype.setObjectName("lstDtype")
68 self.lstDtype.addItem("") No newline at end of file
68 self.lstDtype.addItem("")
69 self.lstDtype.addItem("") No newline at end of file
69 self.lstDtype.addItem("")
70 self.lstDtype.addItem("") No newline at end of file
70 self.lstDtype.addItem("")
71 self.lstDtype.addItem("") No newline at end of file
71 self.lstDtype.addItem("")
72 self.horizontalLayout_4.addWidget(self.lstDtype) No newline at end of file
72 self.horizontalLayout_4.addWidget(self.lstDtype)
73 self.txtDtype = QtGui.QLineEdit(self.tabParameters) No newline at end of file
73 self.txtDtype = QtGui.QLineEdit(self.tabParameters)
74 self.txtDtype.setReadOnly(True) No newline at end of file
74 self.txtDtype.setReadOnly(True)
75 self.txtDtype.setObjectName("txtDtype") No newline at end of file
75 self.txtDtype.setObjectName("txtDtype")
76 self.horizontalLayout_4.addWidget(self.txtDtype) No newline at end of file
76 self.horizontalLayout_4.addWidget(self.txtDtype)
77 self.chkMST = QtGui.QCheckBox(self.tabParameters) No newline at end of file
77 self.chkMST = QtGui.QCheckBox(self.tabParameters)
78 self.chkMST.setObjectName("chkMST") No newline at end of file
78 self.chkMST.setObjectName("chkMST")
79 self.horizontalLayout_4.addWidget(self.chkMST) No newline at end of file
79 self.horizontalLayout_4.addWidget(self.chkMST)
80 self.verticalLayout_2.addLayout(self.horizontalLayout_4) No newline at end of file
80 self.verticalLayout_2.addLayout(self.horizontalLayout_4)
81 self.horizontalLayout_6 = QtGui.QHBoxLayout() No newline at end of file
81 self.horizontalLayout_6 = QtGui.QHBoxLayout()
82 self.horizontalLayout_6.setObjectName("horizontalLayout_6") No newline at end of file
82 self.horizontalLayout_6.setObjectName("horizontalLayout_6")
83 self.lblElabel = QtGui.QLabel(self.tabParameters) No newline at end of file
83 self.lblElabel = QtGui.QLabel(self.tabParameters)
84 self.lblElabel.setObjectName("lblElabel") No newline at end of file
84 self.lblElabel.setObjectName("lblElabel")
85 self.horizontalLayout_6.addWidget(self.lblElabel) No newline at end of file
85 self.horizontalLayout_6.addWidget(self.lblElabel)
86 self.lblCopys = QtGui.QLabel(self.tabParameters) No newline at end of file
86 self.lblCopys = QtGui.QLabel(self.tabParameters)
87 self.lblCopys.setObjectName("lblCopys") No newline at end of file
87 self.lblCopys.setObjectName("lblCopys")
88 self.horizontalLayout_6.addWidget(self.lblCopys) No newline at end of file
88 self.horizontalLayout_6.addWidget(self.lblCopys)
89 self.verticalLayout_2.addLayout(self.horizontalLayout_6) No newline at end of file
89 self.verticalLayout_2.addLayout(self.horizontalLayout_6)
90 self.horizontalLayout_5 = QtGui.QHBoxLayout() No newline at end of file
90 self.horizontalLayout_5 = QtGui.QHBoxLayout()
91 self.horizontalLayout_5.setObjectName("horizontalLayout_5") No newline at end of file
91 self.horizontalLayout_5.setObjectName("horizontalLayout_5")
92 self.txtElabel = QtGui.QLineEdit(self.tabParameters) No newline at end of file
92 self.txtElabel = QtGui.QLineEdit(self.tabParameters)
93 self.txtElabel.setObjectName("txtElabel") No newline at end of file
93 self.txtElabel.setObjectName("txtElabel")
94 self.horizontalLayout_5.addWidget(self.txtElabel) No newline at end of file
94 self.horizontalLayout_5.addWidget(self.txtElabel)
95 self.txtCopys = QtGui.QLineEdit(self.tabParameters) No newline at end of file
95 self.txtCopys = QtGui.QLineEdit(self.tabParameters)
96 self.txtCopys.setObjectName("txtCopys") No newline at end of file
96 self.txtCopys.setObjectName("txtCopys")
97 self.horizontalLayout_5.addWidget(self.txtCopys) No newline at end of file
97 self.horizontalLayout_5.addWidget(self.txtCopys)
98 self.verticalLayout_2.addLayout(self.horizontalLayout_5) No newline at end of file
98 self.verticalLayout_2.addLayout(self.horizontalLayout_5)
99 self.horizontalLayout_7 = QtGui.QHBoxLayout() No newline at end of file
99 self.horizontalLayout_7 = QtGui.QHBoxLayout()
100 self.horizontalLayout_7.setObjectName("horizontalLayout_7") No newline at end of file
100 self.horizontalLayout_7.setObjectName("horizontalLayout_7")
101 self.lblStartDay = QtGui.QLabel(self.tabParameters) No newline at end of file
101 self.lblStartDay = QtGui.QLabel(self.tabParameters)
102 self.lblStartDay.setObjectName("lblStartDay") No newline at end of file
102 self.lblStartDay.setObjectName("lblStartDay")
103 self.horizontalLayout_7.addWidget(self.lblStartDay) No newline at end of file
103 self.horizontalLayout_7.addWidget(self.lblStartDay)
104 self.lblStopDay = QtGui.QLabel(self.tabParameters) No newline at end of file
104 self.lblStopDay = QtGui.QLabel(self.tabParameters)
105 self.lblStopDay.setObjectName("lblStopDay") No newline at end of file
105 self.lblStopDay.setObjectName("lblStopDay")
106 self.horizontalLayout_7.addWidget(self.lblStopDay) No newline at end of file
106 self.horizontalLayout_7.addWidget(self.lblStopDay)
107 self.verticalLayout_2.addLayout(self.horizontalLayout_7) No newline at end of file
107 self.verticalLayout_2.addLayout(self.horizontalLayout_7)
108 self.horizontalLayout_8 = QtGui.QHBoxLayout() No newline at end of file
108 self.horizontalLayout_8 = QtGui.QHBoxLayout()
109 self.horizontalLayout_8.setObjectName("horizontalLayout_8") No newline at end of file
109 self.horizontalLayout_8.setObjectName("horizontalLayout_8")
110 self.lstStartDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
110 self.lstStartDay = QtGui.QComboBox(self.tabParameters)
111 self.lstStartDay.setObjectName("lstStartDay") No newline at end of file
111 self.lstStartDay.setObjectName("lstStartDay")
112 self.horizontalLayout_8.addWidget(self.lstStartDay) No newline at end of file
112 self.horizontalLayout_8.addWidget(self.lstStartDay)
113 self.lstStopDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
113 self.lstStopDay = QtGui.QComboBox(self.tabParameters)
114 self.lstStopDay.setObjectName("lstStopDay") No newline at end of file
114 self.lstStopDay.setObjectName("lstStopDay")
115 self.horizontalLayout_8.addWidget(self.lstStopDay) No newline at end of file
115 self.horizontalLayout_8.addWidget(self.lstStopDay)
116 self.verticalLayout_2.addLayout(self.horizontalLayout_8) No newline at end of file
116 self.verticalLayout_2.addLayout(self.horizontalLayout_8)
117 self.tabWidget.addTab(self.tabParameters, "") No newline at end of file
117 self.tabWidget.addTab(self.tabParameters, "")
118 self.tabDconfig = QtGui.QWidget() No newline at end of file
118 self.tabDconfig = QtGui.QWidget()
119 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
119 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
120 sizePolicy.setHorizontalStretch(0) No newline at end of file
120 sizePolicy.setHorizontalStretch(0)
121 sizePolicy.setVerticalStretch(0) No newline at end of file
121 sizePolicy.setVerticalStretch(0)
122 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth()) No newline at end of file
122 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth())
123 self.tabDconfig.setSizePolicy(sizePolicy) No newline at end of file
123 self.tabDconfig.setSizePolicy(sizePolicy)
124 self.tabDconfig.setObjectName("tabDconfig") No newline at end of file
124 self.tabDconfig.setObjectName("tabDconfig")
125 self.verticalLayout = QtGui.QVBoxLayout(self.tabDconfig) No newline at end of file
125 self.verticalLayout = QtGui.QVBoxLayout(self.tabDconfig)
126 self.verticalLayout.setObjectName("verticalLayout") No newline at end of file
126 self.verticalLayout.setObjectName("verticalLayout")
127 self.widget = QtGui.QWidget(self.tabDconfig) No newline at end of file
127 self.widget = QtGui.QWidget(self.tabDconfig)
128 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
128 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
129 sizePolicy.setHorizontalStretch(0) No newline at end of file
129 sizePolicy.setHorizontalStretch(0)
130 sizePolicy.setVerticalStretch(0) No newline at end of file
130 sizePolicy.setVerticalStretch(0)
131 sizePolicy.setHeightForWidth(self.widget.sizePolicy().hasHeightForWidth()) No newline at end of file
131 sizePolicy.setHeightForWidth(self.widget.sizePolicy().hasHeightForWidth())
132 self.widget.setSizePolicy(sizePolicy) No newline at end of file
132 self.widget.setSizePolicy(sizePolicy)
133 self.widget.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
133 self.widget.setMaximumSize(QtCore.QSize(500, 16777215))
134 self.widget.setObjectName("widget") No newline at end of file
134 self.widget.setObjectName("widget")
135 self.gridLayout = QtGui.QGridLayout(self.widget) No newline at end of file
135 self.gridLayout = QtGui.QGridLayout(self.widget)
136 self.gridLayout.setObjectName("gridLayout") No newline at end of file
136 self.gridLayout.setObjectName("gridLayout")
137 self.chkDevA = QtGui.QCheckBox(self.widget) No newline at end of file
137 self.chkDevA = QtGui.QCheckBox(self.widget)
138 self.chkDevA.setObjectName("chkDevA") No newline at end of file
138 self.chkDevA.setObjectName("chkDevA")
139 self.gridLayout.addWidget(self.chkDevA, 0, 0, 1, 1) No newline at end of file
139 self.gridLayout.addWidget(self.chkDevA, 0, 0, 1, 1)
140 self.chkDevB = QtGui.QCheckBox(self.widget) No newline at end of file
140 self.chkDevB = QtGui.QCheckBox(self.widget)
141 self.chkDevB.setObjectName("chkDevB") No newline at end of file
141 self.chkDevB.setObjectName("chkDevB")
142 self.gridLayout.addWidget(self.chkDevB, 0, 1, 1, 1) No newline at end of file
142 self.gridLayout.addWidget(self.chkDevB, 0, 1, 1, 1)
143 self.chkDevC = QtGui.QCheckBox(self.widget) No newline at end of file
143 self.chkDevC = QtGui.QCheckBox(self.widget)
144 self.chkDevC.setObjectName("chkDevC") No newline at end of file
144 self.chkDevC.setObjectName("chkDevC")
145 self.gridLayout.addWidget(self.chkDevC, 0, 2, 1, 1) No newline at end of file
145 self.gridLayout.addWidget(self.chkDevC, 0, 2, 1, 1)
146 self.chkDevD = QtGui.QCheckBox(self.widget) No newline at end of file
146 self.chkDevD = QtGui.QCheckBox(self.widget)
147 self.chkDevD.setObjectName("chkDevD") No newline at end of file
147 self.chkDevD.setObjectName("chkDevD")
148 self.gridLayout.addWidget(self.chkDevD, 0, 3, 1, 1) No newline at end of file
148 self.gridLayout.addWidget(self.chkDevD, 0, 3, 1, 1)
149 self.txtDeviceB = QtGui.QLineEdit(self.widget) No newline at end of file
149 self.txtDeviceB = QtGui.QLineEdit(self.widget)
150 self.txtDeviceB.setObjectName("txtDeviceB") No newline at end of file
150 self.txtDeviceB.setObjectName("txtDeviceB")
151 self.gridLayout.addWidget(self.txtDeviceB, 2, 1, 1, 1) No newline at end of file
151 self.gridLayout.addWidget(self.txtDeviceB, 2, 1, 1, 1)
152 self.txtBspeedA = QtGui.QLineEdit(self.widget) No newline at end of file
152 self.txtBspeedA = QtGui.QLineEdit(self.widget)
153 self.txtBspeedA.setObjectName("txtBspeedA") No newline at end of file
153 self.txtBspeedA.setObjectName("txtBspeedA")
154 self.gridLayout.addWidget(self.txtBspeedA, 4, 0, 1, 1) No newline at end of file
154 self.gridLayout.addWidget(self.txtBspeedA, 4, 0, 1, 1)
155 self.txtDeviceA = QtGui.QLineEdit(self.widget) No newline at end of file
155 self.txtDeviceA = QtGui.QLineEdit(self.widget)
156 self.txtDeviceA.setObjectName("txtDeviceA") No newline at end of file
156 self.txtDeviceA.setObjectName("txtDeviceA")
157 self.gridLayout.addWidget(self.txtDeviceA, 2, 0, 1, 1) No newline at end of file
157 self.gridLayout.addWidget(self.txtDeviceA, 2, 0, 1, 1)
158 self.txtBspeedB = QtGui.QLineEdit(self.widget) No newline at end of file
158 self.txtBspeedB = QtGui.QLineEdit(self.widget)
159 self.txtBspeedB.setObjectName("txtBspeedB") No newline at end of file
159 self.txtBspeedB.setObjectName("txtBspeedB")
160 self.gridLayout.addWidget(self.txtBspeedB, 4, 1, 1, 1) No newline at end of file
160 self.gridLayout.addWidget(self.txtBspeedB, 4, 1, 1, 1)
161 self.lblDevice = QtGui.QLabel(self.widget) No newline at end of file
161 self.lblDevice = QtGui.QLabel(self.widget)
162 self.lblDevice.setObjectName("lblDevice") No newline at end of file
162 self.lblDevice.setObjectName("lblDevice")
163 self.gridLayout.addWidget(self.lblDevice, 2, 4, 1, 1) No newline at end of file
163 self.gridLayout.addWidget(self.lblDevice, 2, 4, 1, 1)
164 self.txtDeviceC = QtGui.QLineEdit(self.widget) No newline at end of file
164 self.txtDeviceC = QtGui.QLineEdit(self.widget)
165 self.txtDeviceC.setObjectName("txtDeviceC") No newline at end of file
165 self.txtDeviceC.setObjectName("txtDeviceC")
166 self.gridLayout.addWidget(self.txtDeviceC, 2, 2, 1, 1) No newline at end of file
166 self.gridLayout.addWidget(self.txtDeviceC, 2, 2, 1, 1)
167 self.txtDeviceD = QtGui.QLineEdit(self.widget) No newline at end of file
167 self.txtDeviceD = QtGui.QLineEdit(self.widget)
168 self.txtDeviceD.setObjectName("txtDeviceD") No newline at end of file
168 self.txtDeviceD.setObjectName("txtDeviceD")
169 self.gridLayout.addWidget(self.txtDeviceD, 2, 3, 1, 1) No newline at end of file
169 self.gridLayout.addWidget(self.txtDeviceD, 2, 3, 1, 1)
170 self.txtBspeedD = QtGui.QLineEdit(self.widget) No newline at end of file
170 self.txtBspeedD = QtGui.QLineEdit(self.widget)
171 self.txtBspeedD.setObjectName("txtBspeedD") No newline at end of file
171 self.txtBspeedD.setObjectName("txtBspeedD")
172 self.gridLayout.addWidget(self.txtBspeedD, 4, 3, 1, 1) No newline at end of file
172 self.gridLayout.addWidget(self.txtBspeedD, 4, 3, 1, 1)
173 self.txtBmodeA = QtGui.QLineEdit(self.widget) No newline at end of file
173 self.txtBmodeA = QtGui.QLineEdit(self.widget)
174 self.txtBmodeA.setObjectName("txtBmodeA") No newline at end of file
174 self.txtBmodeA.setObjectName("txtBmodeA")
175 self.gridLayout.addWidget(self.txtBmodeA, 5, 0, 1, 1) No newline at end of file
175 self.gridLayout.addWidget(self.txtBmodeA, 5, 0, 1, 1)
176 self.txtBmodeB = QtGui.QLineEdit(self.widget) No newline at end of file
176 self.txtBmodeB = QtGui.QLineEdit(self.widget)
177 self.txtBmodeB.setObjectName("txtBmodeB") No newline at end of file
177 self.txtBmodeB.setObjectName("txtBmodeB")
178 self.gridLayout.addWidget(self.txtBmodeB, 5, 1, 1, 1) No newline at end of file
178 self.gridLayout.addWidget(self.txtBmodeB, 5, 1, 1, 1)
179 self.lblBspeed = QtGui.QLabel(self.widget) No newline at end of file
179 self.lblBspeed = QtGui.QLabel(self.widget)
180 self.lblBspeed.setObjectName("lblBspeed") No newline at end of file
180 self.lblBspeed.setObjectName("lblBspeed")
181 self.gridLayout.addWidget(self.lblBspeed, 4, 4, 1, 1) No newline at end of file
181 self.gridLayout.addWidget(self.lblBspeed, 4, 4, 1, 1)
182 self.lblBmode = QtGui.QLabel(self.widget) No newline at end of file
182 self.lblBmode = QtGui.QLabel(self.widget)
183 self.lblBmode.setObjectName("lblBmode") No newline at end of file
183 self.lblBmode.setObjectName("lblBmode")
184 self.gridLayout.addWidget(self.lblBmode, 5, 4, 1, 1) No newline at end of file
184 self.gridLayout.addWidget(self.lblBmode, 5, 4, 1, 1)
185 self.txtBmodeC = QtGui.QLineEdit(self.widget) No newline at end of file
185 self.txtBmodeC = QtGui.QLineEdit(self.widget)
186 self.txtBmodeC.setObjectName("txtBmodeC") No newline at end of file
186 self.txtBmodeC.setObjectName("txtBmodeC")
187 self.gridLayout.addWidget(self.txtBmodeC, 5, 2, 1, 1) No newline at end of file
187 self.gridLayout.addWidget(self.txtBmodeC, 5, 2, 1, 1)
188 self.txtBmodeD = QtGui.QLineEdit(self.widget) No newline at end of file
188 self.txtBmodeD = QtGui.QLineEdit(self.widget)
189 self.txtBmodeD.setObjectName("txtBmodeD") No newline at end of file
189 self.txtBmodeD.setObjectName("txtBmodeD")
190 self.gridLayout.addWidget(self.txtBmodeD, 5, 3, 1, 1) No newline at end of file
190 self.gridLayout.addWidget(self.txtBmodeD, 5, 3, 1, 1)
191 self.btnTdevA = QtGui.QPushButton(self.widget) No newline at end of file
191 self.btnTdevA = QtGui.QPushButton(self.widget)
192 self.btnTdevA.setObjectName("btnTdevA") No newline at end of file
192 self.btnTdevA.setObjectName("btnTdevA")
193 self.gridLayout.addWidget(self.btnTdevA, 6, 0, 1, 1) No newline at end of file
193 self.gridLayout.addWidget(self.btnTdevA, 6, 0, 1, 1)
194 self.btnTdevB = QtGui.QPushButton(self.widget) No newline at end of file
194 self.btnTdevB = QtGui.QPushButton(self.widget)
195 self.btnTdevB.setObjectName("btnTdevB") No newline at end of file
195 self.btnTdevB.setObjectName("btnTdevB")
196 self.gridLayout.addWidget(self.btnTdevB, 6, 1, 1, 1) No newline at end of file
196 self.gridLayout.addWidget(self.btnTdevB, 6, 1, 1, 1)
197 self.btnTdevC = QtGui.QPushButton(self.widget) No newline at end of file
197 self.btnTdevC = QtGui.QPushButton(self.widget)
198 self.btnTdevC.setObjectName("btnTdevC") No newline at end of file
198 self.btnTdevC.setObjectName("btnTdevC")
199 self.gridLayout.addWidget(self.btnTdevC, 6, 2, 1, 1) No newline at end of file
199 self.gridLayout.addWidget(self.btnTdevC, 6, 2, 1, 1)
200 self.btnTdevD = QtGui.QPushButton(self.widget) No newline at end of file
200 self.btnTdevD = QtGui.QPushButton(self.widget)
201 self.btnTdevD.setObjectName("btnTdevD") No newline at end of file
201 self.btnTdevD.setObjectName("btnTdevD")
202 self.gridLayout.addWidget(self.btnTdevD, 6, 3, 1, 1) No newline at end of file
202 self.gridLayout.addWidget(self.btnTdevD, 6, 3, 1, 1)
203 self.txtBspeedC = QtGui.QLineEdit(self.widget) No newline at end of file
203 self.txtBspeedC = QtGui.QLineEdit(self.widget)
204 self.txtBspeedC.setObjectName("txtBspeedC") No newline at end of file
204 self.txtBspeedC.setObjectName("txtBspeedC")
205 self.gridLayout.addWidget(self.txtBspeedC, 4, 2, 1, 1) No newline at end of file
205 self.gridLayout.addWidget(self.txtBspeedC, 4, 2, 1, 1)
206 self.verticalLayout.addWidget(self.widget) No newline at end of file
206 self.verticalLayout.addWidget(self.widget)
207 self.horizontalLayout_9 = QtGui.QHBoxLayout() No newline at end of file
207 self.horizontalLayout_9 = QtGui.QHBoxLayout()
208 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
208 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize)
209 self.horizontalLayout_9.setObjectName("horizontalLayout_9") No newline at end of file
209 self.horizontalLayout_9.setObjectName("horizontalLayout_9")
210 self.lblBprocess = QtGui.QLabel(self.tabDconfig) No newline at end of file
210 self.lblBprocess = QtGui.QLabel(self.tabDconfig)
211 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
211 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
212 sizePolicy.setHorizontalStretch(0) No newline at end of file
212 sizePolicy.setHorizontalStretch(0)
213 sizePolicy.setVerticalStretch(0) No newline at end of file
213 sizePolicy.setVerticalStretch(0)
214 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth()) No newline at end of file
214 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth())
215 self.lblBprocess.setSizePolicy(sizePolicy) No newline at end of file
215 self.lblBprocess.setSizePolicy(sizePolicy)
216 self.lblBprocess.setObjectName("lblBprocess") No newline at end of file
216 self.lblBprocess.setObjectName("lblBprocess")
217 self.horizontalLayout_9.addWidget(self.lblBprocess) No newline at end of file
217 self.horizontalLayout_9.addWidget(self.lblBprocess)
218 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
218 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig)
219 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
219 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
220 sizePolicy.setHorizontalStretch(0) No newline at end of file
220 sizePolicy.setHorizontalStretch(0)
221 sizePolicy.setVerticalStretch(0) No newline at end of file
221 sizePolicy.setVerticalStretch(0)
222 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth()) No newline at end of file
222 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth())
223 self.chkSimultaneously.setSizePolicy(sizePolicy) No newline at end of file
223 self.chkSimultaneously.setSizePolicy(sizePolicy)
224 self.chkSimultaneously.setObjectName("chkSimultaneously") No newline at end of file
224 self.chkSimultaneously.setObjectName("chkSimultaneously")
225 self.horizontalLayout_9.addWidget(self.chkSimultaneously) No newline at end of file
225 self.horizontalLayout_9.addWidget(self.chkSimultaneously)
226 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
226 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig)
227 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
227 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
228 sizePolicy.setHorizontalStretch(0) No newline at end of file
228 sizePolicy.setHorizontalStretch(0)
229 sizePolicy.setVerticalStretch(0) No newline at end of file
229 sizePolicy.setVerticalStretch(0)
230 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth()) No newline at end of file
230 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth())
231 self.chkSequentially.setSizePolicy(sizePolicy) No newline at end of file
231 self.chkSequentially.setSizePolicy(sizePolicy)
232 self.chkSequentially.setObjectName("chkSequentially") No newline at end of file
232 self.chkSequentially.setObjectName("chkSequentially")
233 self.horizontalLayout_9.addWidget(self.chkSequentially) No newline at end of file
233 self.horizontalLayout_9.addWidget(self.chkSequentially)
234 self.verticalLayout.addLayout(self.horizontalLayout_9) No newline at end of file
234 self.verticalLayout.addLayout(self.horizontalLayout_9)
235 self.horizontalLayout_11 = QtGui.QHBoxLayout() No newline at end of file
235 self.horizontalLayout_11 = QtGui.QHBoxLayout()
236 self.horizontalLayout_11.setSpacing(6) No newline at end of file
236 self.horizontalLayout_11.setSpacing(6)
237 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
237 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
238 self.horizontalLayout_11.setObjectName("horizontalLayout_11") No newline at end of file
238 self.horizontalLayout_11.setObjectName("horizontalLayout_11")
239 self.lblDcapacity = QtGui.QLabel(self.tabDconfig) No newline at end of file
239 self.lblDcapacity = QtGui.QLabel(self.tabDconfig)
240 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
240 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
241 sizePolicy.setHorizontalStretch(0) No newline at end of file
241 sizePolicy.setHorizontalStretch(0)
242 sizePolicy.setVerticalStretch(0) No newline at end of file
242 sizePolicy.setVerticalStretch(0)
243 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
243 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth())
244 self.lblDcapacity.setSizePolicy(sizePolicy) No newline at end of file
244 self.lblDcapacity.setSizePolicy(sizePolicy)
245 self.lblDcapacity.setObjectName("lblDcapacity") No newline at end of file
245 self.lblDcapacity.setObjectName("lblDcapacity")
246 self.horizontalLayout_11.addWidget(self.lblDcapacity) No newline at end of file
246 self.horizontalLayout_11.addWidget(self.lblDcapacity)
247 self.chkSalert = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
247 self.chkSalert = QtGui.QCheckBox(self.tabDconfig)
248 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
248 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
249 sizePolicy.setHorizontalStretch(0) No newline at end of file
249 sizePolicy.setHorizontalStretch(0)
250 sizePolicy.setVerticalStretch(0) No newline at end of file
250 sizePolicy.setVerticalStretch(0)
251 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth()) No newline at end of file
251 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth())
252 self.chkSalert.setSizePolicy(sizePolicy) No newline at end of file
252 self.chkSalert.setSizePolicy(sizePolicy)
253 self.chkSalert.setObjectName("chkSalert") No newline at end of file
253 self.chkSalert.setObjectName("chkSalert")
254 self.horizontalLayout_11.addWidget(self.chkSalert) No newline at end of file
254 self.horizontalLayout_11.addWidget(self.chkSalert)
255 self.verticalLayout.addLayout(self.horizontalLayout_11) No newline at end of file
255 self.verticalLayout.addLayout(self.horizontalLayout_11)
256 self.horizontalLayout_10 = QtGui.QHBoxLayout() No newline at end of file
256 self.horizontalLayout_10 = QtGui.QHBoxLayout()
257 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
257 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize)
258 self.horizontalLayout_10.setObjectName("horizontalLayout_10") No newline at end of file
258 self.horizontalLayout_10.setObjectName("horizontalLayout_10")
259 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig) No newline at end of file
259 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig)
260 self.lstDcapacity.setObjectName("lstDcapacity") No newline at end of file
260 self.lstDcapacity.setObjectName("lstDcapacity")
261 self.lstDcapacity.addItem("") No newline at end of file
261 self.lstDcapacity.addItem("")
262 self.lstDcapacity.addItem("") No newline at end of file
262 self.lstDcapacity.addItem("")
263 self.lstDcapacity.addItem("") No newline at end of file
263 self.lstDcapacity.addItem("")
264 self.lstDcapacity.addItem("") No newline at end of file
264 self.lstDcapacity.addItem("")
265 self.lstDcapacity.addItem("") No newline at end of file
265 self.lstDcapacity.addItem("")
266 self.horizontalLayout_10.addWidget(self.lstDcapacity) No newline at end of file
266 self.horizontalLayout_10.addWidget(self.lstDcapacity)
267 self.txtDcapacity = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
267 self.txtDcapacity = QtGui.QLineEdit(self.tabDconfig)
268 self.txtDcapacity.setReadOnly(False) No newline at end of file
268 self.txtDcapacity.setReadOnly(False)
269 self.txtDcapacity.setObjectName("txtDcapacity") No newline at end of file
269 self.txtDcapacity.setObjectName("txtDcapacity")
270 self.horizontalLayout_10.addWidget(self.txtDcapacity) No newline at end of file
270 self.horizontalLayout_10.addWidget(self.txtDcapacity)
271 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
271 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig)
272 self.chkPSgraphic.setObjectName("chkPSgraphic") No newline at end of file
272 self.chkPSgraphic.setObjectName("chkPSgraphic")
273 self.horizontalLayout_10.addWidget(self.chkPSgraphic) No newline at end of file
273 self.horizontalLayout_10.addWidget(self.chkPSgraphic)
274 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
274 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig)
275 self.lineEdit_17.setObjectName("lineEdit_17") No newline at end of file
275 self.lineEdit_17.setObjectName("lineEdit_17")
276 self.horizontalLayout_10.addWidget(self.lineEdit_17) No newline at end of file
276 self.horizontalLayout_10.addWidget(self.lineEdit_17)
277 self.verticalLayout.addLayout(self.horizontalLayout_10) No newline at end of file
277 self.verticalLayout.addLayout(self.horizontalLayout_10)
278 self.tabWidget.addTab(self.tabDconfig, "") No newline at end of file
278 self.tabWidget.addTab(self.tabDconfig, "")
279 self.tabSburn = QtGui.QWidget() No newline at end of file
279 self.tabSburn = QtGui.QWidget()
280 self.tabSburn.setObjectName("tabSburn") No newline at end of file
280 self.tabSburn.setObjectName("tabSburn")
281 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn) No newline at end of file
281 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn)
282 self.verticalLayout_4.setObjectName("verticalLayout_4") No newline at end of file
282 self.verticalLayout_4.setObjectName("verticalLayout_4")
283 self.widget_2 = QtGui.QWidget(self.tabSburn) No newline at end of file
283 self.widget_2 = QtGui.QWidget(self.tabSburn)
284 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
284 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
285 sizePolicy.setHorizontalStretch(0) No newline at end of file
285 sizePolicy.setHorizontalStretch(0)
286 sizePolicy.setVerticalStretch(0) No newline at end of file
286 sizePolicy.setVerticalStretch(0)
287 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth()) No newline at end of file
287 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth())
288 self.widget_2.setSizePolicy(sizePolicy) No newline at end of file
288 self.widget_2.setSizePolicy(sizePolicy)
289 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
289 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215))
290 self.widget_2.setObjectName("widget_2") No newline at end of file
290 self.widget_2.setObjectName("widget_2")
291 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2) No newline at end of file
291 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2)
292 self.gridLayout_2.setObjectName("gridLayout_2") No newline at end of file
292 self.gridLayout_2.setObjectName("gridLayout_2")
293 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2) No newline at end of file
293 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2)
294 self.txtSTATUSb.setObjectName("txtSTATUSb") No newline at end of file
294 self.txtSTATUSb.setObjectName("txtSTATUSb")
295 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1) No newline at end of file
295 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1)
296 self.txtINFOa = QtGui.QLineEdit(self.widget_2) No newline at end of file
296 self.txtINFOa = QtGui.QLineEdit(self.widget_2)
297 self.txtINFOa.setObjectName("txtINFOa") No newline at end of file
297 self.txtINFOa.setObjectName("txtINFOa")
298 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1) No newline at end of file
298 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1)
299 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2) No newline at end of file
299 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2)
300 self.txtSTATUSa.setObjectName("txtSTATUSa") No newline at end of file
300 self.txtSTATUSa.setObjectName("txtSTATUSa")
301 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1) No newline at end of file
301 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1)
302 self.txtINFOb = QtGui.QLineEdit(self.widget_2) No newline at end of file
302 self.txtINFOb = QtGui.QLineEdit(self.widget_2)
303 self.txtINFOb.setObjectName("txtINFOb") No newline at end of file
303 self.txtINFOb.setObjectName("txtINFOb")
304 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1) No newline at end of file
304 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1)
305 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2) No newline at end of file
305 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2)
306 self.txtSTATUSc.setObjectName("txtSTATUSc") No newline at end of file
306 self.txtSTATUSc.setObjectName("txtSTATUSc")
307 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1) No newline at end of file
307 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1)
308 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2) No newline at end of file
308 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2)
309 self.txtSTATUSd.setObjectName("txtSTATUSd") No newline at end of file
309 self.txtSTATUSd.setObjectName("txtSTATUSd")
310 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1) No newline at end of file
310 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1)
311 self.txtINFOd = QtGui.QLineEdit(self.widget_2) No newline at end of file
311 self.txtINFOd = QtGui.QLineEdit(self.widget_2)
312 self.txtINFOd.setObjectName("txtINFOd") No newline at end of file
312 self.txtINFOd.setObjectName("txtINFOd")
313 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1) No newline at end of file
313 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1)
314 self.txtSETa = QtGui.QLineEdit(self.widget_2) No newline at end of file
314 self.txtSETa = QtGui.QLineEdit(self.widget_2)
315 self.txtSETa.setObjectName("txtSETa") No newline at end of file
315 self.txtSETa.setObjectName("txtSETa")
316 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1) No newline at end of file
316 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1)
317 self.txtSETb = QtGui.QLineEdit(self.widget_2) No newline at end of file
317 self.txtSETb = QtGui.QLineEdit(self.widget_2)
318 self.txtSETb.setObjectName("txtSETb") No newline at end of file
318 self.txtSETb.setObjectName("txtSETb")
319 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1) No newline at end of file
319 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1)
320 self.txtSETc = QtGui.QLineEdit(self.widget_2) No newline at end of file
320 self.txtSETc = QtGui.QLineEdit(self.widget_2)
321 self.txtSETc.setObjectName("txtSETc") No newline at end of file
321 self.txtSETc.setObjectName("txtSETc")
322 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1) No newline at end of file
322 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1)
323 self.txtSETd = QtGui.QLineEdit(self.widget_2) No newline at end of file
323 self.txtSETd = QtGui.QLineEdit(self.widget_2)
324 self.txtSETd.setObjectName("txtSETd") No newline at end of file
324 self.txtSETd.setObjectName("txtSETd")
325 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1) No newline at end of file
325 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1)
326 self.lblSTATUS = QtGui.QLabel(self.widget_2) No newline at end of file
326 self.lblSTATUS = QtGui.QLabel(self.widget_2)
327 self.lblSTATUS.setObjectName("lblSTATUS") No newline at end of file
327 self.lblSTATUS.setObjectName("lblSTATUS")
328 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1) No newline at end of file
328 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1)
329 self.lblINFO = QtGui.QLabel(self.widget_2) No newline at end of file
329 self.lblINFO = QtGui.QLabel(self.widget_2)
330 self.lblINFO.setObjectName("lblINFO") No newline at end of file
330 self.lblINFO.setObjectName("lblINFO")
331 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1) No newline at end of file
331 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1)
332 self.lblSET = QtGui.QLabel(self.widget_2) No newline at end of file
332 self.lblSET = QtGui.QLabel(self.widget_2)
333 self.lblSET.setObjectName("lblSET") No newline at end of file
333 self.lblSET.setObjectName("lblSET")
334 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1) No newline at end of file
334 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1)
335 self.lblDevA = QtGui.QLabel(self.widget_2) No newline at end of file
335 self.lblDevA = QtGui.QLabel(self.widget_2)
336 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
336 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter)
337 self.lblDevA.setObjectName("lblDevA") No newline at end of file
337 self.lblDevA.setObjectName("lblDevA")
338 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1) No newline at end of file
338 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1)
339 self.lblDevB = QtGui.QLabel(self.widget_2) No newline at end of file
339 self.lblDevB = QtGui.QLabel(self.widget_2)
340 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
340 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter)
341 self.lblDevB.setObjectName("lblDevB") No newline at end of file
341 self.lblDevB.setObjectName("lblDevB")
342 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1) No newline at end of file
342 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1)
343 self.lblDevC = QtGui.QLabel(self.widget_2) No newline at end of file
343 self.lblDevC = QtGui.QLabel(self.widget_2)
344 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
344 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter)
345 self.lblDevC.setObjectName("lblDevC") No newline at end of file
345 self.lblDevC.setObjectName("lblDevC")
346 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1) No newline at end of file
346 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1)
347 self.lblDevD = QtGui.QLabel(self.widget_2) No newline at end of file
347 self.lblDevD = QtGui.QLabel(self.widget_2)
348 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
348 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter)
349 self.lblDevD.setObjectName("lblDevD") No newline at end of file
349 self.lblDevD.setObjectName("lblDevD")
350 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1) No newline at end of file
350 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1)
351 self.txtINFOc = QtGui.QLineEdit(self.widget_2) No newline at end of file
351 self.txtINFOc = QtGui.QLineEdit(self.widget_2)
352 self.txtINFOc.setObjectName("txtINFOc") No newline at end of file
352 self.txtINFOc.setObjectName("txtINFOc")
353 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1) No newline at end of file
353 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1)
354 self.verticalLayout_4.addWidget(self.widget_2) No newline at end of file
354 self.verticalLayout_4.addWidget(self.widget_2)
355 self.txtSburn = QtGui.QTextEdit(self.tabSburn) No newline at end of file
355 self.txtSburn = QtGui.QTextEdit(self.tabSburn)
356 self.txtSburn.setObjectName("txtSburn") No newline at end of file
356 self.txtSburn.setObjectName("txtSburn")
357 self.verticalLayout_4.addWidget(self.txtSburn) No newline at end of file
357 self.verticalLayout_4.addWidget(self.txtSburn)
358 self.tabWidget.addTab(self.tabSburn, "") No newline at end of file
358 self.tabWidget.addTab(self.tabSburn, "")
359 self.verticalLayout_3.addWidget(self.tabWidget) No newline at end of file
359 self.verticalLayout_3.addWidget(self.tabWidget)
360 self.txtInfo = QtGui.QTextEdit(self.centralwidget) No newline at end of file
360 self.txtInfo = QtGui.QTextEdit(self.centralwidget)
361 self.txtInfo.setObjectName("txtInfo") No newline at end of file
361 self.txtInfo.setObjectName("txtInfo")
362 self.verticalLayout_3.addWidget(self.txtInfo) No newline at end of file
362 self.verticalLayout_3.addWidget(self.txtInfo)
363 self.horizontalLayout_2 = QtGui.QHBoxLayout() No newline at end of file
363 self.horizontalLayout_2 = QtGui.QHBoxLayout()
364 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
364 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
365 self.horizontalLayout_2.setObjectName("horizontalLayout_2") No newline at end of file
365 self.horizontalLayout_2.setObjectName("horizontalLayout_2")
366 self.btnGbkp = QtGui.QPushButton(self.centralwidget) No newline at end of file
366 self.btnGbkp = QtGui.QPushButton(self.centralwidget)
367 self.btnGbkp.setObjectName("btnGbkp") No newline at end of file
367 self.btnGbkp.setObjectName("btnGbkp")
368 self.horizontalLayout_2.addWidget(self.btnGbkp) No newline at end of file
368 self.horizontalLayout_2.addWidget(self.btnGbkp)
369 self.btnRestart = QtGui.QPushButton(self.centralwidget) No newline at end of file
369 self.btnRestart = QtGui.QPushButton(self.centralwidget)
370 self.btnRestart.setObjectName("btnRestart") No newline at end of file
370 self.btnRestart.setObjectName("btnRestart")
371 self.horizontalLayout_2.addWidget(self.btnRestart) No newline at end of file
371 self.horizontalLayout_2.addWidget(self.btnRestart)
372 self.btnStartburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
372 self.btnStartburn = QtGui.QPushButton(self.centralwidget)
373 self.btnStartburn.setObjectName("btnStartburn") No newline at end of file
373 self.btnStartburn.setObjectName("btnStartburn")
374 self.horizontalLayout_2.addWidget(self.btnStartburn) No newline at end of file
374 self.horizontalLayout_2.addWidget(self.btnStartburn)
375 self.btnStopburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
375 self.btnStopburn = QtGui.QPushButton(self.centralwidget)
376 self.btnStopburn.setObjectName("btnStopburn") No newline at end of file
376 self.btnStopburn.setObjectName("btnStopburn")
377 self.horizontalLayout_2.addWidget(self.btnStopburn) No newline at end of file
377 self.horizontalLayout_2.addWidget(self.btnStopburn)
378 self.verticalLayout_3.addLayout(self.horizontalLayout_2) No newline at end of file
378 self.verticalLayout_3.addLayout(self.horizontalLayout_2)
379 MainWindow.setCentralWidget(self.centralwidget) No newline at end of file
379 MainWindow.setCentralWidget(self.centralwidget)
380 self.menubar = QtGui.QMenuBar(MainWindow) No newline at end of file
380 self.menubar = QtGui.QMenuBar(MainWindow)
381 self.menubar.setGeometry(QtCore.QRect(0, 0, 593, 25)) No newline at end of file
381 self.menubar.setGeometry(QtCore.QRect(0, 0, 593, 25))
382 self.menubar.setObjectName("menubar") No newline at end of file
382 self.menubar.setObjectName("menubar")
383 self.menuFile = QtGui.QMenu(self.menubar) No newline at end of file
383 self.menuFile = QtGui.QMenu(self.menubar)
384 self.menuFile.setObjectName("menuFile") No newline at end of file
384 self.menuFile.setObjectName("menuFile")
385 self.menuParameters = QtGui.QMenu(self.menubar) No newline at end of file
385 self.menuParameters = QtGui.QMenu(self.menubar)
386 self.menuParameters.setObjectName("menuParameters") No newline at end of file
386 self.menuParameters.setObjectName("menuParameters")
387 self.menuHelp = QtGui.QMenu(self.menubar) No newline at end of file
387 self.menuHelp = QtGui.QMenu(self.menubar)
388 self.menuHelp.setObjectName("menuHelp") No newline at end of file
388 self.menuHelp.setObjectName("menuHelp")
389 MainWindow.setMenuBar(self.menubar) No newline at end of file
389 MainWindow.setMenuBar(self.menubar)
390 self.statusbar = QtGui.QStatusBar(MainWindow) No newline at end of file
390 self.statusbar = QtGui.QStatusBar(MainWindow)
391 self.statusbar.setObjectName("statusbar") No newline at end of file
391 self.statusbar.setObjectName("statusbar")
392 MainWindow.setStatusBar(self.statusbar) No newline at end of file
392 MainWindow.setStatusBar(self.statusbar)
393 self.actionChange_Parameters = QtGui.QAction(MainWindow) No newline at end of file
393 self.actionChange_Parameters = QtGui.QAction(MainWindow)
394 self.actionChange_Parameters.setObjectName("actionChange_Parameters") No newline at end of file
394 self.actionChange_Parameters.setObjectName("actionChange_Parameters")
395 self.actionSave_Config = QtGui.QAction(MainWindow) No newline at end of file
395 self.actionSave_Config = QtGui.QAction(MainWindow)
396 self.actionSave_Config.setObjectName("actionSave_Config") No newline at end of file
396 self.actionSave_Config.setObjectName("actionSave_Config")
397 self.actionQuit = QtGui.QAction(MainWindow) No newline at end of file
397 self.actionQuit = QtGui.QAction(MainWindow)
398 self.actionQuit.setObjectName("actionQuit") No newline at end of file
398 self.actionQuit.setObjectName("actionQuit")
399 self.actionAbout = QtGui.QAction(MainWindow) No newline at end of file
399 self.actionAbout = QtGui.QAction(MainWindow)
400 self.actionAbout.setObjectName("actionAbout") No newline at end of file
400 self.actionAbout.setObjectName("actionAbout")
401 self.menuFile.addAction(self.actionSave_Config) No newline at end of file
401 self.menuFile.addAction(self.actionSave_Config)
402 self.menuFile.addAction(self.actionQuit) No newline at end of file
402 self.menuFile.addAction(self.actionQuit)
403 self.menuParameters.addAction(self.actionChange_Parameters) No newline at end of file
403 self.menuParameters.addAction(self.actionChange_Parameters)
404 self.menuHelp.addAction(self.actionAbout) No newline at end of file
404 self.menuHelp.addAction(self.actionAbout)
405 self.menubar.addAction(self.menuFile.menuAction()) No newline at end of file
405 self.menubar.addAction(self.menuFile.menuAction())
406 self.menubar.addAction(self.menuParameters.menuAction()) No newline at end of file
406 self.menubar.addAction(self.menuParameters.menuAction())
407 self.menubar.addAction(self.menuHelp.menuAction()) No newline at end of file
407 self.menubar.addAction(self.menuHelp.menuAction())
408 No newline at end of file
408
409 self.retranslateUi(MainWindow) No newline at end of file
409 self.retranslateUi(MainWindow)
410 self.tabWidget.setCurrentIndex(0) No newline at end of file
410 self.tabWidget.setCurrentIndex(0)
411 self.lstDcapacity.setCurrentIndex(2) No newline at end of file
411 self.lstDcapacity.setCurrentIndex(2)
412 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.txtDeviceA.setEnabled) No newline at end of file
412 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.txtDeviceA.setEnabled)
413 QtCore.QMetaObject.connectSlotsByName(MainWindow) No newline at end of file
413 QtCore.QMetaObject.connectSlotsByName(MainWindow)
414 MainWindow.setTabOrder(self.txtDpath, self.btnDpath) No newline at end of file
414 MainWindow.setTabOrder(self.txtDpath, self.btnDpath)
415 MainWindow.setTabOrder(self.btnDpath, self.txtRpath) No newline at end of file
415 MainWindow.setTabOrder(self.btnDpath, self.txtRpath)
416 MainWindow.setTabOrder(self.txtRpath, self.btnRpath) No newline at end of file
416 MainWindow.setTabOrder(self.txtRpath, self.btnRpath)
417 MainWindow.setTabOrder(self.btnRpath, self.lstDtype) No newline at end of file
417 MainWindow.setTabOrder(self.btnRpath, self.lstDtype)
418 MainWindow.setTabOrder(self.lstDtype, self.txtDtype) No newline at end of file
418 MainWindow.setTabOrder(self.lstDtype, self.txtDtype)
419 MainWindow.setTabOrder(self.txtDtype, self.chkMST) No newline at end of file
419 MainWindow.setTabOrder(self.txtDtype, self.chkMST)
420 MainWindow.setTabOrder(self.chkMST, self.txtElabel) No newline at end of file
420 MainWindow.setTabOrder(self.chkMST, self.txtElabel)
421 MainWindow.setTabOrder(self.txtElabel, self.txtCopys) No newline at end of file
421 MainWindow.setTabOrder(self.txtElabel, self.txtCopys)
422 MainWindow.setTabOrder(self.txtCopys, self.lstStartDay) No newline at end of file
422 MainWindow.setTabOrder(self.txtCopys, self.lstStartDay)
423 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay) No newline at end of file
423 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay)
424 MainWindow.setTabOrder(self.lstStopDay, self.chkDevA) No newline at end of file
424 MainWindow.setTabOrder(self.lstStopDay, self.chkDevA)
425 MainWindow.setTabOrder(self.chkDevA, self.chkDevB) No newline at end of file
425 MainWindow.setTabOrder(self.chkDevA, self.chkDevB)
426 MainWindow.setTabOrder(self.chkDevB, self.chkDevC) No newline at end of file
426 MainWindow.setTabOrder(self.chkDevB, self.chkDevC)
427 MainWindow.setTabOrder(self.chkDevC, self.chkDevD) No newline at end of file
427 MainWindow.setTabOrder(self.chkDevC, self.chkDevD)
428 MainWindow.setTabOrder(self.chkDevD, self.txtDeviceA) No newline at end of file
428 MainWindow.setTabOrder(self.chkDevD, self.txtDeviceA)
429 MainWindow.setTabOrder(self.txtDeviceA, self.txtDeviceB) No newline at end of file
429 MainWindow.setTabOrder(self.txtDeviceA, self.txtDeviceB)
430 MainWindow.setTabOrder(self.txtDeviceB, self.txtDeviceC) No newline at end of file
430 MainWindow.setTabOrder(self.txtDeviceB, self.txtDeviceC)
431 MainWindow.setTabOrder(self.txtDeviceC, self.txtDeviceD) No newline at end of file
431 MainWindow.setTabOrder(self.txtDeviceC, self.txtDeviceD)
432 MainWindow.setTabOrder(self.txtDeviceD, self.txtBspeedA) No newline at end of file
432 MainWindow.setTabOrder(self.txtDeviceD, self.txtBspeedA)
433 MainWindow.setTabOrder(self.txtBspeedA, self.txtBspeedB) No newline at end of file
433 MainWindow.setTabOrder(self.txtBspeedA, self.txtBspeedB)
434 MainWindow.setTabOrder(self.txtBspeedB, self.txtBspeedC) No newline at end of file
434 MainWindow.setTabOrder(self.txtBspeedB, self.txtBspeedC)
435 MainWindow.setTabOrder(self.txtBspeedC, self.txtBspeedD) No newline at end of file
435 MainWindow.setTabOrder(self.txtBspeedC, self.txtBspeedD)
436 MainWindow.setTabOrder(self.txtBspeedD, self.txtBmodeA) No newline at end of file
436 MainWindow.setTabOrder(self.txtBspeedD, self.txtBmodeA)
437 MainWindow.setTabOrder(self.txtBmodeA, self.txtBmodeB) No newline at end of file
437 MainWindow.setTabOrder(self.txtBmodeA, self.txtBmodeB)
438 MainWindow.setTabOrder(self.txtBmodeB, self.txtBmodeC) No newline at end of file
438 MainWindow.setTabOrder(self.txtBmodeB, self.txtBmodeC)
439 MainWindow.setTabOrder(self.txtBmodeC, self.txtBmodeD) No newline at end of file
439 MainWindow.setTabOrder(self.txtBmodeC, self.txtBmodeD)
440 MainWindow.setTabOrder(self.txtBmodeD, self.btnTdevA) No newline at end of file
440 MainWindow.setTabOrder(self.txtBmodeD, self.btnTdevA)
441 MainWindow.setTabOrder(self.btnTdevA, self.btnTdevB) No newline at end of file
441 MainWindow.setTabOrder(self.btnTdevA, self.btnTdevB)
442 MainWindow.setTabOrder(self.btnTdevB, self.btnTdevC) No newline at end of file
442 MainWindow.setTabOrder(self.btnTdevB, self.btnTdevC)
443 MainWindow.setTabOrder(self.btnTdevC, self.btnTdevD) No newline at end of file
443 MainWindow.setTabOrder(self.btnTdevC, self.btnTdevD)
444 MainWindow.setTabOrder(self.btnTdevD, self.chkSimultaneously) No newline at end of file
444 MainWindow.setTabOrder(self.btnTdevD, self.chkSimultaneously)
445 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially) No newline at end of file
445 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially)
446 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert) No newline at end of file
446 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert)
447 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity) No newline at end of file
447 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity)
448 MainWindow.setTabOrder(self.lstDcapacity, self.txtDcapacity) No newline at end of file
448 MainWindow.setTabOrder(self.lstDcapacity, self.txtDcapacity)
449 MainWindow.setTabOrder(self.txtDcapacity, self.chkPSgraphic) No newline at end of file
449 MainWindow.setTabOrder(self.txtDcapacity, self.chkPSgraphic)
450 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17) No newline at end of file
450 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17)
451 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa) No newline at end of file
451 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa)
452 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb) No newline at end of file
452 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb)
453 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc) No newline at end of file
453 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc)
454 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd) No newline at end of file
454 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd)
455 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa) No newline at end of file
455 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa)
456 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb) No newline at end of file
456 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb)
457 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc) No newline at end of file
457 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc)
458 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd) No newline at end of file
458 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd)
459 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa) No newline at end of file
459 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa)
460 MainWindow.setTabOrder(self.txtSETa, self.txtSETb) No newline at end of file
460 MainWindow.setTabOrder(self.txtSETa, self.txtSETb)
461 MainWindow.setTabOrder(self.txtSETb, self.txtSETc) No newline at end of file
461 MainWindow.setTabOrder(self.txtSETb, self.txtSETc)
462 MainWindow.setTabOrder(self.txtSETc, self.txtSETd) No newline at end of file
462 MainWindow.setTabOrder(self.txtSETc, self.txtSETd)
463 MainWindow.setTabOrder(self.txtSETd, self.tabWidget) No newline at end of file
463 MainWindow.setTabOrder(self.txtSETd, self.tabWidget)
464 MainWindow.setTabOrder(self.tabWidget, self.txtSburn) No newline at end of file
464 MainWindow.setTabOrder(self.tabWidget, self.txtSburn)
465 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp) No newline at end of file
465 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp)
466 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart) No newline at end of file
466 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart)
467 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn) No newline at end of file
467 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn)
468 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn) No newline at end of file
468 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn)
469 No newline at end of file
469
470 def retranslateUi(self, MainWindow): No newline at end of file
470 def retranslateUi(self, MainWindow):
471 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
471 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8))
472 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
472 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8))
473 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
473 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8))
474 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
474 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8))
475 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
475 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8))
476 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
476 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8))
477 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
477 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8))
478 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
478 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8))
479 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
479 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8))
480 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
480 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8))
481 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
481 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8))
482 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
482 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8))
483 self.txtCopys.setText(QtGui.QApplication.translate("MainWindow", "0", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
483 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
484 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8))
484 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
485 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8))
485 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
486 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
486 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
487 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8))
487 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
488 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8))
488 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
489 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8))
489 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
490 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8))
490 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
491 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8))
491 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
492 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8))
492 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
493 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8))
493 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
494 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8))
494 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
495 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8))
495 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
496 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8))
496 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
497 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8))
497 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
498 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8))
498 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
499 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8))
499 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
500 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8))
500 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
501 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity", None, QtGui.QApplication.UnicodeUTF8))
501 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
502 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8))
502 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
503 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8))
503 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
504 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8))
504 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
505 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
505 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
506 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
506 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
507 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8))
507 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
508 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8))
508 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
509 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8))
509 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
510 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8))
510 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
511 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8))
511 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
512 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8))
512 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
513 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8))
513 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
514 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8))
514 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
515 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8))
515 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
516 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8))
516 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
517 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8))
517 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
518 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8))
518 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
519 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8))
519 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
520 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8))
520 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
521 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8))
521 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
522 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8))
522 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
523 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
523 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
524 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8))
524 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
525 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8))
525 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
526 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8))
526 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
527 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8))
527 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
528 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8))
528 No newline at end of file
529
529 No newline at end of file
530
530 if __name__ == "__main__": No newline at end of file
531 if __name__ == "__main__":
531 import sys No newline at end of file
532 import sys
532 app = QtGui.QApplication(sys.argv) No newline at end of file
533 app = QtGui.QApplication(sys.argv)
533 MainWindow = QtGui.QMainWindow() No newline at end of file
534 MainWindow = QtGui.QMainWindow()
534 ui = Ui_MainWindow() No newline at end of file
535 ui = Ui_MainWindow()
535 ui.setupUi(MainWindow) No newline at end of file
536 ui.setupUi(MainWindow)
536 MainWindow.show() No newline at end of file
537 MainWindow.show()
537 sys.exit(app.exec_()) No newline at end of file
538 sys.exit(app.exec_())
538 No newline at end of file
539
General Comments 0
You need to be logged in to leave comments. Login now