##// END OF EJS Templates
***
ralonso -
r32:33
parent child
Show More
@@ -1,421 +1,410
1 # -*- coding: utf-8 -*- No newline at end of file
1 # -*- coding: utf-8 -*-
2 No newline at end of file
2
3 """ No newline at end of file
3 """
4 Module implementing MainWindow. No newline at end of file
4 Module implementing MainWindow.
5 """ No newline at end of file
5 """
6 No newline at end of file
6
7 from PyQt4.QtGui import QMainWindow No newline at end of file
7 from PyQt4.QtGui import QMainWindow
8 from PyQt4.QtCore import pyqtSignature No newline at end of file
8 from PyQt4.QtCore import pyqtSignature
9 from Ui_MainWindow import Ui_MainWindow No newline at end of file
9 from Ui_MainWindow import Ui_MainWindow
10 from PyQt4 import QtGui No newline at end of file
10 from PyQt4 import QtGui
11 from subprocess import * No newline at end of file
11 from subprocess import *
12 import sys No newline at end of file
12 import sys
13 import os No newline at end of file
13 import os
14 import subprocess No newline at end of file
14 import subprocess
15 import commands No newline at end of file
15 import commands
16 No newline at end of file
16
17 class MainWindow(QMainWindow, Ui_MainWindow): No newline at end of file
17 class MainWindow(QMainWindow, Ui_MainWindow):
18 """ No newline at end of file
18 """
19 Class documentation goes here. No newline at end of file
19 Class documentation goes here.
20 """ No newline at end of file
20 """
21 No newline at end of file
21
22 def __init__(self, parent = None): No newline at end of file
22 def __init__(self, parent = None):
23 QMainWindow.__init__(self, parent) No newline at end of file
23 QMainWindow.__init__(self, parent)
24 self.setupUi(self) No newline at end of file
24 self.setupUi(self)
25 self.setupUi2() No newline at end of file
25 self.setupUi2()
26 No newline at end of file
26
27 #redirige salida estandar No newline at end of file
27 #redirige salida estandar
28 sys.stdout = self No newline at end of file
28 sys.stdout = self
29 No newline at end of file
29
30 No newline at end of file
30
31 def setupUi2(self): No newline at end of file
31 def setupUi2(self):
32 """ No newline at end of file
32 """
33 Se usa para inicializar ciertos parametros para pruebas No newline at end of file
33 Se usa para inicializar ciertos parametros para pruebas
34 """ No newline at end of file
34 """
35 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS') No newline at end of file
35 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS')
36 self.txtRpath.setText('/home/ricardoar/optional/STORAGE/prueba2_jro_backup_manager') No newline at end of file
36 self.txtRpath.setText('/home/ricardoar/optional/STORAGE/prueba2_jro_backup_manager')
37 self.txtElabel.setText('EW_DRIFTS') No newline at end of file
37 self.txtElabel.setText('EW_DRIFTS')
38 self.statusDpath = False No newline at end of file
38 self.statusDpath = False
39 self.statusRpath = False No newline at end of file
39 self.statusRpath = False
40
40
No newline at end of file
41 # No newline at end of file
41 No newline at end of file
42 #Deteccion de los dispositvos de grabacion
42 #Deteccion de los dispositvos de grabacion
No newline at end of file
43 # No newline at end of file
43 No newline at end of file
44 #var_cmd="wodim --devices | grep /dev/ | awk -F\' '{print $2}'" #Funciona en consola pero no en python ΒΏ? No newline at end of file
44 #var_cmd="wodim --devices | grep /dev/ | awk -F\' '{print $2}'" #Funciona en consola pero no en python ΒΏ?
45 var_cmd="wodim --devices | grep /dev/ | awk '{print $2}' | awk -F= '{print $2}'" No newline at end of file
45 var_cmd="wodim --devices | grep /dev/ | awk '{print $2}' | awk -F= '{print $2}'"
46 var_output = commands.getstatusoutput(var_cmd) No newline at end of file
46 var_output = commands.getstatusoutput(var_cmd)
47 if var_output[0] != 0: No newline at end of file
47 if var_output[0] != 0:
48 self.txtInfo.setText("No se pudo encontrar los dispositivos de grabacion, output_error:" + str(var_output)) No newline at end of file
48 self.txtInfo.setText("No se pudo encontrar los dispositivos de grabacion, output_error:" + str(var_output))
49 else: No newline at end of file
49 else:
50 self.txtInfo.append("dispositivos encontrados") No newline at end of file
50 self.txtInfo.append("dispositivos encontrados")
51 var_devices = var_output[1].split('\n') No newline at end of file
51 var_devices = var_output[1].split('\n')
52 No newline at end of file
52
53 var_tmp=[] No newline at end of file
53 var_tmp=[]
54 for i in range(0, 4): No newline at end of file
54 for i in range(0, 4):
55 if i < len(var_devices): No newline at end of file
55 if i < len(var_devices):
56 var_len = len(var_devices[i]) No newline at end of file
56 var_len = len(var_devices[i])
57 var_tmp.append(var_devices[i][1:var_len - 1]) No newline at end of file
57 var_tmp.append(var_devices[i][1:var_len - 1])
58 else: No newline at end of file
58 else:
59 var_tmp.append('') No newline at end of file
59 var_tmp.append('')
60 No newline at end of file
60
61 #Se escriben los dispostivos correspodientes, si existen No newline at end of file
61 #Se escriben los dispostivos correspodientes, si existen
62 self.txtDeviceA.setText(str(var_tmp[0])) No newline at end of file
62 self.txtDeviceA.setText(str(var_tmp[0]))
63 self.txtDeviceB.setText(str(var_tmp[1])) No newline at end of file
63 self.txtDeviceB.setText(str(var_tmp[1]))
64 self.txtDeviceC.setText(str(var_tmp[2])) No newline at end of file
64 self.txtDeviceC.setText(str(var_tmp[2]))
65 self.txtDeviceD.setText(str(var_tmp[3])) No newline at end of file
65 self.txtDeviceD.setText(str(var_tmp[3]))
66 #Se desactivan los que no existen No newline at end of file
66 #Se desactivan los que no existen
67 if len(var_tmp[0]) == 0 : No newline at end of file
67 if len(var_tmp[0]) == 0 :
68 self.chkDevA.setChecked(False) No newline at end of file
68 self.chkDevA.setChecked(False)
69 self.chkDevA.setEnabled(False) No newline at end of file
69 self.chkDevA.setEnabled(False)
70 if len(var_tmp[1]) == 0 : No newline at end of file
70 if len(var_tmp[1]) == 0 :
71 self.chkDevB.setChecked(False) No newline at end of file
71 self.chkDevB.setChecked(False)
72 self.chkDevB.setEnabled(False) No newline at end of file
72 self.chkDevB.setEnabled(False)
73 if len(var_tmp[2]) == 0 : No newline at end of file
73 if len(var_tmp[2]) == 0 :
74 self.chkDevC.setChecked(False) No newline at end of file
74 self.chkDevC.setChecked(False)
75 self.chkDevC.setEnabled(False) No newline at end of file
75 self.chkDevC.setEnabled(False)
76 if len(var_tmp[3]) == 0 : No newline at end of file
76 if len(var_tmp[3]) == 0 :
77 self.chkDevD.setChecked(False) No newline at end of file
77 self.chkDevD.setChecked(False)
78 self.chkDevD.setEnabled(False) No newline at end of file
78 self.chkDevD.setEnabled(False)
79 No newline at end of file
79
80 No newline at end of file
80
81 def write(self, txt): No newline at end of file
81 def write(self, txt):
82 """ No newline at end of file
82 """
83 Escribe la salida estandar eb txtInfo No newline at end of file
83 Escribe la salida estandar eb txtInfo
84 """ No newline at end of file
84 """
85 self.txtInfo.append(str(txt)) No newline at end of file
85 self.txtInfo.append(str(txt))
86 No newline at end of file
86
87 No newline at end of file
87
88 @pyqtSignature("") No newline at end of file
88 @pyqtSignature("")
89 def on_btnDpath_clicked(self): No newline at end of file
89 def on_btnDpath_clicked(self):
90 """ No newline at end of file
90 """
91 Permite seleccionar graficamente el direcorio de los datos a grabar No newline at end of file
91 Permite seleccionar graficamente el direcorio de los datos a grabar
92 """ No newline at end of file
92 """
93 var_Dpath= QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly) No newline at end of file
93 var_Dpath= QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)
94 self.txtDpath.setText(var_Dpath) No newline at end of file
94 self.txtDpath.setText(var_Dpath)
95 No newline at end of file
95
96 #llamada a funcion No newline at end of file
96 #llamada a funcion
97 self.on_txtDpath_editingFinished() No newline at end of file
97 self.on_txtDpath_editingFinished()
98 No newline at end of file
98
99 No newline at end of file
99
100 @pyqtSignature("") No newline at end of file
100 @pyqtSignature("")
101 def on_btnRpath_clicked(self): No newline at end of file
101 def on_btnRpath_clicked(self):
102 """ No newline at end of file
102 """
103 Permite seleccionar graficamente el direcorio del proyecto No newline at end of file
103 Permite seleccionar graficamente el direcorio del proyecto
104 """ No newline at end of file
104 """
105 var_Rpath = QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly) No newline at end of file
105 var_Rpath = QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)
106 self.txtRpath.setText(var_Rpath) No newline at end of file
106 self.txtRpath.setText(var_Rpath)
107 No newline at end of file
107
108 #llamada a funcion No newline at end of file
108 #llamada a funcion
109 self.on_txtRpath_editingFinished() No newline at end of file
109 self.on_txtRpath_editingFinished()
110 No newline at end of file
110
111 No newline at end of file
111
112 @pyqtSignature("") No newline at end of file
112 @pyqtSignature("")
113 def on_txtDpath_editingFinished(self): No newline at end of file
113 def on_txtDpath_editingFinished(self):
114 """ No newline at end of file
114 """
115 Permite buscar los archivos de extension seleccionada en la ruta de de datos No newline at end of file
115 Permite buscar los archivos de extension seleccionada en la ruta de de datos
116 y cargar los valores para el rango de tiempo a ser grabado No newline at end of file
116 y cargar los valores para el rango de tiempo a ser grabado
117 """ No newline at end of file
117 """
118 No newline at end of file
118
119 #Usando el modulo "subprocess", eric4 pide seleccion del tipo de subproceso (padre o hijo) No newline at end of file
119 #Usando el modulo "subprocess", eric4 pide seleccion del tipo de subproceso (padre o hijo)
120 #por ello se prefiere usar el modulo "commands" No newline at end of file
120 #por ello se prefiere usar el modulo "commands"
121 #p1= Popen(['find', var_Dpath, '-name', '*.r'], stdout=PIPE) No newline at end of file
121 #p1= Popen(['find', var_Dpath, '-name', '*.r'], stdout=PIPE)
122 #p2= Popen(['awk', '-F/', '{print substr($NF,2,7)}'], stdin=p1.stdout, stdout=PIPE) No newline at end of file
122 #p2= Popen(['awk', '-F/', '{print substr($NF,2,7)}'], stdin=p1.stdout, stdout=PIPE)
123 #output_p2= p2.communicate()[0] No newline at end of file
123 #output_p2= p2.communicate()[0]
124 #self.txtInfo.setText(output_p2) No newline at end of file
124 #self.txtInfo.setText(output_p2)
125 No newline at end of file
125
126 #Se carga la variable con la ruta de datos No newline at end of file
126 #Se carga la variable con la ruta de datos
127 var_Dpath=self.txtDpath.text() No newline at end of file
127 var_Dpath=self.txtDpath.text()
128 No newline at end of file
128
129 #Se verifica que la ruta exista y sea un directorio No newline at end of file
129 #Se verifica que la ruta exista y sea un directorio
130 var_cmd="test -d "+str(var_Dpath) No newline at end of file
130 var_cmd="test -d "+str(var_Dpath)
131 var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
131 var_output=commands.getstatusoutput(var_cmd)[0]
132 if var_output != 0: No newline at end of file
132 if var_output != 0:
133 self.statusDpath = False No newline at end of file
133 self.statusDpath = False
134 self.txtInfo.setText("Ruta no valida, output_error:" + str(var_output)) No newline at end of file
134 self.txtInfo.setText("Ruta no valida, output_error:" + str(var_output))
135 return No newline at end of file
135 return
136 else: No newline at end of file
136 else:
137 self.statusDpath = True No newline at end of file
137 self.statusDpath = True
138 self.txtInfo.append("Ruta valida, sin error:" + str(var_Dpath)) No newline at end of file
138 self.txtInfo.append("Ruta valida, sin error:" + str(var_Dpath))
139 No newline at end of file
139
140 #Se buscan los archivos del tipo especificado No newline at end of file
140 #Se buscan los archivos del tipo especificado
141 var_Dtype=self.txtDtype.text() No newline at end of file
141 var_Dtype=self.txtDtype.text()
142 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
142 var_cmd="find " + str(var_Dpath) + " -name *."+ str(var_Dtype) +" | awk -F/ '{print substr($NF,2,7)}' | sort| uniq"
143 output_p2=commands.getstatusoutput(var_cmd)[1] No newline at end of file
143 output_p2=commands.getstatusoutput(var_cmd)[1]
144 No newline at end of file
144
145 #Se cargan las listas para seleccionar StartDay y StopDay (QComboBox) No newline at end of file
145 #Se cargan las listas para seleccionar StartDay y StopDay (QComboBox)
146 self.var_list=[] No newline at end of file
146 self.var_list=[]
147 for i in range(0, (len(output_p2)+1)/8): No newline at end of file
147 for i in range(0, (len(output_p2)+1)/8):
148 self.var_list.append(output_p2[8*i:8*(i+1)-1]) No newline at end of file
148 self.var_list.append(output_p2[8*i:8*(i+1)-1])
149 No newline at end of file
149
150 self.lstStartDay.clear() No newline at end of file
150 self.lstStartDay.clear()
151 self.lstStopDay.clear() No newline at end of file
151 self.lstStopDay.clear()
152 No newline at end of file
152
153 for i in self.var_list: No newline at end of file
153 for i in self.var_list:
154 self.lstStartDay.addItem(i) No newline at end of file
154 self.lstStartDay.addItem(i)
155 self.lstStopDay.addItem(i) No newline at end of file
155 self.lstStopDay.addItem(i)
156 No newline at end of file
156
157 self.lstStopDay.setCurrentIndex(self.lstStartDay.count()-1) No newline at end of file
157 self.lstStopDay.setCurrentIndex(self.lstStartDay.count()-1)
158 No newline at end of file
158
159 No newline at end of file
159
160 @pyqtSignature("") No newline at end of file
160 @pyqtSignature("")
161 def on_txtRpath_editingFinished(self): No newline at end of file
161 def on_txtRpath_editingFinished(self):
162 """ No newline at end of file
162 """
163 Valida la ruta del proyecto No newline at end of file
163 Valida la ruta del proyecto
164 """ No newline at end of file
164 """
165 #Se carga la variable con la ruta del proyecto No newline at end of file
165 #Se carga la variable con la ruta del proyecto
166 var_Rpath=self.txtRpath.text() No newline at end of file
166 var_Rpath=self.txtRpath.text()
167 No newline at end of file
167
168 #Se verifica que la ruta exista y sea un directorio No newline at end of file
168 #Se verifica que la ruta exista y sea un directorio
169 var_cmd="test -d "+str(var_Rpath) No newline at end of file
169 var_cmd="test -d "+str(var_Rpath)
170 var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
170 var_output=commands.getstatusoutput(var_cmd)[0]
171 if var_output != 0: No newline at end of file
171 if var_output != 0:
172 self.statusRpath = False No newline at end of file
172 self.statusRpath = False
173 self.txtInfo.append("Ruta no valida, output_error:" + str(var_output)) No newline at end of file
173 self.txtInfo.append("Ruta no valida, output_error:" + str(var_output))
174 return No newline at end of file
174 return
175 else: No newline at end of file
175 else:
176 self.statusRpath = True No newline at end of file
176 self.statusRpath = True
177 self.txtInfo.append("Ruta valida, sin error:" + str(var_Rpath)) No newline at end of file
177 self.txtInfo.append("Ruta valida, sin error:" + str(var_Rpath))
178 No newline at end of file
178
179 No newline at end of file
179
180 @pyqtSignature("int") No newline at end of file
180 @pyqtSignature("int")
181 def on_lstDtype_activated(self, index): No newline at end of file
181 def on_lstDtype_activated(self, index):
182 """ No newline at end of file
182 """
183 Permite elegir entre los tipos de archivos No newline at end of file
183 Permite elegir entre los tipos de archivos
184 """ No newline at end of file
184 """
185 if index == 0: No newline at end of file
185 if index == 0:
186 var_type='r' No newline at end of file
186 var_type='r'
187 elif index == 1: No newline at end of file
187 elif index == 1:
188 var_type='pdata' No newline at end of file
188 var_type='pdata'
189 elif index == 2: No newline at end of file
189 elif index == 2:
190 var_type='sswma' No newline at end of file
190 var_type='sswma'
191 No newline at end of file
191
192 if index != 3: No newline at end of file
192 if index != 3:
193 self.txtDtype.setText(var_type) No newline at end of file
193 self.txtDtype.setText(var_type)
194 self.txtDtype.setReadOnly(True) No newline at end of file
194 self.txtDtype.setReadOnly(True)
195 self.on_txtDpath_editingFinished() No newline at end of file
195 self.on_txtDpath_editingFinished()
196 else: No newline at end of file
196 else:
197 self.txtDtype.setText('') No newline at end of file
197 self.txtDtype.setText('')
198 self.txtDtype.setReadOnly(False) No newline at end of file
198 self.txtDtype.setReadOnly(False)
199 No newline at end of file
199
200 No newline at end of file
200
201 @pyqtSignature("") No newline at end of file
201 @pyqtSignature("")
202 def on_txtDtype_editingFinished(self): No newline at end of file
202 def on_txtDtype_editingFinished(self):
203 """ No newline at end of file
203 """
204 Se activa cuando el tipo de archivo es ingresado manualmente No newline at end of file
204 Se activa cuando el tipo de archivo es ingresado manualmente
205 """ No newline at end of file
205 """
206 #llamada a funcion No newline at end of file
206 #llamada a funcion
207 self.on_txtDpath_editingFinished() No newline at end of file
207 self.on_txtDpath_editingFinished()
208 No newline at end of file
208
209 No newline at end of file
209
210 @pyqtSignature("int") #CLOSED No newline at end of file
210 @pyqtSignature("int") #CLOSED
211 def on_lstStartDay_activated(self, index): No newline at end of file
211 def on_lstStartDay_activated(self, index):
212 """ No newline at end of file
212 """
213 Cambia la lista de opciones en lstStopDay No newline at end of file
213 Cambia la lista de opciones en lstStopDay
214 """ No newline at end of file
214 """
215 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex() No newline at end of file
215 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex()
216 self.lstStopDay.clear() No newline at end of file
216 self.lstStopDay.clear()
217 No newline at end of file
217
218 for i in self.var_list[index:]: No newline at end of file
218 for i in self.var_list[index:]:
219 self.lstStopDay.addItem(i) No newline at end of file
219 self.lstStopDay.addItem(i)
220 No newline at end of file
220
221 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index) No newline at end of file
221 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index)
222 No newline at end of file
222
223 No newline at end of file
223
224 @pyqtSignature("int") #CLOSED No newline at end of file
224 @pyqtSignature("int") #CLOSED
225 def on_lstStopDay_activated(self, index): No newline at end of file
225 def on_lstStopDay_activated(self, index):
226 """ No newline at end of file
226 """
227 Cambia la lista de opciones en lstStartDay No newline at end of file
227 Cambia la lista de opciones en lstStartDay
228 """ No newline at end of file
228 """
229 var_StartDay_index=self.lstStartDay.currentIndex() No newline at end of file
229 var_StartDay_index=self.lstStartDay.currentIndex()
230 var_end_index = self.lstStopDay.count() - index No newline at end of file
230 var_end_index = self.lstStopDay.count() - index
231 self.lstStartDay.clear() No newline at end of file
231 self.lstStartDay.clear()
232 No newline at end of file
232
233 for i in self.var_list[:len(self.var_list) - var_end_index + 1]: No newline at end of file
233 for i in self.var_list[:len(self.var_list) - var_end_index + 1]:
234 self.lstStartDay.addItem(i) No newline at end of file
234 self.lstStartDay.addItem(i)
235 No newline at end of file
235
236 self.lstStartDay.setCurrentIndex(var_StartDay_index) No newline at end of file
236 self.lstStartDay.setCurrentIndex(var_StartDay_index)
237 No newline at end of file
237
238 No newline at end of file
238
239 @pyqtSignature("int") #CLOSED No newline at end of file
239 @pyqtSignature("int") #CLOSED
240 def on_lstDcapacity_activated(self, index): No newline at end of file
240 def on_lstDcapacity_activated(self, index):
241 """ No newline at end of file
241 """
242 Permite elegir el tamaΓ±o del disco No newline at end of file
242 Permite elegir el tamaΓ±o del disco
243 """ No newline at end of file
243 """
244 if index == 0: No newline at end of file
244 if index == 0:
245 var_size=25.0 No newline at end of file
245 var_size=25.0
246 elif index == 1: No newline at end of file
246 elif index == 1:
247 var_size=8.5 No newline at end of file
247 var_size=8.5
248 elif index == 2: No newline at end of file
248 elif index == 2:
249 var_size=4.7 No newline at end of file
249 var_size=4.7
250 elif index == 3: No newline at end of file
250 elif index == 3:
251 var_size=0.7 No newline at end of file
251 var_size=0.7
252 No newline at end of file
252
253 if index != 4: No newline at end of file
253 if index != 4:
254 self.txtDcapacity.setText(str(var_size*10**9/1024**2)) No newline at end of file
254 self.txtDcapacity.setText(str(var_size*10**9/1024**2))
255 self.txtDcapacity.setReadOnly(True) No newline at end of file
255 self.txtDcapacity.setReadOnly(True)
256 else: No newline at end of file
256 else:
257 self.txtDcapacity.setText('') No newline at end of file
257 self.txtDcapacity.setText('')
258 self.txtDcapacity.setReadOnly(False) No newline at end of file
258 self.txtDcapacity.setReadOnly(False)
259 No newline at end of file
259
260 No newline at end of file
260
261 @pyqtSignature("") No newline at end of file
261 @pyqtSignature("")
262 def on_btnGbkp_clicked(self): No newline at end of file
262 def on_btnGbkp_clicked(self):
263 """ No newline at end of file
263 """
264 Cuando se presiona el boton btnGbkp No newline at end of file
264 Cuando se presiona el boton btnGbkp
265 """ No newline at end of file
265 """
266 No newline at end of file
266
267 #Verifica que las rutas sean validas No newline at end of file
267 #Verifica que las rutas sean validas
268 if self.statusDpath == False or self.statusRpath == False: No newline at end of file
268 if self.statusDpath == False or self.statusRpath == False:
269 if self.statusDpath == False: No newline at end of file
269 if self.statusDpath == False:
270 self.txtInfo.append("Ruta de datos no valida") No newline at end of file
270 self.txtInfo.append("Ruta de datos no valida")
271 if self.statusRpath == False: No newline at end of file
271 if self.statusRpath == False:
272 self.txtInfo.append("Ruta de proyecto no valida") No newline at end of file
272 self.txtInfo.append("Ruta de proyecto no valida")
273 return No newline at end of file
273 return
274 No newline at end of file
274
275 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente No newline at end of file
275 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente
276 var_Rpath=self.txtRpath.text() No newline at end of file
276 var_Rpath=self.txtRpath.text()
277 var_dirs='/{gpath,iso,ppath}' No newline at end of file
277 var_dirs='/{gpath,iso,ppath}'
278 var_cmd="mkdir -p "+str(var_Rpath)+str(var_dirs) No newline at end of file
278 var_cmd="mkdir -p "+str(var_Rpath)+str(var_dirs)
279 var_output=commands.getstatusoutput(var_cmd)[0] No newline at end of file
279 var_output=commands.getstatusoutput(var_cmd)[0]
280 if var_output != 0: No newline at end of file
280 if var_output != 0:
281 self.txtInfo.append("No se pudieron crear los directorios, output_error:" + str(var_output)) No newline at end of file
281 self.txtInfo.append("No se pudieron crear los directorios, output_error:" + str(var_output))
282 return No newline at end of file
282 return
283 else: No newline at end of file
283 else:
284 self.txtInfo.append('Carpetas creadas correctamente') No newline at end of file
284 self.txtInfo.append('Carpetas creadas correctamente')
285 No newline at end of file
285
286 #Cargando variables con los parametros No newline at end of file
286 #Cargando variables con los parametros
287 var_Dpath=self.txtDpath.text() No newline at end of file
287 var_Dpath=self.txtDpath.text()
288 var_Rpath=self.txtRpath.text() No newline at end of file
288 var_Rpath=self.txtRpath.text()
289 var_Rpath_ppath=var_Rpath+"/ppath" #Ruta de los archivos a grabar No newline at end of file
289 var_Rpath_ppath=var_Rpath+"/ppath" #Ruta de los archivos a grabar
290 var_sublist=[] No newline at end of file
290 var_sublist=[]
291 for i in self.var_list[self.lstStartDay.currentIndex():self.lstStartDay.currentIndex() + self.lstStopDay.currentIndex()+1]: No newline at end of file
291 for i in self.var_list[self.lstStartDay.currentIndex():self.lstStartDay.currentIndex() + self.lstStopDay.currentIndex()+1]:
292 var_sublist.append(i) No newline at end of file
292 var_sublist.append(i)
293 if len(var_sublist) == 0: No newline at end of file
293 if len(var_sublist) == 0:
294 self.txtInfo.append("No existen archivos encontrados") No newline at end of file
294 self.txtInfo.append("No existen archivos encontrados")
295 return No newline at end of file
295 return
296 #self.txtInfo.append('elementos: '+str(len(var_sublist))) No newline at end of file
296 #self.txtInfo.append('elementos: '+str(len(var_sublist)))
297 No newline at end of file
297
298 No newline at end of file
298
299 var_Dtype=self.txtDtype.text() No newline at end of file
299 var_Dtype=self.txtDtype.text()
300 var_Dcapacity=float(self.txtDcapacity.text())*1024 #tamaΓ±o en KB No newline at end of file
300 var_Dcapacity=float(self.txtDcapacity.text())*1024 #tamaΓ±o en KB
301 No newline at end of file
301
302 #Busca los archivos con los parametros de busqueda No newline at end of file
302 #Busca los archivos con los parametros de busqueda
303 var_files_list=[] No newline at end of file
303 var_files_list=[]
304 for var_doy in var_sublist: No newline at end of file
304 for var_doy in var_sublist:
305 var_cmd="find " + str(var_Dpath) + " -name ?"+var_doy+"???."+ str(var_Dtype) + " |sort" No newline at end of file
305 var_cmd="find " + str(var_Dpath) + " -name ?"+var_doy+"???."+ str(var_Dtype) + " |sort"
306 var_output=commands.getstatusoutput(var_cmd)[1] No newline at end of file
306 var_output=commands.getstatusoutput(var_cmd)[1]
307 for var_file in var_output.split(): No newline at end of file
307 for var_file in var_output.split():
308 var_files_list.append(var_file) #Almacena cada archivo en la lista No newline at end of file
308 var_files_list.append(var_file) #Almacena cada archivo en la lista
309 No newline at end of file
309
310 # No newline at end of file
310 #
311 #Genera la lista de archivos .dat que contienen los archivos a grabar en cada DVD No newline at end of file
311 #Genera la lista de archivos .dat que contienen los archivos a grabar en cada DVD
312 # No newline at end of file
312 #
313 var_n=0 #Se usa para contar el numero de archivos a grabar en el DVD
313 var_n=0 #Se usa para contar el numero de archivos a grabar en el DVD
No newline at end of file
314 var_tmp=0 #Se usa para acumulanr el tamaΓ±o de los archivos de la lista
314 # var_n_files=0
No newline at end of file
No newline at end of file
315 var_files_list_2=[] #Se usa para almacenar la lista de archivos agrbar en cada DVD No newline at end of file
315 var_tmp=0 #
No newline at end of file
316 var_files_list_2=[] No newline at end of file
317 No newline at end of file
316
318 for i in var_files_list: #Se asignan en i los archivos de la lista No newline at end of file
317 for i in var_files_list: #Se asignan en i los archivos de la lista
319 var_size_i=os.path.getsize(i)/1024+1 #tamaΓ±o en KB del archivo de la lista, se suma 1 KB para evitar problemas al momento de sumar No newline at end of file
318 var_size_i=os.path.getsize(i)/1024+1 #tamaΓ±o en KB del archivo de la lista, se suma 1 KB para evitar problemas al momento de sumar
320 var_tmp += var_size_i #Se acumulan el tamaΓ±o de los archivos de la lista No newline at end of file
319 var_tmp += var_size_i #Se acumulan el tamaΓ±o de los archivos de la lista
321 No newline at end of file
320
322 #Si el tamaΓ±o acumulado es mayor que el de el DVD No newline at end of file
321 #Si el tamaΓ±o acumulado es mayor que el de el DVD
323 if var_tmp > var_Dcapacity: No newline at end of file
322 if var_tmp > var_Dcapacity:
324 var_tmp -= var_size_i #se quita el tamaΓ±o sumado para mostrar el tamaΓ±o real No newline at end of file
323 var_tmp -= var_size_i #se quita el tamaΓ±o sumado para mostrar el tamaΓ±o real
325 #se crea un archivo con numeral en el sufijo y extension .dat No newline at end of file
324 #se crea un archivo con numeral en el sufijo y extension .dat
326 var_file = open(var_Rpath_ppath+"/"+self.txtElabel.text()+"_"+str(var_n)+".dat","w") No newline at end of file
325 var_file = open(var_Rpath_ppath+"/"+self.txtElabel.text()+"_"+str(var_n)+".dat","w")
327 #Se aΓ±ade la lista de archivos a grabar en el DVD al archivo .dat No newline at end of file
326 #Se aΓ±ade la lista de archivos a grabar en el DVD al archivo .dat
328 for line in var_files_list_2: No newline at end of file
327 for line in var_files_list_2:
329 var_file.write(line.split(var_Dpath)[1]+'=') No newline at end of file
328 var_file.write(line.split(var_Dpath)[1]+'=')
330 var_file.write(line+'\n') No newline at end of file
329 var_file.write(line+'\n')
331 var_file.close() No newline at end of file
330 var_file.close()
332
331
No newline at end of file
333 # var_n_files += len(var_files_list_2) No newline at end of file
334 var_tmp = var_size_i #Se asigna a la variable el tamaΓ±o del archivo actual
332 var_tmp = var_size_i #Se asigna a la variable el tamaΓ±o del archivo actual
No newline at end of file
333 var_files_list_2=[] #Se reinicia la lista
335 var_files_list_2=[] No newline at end of file
No newline at end of file
334 var_n += 1 No newline at end of file
336 var_files_list_2.append(i)
335 var_files_list_2.append(i)
No newline at end of file
337 var_n += 1
No newline at end of file
338
No newline at end of file
339 else:
No newline at end of file
340 var_files_list_2.append(i)
No newline at end of file
341
No newline at end of file
342 #muestra info
No newline at end of file
343 self.txtInfo.append(str(len(var_files_list_2))+" size:"+str(var_tmp)) No newline at end of file
344 No newline at end of file
336
345 var_file = open(var_Rpath_ppath+"/"+self.txtElabel.text()+"_"+str(var_n)+".dat","w") No newline at end of file
337 var_file = open(var_Rpath_ppath+"/"+self.txtElabel.text()+"_"+str(var_n)+".dat","w")
346 for line in var_files_list_2: No newline at end of file
338 for line in var_files_list_2:
347 var_file.write(line.split(var_Dpath)[1]+'=') No newline at end of file
339 var_file.write(line.split(var_Dpath)[1]+'=')
348 var_file.write(line+'\n') No newline at end of file
340 var_file.write(line+'\n')
349 var_file.close()
341 var_file.close()
No newline at end of file
350
No newline at end of file
351 # var_n_files += len(var_files_list_2) No newline at end of file
352 No newline at end of file
342
353 #Se deshabilita el Tab Parameters y el boton btnGbkp No newline at end of file
343 #Se deshabilita el Tab Parameters y el boton btnGbkp
354 self.tabParameters.setEnabled(False) No newline at end of file
344 self.tabParameters.setEnabled(False)
355 self.btnGbkp.setEnabled(False) No newline at end of file
345 self.btnGbkp.setEnabled(False)
356 No newline at end of file
346
357 No newline at end of file
347
358 @pyqtSignature("") No newline at end of file
348 @pyqtSignature("")
359 def on_btnStartburn_clicked(self): No newline at end of file
349 def on_btnStartburn_clicked(self):
360 """ No newline at end of file
350 """
361 Slot documentation goes here. No newline at end of file
351 Slot documentation goes here.
362 """ No newline at end of file
352 """
363 sys.stdout = self No newline at end of file
353 sys.stdout = self
364 #sys.stderr = self No newline at end of file
354 #sys.stderr = self
365 print "stdout_!!!" No newline at end of file
355 print "stdout_!!!"
366 var_Rpath=self.txtRpath.text() No newline at end of file
356 var_Rpath=self.txtRpath.text()
367 var_Rpath_ppath=var_Rpath+"/ppath" No newline at end of file
357 var_Rpath_ppath=var_Rpath+"/ppath"
368 var_Rpath_iso=var_Rpath+"/iso" No newline at end of file
358 var_Rpath_iso=var_Rpath+"/iso"
369 No newline at end of file
359
370 var_label=self.txtElabel.text() No newline at end of file
360 var_label=self.txtElabel.text()
371 No newline at end of file
361
372 file_iso=var_Rpath_iso+'/2.iso' No newline at end of file
362 file_iso=var_Rpath_iso+'/2.iso'
373 file_dat=var_Rpath_ppath+'/EW_DRIFTS_1.dat' No newline at end of file
363 file_dat=var_Rpath_ppath+'/EW_DRIFTS_1.dat'
374 No newline at end of file
364
375 var_cmd = 'genisoimage -hide-joliet-trans-tbl -joliet-long -r ' No newline at end of file
365 var_cmd = 'genisoimage -hide-joliet-trans-tbl -joliet-long -r '
376 var_cmd += ' -A '+var_label+' -V '+var_label No newline at end of file
366 var_cmd += ' -A '+var_label+' -V '+var_label
377 var_cmd += ' -graft-points -path-list '+ file_dat+' -o '+file_iso No newline at end of file
367 var_cmd += ' -graft-points -path-list '+ file_dat+' -o '+file_iso
378 self.txtInfo.append(var_cmd) No newline at end of file
368 self.txtInfo.append(var_cmd)
379 No newline at end of file
369
380 #var_output=commands.getstatusoutput(str(var_cmd))[1] No newline at end of file
370 #var_output=commands.getstatusoutput(str(var_cmd))[1]
381 #self.txtInfo.append(var_output) No newline at end of file
371 #self.txtInfo.append(var_output)
382 No newline at end of file
372
383 #os.system(str(var_cmd)) No newline at end of file
373 #os.system(str(var_cmd))
384 #p = subprocess.Popen(str('ls /'), shell=True, stdout=self) No newline at end of file
374 #p = subprocess.Popen(str('ls /'), shell=True, stdout=self)
385 #os.waitpid(p.pid, 0) No newline at end of file
375 #os.waitpid(p.pid, 0)
386 ####self.txtInfo.append(str(p.pid)) No newline at end of file
376 ####self.txtInfo.append(str(p.pid))
387
377
No newline at end of file
378 No newline at end of file
388 #timer.time = 10
No newline at end of file
389 #timer.init() No newline at end of file
390 No newline at end of file
379
391 @pyqtSignature("") No newline at end of file
380 @pyqtSignature("")
392 def on_btnRestart_clicked(self): No newline at end of file
381 def on_btnRestart_clicked(self):
393 """ No newline at end of file
382 """
394 Slot documentation goes here. No newline at end of file
383 Slot documentation goes here.
395 """ No newline at end of file
384 """
396 self.tabParameters.setEnabled(True) No newline at end of file
385 self.tabParameters.setEnabled(True)
397 self.btnGbkp.setEnabled(True) No newline at end of file
386 self.btnGbkp.setEnabled(True)
398 No newline at end of file
387
399 @pyqtSignature("") No newline at end of file
388 @pyqtSignature("")
400 def on_btnTdevA_clicked(self): No newline at end of file
389 def on_btnTdevA_clicked(self):
401 var_dev = str(self.txtDeviceA.text()) No newline at end of file
390 var_dev = str(self.txtDeviceA.text())
402 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
391 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
403 commands.getstatusoutput(var_cmd) No newline at end of file
392 commands.getstatusoutput(var_cmd)
404 No newline at end of file
393
405 @pyqtSignature("") No newline at end of file
394 @pyqtSignature("")
406 def on_btnTdevB_clicked(self): No newline at end of file
395 def on_btnTdevB_clicked(self):
407 var_dev = str(self.txtDeviceB.text()) No newline at end of file
396 var_dev = str(self.txtDeviceB.text())
408 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
397 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
409 commands.getstatusoutput(var_cmd) No newline at end of file
398 commands.getstatusoutput(var_cmd)
410 No newline at end of file
399
411 @pyqtSignature("") No newline at end of file
400 @pyqtSignature("")
412 def on_btnTdevC_clicked(self): No newline at end of file
401 def on_btnTdevC_clicked(self):
413 var_dev = str(self.txtDeviceC.text()) No newline at end of file
402 var_dev = str(self.txtDeviceC.text())
414 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
403 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
415 commands.getstatusoutput(var_cmd) No newline at end of file
404 commands.getstatusoutput(var_cmd)
416 No newline at end of file
405
417 @pyqtSignature("") No newline at end of file
406 @pyqtSignature("")
418 def on_btnTdevD_clicked(self): No newline at end of file
407 def on_btnTdevD_clicked(self):
419 var_dev = str(self.txtDeviceD.text()) No newline at end of file
408 var_dev = str(self.txtDeviceD.text())
420 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
409 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
421 commands.getstatusoutput(var_cmd) No newline at end of file
410 commands.getstatusoutput(var_cmd)
@@ -1,910 +1,942
1 <?xml version="1.0" encoding="UTF-8"?> No newline at end of file
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0"> No newline at end of file
2 <ui version="4.0">
3 <class>MainWindow</class> No newline at end of file
3 <class>MainWindow</class>
4 <widget class="QMainWindow" name="MainWindow"> No newline at end of file
4 <widget class="QMainWindow" name="MainWindow">
5 <property name="geometry"> No newline at end of file
5 <property name="geometry">
6 <rect> No newline at end of file
6 <rect>
7 <x>0</x> No newline at end of file
7 <x>0</x>
8 <y>0</y>
8 <y>0</y>
No newline at end of file
9 <width>809</width> No newline at end of file
9 <width>745</width> No newline at end of file
10 <height>766</height> No newline at end of file
10 <height>766</height>
11 </rect> No newline at end of file
11 </rect>
12 </property> No newline at end of file
12 </property>
13 <property name="windowTitle"> No newline at end of file
13 <property name="windowTitle">
14 <string>JRO BACKUP MANAGER</string> No newline at end of file
14 <string>JRO BACKUP MANAGER</string>
15 </property> No newline at end of file
15 </property>
16 <widget class="QWidget" name="centralwidget"> No newline at end of file
16 <widget class="QWidget" name="centralwidget">
17 <layout class="QVBoxLayout" name="verticalLayout"> No newline at end of file
17 <layout class="QVBoxLayout" name="verticalLayout">
18 <item> No newline at end of file
18 <item>
19 <widget class="QTabWidget" name="tabWidget"> No newline at end of file
19 <widget class="QTabWidget" name="tabWidget">
20 <property name="enabled"> No newline at end of file
20 <property name="enabled">
21 <bool>true</bool> No newline at end of file
21 <bool>true</bool>
22 </property> No newline at end of file
22 </property>
23 <property name="sizePolicy"> No newline at end of file
23 <property name="sizePolicy">
24 <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> No newline at end of file
24 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
25 <horstretch>0</horstretch> No newline at end of file
25 <horstretch>0</horstretch>
26 <verstretch>0</verstretch> No newline at end of file
26 <verstretch>0</verstretch>
27 </sizepolicy> No newline at end of file
27 </sizepolicy>
28 </property> No newline at end of file
28 </property>
29 <property name="currentIndex"> No newline at end of file
29 <property name="currentIndex">
30 <number>0</number> No newline at end of file
30 <number>0</number>
31 </property> No newline at end of file
31 </property>
32 <widget class="QWidget" name="tabParameters"> No newline at end of file
32 <widget class="QWidget" name="tabParameters">
33 <property name="enabled"> No newline at end of file
33 <property name="enabled">
34 <bool>true</bool> No newline at end of file
34 <bool>true</bool>
35 </property> No newline at end of file
35 </property>
36 <attribute name="title"> No newline at end of file
36 <attribute name="title">
37 <string>Parameters</string> No newline at end of file
37 <string>Parameters</string>
38 </attribute> No newline at end of file
38 </attribute>
39 <layout class="QVBoxLayout" name="verticalLayout_2"> No newline at end of file
39 <layout class="QVBoxLayout" name="verticalLayout_2">
40 <item> No newline at end of file
40 <item>
41 <layout class="QHBoxLayout" name="horizontalLayout"> No newline at end of file
41 <layout class="QHBoxLayout" name="horizontalLayout">
42 <property name="sizeConstraint"> No newline at end of file
42 <property name="sizeConstraint">
43 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
43 <enum>QLayout::SetDefaultConstraint</enum>
44 </property> No newline at end of file
44 </property>
45 <item> No newline at end of file
45 <item>
46 <widget class="QLineEdit" name="txtDpath"> No newline at end of file
46 <widget class="QLineEdit" name="txtDpath">
47 <property name="sizePolicy"> No newline at end of file
47 <property name="sizePolicy">
48 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> No newline at end of file
48 <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
49 <horstretch>0</horstretch> No newline at end of file
49 <horstretch>0</horstretch>
50 <verstretch>0</verstretch> No newline at end of file
50 <verstretch>0</verstretch>
51 </sizepolicy> No newline at end of file
51 </sizepolicy>
52 </property> No newline at end of file
52 </property>
53 </widget> No newline at end of file
53 </widget>
54 </item> No newline at end of file
54 </item>
55 <item> No newline at end of file
55 <item>
56 <widget class="QPushButton" name="btnDpath"> No newline at end of file
56 <widget class="QPushButton" name="btnDpath">
57 <property name="sizePolicy"> No newline at end of file
57 <property name="sizePolicy">
58 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
58 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
59 <horstretch>0</horstretch> No newline at end of file
59 <horstretch>0</horstretch>
60 <verstretch>0</verstretch> No newline at end of file
60 <verstretch>0</verstretch>
61 </sizepolicy> No newline at end of file
61 </sizepolicy>
62 </property> No newline at end of file
62 </property>
63 <property name="text"> No newline at end of file
63 <property name="text">
64 <string>Data Path</string> No newline at end of file
64 <string>Data Path</string>
65 </property> No newline at end of file
65 </property>
66 <property name="checkable"> No newline at end of file
66 <property name="checkable">
67 <bool>false</bool> No newline at end of file
67 <bool>false</bool>
68 </property> No newline at end of file
68 </property>
69 </widget> No newline at end of file
69 </widget>
70 </item> No newline at end of file
70 </item>
71 </layout> No newline at end of file
71 </layout>
72 </item> No newline at end of file
72 </item>
73 <item> No newline at end of file
73 <item>
74 <layout class="QHBoxLayout" name="horizontalLayout_3"> No newline at end of file
74 <layout class="QHBoxLayout" name="horizontalLayout_3">
75 <item> No newline at end of file
75 <item>
76 <widget class="QLineEdit" name="txtRpath"/> No newline at end of file
76 <widget class="QLineEdit" name="txtRpath"/>
77 </item> No newline at end of file
77 </item>
78 <item> No newline at end of file
78 <item>
79 <widget class="QPushButton" name="btnRpath"> No newline at end of file
79 <widget class="QPushButton" name="btnRpath">
80 <property name="text"> No newline at end of file
80 <property name="text">
81 <string>Resource Path</string> No newline at end of file
81 <string>Resource Path</string>
82 </property> No newline at end of file
82 </property>
83 </widget> No newline at end of file
83 </widget>
84 </item> No newline at end of file
84 </item>
85 </layout> No newline at end of file
85 </layout>
86 </item> No newline at end of file
86 </item>
87 <item> No newline at end of file
87 <item>
88 <widget class="QLabel" name="lblDtype"> No newline at end of file
88 <widget class="QLabel" name="lblDtype">
89 <property name="text"> No newline at end of file
89 <property name="text">
90 <string>Data Type</string> No newline at end of file
90 <string>Data Type</string>
91 </property> No newline at end of file
91 </property>
92 </widget> No newline at end of file
92 </widget>
93 </item> No newline at end of file
93 </item>
94 <item> No newline at end of file
94 <item>
95 <layout class="QHBoxLayout" name="horizontalLayout_4"> No newline at end of file
95 <layout class="QHBoxLayout" name="horizontalLayout_4">
96 <item> No newline at end of file
96 <item>
97 <widget class="QComboBox" name="lstDtype"> No newline at end of file
97 <widget class="QComboBox" name="lstDtype">
98 <item> No newline at end of file
98 <item>
99 <property name="text"> No newline at end of file
99 <property name="text">
100 <string>Raw Data</string> No newline at end of file
100 <string>Raw Data</string>
101 </property> No newline at end of file
101 </property>
102 </item> No newline at end of file
102 </item>
103 <item> No newline at end of file
103 <item>
104 <property name="text"> No newline at end of file
104 <property name="text">
105 <string>Process Data</string> No newline at end of file
105 <string>Process Data</string>
106 </property> No newline at end of file
106 </property>
107 </item> No newline at end of file
107 </item>
108 <item> No newline at end of file
108 <item>
109 <property name="text"> No newline at end of file
109 <property name="text">
110 <string>BLTR Data</string> No newline at end of file
110 <string>BLTR Data</string>
111 </property> No newline at end of file
111 </property>
112 </item> No newline at end of file
112 </item>
113 <item> No newline at end of file
113 <item>
114 <property name="text"> No newline at end of file
114 <property name="text">
115 <string>Other</string> No newline at end of file
115 <string>Other</string>
116 </property> No newline at end of file
116 </property>
117 </item> No newline at end of file
117 </item>
118 </widget> No newline at end of file
118 </widget>
119 </item> No newline at end of file
119 </item>
120 <item> No newline at end of file
120 <item>
121 <widget class="QLineEdit" name="txtDtype"> No newline at end of file
121 <widget class="QLineEdit" name="txtDtype">
122 <property name="text"> No newline at end of file
122 <property name="text">
123 <string>r</string> No newline at end of file
123 <string>r</string>
124 </property> No newline at end of file
124 </property>
125 <property name="readOnly"> No newline at end of file
125 <property name="readOnly">
126 <bool>true</bool> No newline at end of file
126 <bool>true</bool>
127 </property> No newline at end of file
127 </property>
128 </widget> No newline at end of file
128 </widget>
129 </item> No newline at end of file
129 </item>
130 <item> No newline at end of file
130 <item>
131 <widget class="QCheckBox" name="chkMST"> No newline at end of file
131 <widget class="QCheckBox" name="chkMST">
132 <property name="text"> No newline at end of file
132 <property name="text">
133 <string>MST-ISR Data</string> No newline at end of file
133 <string>MST-ISR Data</string>
134 </property> No newline at end of file
134 </property>
135 </widget> No newline at end of file
135 </widget>
136 </item> No newline at end of file
136 </item>
137 </layout> No newline at end of file
137 </layout>
138 </item> No newline at end of file
138 </item>
139 <item> No newline at end of file
139 <item>
140 <layout class="QHBoxLayout" name="horizontalLayout_6"> No newline at end of file
140 <layout class="QHBoxLayout" name="horizontalLayout_6">
141 <item> No newline at end of file
141 <item>
142 <widget class="QLabel" name="lblElabel"> No newline at end of file
142 <widget class="QLabel" name="lblElabel">
143 <property name="text"> No newline at end of file
143 <property name="text">
144 <string>Exp. Label at device</string> No newline at end of file
144 <string>Exp. Label at device</string>
145 </property> No newline at end of file
145 </property>
146 </widget> No newline at end of file
146 </widget>
147 </item> No newline at end of file
147 </item>
148 <item> No newline at end of file
148 <item>
149 <widget class="QLabel" name="lblCopys"> No newline at end of file
149 <widget class="QLabel" name="lblCopys">
150 <property name="text"> No newline at end of file
150 <property name="text">
151 <string>Copys</string> No newline at end of file
151 <string>Copys</string>
152 </property> No newline at end of file
152 </property>
153 </widget> No newline at end of file
153 </widget>
154 </item> No newline at end of file
154 </item>
155 </layout> No newline at end of file
155 </layout>
156 </item> No newline at end of file
156 </item>
157 <item> No newline at end of file
157 <item>
158 <layout class="QHBoxLayout" name="horizontalLayout_5"> No newline at end of file
158 <layout class="QHBoxLayout" name="horizontalLayout_5">
159 <item> No newline at end of file
159 <item>
160 <widget class="QLineEdit" name="txtElabel"/> No newline at end of file
160 <widget class="QLineEdit" name="txtElabel"/>
161 </item> No newline at end of file
161 </item>
162 <item> No newline at end of file
162 <item>
163 <widget class="QLineEdit" name="txtCopys"> No newline at end of file
163 <widget class="QLineEdit" name="txtCopys">
164 <property name="text"> No newline at end of file
164 <property name="text">
165 <string>0</string> No newline at end of file
165 <string>0</string>
166 </property> No newline at end of file
166 </property>
167 </widget> No newline at end of file
167 </widget>
168 </item> No newline at end of file
168 </item>
169 </layout> No newline at end of file
169 </layout>
170 </item> No newline at end of file
170 </item>
171 <item> No newline at end of file
171 <item>
172 <layout class="QHBoxLayout" name="horizontalLayout_7"> No newline at end of file
172 <layout class="QHBoxLayout" name="horizontalLayout_7">
173 <item> No newline at end of file
173 <item>
174 <widget class="QLabel" name="lblStartDay"> No newline at end of file
174 <widget class="QLabel" name="lblStartDay">
175 <property name="text"> No newline at end of file
175 <property name="text">
176 <string>Start Day:</string> No newline at end of file
176 <string>Start Day:</string>
177 </property> No newline at end of file
177 </property>
178 </widget> No newline at end of file
178 </widget>
179 </item> No newline at end of file
179 </item>
180 <item> No newline at end of file
180 <item>
181 <widget class="QLabel" name="lblStopDay"> No newline at end of file
181 <widget class="QLabel" name="lblStopDay">
182 <property name="text"> No newline at end of file
182 <property name="text">
183 <string>Stop Day:</string> No newline at end of file
183 <string>Stop Day:</string>
184 </property> No newline at end of file
184 </property>
185 </widget> No newline at end of file
185 </widget>
186 </item> No newline at end of file
186 </item>
187 </layout> No newline at end of file
187 </layout>
188 </item> No newline at end of file
188 </item>
189 <item> No newline at end of file
189 <item>
190 <layout class="QHBoxLayout" name="horizontalLayout_8"> No newline at end of file
190 <layout class="QHBoxLayout" name="horizontalLayout_8">
191 <item> No newline at end of file
191 <item>
192 <widget class="QComboBox" name="lstStartDay"/> No newline at end of file
192 <widget class="QComboBox" name="lstStartDay"/>
193 </item> No newline at end of file
193 </item>
194 <item> No newline at end of file
194 <item>
195 <widget class="QComboBox" name="lstStopDay"/> No newline at end of file
195 <widget class="QComboBox" name="lstStopDay"/>
196 </item> No newline at end of file
196 </item>
197 </layout> No newline at end of file
197 </layout>
198 </item> No newline at end of file
198 </item>
199 </layout> No newline at end of file
199 </layout>
200 </widget> No newline at end of file
200 </widget>
201 <widget class="QWidget" name="tabDconfig"> No newline at end of file
201 <widget class="QWidget" name="tabDconfig">
202 <property name="enabled"> No newline at end of file
202 <property name="enabled">
203 <bool>true</bool> No newline at end of file
203 <bool>true</bool>
204 </property> No newline at end of file
204 </property>
205 <property name="sizePolicy"> No newline at end of file
205 <property name="sizePolicy">
206 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
206 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
207 <horstretch>0</horstretch> No newline at end of file
207 <horstretch>0</horstretch>
208 <verstretch>0</verstretch> No newline at end of file
208 <verstretch>0</verstretch>
209 </sizepolicy> No newline at end of file
209 </sizepolicy>
210 </property> No newline at end of file
210 </property>
211 <attribute name="title"> No newline at end of file
211 <attribute name="title">
212 <string>Device Config.</string> No newline at end of file
212 <string>Device Config.</string>
213 </attribute> No newline at end of file
213 </attribute>
214 <layout class="QVBoxLayout" name="verticalLayout_3"> No newline at end of file
214 <layout class="QVBoxLayout" name="verticalLayout_3">
215 <item> No newline at end of file
215 <item>
216 <layout class="QGridLayout" name="gridLayout"> No newline at end of file
216 <layout class="QGridLayout" name="gridLayout">
217 <item row="0" column="0"> No newline at end of file
217 <item row="0" column="0">
218 <layout class="QVBoxLayout" name="verticalLayout_15"> No newline at end of file
218 <layout class="QVBoxLayout" name="verticalLayout_15">
219 <item> No newline at end of file
219 <item>
220 <widget class="QCheckBox" name="chkDevA"> No newline at end of file
220 <widget class="QCheckBox" name="chkDevA">
221 <property name="text"> No newline at end of file
221 <property name="text">
222 <string>Dev A</string> No newline at end of file
222 <string>Dev A</string>
223 </property> No newline at end of file
223 </property>
224 <property name="checked"> No newline at end of file
224 <property name="checked">
225 <bool>true</bool> No newline at end of file
225 <bool>true</bool>
226 </property> No newline at end of file
226 </property>
227 </widget> No newline at end of file
227 </widget>
228 </item> No newline at end of file
228 </item>
229 <item> No newline at end of file
229 <item>
230 <widget class="QWidget" name="grpDevA" native="true"> No newline at end of file
230 <widget class="QWidget" name="grpDevA" native="true">
231 <layout class="QVBoxLayout" name="verticalLayout_11"> No newline at end of file
231 <layout class="QVBoxLayout" name="verticalLayout_11">
232 <item> No newline at end of file
232 <item>
233 <widget class="QLineEdit" name="txtDeviceA"/> No newline at end of file
233 <widget class="QLineEdit" name="txtDeviceA"/>
234 </item> No newline at end of file
234 </item>
235 <item>
235 <item>
No newline at end of file
236 <widget class="QLineEdit" name="txtBspeedA">
236 <widget class="QLineEdit" name="txtBspeedA"/>
No newline at end of file
No newline at end of file
237 <property name="text">
237 </item>
No newline at end of file
No newline at end of file
238 <string>16</string>
238 <item>
No newline at end of file
No newline at end of file
239 </property>
239 <widget class="QLineEdit" name="txtBmodeA"/> No newline at end of file
No newline at end of file
240 </widget>
No newline at end of file
241 </item>
No newline at end of file
242 <item>
No newline at end of file
243 <widget class="QLineEdit" name="txtBmodeA">
No newline at end of file
244 <property name="text">
No newline at end of file
245 <string>-sao</string>
No newline at end of file
246 </property>
No newline at end of file
247 </widget> No newline at end of file
240 </item> No newline at end of file
248 </item>
241 <item> No newline at end of file
249 <item>
242 <widget class="QPushButton" name="btnTdevA"> No newline at end of file
250 <widget class="QPushButton" name="btnTdevA">
243 <property name="text"> No newline at end of file
251 <property name="text">
244 <string>Test DevA</string> No newline at end of file
252 <string>Test DevA</string>
245 </property> No newline at end of file
253 </property>
246 </widget> No newline at end of file
254 </widget>
247 </item> No newline at end of file
255 </item>
248 </layout> No newline at end of file
256 </layout>
249 </widget> No newline at end of file
257 </widget>
250 </item> No newline at end of file
258 </item>
251 </layout> No newline at end of file
259 </layout>
252 </item> No newline at end of file
260 </item>
253 <item row="0" column="1"> No newline at end of file
261 <item row="0" column="1">
254 <layout class="QVBoxLayout" name="verticalLayout_16"> No newline at end of file
262 <layout class="QVBoxLayout" name="verticalLayout_16">
255 <item> No newline at end of file
263 <item>
256 <widget class="QCheckBox" name="chkDevB"> No newline at end of file
264 <widget class="QCheckBox" name="chkDevB">
257 <property name="text"> No newline at end of file
265 <property name="text">
258 <string>Dev B</string> No newline at end of file
266 <string>Dev B</string>
259 </property> No newline at end of file
267 </property>
260 <property name="checked"> No newline at end of file
268 <property name="checked">
261 <bool>true</bool> No newline at end of file
269 <bool>true</bool>
262 </property> No newline at end of file
270 </property>
263 </widget> No newline at end of file
271 </widget>
264 </item> No newline at end of file
272 </item>
265 <item> No newline at end of file
273 <item>
266 <widget class="QWidget" name="grpDevB" native="true"> No newline at end of file
274 <widget class="QWidget" name="grpDevB" native="true">
267 <layout class="QVBoxLayout" name="verticalLayout_12"> No newline at end of file
275 <layout class="QVBoxLayout" name="verticalLayout_12">
268 <item> No newline at end of file
276 <item>
269 <widget class="QLineEdit" name="txtDeviceB"/> No newline at end of file
277 <widget class="QLineEdit" name="txtDeviceB"/>
270 </item> No newline at end of file
278 </item>
271 <item>
279 <item>
No newline at end of file
280 <widget class="QLineEdit" name="txtBspeedB">
272 <widget class="QLineEdit" name="txtBspeedB"/>
No newline at end of file
No newline at end of file
281 <property name="text">
273 </item>
No newline at end of file
No newline at end of file
282 <string>16</string>
274 <item>
No newline at end of file
No newline at end of file
283 </property>
275 <widget class="QLineEdit" name="txtBmodeB"/> No newline at end of file
No newline at end of file
284 </widget>
No newline at end of file
285 </item>
No newline at end of file
286 <item>
No newline at end of file
287 <widget class="QLineEdit" name="txtBmodeB">
No newline at end of file
288 <property name="text">
No newline at end of file
289 <string>-sao</string>
No newline at end of file
290 </property>
No newline at end of file
291 </widget> No newline at end of file
276 </item> No newline at end of file
292 </item>
277 <item> No newline at end of file
293 <item>
278 <widget class="QPushButton" name="btnTdevB"> No newline at end of file
294 <widget class="QPushButton" name="btnTdevB">
279 <property name="text"> No newline at end of file
295 <property name="text">
280 <string>Test DevB</string> No newline at end of file
296 <string>Test DevB</string>
281 </property> No newline at end of file
297 </property>
282 </widget> No newline at end of file
298 </widget>
283 </item> No newline at end of file
299 </item>
284 </layout> No newline at end of file
300 </layout>
285 </widget> No newline at end of file
301 </widget>
286 </item> No newline at end of file
302 </item>
287 </layout> No newline at end of file
303 </layout>
288 </item> No newline at end of file
304 </item>
289 <item row="0" column="2"> No newline at end of file
305 <item row="0" column="2">
290 <layout class="QVBoxLayout" name="verticalLayout_17"> No newline at end of file
306 <layout class="QVBoxLayout" name="verticalLayout_17">
291 <item> No newline at end of file
307 <item>
292 <widget class="QCheckBox" name="chkDevC"> No newline at end of file
308 <widget class="QCheckBox" name="chkDevC">
293 <property name="text"> No newline at end of file
309 <property name="text">
294 <string>Dev C</string> No newline at end of file
310 <string>Dev C</string>
295 </property> No newline at end of file
311 </property>
296 <property name="checked"> No newline at end of file
312 <property name="checked">
297 <bool>true</bool> No newline at end of file
313 <bool>true</bool>
298 </property> No newline at end of file
314 </property>
299 </widget> No newline at end of file
315 </widget>
300 </item> No newline at end of file
316 </item>
301 <item> No newline at end of file
317 <item>
302 <widget class="QWidget" name="grpDevC" native="true"> No newline at end of file
318 <widget class="QWidget" name="grpDevC" native="true">
303 <layout class="QVBoxLayout" name="verticalLayout_13"> No newline at end of file
319 <layout class="QVBoxLayout" name="verticalLayout_13">
304 <item> No newline at end of file
320 <item>
305 <widget class="QLineEdit" name="txtDeviceC"/> No newline at end of file
321 <widget class="QLineEdit" name="txtDeviceC"/>
306 </item> No newline at end of file
322 </item>
307 <item>
323 <item>
No newline at end of file
324 <widget class="QLineEdit" name="txtBspeedC">
308 <widget class="QLineEdit" name="txtBspeedC"/>
No newline at end of file
No newline at end of file
325 <property name="text">
309 </item>
No newline at end of file
No newline at end of file
326 <string>16</string>
310 <item>
No newline at end of file
No newline at end of file
327 </property>
311 <widget class="QLineEdit" name="txtBmodeC"/> No newline at end of file
No newline at end of file
328 </widget>
No newline at end of file
329 </item>
No newline at end of file
330 <item>
No newline at end of file
331 <widget class="QLineEdit" name="txtBmodeC">
No newline at end of file
332 <property name="text">
No newline at end of file
333 <string>-sao</string>
No newline at end of file
334 </property>
No newline at end of file
335 </widget> No newline at end of file
312 </item> No newline at end of file
336 </item>
313 <item> No newline at end of file
337 <item>
314 <widget class="QPushButton" name="btnTdevC"> No newline at end of file
338 <widget class="QPushButton" name="btnTdevC">
315 <property name="text"> No newline at end of file
339 <property name="text">
316 <string>Test DevC</string> No newline at end of file
340 <string>Test DevC</string>
317 </property> No newline at end of file
341 </property>
318 </widget> No newline at end of file
342 </widget>
319 </item> No newline at end of file
343 </item>
320 </layout> No newline at end of file
344 </layout>
321 </widget> No newline at end of file
345 </widget>
322 </item> No newline at end of file
346 </item>
323 </layout> No newline at end of file
347 </layout>
324 </item> No newline at end of file
348 </item>
325 <item row="0" column="3"> No newline at end of file
349 <item row="0" column="3">
326 <layout class="QVBoxLayout" name="verticalLayout_18"> No newline at end of file
350 <layout class="QVBoxLayout" name="verticalLayout_18">
327 <item> No newline at end of file
351 <item>
328 <widget class="QCheckBox" name="chkDevD"> No newline at end of file
352 <widget class="QCheckBox" name="chkDevD">
329 <property name="text"> No newline at end of file
353 <property name="text">
330 <string>Dev D</string> No newline at end of file
354 <string>Dev D</string>
331 </property> No newline at end of file
355 </property>
332 <property name="checked"> No newline at end of file
356 <property name="checked">
333 <bool>true</bool> No newline at end of file
357 <bool>true</bool>
334 </property> No newline at end of file
358 </property>
335 </widget> No newline at end of file
359 </widget>
336 </item> No newline at end of file
360 </item>
337 <item> No newline at end of file
361 <item>
338 <widget class="QWidget" name="grpDevD" native="true"> No newline at end of file
362 <widget class="QWidget" name="grpDevD" native="true">
339 <layout class="QVBoxLayout" name="verticalLayout_14"> No newline at end of file
363 <layout class="QVBoxLayout" name="verticalLayout_14">
340 <item> No newline at end of file
364 <item>
341 <widget class="QLineEdit" name="txtDeviceD"/> No newline at end of file
365 <widget class="QLineEdit" name="txtDeviceD"/>
342 </item> No newline at end of file
366 </item>
343 <item>
367 <item>
No newline at end of file
368 <widget class="QLineEdit" name="txtBspeedD">
344 <widget class="QLineEdit" name="txtBspeedD"/>
No newline at end of file
No newline at end of file
369 <property name="text">
345 </item>
No newline at end of file
No newline at end of file
370 <string>16</string>
346 <item>
No newline at end of file
No newline at end of file
371 </property>
347 <widget class="QLineEdit" name="txtBmodeD"/> No newline at end of file
No newline at end of file
372 </widget>
No newline at end of file
373 </item>
No newline at end of file
374 <item>
No newline at end of file
375 <widget class="QLineEdit" name="txtBmodeD">
No newline at end of file
376 <property name="text">
No newline at end of file
377 <string>-sao</string>
No newline at end of file
378 </property>
No newline at end of file
379 </widget> No newline at end of file
348 </item> No newline at end of file
380 </item>
349 <item> No newline at end of file
381 <item>
350 <widget class="QPushButton" name="btnTdevD"> No newline at end of file
382 <widget class="QPushButton" name="btnTdevD">
351 <property name="text"> No newline at end of file
383 <property name="text">
352 <string>Test DevD</string> No newline at end of file
384 <string>Test DevD</string>
353 </property> No newline at end of file
385 </property>
354 </widget> No newline at end of file
386 </widget>
355 </item> No newline at end of file
387 </item>
356 </layout> No newline at end of file
388 </layout>
357 </widget> No newline at end of file
389 </widget>
358 </item> No newline at end of file
390 </item>
359 </layout> No newline at end of file
391 </layout>
360 </item> No newline at end of file
392 </item>
361 <item row="0" column="4"> No newline at end of file
393 <item row="0" column="4">
362 <layout class="QVBoxLayout" name="verticalLayout_19"> No newline at end of file
394 <layout class="QVBoxLayout" name="verticalLayout_19">
363 <item> No newline at end of file
395 <item>
364 <widget class="QLabel" name="label_2"> No newline at end of file
396 <widget class="QLabel" name="label_2">
365 <property name="text"> No newline at end of file
397 <property name="text">
366 <string/> No newline at end of file
398 <string/>
367 </property> No newline at end of file
399 </property>
368 </widget> No newline at end of file
400 </widget>
369 </item> No newline at end of file
401 </item>
370 <item> No newline at end of file
402 <item>
371 <widget class="QLabel" name="lblDevice"> No newline at end of file
403 <widget class="QLabel" name="lblDevice">
372 <property name="text"> No newline at end of file
404 <property name="text">
373 <string>Device</string> No newline at end of file
405 <string>Device</string>
374 </property> No newline at end of file
406 </property>
375 </widget> No newline at end of file
407 </widget>
376 </item> No newline at end of file
408 </item>
377 <item> No newline at end of file
409 <item>
378 <widget class="QLabel" name="lblBspeed"> No newline at end of file
410 <widget class="QLabel" name="lblBspeed">
379 <property name="text"> No newline at end of file
411 <property name="text">
380 <string>Burn Speed</string> No newline at end of file
412 <string>Burn Speed</string>
381 </property> No newline at end of file
413 </property>
382 </widget> No newline at end of file
414 </widget>
383 </item> No newline at end of file
415 </item>
384 <item> No newline at end of file
416 <item>
385 <widget class="QLabel" name="lblBmode"> No newline at end of file
417 <widget class="QLabel" name="lblBmode">
386 <property name="text"> No newline at end of file
418 <property name="text">
387 <string>Burn Mode</string> No newline at end of file
419 <string>Burn Mode</string>
388 </property> No newline at end of file
420 </property>
389 </widget> No newline at end of file
421 </widget>
390 </item> No newline at end of file
422 </item>
391 <item> No newline at end of file
423 <item>
392 <widget class="QLabel" name="label"> No newline at end of file
424 <widget class="QLabel" name="label">
393 <property name="text"> No newline at end of file
425 <property name="text">
394 <string/> No newline at end of file
426 <string/>
395 </property> No newline at end of file
427 </property>
396 </widget> No newline at end of file
428 </widget>
397 </item> No newline at end of file
429 </item>
398 </layout> No newline at end of file
430 </layout>
399 </item> No newline at end of file
431 </item>
400 </layout> No newline at end of file
432 </layout>
401 </item> No newline at end of file
433 </item>
402 <item> No newline at end of file
434 <item>
403 <layout class="QHBoxLayout" name="horizontalLayout_9"> No newline at end of file
435 <layout class="QHBoxLayout" name="horizontalLayout_9">
404 <property name="sizeConstraint"> No newline at end of file
436 <property name="sizeConstraint">
405 <enum>QLayout::SetFixedSize</enum> No newline at end of file
437 <enum>QLayout::SetFixedSize</enum>
406 </property> No newline at end of file
438 </property>
407 <item> No newline at end of file
439 <item>
408 <widget class="QLabel" name="lblBprocess"> No newline at end of file
440 <widget class="QLabel" name="lblBprocess">
409 <property name="sizePolicy"> No newline at end of file
441 <property name="sizePolicy">
410 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
442 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
411 <horstretch>0</horstretch> No newline at end of file
443 <horstretch>0</horstretch>
412 <verstretch>0</verstretch> No newline at end of file
444 <verstretch>0</verstretch>
413 </sizepolicy> No newline at end of file
445 </sizepolicy>
414 </property> No newline at end of file
446 </property>
415 <property name="text"> No newline at end of file
447 <property name="text">
416 <string>Burning process</string> No newline at end of file
448 <string>Burning process</string>
417 </property> No newline at end of file
449 </property>
418 </widget> No newline at end of file
450 </widget>
419 </item> No newline at end of file
451 </item>
420 <item> No newline at end of file
452 <item>
421 <widget class="QCheckBox" name="chkSimultaneously"> No newline at end of file
453 <widget class="QCheckBox" name="chkSimultaneously">
422 <property name="sizePolicy"> No newline at end of file
454 <property name="sizePolicy">
423 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
455 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
424 <horstretch>0</horstretch> No newline at end of file
456 <horstretch>0</horstretch>
425 <verstretch>0</verstretch> No newline at end of file
457 <verstretch>0</verstretch>
426 </sizepolicy> No newline at end of file
458 </sizepolicy>
427 </property> No newline at end of file
459 </property>
428 <property name="text"> No newline at end of file
460 <property name="text">
429 <string>Simultaneously</string> No newline at end of file
461 <string>Simultaneously</string>
430 </property> No newline at end of file
462 </property>
431 </widget> No newline at end of file
463 </widget>
432 </item> No newline at end of file
464 </item>
433 <item> No newline at end of file
465 <item>
434 <widget class="QCheckBox" name="chkSequentially"> No newline at end of file
466 <widget class="QCheckBox" name="chkSequentially">
435 <property name="sizePolicy"> No newline at end of file
467 <property name="sizePolicy">
436 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
468 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
437 <horstretch>0</horstretch> No newline at end of file
469 <horstretch>0</horstretch>
438 <verstretch>0</verstretch> No newline at end of file
470 <verstretch>0</verstretch>
439 </sizepolicy> No newline at end of file
471 </sizepolicy>
440 </property> No newline at end of file
472 </property>
441 <property name="text"> No newline at end of file
473 <property name="text">
442 <string>Sequentially</string> No newline at end of file
474 <string>Sequentially</string>
443 </property> No newline at end of file
475 </property>
444 <property name="checked"> No newline at end of file
476 <property name="checked">
445 <bool>true</bool> No newline at end of file
477 <bool>true</bool>
446 </property> No newline at end of file
478 </property>
447 </widget> No newline at end of file
479 </widget>
448 </item> No newline at end of file
480 </item>
449 </layout> No newline at end of file
481 </layout>
450 </item> No newline at end of file
482 </item>
451 <item> No newline at end of file
483 <item>
452 <layout class="QHBoxLayout" name="horizontalLayout_11"> No newline at end of file
484 <layout class="QHBoxLayout" name="horizontalLayout_11">
453 <property name="spacing"> No newline at end of file
485 <property name="spacing">
454 <number>6</number> No newline at end of file
486 <number>6</number>
455 </property> No newline at end of file
487 </property>
456 <property name="sizeConstraint"> No newline at end of file
488 <property name="sizeConstraint">
457 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
489 <enum>QLayout::SetDefaultConstraint</enum>
458 </property> No newline at end of file
490 </property>
459 <item> No newline at end of file
491 <item>
460 <widget class="QLabel" name="lblDcapacity"> No newline at end of file
492 <widget class="QLabel" name="lblDcapacity">
461 <property name="sizePolicy"> No newline at end of file
493 <property name="sizePolicy">
462 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
494 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
463 <horstretch>0</horstretch> No newline at end of file
495 <horstretch>0</horstretch>
464 <verstretch>0</verstretch> No newline at end of file
496 <verstretch>0</verstretch>
465 </sizepolicy> No newline at end of file
497 </sizepolicy>
466 </property> No newline at end of file
498 </property>
467 <property name="text"> No newline at end of file
499 <property name="text">
468 <string>Device Capacity</string> No newline at end of file
500 <string>Device Capacity</string>
469 </property> No newline at end of file
501 </property>
470 </widget> No newline at end of file
502 </widget>
471 </item> No newline at end of file
503 </item>
472 <item> No newline at end of file
504 <item>
473 <widget class="QCheckBox" name="chkSalert"> No newline at end of file
505 <widget class="QCheckBox" name="chkSalert">
474 <property name="sizePolicy"> No newline at end of file
506 <property name="sizePolicy">
475 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
507 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
476 <horstretch>0</horstretch> No newline at end of file
508 <horstretch>0</horstretch>
477 <verstretch>0</verstretch> No newline at end of file
509 <verstretch>0</verstretch>
478 </sizepolicy> No newline at end of file
510 </sizepolicy>
479 </property> No newline at end of file
511 </property>
480 <property name="text"> No newline at end of file
512 <property name="text">
481 <string>Sound Alert</string> No newline at end of file
513 <string>Sound Alert</string>
482 </property> No newline at end of file
514 </property>
483 </widget> No newline at end of file
515 </widget>
484 </item> No newline at end of file
516 </item>
485 </layout> No newline at end of file
517 </layout>
486 </item> No newline at end of file
518 </item>
487 <item> No newline at end of file
519 <item>
488 <layout class="QHBoxLayout" name="horizontalLayout_10"> No newline at end of file
520 <layout class="QHBoxLayout" name="horizontalLayout_10">
489 <property name="sizeConstraint"> No newline at end of file
521 <property name="sizeConstraint">
490 <enum>QLayout::SetFixedSize</enum> No newline at end of file
522 <enum>QLayout::SetFixedSize</enum>
491 </property> No newline at end of file
523 </property>
492 <item> No newline at end of file
524 <item>
493 <widget class="QComboBox" name="lstDcapacity"> No newline at end of file
525 <widget class="QComboBox" name="lstDcapacity">
494 <property name="currentIndex"> No newline at end of file
526 <property name="currentIndex">
495 <number>2</number> No newline at end of file
527 <number>2</number>
496 </property> No newline at end of file
528 </property>
497 <item> No newline at end of file
529 <item>
498 <property name="text"> No newline at end of file
530 <property name="text">
499 <string>BluRay [25.0 GB]</string> No newline at end of file
531 <string>BluRay [25.0 GB]</string>
500 </property> No newline at end of file
532 </property>
501 </item> No newline at end of file
533 </item>
502 <item> No newline at end of file
534 <item>
503 <property name="text"> No newline at end of file
535 <property name="text">
504 <string>DVD2 [8.5 GB]</string> No newline at end of file
536 <string>DVD2 [8.5 GB]</string>
505 </property> No newline at end of file
537 </property>
506 </item> No newline at end of file
538 </item>
507 <item> No newline at end of file
539 <item>
508 <property name="text"> No newline at end of file
540 <property name="text">
509 <string>DVD1 [4.7 GB]</string> No newline at end of file
541 <string>DVD1 [4.7 GB]</string>
510 </property> No newline at end of file
542 </property>
511 </item> No newline at end of file
543 </item>
512 <item> No newline at end of file
544 <item>
513 <property name="text"> No newline at end of file
545 <property name="text">
514 <string>CD [0.7 GB]</string> No newline at end of file
546 <string>CD [0.7 GB]</string>
515 </property> No newline at end of file
547 </property>
516 </item> No newline at end of file
548 </item>
517 <item> No newline at end of file
549 <item>
518 <property name="text"> No newline at end of file
550 <property name="text">
519 <string>Other [? GB]</string> No newline at end of file
551 <string>Other [? GB]</string>
520 </property> No newline at end of file
552 </property>
521 </item> No newline at end of file
553 </item>
522 </widget> No newline at end of file
554 </widget>
523 </item> No newline at end of file
555 </item>
524 <item> No newline at end of file
556 <item>
525 <widget class="QLineEdit" name="txtDcapacity"> No newline at end of file
557 <widget class="QLineEdit" name="txtDcapacity">
526 <property name="text"> No newline at end of file
558 <property name="text">
527 <string>4482.26928711</string> No newline at end of file
559 <string>4482.26928711</string>
528 </property> No newline at end of file
560 </property>
529 <property name="readOnly"> No newline at end of file
561 <property name="readOnly">
530 <bool>true</bool> No newline at end of file
562 <bool>true</bool>
531 </property> No newline at end of file
563 </property>
532 </widget> No newline at end of file
564 </widget>
533 </item> No newline at end of file
565 </item>
534 <item> No newline at end of file
566 <item>
535 <widget class="QCheckBox" name="chkPSgraphic"> No newline at end of file
567 <widget class="QCheckBox" name="chkPSgraphic">
536 <property name="text"> No newline at end of file
568 <property name="text">
537 <string>PS Graphic</string> No newline at end of file
569 <string>PS Graphic</string>
538 </property> No newline at end of file
570 </property>
539 </widget> No newline at end of file
571 </widget>
540 </item> No newline at end of file
572 </item>
541 <item> No newline at end of file
573 <item>
542 <widget class="QLineEdit" name="lineEdit_17"/> No newline at end of file
574 <widget class="QLineEdit" name="lineEdit_17"/>
543 </item> No newline at end of file
575 </item>
544 </layout> No newline at end of file
576 </layout>
545 </item> No newline at end of file
577 </item>
546 </layout> No newline at end of file
578 </layout>
547 </widget> No newline at end of file
579 </widget>
548 <widget class="QWidget" name="tabSburn"> No newline at end of file
580 <widget class="QWidget" name="tabSburn">
549 <attribute name="title"> No newline at end of file
581 <attribute name="title">
550 <string>Status Burn</string> No newline at end of file
582 <string>Status Burn</string>
551 </attribute> No newline at end of file
583 </attribute>
552 <layout class="QVBoxLayout" name="verticalLayout_4"> No newline at end of file
584 <layout class="QVBoxLayout" name="verticalLayout_4">
553 <item> No newline at end of file
585 <item>
554 <widget class="QWidget" name="widget_2" native="true"> No newline at end of file
586 <widget class="QWidget" name="widget_2" native="true">
555 <property name="sizePolicy"> No newline at end of file
587 <property name="sizePolicy">
556 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
588 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
557 <horstretch>0</horstretch> No newline at end of file
589 <horstretch>0</horstretch>
558 <verstretch>0</verstretch> No newline at end of file
590 <verstretch>0</verstretch>
559 </sizepolicy> No newline at end of file
591 </sizepolicy>
560 </property> No newline at end of file
592 </property>
561 <property name="maximumSize"> No newline at end of file
593 <property name="maximumSize">
562 <size> No newline at end of file
594 <size>
563 <width>500</width> No newline at end of file
595 <width>500</width>
564 <height>16777215</height> No newline at end of file
596 <height>16777215</height>
565 </size> No newline at end of file
597 </size>
566 </property> No newline at end of file
598 </property>
567 <layout class="QGridLayout" name="gridLayout_2"> No newline at end of file
599 <layout class="QGridLayout" name="gridLayout_2">
568 <item row="3" column="2"> No newline at end of file
600 <item row="3" column="2">
569 <widget class="QLineEdit" name="txtSTATUSb"/> No newline at end of file
601 <widget class="QLineEdit" name="txtSTATUSb"/>
570 </item> No newline at end of file
602 </item>
571 <item row="5" column="1"> No newline at end of file
603 <item row="5" column="1">
572 <widget class="QLineEdit" name="txtINFOa"/> No newline at end of file
604 <widget class="QLineEdit" name="txtINFOa"/>
573 </item> No newline at end of file
605 </item>
574 <item row="3" column="1"> No newline at end of file
606 <item row="3" column="1">
575 <widget class="QLineEdit" name="txtSTATUSa"/> No newline at end of file
607 <widget class="QLineEdit" name="txtSTATUSa"/>
576 </item> No newline at end of file
608 </item>
577 <item row="5" column="2"> No newline at end of file
609 <item row="5" column="2">
578 <widget class="QLineEdit" name="txtINFOb"/> No newline at end of file
610 <widget class="QLineEdit" name="txtINFOb"/>
579 </item> No newline at end of file
611 </item>
580 <item row="3" column="3"> No newline at end of file
612 <item row="3" column="3">
581 <widget class="QLineEdit" name="txtSTATUSc"/> No newline at end of file
613 <widget class="QLineEdit" name="txtSTATUSc"/>
582 </item> No newline at end of file
614 </item>
583 <item row="3" column="4"> No newline at end of file
615 <item row="3" column="4">
584 <widget class="QLineEdit" name="txtSTATUSd"/> No newline at end of file
616 <widget class="QLineEdit" name="txtSTATUSd"/>
585 </item> No newline at end of file
617 </item>
586 <item row="5" column="4"> No newline at end of file
618 <item row="5" column="4">
587 <widget class="QLineEdit" name="txtINFOd"/> No newline at end of file
619 <widget class="QLineEdit" name="txtINFOd"/>
588 </item> No newline at end of file
620 </item>
589 <item row="6" column="1"> No newline at end of file
621 <item row="6" column="1">
590 <widget class="QLineEdit" name="txtSETa"/> No newline at end of file
622 <widget class="QLineEdit" name="txtSETa"/>
591 </item> No newline at end of file
623 </item>
592 <item row="6" column="2"> No newline at end of file
624 <item row="6" column="2">
593 <widget class="QLineEdit" name="txtSETb"/> No newline at end of file
625 <widget class="QLineEdit" name="txtSETb"/>
594 </item> No newline at end of file
626 </item>
595 <item row="6" column="3"> No newline at end of file
627 <item row="6" column="3">
596 <widget class="QLineEdit" name="txtSETc"/> No newline at end of file
628 <widget class="QLineEdit" name="txtSETc"/>
597 </item> No newline at end of file
629 </item>
598 <item row="6" column="4"> No newline at end of file
630 <item row="6" column="4">
599 <widget class="QLineEdit" name="txtSETd"/> No newline at end of file
631 <widget class="QLineEdit" name="txtSETd"/>
600 </item> No newline at end of file
632 </item>
601 <item row="3" column="0"> No newline at end of file
633 <item row="3" column="0">
602 <widget class="QLabel" name="lblSTATUS"> No newline at end of file
634 <widget class="QLabel" name="lblSTATUS">
603 <property name="text"> No newline at end of file
635 <property name="text">
604 <string>STATUS</string> No newline at end of file
636 <string>STATUS</string>
605 </property> No newline at end of file
637 </property>
606 </widget> No newline at end of file
638 </widget>
607 </item> No newline at end of file
639 </item>
608 <item row="5" column="0"> No newline at end of file
640 <item row="5" column="0">
609 <widget class="QLabel" name="lblINFO"> No newline at end of file
641 <widget class="QLabel" name="lblINFO">
610 <property name="text"> No newline at end of file
642 <property name="text">
611 <string>INFO</string> No newline at end of file
643 <string>INFO</string>
612 </property> No newline at end of file
644 </property>
613 </widget> No newline at end of file
645 </widget>
614 </item> No newline at end of file
646 </item>
615 <item row="6" column="0"> No newline at end of file
647 <item row="6" column="0">
616 <widget class="QLabel" name="lblSET"> No newline at end of file
648 <widget class="QLabel" name="lblSET">
617 <property name="text"> No newline at end of file
649 <property name="text">
618 <string>SET</string> No newline at end of file
650 <string>SET</string>
619 </property> No newline at end of file
651 </property>
620 </widget> No newline at end of file
652 </widget>
621 </item> No newline at end of file
653 </item>
622 <item row="0" column="1"> No newline at end of file
654 <item row="0" column="1">
623 <widget class="QLabel" name="lblDevA"> No newline at end of file
655 <widget class="QLabel" name="lblDevA">
624 <property name="text"> No newline at end of file
656 <property name="text">
625 <string>DEV A</string> No newline at end of file
657 <string>DEV A</string>
626 </property> No newline at end of file
658 </property>
627 <property name="alignment"> No newline at end of file
659 <property name="alignment">
628 <set>Qt::AlignCenter</set> No newline at end of file
660 <set>Qt::AlignCenter</set>
629 </property> No newline at end of file
661 </property>
630 </widget> No newline at end of file
662 </widget>
631 </item> No newline at end of file
663 </item>
632 <item row="0" column="2"> No newline at end of file
664 <item row="0" column="2">
633 <widget class="QLabel" name="lblDevB"> No newline at end of file
665 <widget class="QLabel" name="lblDevB">
634 <property name="text"> No newline at end of file
666 <property name="text">
635 <string>DEV B</string> No newline at end of file
667 <string>DEV B</string>
636 </property> No newline at end of file
668 </property>
637 <property name="alignment"> No newline at end of file
669 <property name="alignment">
638 <set>Qt::AlignCenter</set> No newline at end of file
670 <set>Qt::AlignCenter</set>
639 </property> No newline at end of file
671 </property>
640 </widget> No newline at end of file
672 </widget>
641 </item> No newline at end of file
673 </item>
642 <item row="0" column="3"> No newline at end of file
674 <item row="0" column="3">
643 <widget class="QLabel" name="lblDevC"> No newline at end of file
675 <widget class="QLabel" name="lblDevC">
644 <property name="text"> No newline at end of file
676 <property name="text">
645 <string>DEV C</string> No newline at end of file
677 <string>DEV C</string>
646 </property> No newline at end of file
678 </property>
647 <property name="alignment"> No newline at end of file
679 <property name="alignment">
648 <set>Qt::AlignCenter</set> No newline at end of file
680 <set>Qt::AlignCenter</set>
649 </property> No newline at end of file
681 </property>
650 </widget> No newline at end of file
682 </widget>
651 </item> No newline at end of file
683 </item>
652 <item row="0" column="4"> No newline at end of file
684 <item row="0" column="4">
653 <widget class="QLabel" name="lblDevD"> No newline at end of file
685 <widget class="QLabel" name="lblDevD">
654 <property name="text"> No newline at end of file
686 <property name="text">
655 <string>DEV D</string> No newline at end of file
687 <string>DEV D</string>
656 </property> No newline at end of file
688 </property>
657 <property name="alignment"> No newline at end of file
689 <property name="alignment">
658 <set>Qt::AlignCenter</set> No newline at end of file
690 <set>Qt::AlignCenter</set>
659 </property> No newline at end of file
691 </property>
660 </widget> No newline at end of file
692 </widget>
661 </item> No newline at end of file
693 </item>
662 <item row="5" column="3"> No newline at end of file
694 <item row="5" column="3">
663 <widget class="QLineEdit" name="txtINFOc"/> No newline at end of file
695 <widget class="QLineEdit" name="txtINFOc"/>
664 </item> No newline at end of file
696 </item>
665 </layout> No newline at end of file
697 </layout>
666 </widget> No newline at end of file
698 </widget>
667 </item> No newline at end of file
699 </item>
668 <item> No newline at end of file
700 <item>
669 <widget class="QTextEdit" name="txtSburn"/> No newline at end of file
701 <widget class="QTextEdit" name="txtSburn"/>
670 </item> No newline at end of file
702 </item>
671 </layout> No newline at end of file
703 </layout>
672 </widget> No newline at end of file
704 </widget>
673 </widget> No newline at end of file
705 </widget>
674 </item> No newline at end of file
706 </item>
675 <item> No newline at end of file
707 <item>
676 <widget class="QTextEdit" name="txtInfo"> No newline at end of file
708 <widget class="QTextEdit" name="txtInfo">
677 <property name="readOnly"> No newline at end of file
709 <property name="readOnly">
678 <bool>true</bool> No newline at end of file
710 <bool>true</bool>
679 </property> No newline at end of file
711 </property>
680 </widget> No newline at end of file
712 </widget>
681 </item> No newline at end of file
713 </item>
682 <item> No newline at end of file
714 <item>
683 <layout class="QHBoxLayout" name="horizontalLayout_2"> No newline at end of file
715 <layout class="QHBoxLayout" name="horizontalLayout_2">
684 <property name="sizeConstraint"> No newline at end of file
716 <property name="sizeConstraint">
685 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
717 <enum>QLayout::SetDefaultConstraint</enum>
686 </property> No newline at end of file
718 </property>
687 <item> No newline at end of file
719 <item>
688 <widget class="QPushButton" name="btnGbkp"> No newline at end of file
720 <widget class="QPushButton" name="btnGbkp">
689 <property name="text"> No newline at end of file
721 <property name="text">
690 <string>Generate Bkp</string> No newline at end of file
722 <string>Generate Bkp</string>
691 </property> No newline at end of file
723 </property>
692 </widget> No newline at end of file
724 </widget>
693 </item> No newline at end of file
725 </item>
694 <item> No newline at end of file
726 <item>
695 <widget class="QPushButton" name="btnRestart"> No newline at end of file
727 <widget class="QPushButton" name="btnRestart">
696 <property name="text"> No newline at end of file
728 <property name="text">
697 <string>Restart</string> No newline at end of file
729 <string>Restart</string>
698 </property> No newline at end of file
730 </property>
699 </widget> No newline at end of file
731 </widget>
700 </item> No newline at end of file
732 </item>
701 <item> No newline at end of file
733 <item>
702 <widget class="QPushButton" name="btnStartburn"> No newline at end of file
734 <widget class="QPushButton" name="btnStartburn">
703 <property name="text"> No newline at end of file
735 <property name="text">
704 <string>Start Burn</string> No newline at end of file
736 <string>Start Burn</string>
705 </property> No newline at end of file
737 </property>
706 </widget> No newline at end of file
738 </widget>
707 </item> No newline at end of file
739 </item>
708 <item> No newline at end of file
740 <item>
709 <widget class="QPushButton" name="btnStopburn"> No newline at end of file
741 <widget class="QPushButton" name="btnStopburn">
710 <property name="text"> No newline at end of file
742 <property name="text">
711 <string>Stop Burn</string> No newline at end of file
743 <string>Stop Burn</string>
712 </property> No newline at end of file
744 </property>
713 </widget> No newline at end of file
745 </widget>
714 </item> No newline at end of file
746 </item>
715 </layout> No newline at end of file
747 </layout>
716 </item> No newline at end of file
748 </item>
717 </layout> No newline at end of file
749 </layout>
718 </widget> No newline at end of file
750 </widget>
719 <widget class="QMenuBar" name="menubar"> No newline at end of file
751 <widget class="QMenuBar" name="menubar">
720 <property name="geometry"> No newline at end of file
752 <property name="geometry">
721 <rect> No newline at end of file
753 <rect>
722 <x>0</x> No newline at end of file
754 <x>0</x>
723 <y>0</y>
755 <y>0</y>
No newline at end of file
756 <width>809</width> No newline at end of file
724 <width>745</width> No newline at end of file
725 <height>25</height> No newline at end of file
757 <height>25</height>
726 </rect> No newline at end of file
758 </rect>
727 </property> No newline at end of file
759 </property>
728 <widget class="QMenu" name="menuFile"> No newline at end of file
760 <widget class="QMenu" name="menuFile">
729 <property name="title"> No newline at end of file
761 <property name="title">
730 <string>File</string> No newline at end of file
762 <string>File</string>
731 </property> No newline at end of file
763 </property>
732 <addaction name="actionSave_Config"/> No newline at end of file
764 <addaction name="actionSave_Config"/>
733 <addaction name="actionQuit"/> No newline at end of file
765 <addaction name="actionQuit"/>
734 </widget> No newline at end of file
766 </widget>
735 <widget class="QMenu" name="menuParameters"> No newline at end of file
767 <widget class="QMenu" name="menuParameters">
736 <property name="title"> No newline at end of file
768 <property name="title">
737 <string>Parameters</string> No newline at end of file
769 <string>Parameters</string>
738 </property> No newline at end of file
770 </property>
739 <addaction name="actionChange_Parameters"/> No newline at end of file
771 <addaction name="actionChange_Parameters"/>
740 </widget> No newline at end of file
772 </widget>
741 <widget class="QMenu" name="menuHelp"> No newline at end of file
773 <widget class="QMenu" name="menuHelp">
742 <property name="title"> No newline at end of file
774 <property name="title">
743 <string>Help</string> No newline at end of file
775 <string>Help</string>
744 </property> No newline at end of file
776 </property>
745 <addaction name="actionAbout"/> No newline at end of file
777 <addaction name="actionAbout"/>
746 </widget> No newline at end of file
778 </widget>
747 <addaction name="menuFile"/> No newline at end of file
779 <addaction name="menuFile"/>
748 <addaction name="menuParameters"/> No newline at end of file
780 <addaction name="menuParameters"/>
749 <addaction name="menuHelp"/> No newline at end of file
781 <addaction name="menuHelp"/>
750 </widget> No newline at end of file
782 </widget>
751 <widget class="QStatusBar" name="statusbar"/> No newline at end of file
783 <widget class="QStatusBar" name="statusbar"/>
752 <action name="actionChange_Parameters"> No newline at end of file
784 <action name="actionChange_Parameters">
753 <property name="text"> No newline at end of file
785 <property name="text">
754 <string>Change Parameters</string> No newline at end of file
786 <string>Change Parameters</string>
755 </property> No newline at end of file
787 </property>
756 </action> No newline at end of file
788 </action>
757 <action name="actionSave_Config"> No newline at end of file
789 <action name="actionSave_Config">
758 <property name="text"> No newline at end of file
790 <property name="text">
759 <string>Save Config</string> No newline at end of file
791 <string>Save Config</string>
760 </property> No newline at end of file
792 </property>
761 </action> No newline at end of file
793 </action>
762 <action name="actionQuit"> No newline at end of file
794 <action name="actionQuit">
763 <property name="text"> No newline at end of file
795 <property name="text">
764 <string>Quit</string> No newline at end of file
796 <string>Quit</string>
765 </property> No newline at end of file
797 </property>
766 </action> No newline at end of file
798 </action>
767 <action name="actionAbout"> No newline at end of file
799 <action name="actionAbout">
768 <property name="text"> No newline at end of file
800 <property name="text">
769 <string>About</string> No newline at end of file
801 <string>About</string>
770 </property> No newline at end of file
802 </property>
771 </action> No newline at end of file
803 </action>
772 </widget> No newline at end of file
804 </widget>
773 <tabstops> No newline at end of file
805 <tabstops>
774 <tabstop>txtDpath</tabstop> No newline at end of file
806 <tabstop>txtDpath</tabstop>
775 <tabstop>btnDpath</tabstop> No newline at end of file
807 <tabstop>btnDpath</tabstop>
776 <tabstop>txtRpath</tabstop> No newline at end of file
808 <tabstop>txtRpath</tabstop>
777 <tabstop>btnRpath</tabstop> No newline at end of file
809 <tabstop>btnRpath</tabstop>
778 <tabstop>lstDtype</tabstop> No newline at end of file
810 <tabstop>lstDtype</tabstop>
779 <tabstop>txtDtype</tabstop> No newline at end of file
811 <tabstop>txtDtype</tabstop>
780 <tabstop>chkMST</tabstop> No newline at end of file
812 <tabstop>chkMST</tabstop>
781 <tabstop>txtElabel</tabstop> No newline at end of file
813 <tabstop>txtElabel</tabstop>
782 <tabstop>txtCopys</tabstop> No newline at end of file
814 <tabstop>txtCopys</tabstop>
783 <tabstop>lstStartDay</tabstop> No newline at end of file
815 <tabstop>lstStartDay</tabstop>
784 <tabstop>lstStopDay</tabstop> No newline at end of file
816 <tabstop>lstStopDay</tabstop>
785 <tabstop>chkSimultaneously</tabstop> No newline at end of file
817 <tabstop>chkSimultaneously</tabstop>
786 <tabstop>chkSequentially</tabstop> No newline at end of file
818 <tabstop>chkSequentially</tabstop>
787 <tabstop>chkSalert</tabstop> No newline at end of file
819 <tabstop>chkSalert</tabstop>
788 <tabstop>lstDcapacity</tabstop> No newline at end of file
820 <tabstop>lstDcapacity</tabstop>
789 <tabstop>txtDcapacity</tabstop> No newline at end of file
821 <tabstop>txtDcapacity</tabstop>
790 <tabstop>chkPSgraphic</tabstop> No newline at end of file
822 <tabstop>chkPSgraphic</tabstop>
791 <tabstop>lineEdit_17</tabstop> No newline at end of file
823 <tabstop>lineEdit_17</tabstop>
792 <tabstop>txtSTATUSa</tabstop> No newline at end of file
824 <tabstop>txtSTATUSa</tabstop>
793 <tabstop>txtSTATUSb</tabstop> No newline at end of file
825 <tabstop>txtSTATUSb</tabstop>
794 <tabstop>txtSTATUSc</tabstop> No newline at end of file
826 <tabstop>txtSTATUSc</tabstop>
795 <tabstop>txtSTATUSd</tabstop> No newline at end of file
827 <tabstop>txtSTATUSd</tabstop>
796 <tabstop>txtINFOa</tabstop> No newline at end of file
828 <tabstop>txtINFOa</tabstop>
797 <tabstop>txtINFOb</tabstop> No newline at end of file
829 <tabstop>txtINFOb</tabstop>
798 <tabstop>txtINFOc</tabstop> No newline at end of file
830 <tabstop>txtINFOc</tabstop>
799 <tabstop>txtINFOd</tabstop> No newline at end of file
831 <tabstop>txtINFOd</tabstop>
800 <tabstop>txtSETa</tabstop> No newline at end of file
832 <tabstop>txtSETa</tabstop>
801 <tabstop>txtSETb</tabstop> No newline at end of file
833 <tabstop>txtSETb</tabstop>
802 <tabstop>txtSETc</tabstop> No newline at end of file
834 <tabstop>txtSETc</tabstop>
803 <tabstop>txtSETd</tabstop> No newline at end of file
835 <tabstop>txtSETd</tabstop>
804 <tabstop>tabWidget</tabstop> No newline at end of file
836 <tabstop>tabWidget</tabstop>
805 <tabstop>txtSburn</tabstop> No newline at end of file
837 <tabstop>txtSburn</tabstop>
806 <tabstop>btnGbkp</tabstop> No newline at end of file
838 <tabstop>btnGbkp</tabstop>
807 <tabstop>btnRestart</tabstop> No newline at end of file
839 <tabstop>btnRestart</tabstop>
808 <tabstop>btnStartburn</tabstop> No newline at end of file
840 <tabstop>btnStartburn</tabstop>
809 <tabstop>btnStopburn</tabstop> No newline at end of file
841 <tabstop>btnStopburn</tabstop>
810 </tabstops> No newline at end of file
842 </tabstops>
811 <resources/> No newline at end of file
843 <resources/>
812 <connections> No newline at end of file
844 <connections>
813 <connection> No newline at end of file
845 <connection>
814 <sender>chkSequentially</sender> No newline at end of file
846 <sender>chkSequentially</sender>
815 <signal>clicked()</signal> No newline at end of file
847 <signal>clicked()</signal>
816 <receiver>chkSimultaneously</receiver> No newline at end of file
848 <receiver>chkSimultaneously</receiver>
817 <slot>toggle()</slot> No newline at end of file
849 <slot>toggle()</slot>
818 <hints> No newline at end of file
850 <hints>
819 <hint type="sourcelabel"> No newline at end of file
851 <hint type="sourcelabel">
820 <x>635</x> No newline at end of file
852 <x>635</x>
821 <y>276</y> No newline at end of file
853 <y>276</y>
822 </hint> No newline at end of file
854 </hint>
823 <hint type="destinationlabel"> No newline at end of file
855 <hint type="destinationlabel">
824 <x>350</x> No newline at end of file
856 <x>350</x>
825 <y>269</y> No newline at end of file
857 <y>269</y>
826 </hint> No newline at end of file
858 </hint>
827 </hints> No newline at end of file
859 </hints>
828 </connection> No newline at end of file
860 </connection>
829 <connection> No newline at end of file
861 <connection>
830 <sender>chkSimultaneously</sender> No newline at end of file
862 <sender>chkSimultaneously</sender>
831 <signal>clicked()</signal> No newline at end of file
863 <signal>clicked()</signal>
832 <receiver>chkSequentially</receiver> No newline at end of file
864 <receiver>chkSequentially</receiver>
833 <slot>toggle()</slot> No newline at end of file
865 <slot>toggle()</slot>
834 <hints> No newline at end of file
866 <hints>
835 <hint type="sourcelabel"> No newline at end of file
867 <hint type="sourcelabel">
836 <x>433</x> No newline at end of file
868 <x>433</x>
837 <y>276</y> No newline at end of file
869 <y>276</y>
838 </hint> No newline at end of file
870 </hint>
839 <hint type="destinationlabel"> No newline at end of file
871 <hint type="destinationlabel">
840 <x>635</x> No newline at end of file
872 <x>635</x>
841 <y>276</y> No newline at end of file
873 <y>276</y>
842 </hint> No newline at end of file
874 </hint>
843 </hints> No newline at end of file
875 </hints>
844 </connection> No newline at end of file
876 </connection>
845 <connection> No newline at end of file
877 <connection>
846 <sender>chkDevA</sender> No newline at end of file
878 <sender>chkDevA</sender>
847 <signal>toggled(bool)</signal> No newline at end of file
879 <signal>toggled(bool)</signal>
848 <receiver>grpDevA</receiver> No newline at end of file
880 <receiver>grpDevA</receiver>
849 <slot>setEnabled(bool)</slot> No newline at end of file
881 <slot>setEnabled(bool)</slot>
850 <hints> No newline at end of file
882 <hints>
851 <hint type="sourcelabel"> No newline at end of file
883 <hint type="sourcelabel">
852 <x>95</x> No newline at end of file
884 <x>95</x>
853 <y>86</y> No newline at end of file
885 <y>86</y>
854 </hint> No newline at end of file
886 </hint>
855 <hint type="destinationlabel"> No newline at end of file
887 <hint type="destinationlabel">
856 <x>95</x> No newline at end of file
888 <x>95</x>
857 <y>167</y> No newline at end of file
889 <y>167</y>
858 </hint> No newline at end of file
890 </hint>
859 </hints> No newline at end of file
891 </hints>
860 </connection> No newline at end of file
892 </connection>
861 <connection> No newline at end of file
893 <connection>
862 <sender>chkDevB</sender> No newline at end of file
894 <sender>chkDevB</sender>
863 <signal>toggled(bool)</signal> No newline at end of file
895 <signal>toggled(bool)</signal>
864 <receiver>grpDevB</receiver> No newline at end of file
896 <receiver>grpDevB</receiver>
865 <slot>setEnabled(bool)</slot> No newline at end of file
897 <slot>setEnabled(bool)</slot>
866 <hints> No newline at end of file
898 <hints>
867 <hint type="sourcelabel"> No newline at end of file
899 <hint type="sourcelabel">
868 <x>251</x> No newline at end of file
900 <x>251</x>
869 <y>86</y> No newline at end of file
901 <y>86</y>
870 </hint> No newline at end of file
902 </hint>
871 <hint type="destinationlabel"> No newline at end of file
903 <hint type="destinationlabel">
872 <x>251</x> No newline at end of file
904 <x>251</x>
873 <y>167</y> No newline at end of file
905 <y>167</y>
874 </hint> No newline at end of file
906 </hint>
875 </hints> No newline at end of file
907 </hints>
876 </connection> No newline at end of file
908 </connection>
877 <connection> No newline at end of file
909 <connection>
878 <sender>chkDevC</sender> No newline at end of file
910 <sender>chkDevC</sender>
879 <signal>toggled(bool)</signal> No newline at end of file
911 <signal>toggled(bool)</signal>
880 <receiver>grpDevC</receiver> No newline at end of file
912 <receiver>grpDevC</receiver>
881 <slot>setEnabled(bool)</slot> No newline at end of file
913 <slot>setEnabled(bool)</slot>
882 <hints> No newline at end of file
914 <hints>
883 <hint type="sourcelabel"> No newline at end of file
915 <hint type="sourcelabel">
884 <x>407</x> No newline at end of file
916 <x>407</x>
885 <y>86</y> No newline at end of file
917 <y>86</y>
886 </hint> No newline at end of file
918 </hint>
887 <hint type="destinationlabel"> No newline at end of file
919 <hint type="destinationlabel">
888 <x>407</x> No newline at end of file
920 <x>407</x>
889 <y>167</y> No newline at end of file
921 <y>167</y>
890 </hint> No newline at end of file
922 </hint>
891 </hints> No newline at end of file
923 </hints>
892 </connection> No newline at end of file
924 </connection>
893 <connection> No newline at end of file
925 <connection>
894 <sender>chkDevD</sender> No newline at end of file
926 <sender>chkDevD</sender>
895 <signal>toggled(bool)</signal> No newline at end of file
927 <signal>toggled(bool)</signal>
896 <receiver>grpDevD</receiver> No newline at end of file
928 <receiver>grpDevD</receiver>
897 <slot>setEnabled(bool)</slot> No newline at end of file
929 <slot>setEnabled(bool)</slot>
898 <hints> No newline at end of file
930 <hints>
899 <hint type="sourcelabel"> No newline at end of file
931 <hint type="sourcelabel">
900 <x>563</x> No newline at end of file
932 <x>563</x>
901 <y>86</y> No newline at end of file
933 <y>86</y>
902 </hint> No newline at end of file
934 </hint>
903 <hint type="destinationlabel"> No newline at end of file
935 <hint type="destinationlabel">
904 <x>563</x> No newline at end of file
936 <x>563</x>
905 <y>167</y> No newline at end of file
937 <y>167</y>
906 </hint> No newline at end of file
938 </hint>
907 </hints> No newline at end of file
939 </hints>
908 </connection> No newline at end of file
940 </connection>
909 </connections> No newline at end of file
941 </connections>
910 </ui> No newline at end of file
942 </ui>
@@ -1,569 +1,577
1 # -*- coding: utf-8 -*- No newline at end of file
1 # -*- coding: utf-8 -*-
2 No newline at end of file
2
3 # Form implementation generated from reading ui file '/home/ricardoar/principal/JRO_SVN/eric4/jro_backup_manager/ui/MainWindow.ui' No newline at end of file
3 # Form implementation generated from reading ui file '/home/ricardoar/principal/JRO_SVN/eric4/jro_backup_manager/ui/MainWindow.ui'
4 #
4 #
No newline at end of file
5 # Created: Tue May 4 17:29:42 2010 No newline at end of file
5 # Created: Tue May 4 16:05:06 2010 No newline at end of file
6 # by: PyQt4 UI code generator 4.7.3 No newline at end of file
6 # by: PyQt4 UI code generator 4.7.3
7 # No newline at end of file
7 #
8 # WARNING! All changes made in this file will be lost! No newline at end of file
8 # WARNING! All changes made in this file will be lost!
9 No newline at end of file
9
10 from PyQt4 import QtCore, QtGui No newline at end of file
10 from PyQt4 import QtCore, QtGui
11 No newline at end of file
11
12 class Ui_MainWindow(object): No newline at end of file
12 class Ui_MainWindow(object):
13 def setupUi(self, MainWindow): No newline at end of file
13 def setupUi(self, MainWindow):
14 MainWindow.setObjectName("MainWindow")
14 MainWindow.setObjectName("MainWindow")
No newline at end of file
15 MainWindow.resize(809, 766) No newline at end of file
15 MainWindow.resize(745, 766) No newline at end of file
16 self.centralwidget = QtGui.QWidget(MainWindow) No newline at end of file
16 self.centralwidget = QtGui.QWidget(MainWindow)
17 self.centralwidget.setObjectName("centralwidget") No newline at end of file
17 self.centralwidget.setObjectName("centralwidget")
18 self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget) No newline at end of file
18 self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget)
19 self.verticalLayout.setObjectName("verticalLayout") No newline at end of file
19 self.verticalLayout.setObjectName("verticalLayout")
20 self.tabWidget = QtGui.QTabWidget(self.centralwidget) No newline at end of file
20 self.tabWidget = QtGui.QTabWidget(self.centralwidget)
21 self.tabWidget.setEnabled(True) No newline at end of file
21 self.tabWidget.setEnabled(True)
22 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) No newline at end of file
22 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
23 sizePolicy.setHorizontalStretch(0) No newline at end of file
23 sizePolicy.setHorizontalStretch(0)
24 sizePolicy.setVerticalStretch(0) No newline at end of file
24 sizePolicy.setVerticalStretch(0)
25 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth()) No newline at end of file
25 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth())
26 self.tabWidget.setSizePolicy(sizePolicy) No newline at end of file
26 self.tabWidget.setSizePolicy(sizePolicy)
27 self.tabWidget.setObjectName("tabWidget") No newline at end of file
27 self.tabWidget.setObjectName("tabWidget")
28 self.tabParameters = QtGui.QWidget() No newline at end of file
28 self.tabParameters = QtGui.QWidget()
29 self.tabParameters.setEnabled(True) No newline at end of file
29 self.tabParameters.setEnabled(True)
30 self.tabParameters.setObjectName("tabParameters") No newline at end of file
30 self.tabParameters.setObjectName("tabParameters")
31 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters) No newline at end of file
31 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters)
32 self.verticalLayout_2.setObjectName("verticalLayout_2") No newline at end of file
32 self.verticalLayout_2.setObjectName("verticalLayout_2")
33 self.horizontalLayout = QtGui.QHBoxLayout() No newline at end of file
33 self.horizontalLayout = QtGui.QHBoxLayout()
34 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
34 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
35 self.horizontalLayout.setObjectName("horizontalLayout") No newline at end of file
35 self.horizontalLayout.setObjectName("horizontalLayout")
36 self.txtDpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
36 self.txtDpath = QtGui.QLineEdit(self.tabParameters)
37 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) No newline at end of file
37 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
38 sizePolicy.setHorizontalStretch(0) No newline at end of file
38 sizePolicy.setHorizontalStretch(0)
39 sizePolicy.setVerticalStretch(0) No newline at end of file
39 sizePolicy.setVerticalStretch(0)
40 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
40 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth())
41 self.txtDpath.setSizePolicy(sizePolicy) No newline at end of file
41 self.txtDpath.setSizePolicy(sizePolicy)
42 self.txtDpath.setObjectName("txtDpath") No newline at end of file
42 self.txtDpath.setObjectName("txtDpath")
43 self.horizontalLayout.addWidget(self.txtDpath) No newline at end of file
43 self.horizontalLayout.addWidget(self.txtDpath)
44 self.btnDpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
44 self.btnDpath = QtGui.QPushButton(self.tabParameters)
45 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
45 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
46 sizePolicy.setHorizontalStretch(0) No newline at end of file
46 sizePolicy.setHorizontalStretch(0)
47 sizePolicy.setVerticalStretch(0) No newline at end of file
47 sizePolicy.setVerticalStretch(0)
48 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
48 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth())
49 self.btnDpath.setSizePolicy(sizePolicy) No newline at end of file
49 self.btnDpath.setSizePolicy(sizePolicy)
50 self.btnDpath.setCheckable(False) No newline at end of file
50 self.btnDpath.setCheckable(False)
51 self.btnDpath.setObjectName("btnDpath") No newline at end of file
51 self.btnDpath.setObjectName("btnDpath")
52 self.horizontalLayout.addWidget(self.btnDpath) No newline at end of file
52 self.horizontalLayout.addWidget(self.btnDpath)
53 self.verticalLayout_2.addLayout(self.horizontalLayout) No newline at end of file
53 self.verticalLayout_2.addLayout(self.horizontalLayout)
54 self.horizontalLayout_3 = QtGui.QHBoxLayout() No newline at end of file
54 self.horizontalLayout_3 = QtGui.QHBoxLayout()
55 self.horizontalLayout_3.setObjectName("horizontalLayout_3") No newline at end of file
55 self.horizontalLayout_3.setObjectName("horizontalLayout_3")
56 self.txtRpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
56 self.txtRpath = QtGui.QLineEdit(self.tabParameters)
57 self.txtRpath.setObjectName("txtRpath") No newline at end of file
57 self.txtRpath.setObjectName("txtRpath")
58 self.horizontalLayout_3.addWidget(self.txtRpath) No newline at end of file
58 self.horizontalLayout_3.addWidget(self.txtRpath)
59 self.btnRpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
59 self.btnRpath = QtGui.QPushButton(self.tabParameters)
60 self.btnRpath.setObjectName("btnRpath") No newline at end of file
60 self.btnRpath.setObjectName("btnRpath")
61 self.horizontalLayout_3.addWidget(self.btnRpath) No newline at end of file
61 self.horizontalLayout_3.addWidget(self.btnRpath)
62 self.verticalLayout_2.addLayout(self.horizontalLayout_3) No newline at end of file
62 self.verticalLayout_2.addLayout(self.horizontalLayout_3)
63 self.lblDtype = QtGui.QLabel(self.tabParameters) No newline at end of file
63 self.lblDtype = QtGui.QLabel(self.tabParameters)
64 self.lblDtype.setObjectName("lblDtype") No newline at end of file
64 self.lblDtype.setObjectName("lblDtype")
65 self.verticalLayout_2.addWidget(self.lblDtype) No newline at end of file
65 self.verticalLayout_2.addWidget(self.lblDtype)
66 self.horizontalLayout_4 = QtGui.QHBoxLayout() No newline at end of file
66 self.horizontalLayout_4 = QtGui.QHBoxLayout()
67 self.horizontalLayout_4.setObjectName("horizontalLayout_4") No newline at end of file
67 self.horizontalLayout_4.setObjectName("horizontalLayout_4")
68 self.lstDtype = QtGui.QComboBox(self.tabParameters) No newline at end of file
68 self.lstDtype = QtGui.QComboBox(self.tabParameters)
69 self.lstDtype.setObjectName("lstDtype") No newline at end of file
69 self.lstDtype.setObjectName("lstDtype")
70 self.lstDtype.addItem("") No newline at end of file
70 self.lstDtype.addItem("")
71 self.lstDtype.addItem("") No newline at end of file
71 self.lstDtype.addItem("")
72 self.lstDtype.addItem("") No newline at end of file
72 self.lstDtype.addItem("")
73 self.lstDtype.addItem("") No newline at end of file
73 self.lstDtype.addItem("")
74 self.horizontalLayout_4.addWidget(self.lstDtype) No newline at end of file
74 self.horizontalLayout_4.addWidget(self.lstDtype)
75 self.txtDtype = QtGui.QLineEdit(self.tabParameters) No newline at end of file
75 self.txtDtype = QtGui.QLineEdit(self.tabParameters)
76 self.txtDtype.setReadOnly(True) No newline at end of file
76 self.txtDtype.setReadOnly(True)
77 self.txtDtype.setObjectName("txtDtype") No newline at end of file
77 self.txtDtype.setObjectName("txtDtype")
78 self.horizontalLayout_4.addWidget(self.txtDtype) No newline at end of file
78 self.horizontalLayout_4.addWidget(self.txtDtype)
79 self.chkMST = QtGui.QCheckBox(self.tabParameters) No newline at end of file
79 self.chkMST = QtGui.QCheckBox(self.tabParameters)
80 self.chkMST.setObjectName("chkMST") No newline at end of file
80 self.chkMST.setObjectName("chkMST")
81 self.horizontalLayout_4.addWidget(self.chkMST) No newline at end of file
81 self.horizontalLayout_4.addWidget(self.chkMST)
82 self.verticalLayout_2.addLayout(self.horizontalLayout_4) No newline at end of file
82 self.verticalLayout_2.addLayout(self.horizontalLayout_4)
83 self.horizontalLayout_6 = QtGui.QHBoxLayout() No newline at end of file
83 self.horizontalLayout_6 = QtGui.QHBoxLayout()
84 self.horizontalLayout_6.setObjectName("horizontalLayout_6") No newline at end of file
84 self.horizontalLayout_6.setObjectName("horizontalLayout_6")
85 self.lblElabel = QtGui.QLabel(self.tabParameters) No newline at end of file
85 self.lblElabel = QtGui.QLabel(self.tabParameters)
86 self.lblElabel.setObjectName("lblElabel") No newline at end of file
86 self.lblElabel.setObjectName("lblElabel")
87 self.horizontalLayout_6.addWidget(self.lblElabel) No newline at end of file
87 self.horizontalLayout_6.addWidget(self.lblElabel)
88 self.lblCopys = QtGui.QLabel(self.tabParameters) No newline at end of file
88 self.lblCopys = QtGui.QLabel(self.tabParameters)
89 self.lblCopys.setObjectName("lblCopys") No newline at end of file
89 self.lblCopys.setObjectName("lblCopys")
90 self.horizontalLayout_6.addWidget(self.lblCopys) No newline at end of file
90 self.horizontalLayout_6.addWidget(self.lblCopys)
91 self.verticalLayout_2.addLayout(self.horizontalLayout_6) No newline at end of file
91 self.verticalLayout_2.addLayout(self.horizontalLayout_6)
92 self.horizontalLayout_5 = QtGui.QHBoxLayout() No newline at end of file
92 self.horizontalLayout_5 = QtGui.QHBoxLayout()
93 self.horizontalLayout_5.setObjectName("horizontalLayout_5") No newline at end of file
93 self.horizontalLayout_5.setObjectName("horizontalLayout_5")
94 self.txtElabel = QtGui.QLineEdit(self.tabParameters) No newline at end of file
94 self.txtElabel = QtGui.QLineEdit(self.tabParameters)
95 self.txtElabel.setObjectName("txtElabel") No newline at end of file
95 self.txtElabel.setObjectName("txtElabel")
96 self.horizontalLayout_5.addWidget(self.txtElabel) No newline at end of file
96 self.horizontalLayout_5.addWidget(self.txtElabel)
97 self.txtCopys = QtGui.QLineEdit(self.tabParameters) No newline at end of file
97 self.txtCopys = QtGui.QLineEdit(self.tabParameters)
98 self.txtCopys.setObjectName("txtCopys") No newline at end of file
98 self.txtCopys.setObjectName("txtCopys")
99 self.horizontalLayout_5.addWidget(self.txtCopys) No newline at end of file
99 self.horizontalLayout_5.addWidget(self.txtCopys)
100 self.verticalLayout_2.addLayout(self.horizontalLayout_5) No newline at end of file
100 self.verticalLayout_2.addLayout(self.horizontalLayout_5)
101 self.horizontalLayout_7 = QtGui.QHBoxLayout() No newline at end of file
101 self.horizontalLayout_7 = QtGui.QHBoxLayout()
102 self.horizontalLayout_7.setObjectName("horizontalLayout_7") No newline at end of file
102 self.horizontalLayout_7.setObjectName("horizontalLayout_7")
103 self.lblStartDay = QtGui.QLabel(self.tabParameters) No newline at end of file
103 self.lblStartDay = QtGui.QLabel(self.tabParameters)
104 self.lblStartDay.setObjectName("lblStartDay") No newline at end of file
104 self.lblStartDay.setObjectName("lblStartDay")
105 self.horizontalLayout_7.addWidget(self.lblStartDay) No newline at end of file
105 self.horizontalLayout_7.addWidget(self.lblStartDay)
106 self.lblStopDay = QtGui.QLabel(self.tabParameters) No newline at end of file
106 self.lblStopDay = QtGui.QLabel(self.tabParameters)
107 self.lblStopDay.setObjectName("lblStopDay") No newline at end of file
107 self.lblStopDay.setObjectName("lblStopDay")
108 self.horizontalLayout_7.addWidget(self.lblStopDay) No newline at end of file
108 self.horizontalLayout_7.addWidget(self.lblStopDay)
109 self.verticalLayout_2.addLayout(self.horizontalLayout_7) No newline at end of file
109 self.verticalLayout_2.addLayout(self.horizontalLayout_7)
110 self.horizontalLayout_8 = QtGui.QHBoxLayout() No newline at end of file
110 self.horizontalLayout_8 = QtGui.QHBoxLayout()
111 self.horizontalLayout_8.setObjectName("horizontalLayout_8") No newline at end of file
111 self.horizontalLayout_8.setObjectName("horizontalLayout_8")
112 self.lstStartDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
112 self.lstStartDay = QtGui.QComboBox(self.tabParameters)
113 self.lstStartDay.setObjectName("lstStartDay") No newline at end of file
113 self.lstStartDay.setObjectName("lstStartDay")
114 self.horizontalLayout_8.addWidget(self.lstStartDay) No newline at end of file
114 self.horizontalLayout_8.addWidget(self.lstStartDay)
115 self.lstStopDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
115 self.lstStopDay = QtGui.QComboBox(self.tabParameters)
116 self.lstStopDay.setObjectName("lstStopDay") No newline at end of file
116 self.lstStopDay.setObjectName("lstStopDay")
117 self.horizontalLayout_8.addWidget(self.lstStopDay) No newline at end of file
117 self.horizontalLayout_8.addWidget(self.lstStopDay)
118 self.verticalLayout_2.addLayout(self.horizontalLayout_8) No newline at end of file
118 self.verticalLayout_2.addLayout(self.horizontalLayout_8)
119 self.tabWidget.addTab(self.tabParameters, "") No newline at end of file
119 self.tabWidget.addTab(self.tabParameters, "")
120 self.tabDconfig = QtGui.QWidget() No newline at end of file
120 self.tabDconfig = QtGui.QWidget()
121 self.tabDconfig.setEnabled(True) No newline at end of file
121 self.tabDconfig.setEnabled(True)
122 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
122 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
123 sizePolicy.setHorizontalStretch(0) No newline at end of file
123 sizePolicy.setHorizontalStretch(0)
124 sizePolicy.setVerticalStretch(0) No newline at end of file
124 sizePolicy.setVerticalStretch(0)
125 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth()) No newline at end of file
125 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth())
126 self.tabDconfig.setSizePolicy(sizePolicy) No newline at end of file
126 self.tabDconfig.setSizePolicy(sizePolicy)
127 self.tabDconfig.setObjectName("tabDconfig") No newline at end of file
127 self.tabDconfig.setObjectName("tabDconfig")
128 self.verticalLayout_3 = QtGui.QVBoxLayout(self.tabDconfig) No newline at end of file
128 self.verticalLayout_3 = QtGui.QVBoxLayout(self.tabDconfig)
129 self.verticalLayout_3.setObjectName("verticalLayout_3") No newline at end of file
129 self.verticalLayout_3.setObjectName("verticalLayout_3")
130 self.gridLayout = QtGui.QGridLayout() No newline at end of file
130 self.gridLayout = QtGui.QGridLayout()
131 self.gridLayout.setObjectName("gridLayout") No newline at end of file
131 self.gridLayout.setObjectName("gridLayout")
132 self.verticalLayout_15 = QtGui.QVBoxLayout() No newline at end of file
132 self.verticalLayout_15 = QtGui.QVBoxLayout()
133 self.verticalLayout_15.setObjectName("verticalLayout_15") No newline at end of file
133 self.verticalLayout_15.setObjectName("verticalLayout_15")
134 self.chkDevA = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
134 self.chkDevA = QtGui.QCheckBox(self.tabDconfig)
135 self.chkDevA.setChecked(True) No newline at end of file
135 self.chkDevA.setChecked(True)
136 self.chkDevA.setObjectName("chkDevA") No newline at end of file
136 self.chkDevA.setObjectName("chkDevA")
137 self.verticalLayout_15.addWidget(self.chkDevA) No newline at end of file
137 self.verticalLayout_15.addWidget(self.chkDevA)
138 self.grpDevA = QtGui.QWidget(self.tabDconfig) No newline at end of file
138 self.grpDevA = QtGui.QWidget(self.tabDconfig)
139 self.grpDevA.setObjectName("grpDevA") No newline at end of file
139 self.grpDevA.setObjectName("grpDevA")
140 self.verticalLayout_11 = QtGui.QVBoxLayout(self.grpDevA) No newline at end of file
140 self.verticalLayout_11 = QtGui.QVBoxLayout(self.grpDevA)
141 self.verticalLayout_11.setObjectName("verticalLayout_11") No newline at end of file
141 self.verticalLayout_11.setObjectName("verticalLayout_11")
142 self.txtDeviceA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
142 self.txtDeviceA = QtGui.QLineEdit(self.grpDevA)
143 self.txtDeviceA.setObjectName("txtDeviceA") No newline at end of file
143 self.txtDeviceA.setObjectName("txtDeviceA")
144 self.verticalLayout_11.addWidget(self.txtDeviceA) No newline at end of file
144 self.verticalLayout_11.addWidget(self.txtDeviceA)
145 self.txtBspeedA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
145 self.txtBspeedA = QtGui.QLineEdit(self.grpDevA)
146 self.txtBspeedA.setObjectName("txtBspeedA") No newline at end of file
146 self.txtBspeedA.setObjectName("txtBspeedA")
147 self.verticalLayout_11.addWidget(self.txtBspeedA) No newline at end of file
147 self.verticalLayout_11.addWidget(self.txtBspeedA)
148 self.txtBmodeA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
148 self.txtBmodeA = QtGui.QLineEdit(self.grpDevA)
149 self.txtBmodeA.setObjectName("txtBmodeA") No newline at end of file
149 self.txtBmodeA.setObjectName("txtBmodeA")
150 self.verticalLayout_11.addWidget(self.txtBmodeA) No newline at end of file
150 self.verticalLayout_11.addWidget(self.txtBmodeA)
151 self.btnTdevA = QtGui.QPushButton(self.grpDevA) No newline at end of file
151 self.btnTdevA = QtGui.QPushButton(self.grpDevA)
152 self.btnTdevA.setObjectName("btnTdevA") No newline at end of file
152 self.btnTdevA.setObjectName("btnTdevA")
153 self.verticalLayout_11.addWidget(self.btnTdevA) No newline at end of file
153 self.verticalLayout_11.addWidget(self.btnTdevA)
154 self.verticalLayout_15.addWidget(self.grpDevA) No newline at end of file
154 self.verticalLayout_15.addWidget(self.grpDevA)
155 self.gridLayout.addLayout(self.verticalLayout_15, 0, 0, 1, 1) No newline at end of file
155 self.gridLayout.addLayout(self.verticalLayout_15, 0, 0, 1, 1)
156 self.verticalLayout_16 = QtGui.QVBoxLayout() No newline at end of file
156 self.verticalLayout_16 = QtGui.QVBoxLayout()
157 self.verticalLayout_16.setObjectName("verticalLayout_16") No newline at end of file
157 self.verticalLayout_16.setObjectName("verticalLayout_16")
158 self.chkDevB = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
158 self.chkDevB = QtGui.QCheckBox(self.tabDconfig)
159 self.chkDevB.setChecked(True) No newline at end of file
159 self.chkDevB.setChecked(True)
160 self.chkDevB.setObjectName("chkDevB") No newline at end of file
160 self.chkDevB.setObjectName("chkDevB")
161 self.verticalLayout_16.addWidget(self.chkDevB) No newline at end of file
161 self.verticalLayout_16.addWidget(self.chkDevB)
162 self.grpDevB = QtGui.QWidget(self.tabDconfig) No newline at end of file
162 self.grpDevB = QtGui.QWidget(self.tabDconfig)
163 self.grpDevB.setObjectName("grpDevB") No newline at end of file
163 self.grpDevB.setObjectName("grpDevB")
164 self.verticalLayout_12 = QtGui.QVBoxLayout(self.grpDevB) No newline at end of file
164 self.verticalLayout_12 = QtGui.QVBoxLayout(self.grpDevB)
165 self.verticalLayout_12.setObjectName("verticalLayout_12") No newline at end of file
165 self.verticalLayout_12.setObjectName("verticalLayout_12")
166 self.txtDeviceB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
166 self.txtDeviceB = QtGui.QLineEdit(self.grpDevB)
167 self.txtDeviceB.setObjectName("txtDeviceB") No newline at end of file
167 self.txtDeviceB.setObjectName("txtDeviceB")
168 self.verticalLayout_12.addWidget(self.txtDeviceB) No newline at end of file
168 self.verticalLayout_12.addWidget(self.txtDeviceB)
169 self.txtBspeedB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
169 self.txtBspeedB = QtGui.QLineEdit(self.grpDevB)
170 self.txtBspeedB.setObjectName("txtBspeedB") No newline at end of file
170 self.txtBspeedB.setObjectName("txtBspeedB")
171 self.verticalLayout_12.addWidget(self.txtBspeedB) No newline at end of file
171 self.verticalLayout_12.addWidget(self.txtBspeedB)
172 self.txtBmodeB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
172 self.txtBmodeB = QtGui.QLineEdit(self.grpDevB)
173 self.txtBmodeB.setObjectName("txtBmodeB") No newline at end of file
173 self.txtBmodeB.setObjectName("txtBmodeB")
174 self.verticalLayout_12.addWidget(self.txtBmodeB) No newline at end of file
174 self.verticalLayout_12.addWidget(self.txtBmodeB)
175 self.btnTdevB = QtGui.QPushButton(self.grpDevB) No newline at end of file
175 self.btnTdevB = QtGui.QPushButton(self.grpDevB)
176 self.btnTdevB.setObjectName("btnTdevB") No newline at end of file
176 self.btnTdevB.setObjectName("btnTdevB")
177 self.verticalLayout_12.addWidget(self.btnTdevB) No newline at end of file
177 self.verticalLayout_12.addWidget(self.btnTdevB)
178 self.verticalLayout_16.addWidget(self.grpDevB) No newline at end of file
178 self.verticalLayout_16.addWidget(self.grpDevB)
179 self.gridLayout.addLayout(self.verticalLayout_16, 0, 1, 1, 1) No newline at end of file
179 self.gridLayout.addLayout(self.verticalLayout_16, 0, 1, 1, 1)
180 self.verticalLayout_17 = QtGui.QVBoxLayout() No newline at end of file
180 self.verticalLayout_17 = QtGui.QVBoxLayout()
181 self.verticalLayout_17.setObjectName("verticalLayout_17") No newline at end of file
181 self.verticalLayout_17.setObjectName("verticalLayout_17")
182 self.chkDevC = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
182 self.chkDevC = QtGui.QCheckBox(self.tabDconfig)
183 self.chkDevC.setChecked(True) No newline at end of file
183 self.chkDevC.setChecked(True)
184 self.chkDevC.setObjectName("chkDevC") No newline at end of file
184 self.chkDevC.setObjectName("chkDevC")
185 self.verticalLayout_17.addWidget(self.chkDevC) No newline at end of file
185 self.verticalLayout_17.addWidget(self.chkDevC)
186 self.grpDevC = QtGui.QWidget(self.tabDconfig) No newline at end of file
186 self.grpDevC = QtGui.QWidget(self.tabDconfig)
187 self.grpDevC.setObjectName("grpDevC") No newline at end of file
187 self.grpDevC.setObjectName("grpDevC")
188 self.verticalLayout_13 = QtGui.QVBoxLayout(self.grpDevC) No newline at end of file
188 self.verticalLayout_13 = QtGui.QVBoxLayout(self.grpDevC)
189 self.verticalLayout_13.setObjectName("verticalLayout_13") No newline at end of file
189 self.verticalLayout_13.setObjectName("verticalLayout_13")
190 self.txtDeviceC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
190 self.txtDeviceC = QtGui.QLineEdit(self.grpDevC)
191 self.txtDeviceC.setObjectName("txtDeviceC") No newline at end of file
191 self.txtDeviceC.setObjectName("txtDeviceC")
192 self.verticalLayout_13.addWidget(self.txtDeviceC) No newline at end of file
192 self.verticalLayout_13.addWidget(self.txtDeviceC)
193 self.txtBspeedC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
193 self.txtBspeedC = QtGui.QLineEdit(self.grpDevC)
194 self.txtBspeedC.setObjectName("txtBspeedC") No newline at end of file
194 self.txtBspeedC.setObjectName("txtBspeedC")
195 self.verticalLayout_13.addWidget(self.txtBspeedC) No newline at end of file
195 self.verticalLayout_13.addWidget(self.txtBspeedC)
196 self.txtBmodeC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
196 self.txtBmodeC = QtGui.QLineEdit(self.grpDevC)
197 self.txtBmodeC.setObjectName("txtBmodeC") No newline at end of file
197 self.txtBmodeC.setObjectName("txtBmodeC")
198 self.verticalLayout_13.addWidget(self.txtBmodeC) No newline at end of file
198 self.verticalLayout_13.addWidget(self.txtBmodeC)
199 self.btnTdevC = QtGui.QPushButton(self.grpDevC) No newline at end of file
199 self.btnTdevC = QtGui.QPushButton(self.grpDevC)
200 self.btnTdevC.setObjectName("btnTdevC") No newline at end of file
200 self.btnTdevC.setObjectName("btnTdevC")
201 self.verticalLayout_13.addWidget(self.btnTdevC) No newline at end of file
201 self.verticalLayout_13.addWidget(self.btnTdevC)
202 self.verticalLayout_17.addWidget(self.grpDevC) No newline at end of file
202 self.verticalLayout_17.addWidget(self.grpDevC)
203 self.gridLayout.addLayout(self.verticalLayout_17, 0, 2, 1, 1) No newline at end of file
203 self.gridLayout.addLayout(self.verticalLayout_17, 0, 2, 1, 1)
204 self.verticalLayout_18 = QtGui.QVBoxLayout() No newline at end of file
204 self.verticalLayout_18 = QtGui.QVBoxLayout()
205 self.verticalLayout_18.setObjectName("verticalLayout_18") No newline at end of file
205 self.verticalLayout_18.setObjectName("verticalLayout_18")
206 self.chkDevD = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
206 self.chkDevD = QtGui.QCheckBox(self.tabDconfig)
207 self.chkDevD.setChecked(True) No newline at end of file
207 self.chkDevD.setChecked(True)
208 self.chkDevD.setObjectName("chkDevD") No newline at end of file
208 self.chkDevD.setObjectName("chkDevD")
209 self.verticalLayout_18.addWidget(self.chkDevD) No newline at end of file
209 self.verticalLayout_18.addWidget(self.chkDevD)
210 self.grpDevD = QtGui.QWidget(self.tabDconfig) No newline at end of file
210 self.grpDevD = QtGui.QWidget(self.tabDconfig)
211 self.grpDevD.setObjectName("grpDevD") No newline at end of file
211 self.grpDevD.setObjectName("grpDevD")
212 self.verticalLayout_14 = QtGui.QVBoxLayout(self.grpDevD) No newline at end of file
212 self.verticalLayout_14 = QtGui.QVBoxLayout(self.grpDevD)
213 self.verticalLayout_14.setObjectName("verticalLayout_14") No newline at end of file
213 self.verticalLayout_14.setObjectName("verticalLayout_14")
214 self.txtDeviceD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
214 self.txtDeviceD = QtGui.QLineEdit(self.grpDevD)
215 self.txtDeviceD.setObjectName("txtDeviceD") No newline at end of file
215 self.txtDeviceD.setObjectName("txtDeviceD")
216 self.verticalLayout_14.addWidget(self.txtDeviceD) No newline at end of file
216 self.verticalLayout_14.addWidget(self.txtDeviceD)
217 self.txtBspeedD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
217 self.txtBspeedD = QtGui.QLineEdit(self.grpDevD)
218 self.txtBspeedD.setObjectName("txtBspeedD") No newline at end of file
218 self.txtBspeedD.setObjectName("txtBspeedD")
219 self.verticalLayout_14.addWidget(self.txtBspeedD) No newline at end of file
219 self.verticalLayout_14.addWidget(self.txtBspeedD)
220 self.txtBmodeD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
220 self.txtBmodeD = QtGui.QLineEdit(self.grpDevD)
221 self.txtBmodeD.setObjectName("txtBmodeD") No newline at end of file
221 self.txtBmodeD.setObjectName("txtBmodeD")
222 self.verticalLayout_14.addWidget(self.txtBmodeD) No newline at end of file
222 self.verticalLayout_14.addWidget(self.txtBmodeD)
223 self.btnTdevD = QtGui.QPushButton(self.grpDevD) No newline at end of file
223 self.btnTdevD = QtGui.QPushButton(self.grpDevD)
224 self.btnTdevD.setObjectName("btnTdevD") No newline at end of file
224 self.btnTdevD.setObjectName("btnTdevD")
225 self.verticalLayout_14.addWidget(self.btnTdevD) No newline at end of file
225 self.verticalLayout_14.addWidget(self.btnTdevD)
226 self.verticalLayout_18.addWidget(self.grpDevD) No newline at end of file
226 self.verticalLayout_18.addWidget(self.grpDevD)
227 self.gridLayout.addLayout(self.verticalLayout_18, 0, 3, 1, 1) No newline at end of file
227 self.gridLayout.addLayout(self.verticalLayout_18, 0, 3, 1, 1)
228 self.verticalLayout_19 = QtGui.QVBoxLayout() No newline at end of file
228 self.verticalLayout_19 = QtGui.QVBoxLayout()
229 self.verticalLayout_19.setObjectName("verticalLayout_19") No newline at end of file
229 self.verticalLayout_19.setObjectName("verticalLayout_19")
230 self.label_2 = QtGui.QLabel(self.tabDconfig) No newline at end of file
230 self.label_2 = QtGui.QLabel(self.tabDconfig)
231 self.label_2.setText("") No newline at end of file
231 self.label_2.setText("")
232 self.label_2.setObjectName("label_2") No newline at end of file
232 self.label_2.setObjectName("label_2")
233 self.verticalLayout_19.addWidget(self.label_2) No newline at end of file
233 self.verticalLayout_19.addWidget(self.label_2)
234 self.lblDevice = QtGui.QLabel(self.tabDconfig) No newline at end of file
234 self.lblDevice = QtGui.QLabel(self.tabDconfig)
235 self.lblDevice.setObjectName("lblDevice") No newline at end of file
235 self.lblDevice.setObjectName("lblDevice")
236 self.verticalLayout_19.addWidget(self.lblDevice) No newline at end of file
236 self.verticalLayout_19.addWidget(self.lblDevice)
237 self.lblBspeed = QtGui.QLabel(self.tabDconfig) No newline at end of file
237 self.lblBspeed = QtGui.QLabel(self.tabDconfig)
238 self.lblBspeed.setObjectName("lblBspeed") No newline at end of file
238 self.lblBspeed.setObjectName("lblBspeed")
239 self.verticalLayout_19.addWidget(self.lblBspeed) No newline at end of file
239 self.verticalLayout_19.addWidget(self.lblBspeed)
240 self.lblBmode = QtGui.QLabel(self.tabDconfig) No newline at end of file
240 self.lblBmode = QtGui.QLabel(self.tabDconfig)
241 self.lblBmode.setObjectName("lblBmode") No newline at end of file
241 self.lblBmode.setObjectName("lblBmode")
242 self.verticalLayout_19.addWidget(self.lblBmode) No newline at end of file
242 self.verticalLayout_19.addWidget(self.lblBmode)
243 self.label = QtGui.QLabel(self.tabDconfig) No newline at end of file
243 self.label = QtGui.QLabel(self.tabDconfig)
244 self.label.setText("") No newline at end of file
244 self.label.setText("")
245 self.label.setObjectName("label") No newline at end of file
245 self.label.setObjectName("label")
246 self.verticalLayout_19.addWidget(self.label) No newline at end of file
246 self.verticalLayout_19.addWidget(self.label)
247 self.gridLayout.addLayout(self.verticalLayout_19, 0, 4, 1, 1) No newline at end of file
247 self.gridLayout.addLayout(self.verticalLayout_19, 0, 4, 1, 1)
248 self.verticalLayout_3.addLayout(self.gridLayout) No newline at end of file
248 self.verticalLayout_3.addLayout(self.gridLayout)
249 self.horizontalLayout_9 = QtGui.QHBoxLayout() No newline at end of file
249 self.horizontalLayout_9 = QtGui.QHBoxLayout()
250 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
250 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize)
251 self.horizontalLayout_9.setObjectName("horizontalLayout_9") No newline at end of file
251 self.horizontalLayout_9.setObjectName("horizontalLayout_9")
252 self.lblBprocess = QtGui.QLabel(self.tabDconfig) No newline at end of file
252 self.lblBprocess = QtGui.QLabel(self.tabDconfig)
253 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
253 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
254 sizePolicy.setHorizontalStretch(0) No newline at end of file
254 sizePolicy.setHorizontalStretch(0)
255 sizePolicy.setVerticalStretch(0) No newline at end of file
255 sizePolicy.setVerticalStretch(0)
256 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth()) No newline at end of file
256 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth())
257 self.lblBprocess.setSizePolicy(sizePolicy) No newline at end of file
257 self.lblBprocess.setSizePolicy(sizePolicy)
258 self.lblBprocess.setObjectName("lblBprocess") No newline at end of file
258 self.lblBprocess.setObjectName("lblBprocess")
259 self.horizontalLayout_9.addWidget(self.lblBprocess) No newline at end of file
259 self.horizontalLayout_9.addWidget(self.lblBprocess)
260 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
260 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig)
261 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
261 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
262 sizePolicy.setHorizontalStretch(0) No newline at end of file
262 sizePolicy.setHorizontalStretch(0)
263 sizePolicy.setVerticalStretch(0) No newline at end of file
263 sizePolicy.setVerticalStretch(0)
264 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth()) No newline at end of file
264 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth())
265 self.chkSimultaneously.setSizePolicy(sizePolicy) No newline at end of file
265 self.chkSimultaneously.setSizePolicy(sizePolicy)
266 self.chkSimultaneously.setObjectName("chkSimultaneously") No newline at end of file
266 self.chkSimultaneously.setObjectName("chkSimultaneously")
267 self.horizontalLayout_9.addWidget(self.chkSimultaneously) No newline at end of file
267 self.horizontalLayout_9.addWidget(self.chkSimultaneously)
268 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
268 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig)
269 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
269 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
270 sizePolicy.setHorizontalStretch(0) No newline at end of file
270 sizePolicy.setHorizontalStretch(0)
271 sizePolicy.setVerticalStretch(0) No newline at end of file
271 sizePolicy.setVerticalStretch(0)
272 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth()) No newline at end of file
272 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth())
273 self.chkSequentially.setSizePolicy(sizePolicy) No newline at end of file
273 self.chkSequentially.setSizePolicy(sizePolicy)
274 self.chkSequentially.setChecked(True) No newline at end of file
274 self.chkSequentially.setChecked(True)
275 self.chkSequentially.setObjectName("chkSequentially") No newline at end of file
275 self.chkSequentially.setObjectName("chkSequentially")
276 self.horizontalLayout_9.addWidget(self.chkSequentially) No newline at end of file
276 self.horizontalLayout_9.addWidget(self.chkSequentially)
277 self.verticalLayout_3.addLayout(self.horizontalLayout_9) No newline at end of file
277 self.verticalLayout_3.addLayout(self.horizontalLayout_9)
278 self.horizontalLayout_11 = QtGui.QHBoxLayout() No newline at end of file
278 self.horizontalLayout_11 = QtGui.QHBoxLayout()
279 self.horizontalLayout_11.setSpacing(6) No newline at end of file
279 self.horizontalLayout_11.setSpacing(6)
280 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
280 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
281 self.horizontalLayout_11.setObjectName("horizontalLayout_11") No newline at end of file
281 self.horizontalLayout_11.setObjectName("horizontalLayout_11")
282 self.lblDcapacity = QtGui.QLabel(self.tabDconfig) No newline at end of file
282 self.lblDcapacity = QtGui.QLabel(self.tabDconfig)
283 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
283 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
284 sizePolicy.setHorizontalStretch(0) No newline at end of file
284 sizePolicy.setHorizontalStretch(0)
285 sizePolicy.setVerticalStretch(0) No newline at end of file
285 sizePolicy.setVerticalStretch(0)
286 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
286 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth())
287 self.lblDcapacity.setSizePolicy(sizePolicy) No newline at end of file
287 self.lblDcapacity.setSizePolicy(sizePolicy)
288 self.lblDcapacity.setObjectName("lblDcapacity") No newline at end of file
288 self.lblDcapacity.setObjectName("lblDcapacity")
289 self.horizontalLayout_11.addWidget(self.lblDcapacity) No newline at end of file
289 self.horizontalLayout_11.addWidget(self.lblDcapacity)
290 self.chkSalert = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
290 self.chkSalert = QtGui.QCheckBox(self.tabDconfig)
291 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
291 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
292 sizePolicy.setHorizontalStretch(0) No newline at end of file
292 sizePolicy.setHorizontalStretch(0)
293 sizePolicy.setVerticalStretch(0) No newline at end of file
293 sizePolicy.setVerticalStretch(0)
294 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth()) No newline at end of file
294 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth())
295 self.chkSalert.setSizePolicy(sizePolicy) No newline at end of file
295 self.chkSalert.setSizePolicy(sizePolicy)
296 self.chkSalert.setObjectName("chkSalert") No newline at end of file
296 self.chkSalert.setObjectName("chkSalert")
297 self.horizontalLayout_11.addWidget(self.chkSalert) No newline at end of file
297 self.horizontalLayout_11.addWidget(self.chkSalert)
298 self.verticalLayout_3.addLayout(self.horizontalLayout_11) No newline at end of file
298 self.verticalLayout_3.addLayout(self.horizontalLayout_11)
299 self.horizontalLayout_10 = QtGui.QHBoxLayout() No newline at end of file
299 self.horizontalLayout_10 = QtGui.QHBoxLayout()
300 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
300 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize)
301 self.horizontalLayout_10.setObjectName("horizontalLayout_10") No newline at end of file
301 self.horizontalLayout_10.setObjectName("horizontalLayout_10")
302 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig) No newline at end of file
302 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig)
303 self.lstDcapacity.setObjectName("lstDcapacity") No newline at end of file
303 self.lstDcapacity.setObjectName("lstDcapacity")
304 self.lstDcapacity.addItem("") No newline at end of file
304 self.lstDcapacity.addItem("")
305 self.lstDcapacity.addItem("") No newline at end of file
305 self.lstDcapacity.addItem("")
306 self.lstDcapacity.addItem("") No newline at end of file
306 self.lstDcapacity.addItem("")
307 self.lstDcapacity.addItem("") No newline at end of file
307 self.lstDcapacity.addItem("")
308 self.lstDcapacity.addItem("") No newline at end of file
308 self.lstDcapacity.addItem("")
309 self.horizontalLayout_10.addWidget(self.lstDcapacity) No newline at end of file
309 self.horizontalLayout_10.addWidget(self.lstDcapacity)
310 self.txtDcapacity = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
310 self.txtDcapacity = QtGui.QLineEdit(self.tabDconfig)
311 self.txtDcapacity.setReadOnly(True) No newline at end of file
311 self.txtDcapacity.setReadOnly(True)
312 self.txtDcapacity.setObjectName("txtDcapacity") No newline at end of file
312 self.txtDcapacity.setObjectName("txtDcapacity")
313 self.horizontalLayout_10.addWidget(self.txtDcapacity) No newline at end of file
313 self.horizontalLayout_10.addWidget(self.txtDcapacity)
314 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
314 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig)
315 self.chkPSgraphic.setObjectName("chkPSgraphic") No newline at end of file
315 self.chkPSgraphic.setObjectName("chkPSgraphic")
316 self.horizontalLayout_10.addWidget(self.chkPSgraphic) No newline at end of file
316 self.horizontalLayout_10.addWidget(self.chkPSgraphic)
317 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
317 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig)
318 self.lineEdit_17.setObjectName("lineEdit_17") No newline at end of file
318 self.lineEdit_17.setObjectName("lineEdit_17")
319 self.horizontalLayout_10.addWidget(self.lineEdit_17) No newline at end of file
319 self.horizontalLayout_10.addWidget(self.lineEdit_17)
320 self.verticalLayout_3.addLayout(self.horizontalLayout_10) No newline at end of file
320 self.verticalLayout_3.addLayout(self.horizontalLayout_10)
321 self.tabWidget.addTab(self.tabDconfig, "") No newline at end of file
321 self.tabWidget.addTab(self.tabDconfig, "")
322 self.tabSburn = QtGui.QWidget() No newline at end of file
322 self.tabSburn = QtGui.QWidget()
323 self.tabSburn.setObjectName("tabSburn") No newline at end of file
323 self.tabSburn.setObjectName("tabSburn")
324 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn) No newline at end of file
324 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn)
325 self.verticalLayout_4.setObjectName("verticalLayout_4") No newline at end of file
325 self.verticalLayout_4.setObjectName("verticalLayout_4")
326 self.widget_2 = QtGui.QWidget(self.tabSburn) No newline at end of file
326 self.widget_2 = QtGui.QWidget(self.tabSburn)
327 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
327 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
328 sizePolicy.setHorizontalStretch(0) No newline at end of file
328 sizePolicy.setHorizontalStretch(0)
329 sizePolicy.setVerticalStretch(0) No newline at end of file
329 sizePolicy.setVerticalStretch(0)
330 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth()) No newline at end of file
330 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth())
331 self.widget_2.setSizePolicy(sizePolicy) No newline at end of file
331 self.widget_2.setSizePolicy(sizePolicy)
332 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
332 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215))
333 self.widget_2.setObjectName("widget_2") No newline at end of file
333 self.widget_2.setObjectName("widget_2")
334 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2) No newline at end of file
334 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2)
335 self.gridLayout_2.setObjectName("gridLayout_2") No newline at end of file
335 self.gridLayout_2.setObjectName("gridLayout_2")
336 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2) No newline at end of file
336 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2)
337 self.txtSTATUSb.setObjectName("txtSTATUSb") No newline at end of file
337 self.txtSTATUSb.setObjectName("txtSTATUSb")
338 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1) No newline at end of file
338 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1)
339 self.txtINFOa = QtGui.QLineEdit(self.widget_2) No newline at end of file
339 self.txtINFOa = QtGui.QLineEdit(self.widget_2)
340 self.txtINFOa.setObjectName("txtINFOa") No newline at end of file
340 self.txtINFOa.setObjectName("txtINFOa")
341 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1) No newline at end of file
341 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1)
342 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2) No newline at end of file
342 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2)
343 self.txtSTATUSa.setObjectName("txtSTATUSa") No newline at end of file
343 self.txtSTATUSa.setObjectName("txtSTATUSa")
344 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1) No newline at end of file
344 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1)
345 self.txtINFOb = QtGui.QLineEdit(self.widget_2) No newline at end of file
345 self.txtINFOb = QtGui.QLineEdit(self.widget_2)
346 self.txtINFOb.setObjectName("txtINFOb") No newline at end of file
346 self.txtINFOb.setObjectName("txtINFOb")
347 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1) No newline at end of file
347 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1)
348 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2) No newline at end of file
348 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2)
349 self.txtSTATUSc.setObjectName("txtSTATUSc") No newline at end of file
349 self.txtSTATUSc.setObjectName("txtSTATUSc")
350 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1) No newline at end of file
350 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1)
351 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2) No newline at end of file
351 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2)
352 self.txtSTATUSd.setObjectName("txtSTATUSd") No newline at end of file
352 self.txtSTATUSd.setObjectName("txtSTATUSd")
353 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1) No newline at end of file
353 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1)
354 self.txtINFOd = QtGui.QLineEdit(self.widget_2) No newline at end of file
354 self.txtINFOd = QtGui.QLineEdit(self.widget_2)
355 self.txtINFOd.setObjectName("txtINFOd") No newline at end of file
355 self.txtINFOd.setObjectName("txtINFOd")
356 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1) No newline at end of file
356 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1)
357 self.txtSETa = QtGui.QLineEdit(self.widget_2) No newline at end of file
357 self.txtSETa = QtGui.QLineEdit(self.widget_2)
358 self.txtSETa.setObjectName("txtSETa") No newline at end of file
358 self.txtSETa.setObjectName("txtSETa")
359 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1) No newline at end of file
359 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1)
360 self.txtSETb = QtGui.QLineEdit(self.widget_2) No newline at end of file
360 self.txtSETb = QtGui.QLineEdit(self.widget_2)
361 self.txtSETb.setObjectName("txtSETb") No newline at end of file
361 self.txtSETb.setObjectName("txtSETb")
362 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1) No newline at end of file
362 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1)
363 self.txtSETc = QtGui.QLineEdit(self.widget_2) No newline at end of file
363 self.txtSETc = QtGui.QLineEdit(self.widget_2)
364 self.txtSETc.setObjectName("txtSETc") No newline at end of file
364 self.txtSETc.setObjectName("txtSETc")
365 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1) No newline at end of file
365 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1)
366 self.txtSETd = QtGui.QLineEdit(self.widget_2) No newline at end of file
366 self.txtSETd = QtGui.QLineEdit(self.widget_2)
367 self.txtSETd.setObjectName("txtSETd") No newline at end of file
367 self.txtSETd.setObjectName("txtSETd")
368 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1) No newline at end of file
368 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1)
369 self.lblSTATUS = QtGui.QLabel(self.widget_2) No newline at end of file
369 self.lblSTATUS = QtGui.QLabel(self.widget_2)
370 self.lblSTATUS.setObjectName("lblSTATUS") No newline at end of file
370 self.lblSTATUS.setObjectName("lblSTATUS")
371 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1) No newline at end of file
371 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1)
372 self.lblINFO = QtGui.QLabel(self.widget_2) No newline at end of file
372 self.lblINFO = QtGui.QLabel(self.widget_2)
373 self.lblINFO.setObjectName("lblINFO") No newline at end of file
373 self.lblINFO.setObjectName("lblINFO")
374 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1) No newline at end of file
374 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1)
375 self.lblSET = QtGui.QLabel(self.widget_2) No newline at end of file
375 self.lblSET = QtGui.QLabel(self.widget_2)
376 self.lblSET.setObjectName("lblSET") No newline at end of file
376 self.lblSET.setObjectName("lblSET")
377 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1) No newline at end of file
377 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1)
378 self.lblDevA = QtGui.QLabel(self.widget_2) No newline at end of file
378 self.lblDevA = QtGui.QLabel(self.widget_2)
379 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
379 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter)
380 self.lblDevA.setObjectName("lblDevA") No newline at end of file
380 self.lblDevA.setObjectName("lblDevA")
381 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1) No newline at end of file
381 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1)
382 self.lblDevB = QtGui.QLabel(self.widget_2) No newline at end of file
382 self.lblDevB = QtGui.QLabel(self.widget_2)
383 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
383 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter)
384 self.lblDevB.setObjectName("lblDevB") No newline at end of file
384 self.lblDevB.setObjectName("lblDevB")
385 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1) No newline at end of file
385 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1)
386 self.lblDevC = QtGui.QLabel(self.widget_2) No newline at end of file
386 self.lblDevC = QtGui.QLabel(self.widget_2)
387 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
387 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter)
388 self.lblDevC.setObjectName("lblDevC") No newline at end of file
388 self.lblDevC.setObjectName("lblDevC")
389 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1) No newline at end of file
389 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1)
390 self.lblDevD = QtGui.QLabel(self.widget_2) No newline at end of file
390 self.lblDevD = QtGui.QLabel(self.widget_2)
391 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
391 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter)
392 self.lblDevD.setObjectName("lblDevD") No newline at end of file
392 self.lblDevD.setObjectName("lblDevD")
393 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1) No newline at end of file
393 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1)
394 self.txtINFOc = QtGui.QLineEdit(self.widget_2) No newline at end of file
394 self.txtINFOc = QtGui.QLineEdit(self.widget_2)
395 self.txtINFOc.setObjectName("txtINFOc") No newline at end of file
395 self.txtINFOc.setObjectName("txtINFOc")
396 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1) No newline at end of file
396 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1)
397 self.verticalLayout_4.addWidget(self.widget_2) No newline at end of file
397 self.verticalLayout_4.addWidget(self.widget_2)
398 self.txtSburn = QtGui.QTextEdit(self.tabSburn) No newline at end of file
398 self.txtSburn = QtGui.QTextEdit(self.tabSburn)
399 self.txtSburn.setObjectName("txtSburn") No newline at end of file
399 self.txtSburn.setObjectName("txtSburn")
400 self.verticalLayout_4.addWidget(self.txtSburn) No newline at end of file
400 self.verticalLayout_4.addWidget(self.txtSburn)
401 self.tabWidget.addTab(self.tabSburn, "") No newline at end of file
401 self.tabWidget.addTab(self.tabSburn, "")
402 self.verticalLayout.addWidget(self.tabWidget) No newline at end of file
402 self.verticalLayout.addWidget(self.tabWidget)
403 self.txtInfo = QtGui.QTextEdit(self.centralwidget) No newline at end of file
403 self.txtInfo = QtGui.QTextEdit(self.centralwidget)
404 self.txtInfo.setReadOnly(True) No newline at end of file
404 self.txtInfo.setReadOnly(True)
405 self.txtInfo.setObjectName("txtInfo") No newline at end of file
405 self.txtInfo.setObjectName("txtInfo")
406 self.verticalLayout.addWidget(self.txtInfo) No newline at end of file
406 self.verticalLayout.addWidget(self.txtInfo)
407 self.horizontalLayout_2 = QtGui.QHBoxLayout() No newline at end of file
407 self.horizontalLayout_2 = QtGui.QHBoxLayout()
408 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
408 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
409 self.horizontalLayout_2.setObjectName("horizontalLayout_2") No newline at end of file
409 self.horizontalLayout_2.setObjectName("horizontalLayout_2")
410 self.btnGbkp = QtGui.QPushButton(self.centralwidget) No newline at end of file
410 self.btnGbkp = QtGui.QPushButton(self.centralwidget)
411 self.btnGbkp.setObjectName("btnGbkp") No newline at end of file
411 self.btnGbkp.setObjectName("btnGbkp")
412 self.horizontalLayout_2.addWidget(self.btnGbkp) No newline at end of file
412 self.horizontalLayout_2.addWidget(self.btnGbkp)
413 self.btnRestart = QtGui.QPushButton(self.centralwidget) No newline at end of file
413 self.btnRestart = QtGui.QPushButton(self.centralwidget)
414 self.btnRestart.setObjectName("btnRestart") No newline at end of file
414 self.btnRestart.setObjectName("btnRestart")
415 self.horizontalLayout_2.addWidget(self.btnRestart) No newline at end of file
415 self.horizontalLayout_2.addWidget(self.btnRestart)
416 self.btnStartburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
416 self.btnStartburn = QtGui.QPushButton(self.centralwidget)
417 self.btnStartburn.setObjectName("btnStartburn") No newline at end of file
417 self.btnStartburn.setObjectName("btnStartburn")
418 self.horizontalLayout_2.addWidget(self.btnStartburn) No newline at end of file
418 self.horizontalLayout_2.addWidget(self.btnStartburn)
419 self.btnStopburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
419 self.btnStopburn = QtGui.QPushButton(self.centralwidget)
420 self.btnStopburn.setObjectName("btnStopburn") No newline at end of file
420 self.btnStopburn.setObjectName("btnStopburn")
421 self.horizontalLayout_2.addWidget(self.btnStopburn) No newline at end of file
421 self.horizontalLayout_2.addWidget(self.btnStopburn)
422 self.verticalLayout.addLayout(self.horizontalLayout_2) No newline at end of file
422 self.verticalLayout.addLayout(self.horizontalLayout_2)
423 MainWindow.setCentralWidget(self.centralwidget) No newline at end of file
423 MainWindow.setCentralWidget(self.centralwidget)
424 self.menubar = QtGui.QMenuBar(MainWindow)
424 self.menubar = QtGui.QMenuBar(MainWindow)
No newline at end of file
425 self.menubar.setGeometry(QtCore.QRect(0, 0, 809, 25)) No newline at end of file
425 self.menubar.setGeometry(QtCore.QRect(0, 0, 745, 25)) No newline at end of file
426 self.menubar.setObjectName("menubar") No newline at end of file
426 self.menubar.setObjectName("menubar")
427 self.menuFile = QtGui.QMenu(self.menubar) No newline at end of file
427 self.menuFile = QtGui.QMenu(self.menubar)
428 self.menuFile.setObjectName("menuFile") No newline at end of file
428 self.menuFile.setObjectName("menuFile")
429 self.menuParameters = QtGui.QMenu(self.menubar) No newline at end of file
429 self.menuParameters = QtGui.QMenu(self.menubar)
430 self.menuParameters.setObjectName("menuParameters") No newline at end of file
430 self.menuParameters.setObjectName("menuParameters")
431 self.menuHelp = QtGui.QMenu(self.menubar) No newline at end of file
431 self.menuHelp = QtGui.QMenu(self.menubar)
432 self.menuHelp.setObjectName("menuHelp") No newline at end of file
432 self.menuHelp.setObjectName("menuHelp")
433 MainWindow.setMenuBar(self.menubar) No newline at end of file
433 MainWindow.setMenuBar(self.menubar)
434 self.statusbar = QtGui.QStatusBar(MainWindow) No newline at end of file
434 self.statusbar = QtGui.QStatusBar(MainWindow)
435 self.statusbar.setObjectName("statusbar") No newline at end of file
435 self.statusbar.setObjectName("statusbar")
436 MainWindow.setStatusBar(self.statusbar) No newline at end of file
436 MainWindow.setStatusBar(self.statusbar)
437 self.actionChange_Parameters = QtGui.QAction(MainWindow) No newline at end of file
437 self.actionChange_Parameters = QtGui.QAction(MainWindow)
438 self.actionChange_Parameters.setObjectName("actionChange_Parameters") No newline at end of file
438 self.actionChange_Parameters.setObjectName("actionChange_Parameters")
439 self.actionSave_Config = QtGui.QAction(MainWindow) No newline at end of file
439 self.actionSave_Config = QtGui.QAction(MainWindow)
440 self.actionSave_Config.setObjectName("actionSave_Config") No newline at end of file
440 self.actionSave_Config.setObjectName("actionSave_Config")
441 self.actionQuit = QtGui.QAction(MainWindow) No newline at end of file
441 self.actionQuit = QtGui.QAction(MainWindow)
442 self.actionQuit.setObjectName("actionQuit") No newline at end of file
442 self.actionQuit.setObjectName("actionQuit")
443 self.actionAbout = QtGui.QAction(MainWindow) No newline at end of file
443 self.actionAbout = QtGui.QAction(MainWindow)
444 self.actionAbout.setObjectName("actionAbout") No newline at end of file
444 self.actionAbout.setObjectName("actionAbout")
445 self.menuFile.addAction(self.actionSave_Config) No newline at end of file
445 self.menuFile.addAction(self.actionSave_Config)
446 self.menuFile.addAction(self.actionQuit) No newline at end of file
446 self.menuFile.addAction(self.actionQuit)
447 self.menuParameters.addAction(self.actionChange_Parameters) No newline at end of file
447 self.menuParameters.addAction(self.actionChange_Parameters)
448 self.menuHelp.addAction(self.actionAbout) No newline at end of file
448 self.menuHelp.addAction(self.actionAbout)
449 self.menubar.addAction(self.menuFile.menuAction()) No newline at end of file
449 self.menubar.addAction(self.menuFile.menuAction())
450 self.menubar.addAction(self.menuParameters.menuAction()) No newline at end of file
450 self.menubar.addAction(self.menuParameters.menuAction())
451 self.menubar.addAction(self.menuHelp.menuAction()) No newline at end of file
451 self.menubar.addAction(self.menuHelp.menuAction())
452 No newline at end of file
452
453 self.retranslateUi(MainWindow) No newline at end of file
453 self.retranslateUi(MainWindow)
454 self.tabWidget.setCurrentIndex(0) No newline at end of file
454 self.tabWidget.setCurrentIndex(0)
455 self.lstDcapacity.setCurrentIndex(2) No newline at end of file
455 self.lstDcapacity.setCurrentIndex(2)
456 QtCore.QObject.connect(self.chkSequentially, QtCore.SIGNAL("clicked()"), self.chkSimultaneously.toggle) No newline at end of file
456 QtCore.QObject.connect(self.chkSequentially, QtCore.SIGNAL("clicked()"), self.chkSimultaneously.toggle)
457 QtCore.QObject.connect(self.chkSimultaneously, QtCore.SIGNAL("clicked()"), self.chkSequentially.toggle) No newline at end of file
457 QtCore.QObject.connect(self.chkSimultaneously, QtCore.SIGNAL("clicked()"), self.chkSequentially.toggle)
458 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.grpDevA.setEnabled) No newline at end of file
458 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.grpDevA.setEnabled)
459 QtCore.QObject.connect(self.chkDevB, QtCore.SIGNAL("toggled(bool)"), self.grpDevB.setEnabled) No newline at end of file
459 QtCore.QObject.connect(self.chkDevB, QtCore.SIGNAL("toggled(bool)"), self.grpDevB.setEnabled)
460 QtCore.QObject.connect(self.chkDevC, QtCore.SIGNAL("toggled(bool)"), self.grpDevC.setEnabled) No newline at end of file
460 QtCore.QObject.connect(self.chkDevC, QtCore.SIGNAL("toggled(bool)"), self.grpDevC.setEnabled)
461 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled) No newline at end of file
461 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled)
462 QtCore.QMetaObject.connectSlotsByName(MainWindow) No newline at end of file
462 QtCore.QMetaObject.connectSlotsByName(MainWindow)
463 MainWindow.setTabOrder(self.txtDpath, self.btnDpath) No newline at end of file
463 MainWindow.setTabOrder(self.txtDpath, self.btnDpath)
464 MainWindow.setTabOrder(self.btnDpath, self.txtRpath) No newline at end of file
464 MainWindow.setTabOrder(self.btnDpath, self.txtRpath)
465 MainWindow.setTabOrder(self.txtRpath, self.btnRpath) No newline at end of file
465 MainWindow.setTabOrder(self.txtRpath, self.btnRpath)
466 MainWindow.setTabOrder(self.btnRpath, self.lstDtype) No newline at end of file
466 MainWindow.setTabOrder(self.btnRpath, self.lstDtype)
467 MainWindow.setTabOrder(self.lstDtype, self.txtDtype) No newline at end of file
467 MainWindow.setTabOrder(self.lstDtype, self.txtDtype)
468 MainWindow.setTabOrder(self.txtDtype, self.chkMST) No newline at end of file
468 MainWindow.setTabOrder(self.txtDtype, self.chkMST)
469 MainWindow.setTabOrder(self.chkMST, self.txtElabel) No newline at end of file
469 MainWindow.setTabOrder(self.chkMST, self.txtElabel)
470 MainWindow.setTabOrder(self.txtElabel, self.txtCopys) No newline at end of file
470 MainWindow.setTabOrder(self.txtElabel, self.txtCopys)
471 MainWindow.setTabOrder(self.txtCopys, self.lstStartDay) No newline at end of file
471 MainWindow.setTabOrder(self.txtCopys, self.lstStartDay)
472 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay) No newline at end of file
472 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay)
473 MainWindow.setTabOrder(self.lstStopDay, self.chkSimultaneously) No newline at end of file
473 MainWindow.setTabOrder(self.lstStopDay, self.chkSimultaneously)
474 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially) No newline at end of file
474 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially)
475 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert) No newline at end of file
475 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert)
476 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity) No newline at end of file
476 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity)
477 MainWindow.setTabOrder(self.lstDcapacity, self.txtDcapacity) No newline at end of file
477 MainWindow.setTabOrder(self.lstDcapacity, self.txtDcapacity)
478 MainWindow.setTabOrder(self.txtDcapacity, self.chkPSgraphic) No newline at end of file
478 MainWindow.setTabOrder(self.txtDcapacity, self.chkPSgraphic)
479 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17) No newline at end of file
479 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17)
480 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa) No newline at end of file
480 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa)
481 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb) No newline at end of file
481 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb)
482 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc) No newline at end of file
482 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc)
483 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd) No newline at end of file
483 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd)
484 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa) No newline at end of file
484 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa)
485 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb) No newline at end of file
485 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb)
486 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc) No newline at end of file
486 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc)
487 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd) No newline at end of file
487 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd)
488 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa) No newline at end of file
488 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa)
489 MainWindow.setTabOrder(self.txtSETa, self.txtSETb) No newline at end of file
489 MainWindow.setTabOrder(self.txtSETa, self.txtSETb)
490 MainWindow.setTabOrder(self.txtSETb, self.txtSETc) No newline at end of file
490 MainWindow.setTabOrder(self.txtSETb, self.txtSETc)
491 MainWindow.setTabOrder(self.txtSETc, self.txtSETd) No newline at end of file
491 MainWindow.setTabOrder(self.txtSETc, self.txtSETd)
492 MainWindow.setTabOrder(self.txtSETd, self.tabWidget) No newline at end of file
492 MainWindow.setTabOrder(self.txtSETd, self.tabWidget)
493 MainWindow.setTabOrder(self.tabWidget, self.txtSburn) No newline at end of file
493 MainWindow.setTabOrder(self.tabWidget, self.txtSburn)
494 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp) No newline at end of file
494 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp)
495 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart) No newline at end of file
495 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart)
496 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn) No newline at end of file
496 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn)
497 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn) No newline at end of file
497 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn)
498 No newline at end of file
498
499 def retranslateUi(self, MainWindow): No newline at end of file
499 def retranslateUi(self, MainWindow):
500 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
500 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8))
501 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
501 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8))
502 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
502 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8))
503 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
503 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8))
504 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
504 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8))
505 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
505 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8))
506 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
506 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8))
507 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
507 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8))
508 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
508 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8))
509 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
509 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8))
510 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
510 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8))
511 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
511 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8))
512 self.txtCopys.setText(QtGui.QApplication.translate("MainWindow", "0", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
512 self.txtCopys.setText(QtGui.QApplication.translate("MainWindow", "0", None, QtGui.QApplication.UnicodeUTF8))
513 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
513 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8))
514 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
514 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8))
515 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
515 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
516 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
516 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8))
517 self.txtBspeedA.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
518 self.txtBmodeA.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
517 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
519 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8))
518 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
520 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8))
521 self.txtBspeedB.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
522 self.txtBmodeB.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
519 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
523 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8))
520 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
524 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8))
525 self.txtBspeedC.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
526 self.txtBmodeC.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
521 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
527 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8))
522 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
528 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8))
529 self.txtBspeedD.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
530 self.txtBmodeD.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
523 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
531 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8))
524 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
532 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8))
525 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
533 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8))
526 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
534 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8))
527 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
535 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8))
528 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
536 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8))
529 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
537 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8))
530 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
538 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity", None, QtGui.QApplication.UnicodeUTF8))
531 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
539 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8))
532 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
540 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8))
533 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
541 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8))
534 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
542 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
535 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
543 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
536 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
544 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8))
537 self.txtDcapacity.setText(QtGui.QApplication.translate("MainWindow", "4482.26928711", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
545 self.txtDcapacity.setText(QtGui.QApplication.translate("MainWindow", "4482.26928711", None, QtGui.QApplication.UnicodeUTF8))
538 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
546 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8))
539 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
547 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8))
540 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
548 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8))
541 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
549 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8))
542 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
550 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8))
543 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
551 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8))
544 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
552 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8))
545 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
553 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8))
546 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
554 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8))
547 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
555 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8))
548 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
556 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8))
549 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
557 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8))
550 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
558 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8))
551 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
559 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8))
552 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
560 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8))
553 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
561 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
554 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
562 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8))
555 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
563 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8))
556 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
564 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8))
557 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
565 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8))
558 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
566 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8))
559 No newline at end of file
567
560 No newline at end of file
568
561 if __name__ == "__main__": No newline at end of file
569 if __name__ == "__main__":
562 import sys No newline at end of file
570 import sys
563 app = QtGui.QApplication(sys.argv) No newline at end of file
571 app = QtGui.QApplication(sys.argv)
564 MainWindow = QtGui.QMainWindow() No newline at end of file
572 MainWindow = QtGui.QMainWindow()
565 ui = Ui_MainWindow() No newline at end of file
573 ui = Ui_MainWindow()
566 ui.setupUi(MainWindow) No newline at end of file
574 ui.setupUi(MainWindow)
567 MainWindow.show() No newline at end of file
575 MainWindow.show()
568 sys.exit(app.exec_()) No newline at end of file
576 sys.exit(app.exec_())
569 No newline at end of file
577
General Comments 0
You need to be logged in to leave comments. Login now