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