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