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