##// END OF EJS Templates
#parace todo ok_falta pruebas
ralonso -
r91:92
parent child
Show More
@@ -1,290 +1,294
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 from subprocess import * No newline at end of file
4 from subprocess import *
5 import sys No newline at end of file
5 import sys
6 import os No newline at end of file
6 import os
7 import subprocess No newline at end of file
7 import subprocess
8 import commands No newline at end of file
8 import commands
9 No newline at end of file
9
10 #----------------------------------------------------- Deteccion de los dispositivos de grabacion --------------------------------------------------------------- No newline at end of file
10 #----------------------------------------------------- Deteccion de los dispositivos de grabacion ---------------------------------------------------------------
11 No newline at end of file
11
12 def detect_devices(self): No newline at end of file
12 def detect_devices(self):
13 """ No newline at end of file
13 """
14 Deteccion de los dispositvos de grabacion No newline at end of file
14 Deteccion de los dispositvos de grabacion
15 """ No newline at end of file
15 """
16 #var_cmd="wodim --devices | grep /dev/ | awk -F\' '{print $2}'" #Funciona en consola pero no en python ¿? No newline at end of file
16 #var_cmd="wodim --devices | grep /dev/ | awk -F\' '{print $2}'" #Funciona en consola pero no en python ¿?
17 var_cmd="wodim --devices | grep /dev/ | awk '{print $2}' | awk -F= '{print $2}'" No newline at end of file
17 var_cmd="wodim --devices | grep /dev/ | awk '{print $2}' | awk -F= '{print $2}'"
18 No newline at end of file
18
19 var_output = commands.getstatusoutput(var_cmd) No newline at end of file
19 var_output = commands.getstatusoutput(var_cmd)
20 if var_output[0] != 0: No newline at end of file
20 if var_output[0] != 0:
21 self.txtInfo.append("No recording devices") No newline at end of file
21 self.txtInfo.append("No recording devices")
22 else: No newline at end of file
22 else:
23 var_devices = var_output[1].split('\n') No newline at end of file
23 var_devices = var_output[1].split('\n')
24 No newline at end of file
24
25 var_tmp=[] No newline at end of file
25 var_tmp=[]
26 for i in range(0, 4): No newline at end of file
26 for i in range(0, 4):
27 if i < len(var_devices): No newline at end of file
27 if i < len(var_devices):
28 var_len = len(var_devices[i]) No newline at end of file
28 var_len = len(var_devices[i])
29 var_tmp.append(var_devices[i][1:var_len - 1]) No newline at end of file
29 var_tmp.append(var_devices[i][1:var_len - 1])
30 else: No newline at end of file
30 else:
31 var_tmp.append('') No newline at end of file
31 var_tmp.append('')
32 No newline at end of file
32
33 #Se escriben los dispostivos correspodientes, si existen No newline at end of file
33 #Se escriben los dispostivos correspodientes, si existen
34 self.txtDeviceA.setText(str(var_tmp[0])) No newline at end of file
34 self.txtDeviceA.setText(str(var_tmp[0]))
35 self.txtDeviceB.setText(str(var_tmp[1])) No newline at end of file
35 self.txtDeviceB.setText(str(var_tmp[1]))
36 self.txtDeviceC.setText(str(var_tmp[2])) No newline at end of file
36 self.txtDeviceC.setText(str(var_tmp[2]))
37 self.txtDeviceD.setText(str(var_tmp[3])) No newline at end of file
37 self.txtDeviceD.setText(str(var_tmp[3]))
38 #Se desactivan los que no existen No newline at end of file
38 #Se desactivan los que no existen
39 if len(var_tmp[0]) == 0 : No newline at end of file
39 if len(var_tmp[0]) == 0 :
40 self.chkDevA.setChecked(False) No newline at end of file
40 self.chkDevA.setChecked(False)
41 self.chkDevA.setEnabled(False) No newline at end of file
41 self.chkDevA.setEnabled(False)
42 if len(var_tmp[1]) == 0 : No newline at end of file
42 if len(var_tmp[1]) == 0 :
43 self.chkDevB.setChecked(False) No newline at end of file
43 self.chkDevB.setChecked(False)
44 self.chkDevB.setEnabled(False) No newline at end of file
44 self.chkDevB.setEnabled(False)
45 if len(var_tmp[2]) == 0 : No newline at end of file
45 if len(var_tmp[2]) == 0 :
46 self.chkDevC.setChecked(False) No newline at end of file
46 self.chkDevC.setChecked(False)
47 self.chkDevC.setEnabled(False) No newline at end of file
47 self.chkDevC.setEnabled(False)
48 if len(var_tmp[3]) == 0 : No newline at end of file
48 if len(var_tmp[3]) == 0 :
49 self.chkDevD.setChecked(False) No newline at end of file
49 self.chkDevD.setChecked(False)
50 self.chkDevD.setEnabled(False) No newline at end of file
50 self.chkDevD.setEnabled(False)
51 No newline at end of file
51
52 #----------------------------------- expulsa los dispositivos de grabacion -------------------------------------------- No newline at end of file
52 #----------------------------------- expulsa los dispositivos de grabacion --------------------------------------------
53 No newline at end of file
53
54 def eject_devices(self): No newline at end of file
54 def eject_devices(self):
55 for var_dev in self.var_devices: No newline at end of file
55 for var_dev in self.var_devices:
56 var_cmd = 'eject ' + var_dev No newline at end of file
56 var_cmd = 'eject ' + var_dev
57 commands.getstatusoutput(var_cmd) No newline at end of file
57 commands.getstatusoutput(var_cmd)
58 No newline at end of file
58
59 #Expulsa el dispositivo de grabacion actual No newline at end of file
59 #Expulsa el dispositivo de grabacion actual
60 def eject_one_device(self): No newline at end of file
60 def eject_one_device(self):
61 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) - self.var_burned_discs ) % len(self.var_devices) No newline at end of file
61 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) - self.var_burned_discs ) % len(self.var_devices)
62 var_dev = self.var_devices[var_index] No newline at end of file
62 var_dev = self.var_devices[var_index]
63 var_cmd = 'eject ' + var_dev No newline at end of file
63 var_cmd = 'eject ' + var_dev
64 commands.getstatusoutput(var_cmd) No newline at end of file
64 commands.getstatusoutput(var_cmd)
65 No newline at end of file
65
66 def eject_t_one_device(self): No newline at end of file
66 def eject_t_one_device(self):
67 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) - self.var_burned_discs ) % len(self.var_devices) No newline at end of file
67 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) - self.var_burned_discs ) % len(self.var_devices)
68 var_dev = self.var_devices[var_index] No newline at end of file
68 var_dev = self.var_devices[var_index]
69 var_cmd = 'eject -t ' + var_dev No newline at end of file
69 var_cmd = 'eject -t ' + var_dev
70 commands.getstatusoutput(var_cmd) No newline at end of file
70 commands.getstatusoutput(var_cmd)
71 No newline at end of file
71
72 def get_dev_sr(self): No newline at end of file
72 def get_dev_sr(self):
73 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) - self.var_burned_discs ) % len(self.var_devices) No newline at end of file
73 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) - self.var_burned_discs ) % len(self.var_devices)
74 var_dev = self.var_devices[var_index] No newline at end of file
74 var_dev = self.var_devices[var_index]
75 var_output=commands.getstatusoutput('ls -lh '+var_dev) No newline at end of file
75 var_output=commands.getstatusoutput('ls -lh '+var_dev)
76 if var_output[0] != 0: No newline at end of file
76 if var_output[0] != 0:
77 return "FATAL ERROR" No newline at end of file
77 return "FATAL ERROR"
78 else: No newline at end of file
78 else:
79 var_dev_sr = "/dev/"+var_output[1] .split()[-1] No newline at end of file
79 var_dev_sr = "/dev/"+var_output[1] .split()[-1]
80 return var_dev_sr No newline at end of file
80 return var_dev_sr
81 No newline at end of file
81
82 No newline at end of file
82
83 #----------------------------------- devuelve una lista con las carpetas en las cuales estan montados los dispositivos -------------------------------------------- No newline at end of file
83 #----------------------------------- devuelve una lista con las carpetas en las cuales estan montados los dispositivos --------------------------------------------
84 def mounted_devices(): No newline at end of file
84 def mounted_devices():
85 No newline at end of file
85
86 var_type = "iso9660" No newline at end of file
86 var_type = "iso9660"
87 var_output=commands.getstatusoutput('df -hT | grep '+ var_type) No newline at end of file
87 var_output=commands.getstatusoutput('df -hT | grep '+ var_type)
88 No newline at end of file
88
89 if var_output[0] != 0: No newline at end of file
89 if var_output[0] != 0:
90 return "FATAL ERROR" No newline at end of file
90 return "FATAL ERROR"
91 No newline at end of file
91
92 else: No newline at end of file
92 else:
93 if len(var_output[1]) == 0: No newline at end of file
93 if len(var_output[1]) == 0:
94 return "FATAL ERROR" No newline at end of file
94 return "FATAL ERROR"
95 No newline at end of file
95
96 list_dirs = [] No newline at end of file
96 list_dirs = []
97 for var_dir in var_output[1].split('\n'): No newline at end of file
97 for var_dir in var_output[1].split('\n'):
98 list_dirs.append(var_dir.split()[-1]) No newline at end of file
98 list_dirs.append(var_dir.split()[-1])
99 No newline at end of file
99
100 return list_dirs No newline at end of file
100 return list_dirs
101 No newline at end of file
101
102 No newline at end of file
102
103 #----------------------------------- listado de los dispositivos de grabacion seleccionados -------------------------------------------- No newline at end of file
103 #----------------------------------- listado de los dispositivos de grabacion seleccionados --------------------------------------------
104 No newline at end of file
104
105 def selected_devices(self): No newline at end of file
105 def selected_devices(self):
106 self.var_devices=[] No newline at end of file
106 self.var_devices=[]
107 if self.chkDevA.isChecked(): No newline at end of file
107 if self.chkDevA.isChecked():
108 self.var_devices.append(str(self.txtDeviceA.text())) No newline at end of file
108 self.var_devices.append(str(self.txtDeviceA.text()))
109 if self.chkDevB.isChecked(): No newline at end of file
109 if self.chkDevB.isChecked():
110 self.var_devices.append(str(self.txtDeviceB.text())) No newline at end of file
110 self.var_devices.append(str(self.txtDeviceB.text()))
111 if self.chkDevC.isChecked(): No newline at end of file
111 if self.chkDevC.isChecked():
112 self.var_devices.append(str(self.txtDeviceC.text())) No newline at end of file
112 self.var_devices.append(str(self.txtDeviceC.text()))
113 if self.chkDevD.isChecked(): No newline at end of file
113 if self.chkDevD.isChecked():
114 self.var_devices.append(str(self.txtDeviceD.text())) No newline at end of file
114 self.var_devices.append(str(self.txtDeviceD.text()))
115 No newline at end of file
115
116 if len(self.var_devices) == 0: No newline at end of file
116 if len(self.var_devices) == 0:
117 return False No newline at end of file
117 return False
118 else: No newline at end of file
118 else:
119 return True No newline at end of file
119 return True
120 No newline at end of file
120
121 No newline at end of file
121
122 #----------------------------------------------------- Inicializacion para pruebas--------------------------------------------------------------- No newline at end of file
122 #----------------------------------------------------- Inicializacion para pruebas---------------------------------------------------------------
123 No newline at end of file
123
124 def set_parameters_test(self): No newline at end of file
124 def set_parameters_test(self):
125 """ No newline at end of file
125 """
126 Se usa para inicializar ciertos parametros para pruebas No newline at end of file
126 Se usa para inicializar ciertos parametros para pruebas
127 """ No newline at end of file
127 """
128 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS') No newline at end of file
128 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS')
129 self.txtRpath.setText('/home/ricardoar/optional/prueba1_jro_backup_manager') No newline at end of file
129 self.txtRpath.setText('/home/ricardoar/optional/prueba1_jro_backup_manager')
130 self.txtElabel.setText('EW_DRIFTS_pruebas') No newline at end of file
130 self.txtElabel.setText('EW_DRIFTS_pruebas')
131 self.lstDcapacity.setCurrentIndex(4) No newline at end of file
131 self.lstDcapacity.setCurrentIndex(4)
132 self.txtDcapacity.setValue(100.0) No newline at end of file
132 self.txtDcapacity.setValue(100.0)
133 self.txtDcapacity.setReadOnly(False) No newline at end of file
133 self.txtDcapacity.setReadOnly(False)
134 No newline at end of file
134
135 def set_devices_test(self): No newline at end of file
135 def set_devices_test(self):
136 self.txtDeviceA.setText("/dev/scd0") No newline at end of file
136 self.txtDeviceA.setText("/dev/scd0")
137 self.txtDeviceB.setText("/dev/scd1") No newline at end of file
137 self.txtDeviceB.setText("/dev/scd1")
138 self.txtDeviceC.setText("/dev/scd2") No newline at end of file
138 self.txtDeviceC.setText("/dev/scd2")
139 self.txtDeviceD.setText("/dev/scd3") No newline at end of file
139 self.txtDeviceD.setText("/dev/scd3")
140 No newline at end of file
140
141 No newline at end of file
141
142 No newline at end of file
142
143 #----------------------------------------------------- crea parameters.conf --------------------------------------------------------------- No newline at end of file
143 #----------------------------------------------------- crea parameters.conf ---------------------------------------------------------------
144 No newline at end of file
144
145 def make_parameters_conf(self): No newline at end of file
145 def make_parameters_conf(self):
146 var_file = open("parameters.conf","w") No newline at end of file
146 var_file = open("parameters.conf","w")
147 var_file.write(self.var_Dpath+"\n") #0 Ruta de los datos No newline at end of file
147 var_file.write(self.var_Dpath+"\n") #0 Ruta de los datos
148 var_file.write(self.var_Rpath+"\n") #1 Ruta del proyecto No newline at end of file
148 var_file.write(self.var_Rpath+"\n") #1 Ruta del proyecto
149 var_file.write(str(self.var_lstDtype)+"\n") #2 opcion Data Type No newline at end of file
149 var_file.write(str(self.var_lstDtype)+"\n") #2 opcion Data Type
150 var_file.write(self.var_Dtype+"\n") #3 extension Data Type No newline at end of file
150 var_file.write(self.var_Dtype+"\n") #3 extension Data Type
151 var_file.write(self.var_Elabel+"\n") #4 etiqueta No newline at end of file
151 var_file.write(self.var_Elabel+"\n") #4 etiqueta
152 var_file.write(str(self.var_Copys)+"\n") #5 Numero de copias No newline at end of file
152 var_file.write(str(self.var_Copys)+"\n") #5 Numero de copias
153 var_file.write(str(self.var_lstDcapacity)+"\n") #6 opcion Device Capacity No newline at end of file
153 var_file.write(str(self.var_lstDcapacity)+"\n") #6 opcion Device Capacity
154 var_file.write(str(self.var_Dcapacity)+"\n") #7 tamaño Device Capacity No newline at end of file
154 var_file.write(str(self.var_Dcapacity)+"\n") #7 tamaño Device Capacity
155 var_file.write(str(self.var_Discs)+"\n") #8 Numero de discos a grabar No newline at end of file
155 var_file.write(str(self.var_Discs)+"\n") #8 Numero de discos a grabar
156 # var_file.write(str(self.lstStartDay.currentIndex())+"\n") #9 Indice fecha inicial No newline at end of file
156 # var_file.write(str(self.lstStartDay.currentIndex())+"\n") #9 Indice fecha inicial
157 # var_file.write(str(self.lstStopDay.currentIndex())+"\n") #10 Indice fecha final No newline at end of file
157 # var_file.write(str(self.lstStopDay.currentIndex())+"\n") #10 Indice fecha final
158 var_file.close() No newline at end of file
158 var_file.close()
159 No newline at end of file
159
160 #----------------------------------------------------- carga parameters.conf --------------------------------------------------------------- No newline at end of file
160 #----------------------------------------------------- carga parameters.conf ---------------------------------------------------------------
161 No newline at end of file
161
162 def get_parameters_conf(self): No newline at end of file
162 def get_parameters_conf(self):
163 var_file = open("parameters.conf","r") No newline at end of file
163 var_file = open("parameters.conf","r")
164 lines = var_file.readlines() No newline at end of file
164 lines = var_file.readlines()
165 self.txtDpath.setText(lines[0][:-1]) #0 No newline at end of file
165 self.txtDpath.setText(lines[0][:-1]) #0
166 self.txtRpath.setText(lines[1][:-1]) #1 No newline at end of file
166 self.txtRpath.setText(lines[1][:-1]) #1
167 self.lstDtype.setCurrentIndex(int(lines[2])) #2 No newline at end of file
167 self.lstDtype.setCurrentIndex(int(lines[2])) #2
168 self.txtDtype.setText(lines[3][:-1]) #3 No newline at end of file
168 self.txtDtype.setText(lines[3][:-1]) #3
169 self.txtElabel.setText(lines[4][:-1]) #4 No newline at end of file
169 self.txtElabel.setText(lines[4][:-1]) #4
170 self.txtCopys.setValue(int(lines[5][:-1])) #5 No newline at end of file
170 self.txtCopys.setValue(int(lines[5][:-1])) #5
171 self.lstDcapacity.setCurrentIndex(int(lines[6])) #6 No newline at end of file
171 self.lstDcapacity.setCurrentIndex(int(lines[6])) #6
172 self.txtDcapacity.setValue(float(lines[7])) #7 No newline at end of file
172 self.txtDcapacity.setValue(float(lines[7])) #7
173 self.var_Discs = int(lines[8]) #8 No newline at end of file
173 self.var_Discs = int(lines[8]) #8
174 # var_StartDay = int(lines[6]) #9 No newline at end of file
174 # var_StartDay = int(lines[6]) #9
175 # var_StopDay = int(lines[7]) #10 No newline at end of file
175 # var_StopDay = int(lines[7]) #10
176 ################################ No newline at end of file
176 ################################
177 self.var_Copys = self.txtCopys.value() #5 No newline at end of file
177 self.var_Copys = self.txtCopys.value() #5
178 ################################ No newline at end of file
178 ################################
179 No newline at end of file
179
180 var_file.close() No newline at end of file
180 var_file.close()
181 No newline at end of file
181
182 No newline at end of file
182
183 #-------------------------- actualiza el valor de las variables con los parametros seleccionados ----------------------------- No newline at end of file
183 #-------------------------- actualiza el valor de las variables con los parametros seleccionados -----------------------------
184 No newline at end of file
184
185 def set_vars(self): No newline at end of file
185 def set_vars(self):
186 self.var_Dpath = str(self.txtDpath.text()) #0 No newline at end of file
186 self.var_Dpath = str(self.txtDpath.text()) #0
187 self.var_Rpath = str(self.txtRpath.text()) #1 No newline at end of file
187 self.var_Rpath = str(self.txtRpath.text()) #1
188 self.var_lstDtype = self.lstDtype.currentIndex() #2 No newline at end of file
188 self.var_lstDtype = self.lstDtype.currentIndex() #2
189 self.var_Dtype = str(self.txtDtype.text()) #3 No newline at end of file
189 self.var_Dtype = str(self.txtDtype.text()) #3
190 self.var_Elabel = str(self.txtElabel.text()) #4 No newline at end of file
190 self.var_Elabel = str(self.txtElabel.text()) #4
191 self.var_Copys = self.txtCopys.value() #5 No newline at end of file
191 self.var_Copys = self.txtCopys.value() #5
192 self.var_lstDcapacity = self.lstDcapacity.currentIndex() #6 No newline at end of file
192 self.var_lstDcapacity = self.lstDcapacity.currentIndex() #6
193 self.var_Dcapacity = self.txtDcapacity.value() #7 No newline at end of file
193 self.var_Dcapacity = self.txtDcapacity.value() #7
194 self.var_Discs = self.var_Discs #8 No newline at end of file
194 self.var_Discs = self.var_Discs #8
195 No newline at end of file
195
196 No newline at end of file
196
197 #-------------------------- crea burning.conf ----------------------------- No newline at end of file
197 #-------------------------- crea burning.conf -----------------------------
198 No newline at end of file
198
199 def make_burning_conf(self): No newline at end of file
199 def make_burning_conf(self):
200 var_file = open("burning.conf","w") No newline at end of file
200 var_file = open("burning.conf","w")
201 var_n_burned_discs = ( ( (self.var_disc_n - 1) * self.var_Copys) + self.var_copy_n - 1 ) No newline at end of file
201 var_n_burned_discs = ( ( (self.var_disc_n - 1) * self.var_Copys) + self.var_copy_n - 1 )
202 var_file.write(str(var_n_burned_discs)+"\n") #0 Numero de discos ya grabados No newline at end of file
202 var_file.write(str(var_n_burned_discs)+"\n") #0 Numero de discos ya grabados
203 var_file.write(str(self.var_disc_n)+"\n") #1 Disco actual para grabar No newline at end of file
203 var_file.write(str(self.var_disc_n)+"\n") #1 Disco actual para grabar
204 var_file.write(str(self.var_copy_n)+"\n") #2 Numero de copia actual para grabar No newline at end of file
204 var_file.write(str(self.var_copy_n)+"\n") #2 Numero de copia actual para grabar
205 var_file.close() No newline at end of file
205 var_file.close()
206 No newline at end of file
206
207 #----------------------------------------------------- carga burning.conf --------------------------------------------------------------- No newline at end of file
207 #----------------------------------------------------- carga burning.conf ---------------------------------------------------------------
208 No newline at end of file
208
209 def get_burning_conf(self): No newline at end of file
209 def get_burning_conf(self):
210 var_file = open("burning.conf","r") No newline at end of file
210 var_file = open("burning.conf","r")
211 lines = var_file.readlines() No newline at end of file
211 lines = var_file.readlines()
212 self.var_burned_discs = int(lines[0]) #0 No newline at end of file
212 self.var_burned_discs = int(lines[0]) #0
213 self.var_disc_n = int(lines[1]) No newline at end of file
213 self.var_disc_n = int(lines[1])
214 self.var_copy_n = int(lines[2]) No newline at end of file
214 self.var_copy_n = int(lines[2])
215 var_file.close() No newline at end of file
215 var_file.close()
216 No newline at end of file
216
217 #---------------------------------------------- Habilitacion y deshabilitacion de items ------------------------------------------------------- No newline at end of file
217 #---------------------------------------------- Habilitacion y deshabilitacion de items -------------------------------------------------------
218 No newline at end of file
218
219 def enabled_items1(var_bool, self): No newline at end of file
219 def enabled_items1(var_bool, self):
220 self.tabParameters.setEnabled(not(var_bool)) No newline at end of file
220 self.tabParameters.setEnabled(not(var_bool))
221 self.lstDcapacity.setEnabled(not(var_bool)) No newline at end of file
221 self.lstDcapacity.setEnabled(not(var_bool))
222 self.txtDcapacity.setEnabled(not(var_bool)) No newline at end of file
222 self.txtDcapacity.setEnabled(not(var_bool))
223 self.actionChange_Parameters.setEnabled(var_bool) No newline at end of file
223 self.actionChange_Parameters.setEnabled(var_bool)
224 self.btnGbkp.setEnabled(not(var_bool)) No newline at end of file
224 self.btnGbkp.setEnabled(not(var_bool))
225 self.btnRestart.setEnabled(var_bool) No newline at end of file
225 self.btnRestart.setEnabled(var_bool)
226 self.btnStartburn.setEnabled(var_bool) No newline at end of file
226 self.btnStartburn.setEnabled(var_bool)
227 No newline at end of file
227
228 self.txtTDpath.setEnabled(not(var_bool))
No newline at end of file
229 self.txtTDpath.clear()
No newline at end of file
230 self.btnTDpath.setEnabled(not(var_bool))
No newline at end of file
231 self.btnCHstart.setEnabled(False) No newline at end of file
228 No newline at end of file
232
229 def enabled_items2(var_bool, self): No newline at end of file
233 def enabled_items2(var_bool, self):
230 self.btnRestart.setEnabled(not(var_bool)) No newline at end of file
234 self.btnRestart.setEnabled(not(var_bool))
231 self.btnStartburn.setEnabled(not(var_bool)) No newline at end of file
235 self.btnStartburn.setEnabled(not(var_bool))
232 self.btnStopburn.setEnabled(var_bool) No newline at end of file
236 self.btnStopburn.setEnabled(var_bool)
233 self.chkCheck.setEnabled(not(var_bool)) No newline at end of file
237 self.chkCheck.setEnabled(not(var_bool))
234 self.chkCheck.setChecked(False) No newline at end of file
238 self.chkCheck.setChecked(False)
235 No newline at end of file
239
236 self.actionChange_Parameters.setEnabled(False) No newline at end of file
240 self.actionChange_Parameters.setEnabled(False)
237 No newline at end of file
241
238 No newline at end of file
242
239 #---------------------------------------------- Actualiza estado en los labels ------------------------------------------------------- No newline at end of file
243 #---------------------------------------------- Actualiza estado en los labels -------------------------------------------------------
240 No newline at end of file
244
241 def update_message(type, message, self, index=-1): No newline at end of file
245 def update_message(type, message, self, index=-1):
242 if index == -1: No newline at end of file
246 if index == -1:
243 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) - self.var_burned_discs ) % len(self.var_devices) No newline at end of file
247 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) - self.var_burned_discs ) % len(self.var_devices)
244 else: No newline at end of file
248 else:
245 var_index = index No newline at end of file
249 var_index = index
246 No newline at end of file
250
247 var_message = message No newline at end of file
251 var_message = message
248 # var_message = "BURNING" No newline at end of file
252 # var_message = "BURNING"
249 # var_message = "COMPLETED" No newline at end of file
253 # var_message = "COMPLETED"
250 # var_message = "ERROR" No newline at end of file
254 # var_message = "ERROR"
251 # var_message = "CHECKING" No newline at end of file
255 # var_message = "CHECKING"
252 # var_message = "CHECKED" No newline at end of file
256 # var_message = "CHECKED"
253 No newline at end of file
257
254 if type == 1: No newline at end of file
258 if type == 1:
255 No newline at end of file
259
256 if var_index == 0: No newline at end of file
260 if var_index == 0:
257 self.txtBstatusA.setText(var_message) No newline at end of file
261 self.txtBstatusA.setText(var_message)
258 self.txtBdiscA.setText(str(self.var_disc_n)) No newline at end of file
262 self.txtBdiscA.setText(str(self.var_disc_n))
259 self.txtBcopyA.setText(str(self.var_copy_n)) No newline at end of file
263 self.txtBcopyA.setText(str(self.var_copy_n))
260 No newline at end of file
264
261 if var_index == 1: No newline at end of file
265 if var_index == 1:
262 self.txtBstatusB.setText(var_message) No newline at end of file
266 self.txtBstatusB.setText(var_message)
263 self.txtBdiscB.setText(str(self.var_disc_n)) No newline at end of file
267 self.txtBdiscB.setText(str(self.var_disc_n))
264 self.txtBcopyB.setText(str(self.var_copy_n)) No newline at end of file
268 self.txtBcopyB.setText(str(self.var_copy_n))
265 No newline at end of file
269
266 if var_index == 2: No newline at end of file
270 if var_index == 2:
267 self.txtBstatusC.setText(var_message) No newline at end of file
271 self.txtBstatusC.setText(var_message)
268 self.txtBdiscC.setText(str(self.var_disc_n)) No newline at end of file
272 self.txtBdiscC.setText(str(self.var_disc_n))
269 self.txtBcopyC.setText(str(self.var_copy_n)) No newline at end of file
273 self.txtBcopyC.setText(str(self.var_copy_n))
270 No newline at end of file
274
271 if var_index == 3: No newline at end of file
275 if var_index == 3:
272 self.txtBstatusD.setText(var_message) No newline at end of file
276 self.txtBstatusD.setText(var_message)
273 self.txtBdiscD.setText(str(self.var_disc_n)) No newline at end of file
277 self.txtBdiscD.setText(str(self.var_disc_n))
274 self.txtBcopyD.setText(str(self.var_copy_n)) No newline at end of file
278 self.txtBcopyD.setText(str(self.var_copy_n))
275 No newline at end of file
279
276 if type == 2: No newline at end of file
280 if type == 2:
277 No newline at end of file
281
278 if var_index == 0: No newline at end of file
282 if var_index == 0:
279 self.txtCHstatusA.setText(var_message) No newline at end of file
283 self.txtCHstatusA.setText(var_message)
280 No newline at end of file
284
281 if var_index == 1: No newline at end of file
285 if var_index == 1:
282 self.txtCHstatusB.setText(var_message) No newline at end of file
286 self.txtCHstatusB.setText(var_message)
283 No newline at end of file
287
284 if var_index == 2: No newline at end of file
288 if var_index == 2:
285 self.txtCHstatusC.setText(var_message) No newline at end of file
289 self.txtCHstatusC.setText(var_message)
286 No newline at end of file
290
287 if var_index == 3: No newline at end of file
291 if var_index == 3:
288 self.txtCHstatusD.setText(var_message) No newline at end of file
292 self.txtCHstatusD.setText(var_message)
289 No newline at end of file
293
290 No newline at end of file
294
@@ -1,789 +1,794
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 PyQt4 import QtCore No newline at end of file
9 from PyQt4 import QtCore
10 from Ui_MainWindow import Ui_MainWindow No newline at end of file
10 from Ui_MainWindow import Ui_MainWindow
11 from Ui_Parameters import Ui_Parameters No newline at end of file
11 from Ui_Parameters import Ui_Parameters
12 from Ui_About import Ui_About No newline at end of file
12 from Ui_About import Ui_About
13 from PyQt4 import QtGui No newline at end of file
13 from PyQt4 import QtGui
14 from subprocess import * No newline at end of file
14 from subprocess import *
15 import sys No newline at end of file
15 import sys
16 import os No newline at end of file
16 import os
17 #import subprocess No newline at end of file
17 #import subprocess
18 import time No newline at end of file
18 import time
19 import commands No newline at end of file
19 import commands
20 from functions import functions No newline at end of file
20 from functions import functions
21 from functions import functions2 No newline at end of file
21 from functions import functions2
22 No newline at end of file
22
23 class MainWindow(QMainWindow, Ui_MainWindow): No newline at end of file
23 class MainWindow(QMainWindow, Ui_MainWindow):
24 """ No newline at end of file
24 """
25 Class documentation goes here. No newline at end of file
25 Class documentation goes here.
26 """ No newline at end of file
26 """
27 No newline at end of file
27
28 def __init__(self, parent = None): No newline at end of file
28 def __init__(self, parent = None):
29 QMainWindow.__init__(self, parent) No newline at end of file
29 QMainWindow.__init__(self, parent)
30 self.setupUi(self) No newline at end of file
30 self.setupUi(self)
31 self.setupUi2() No newline at end of file
31 self.setupUi2()
32 No newline at end of file
32
33 def setupUi2(self): No newline at end of file
33 def setupUi2(self):
34 No newline at end of file
34
35 self.txtInfo.append("cambio 1") No newline at end of file
35 self.txtInfo.append("cambio 1")
36 No newline at end of file
36
37 self.allTrue = False No newline at end of file
37 self.allTrue = False
38 No newline at end of file
38
39 if self.allTrue == True: No newline at end of file
39 if self.allTrue == True:
40 self.var_real_principal = True No newline at end of file
40 self.var_real_principal = True
41 self.var_real_detect_devices = True No newline at end of file
41 self.var_real_detect_devices = True
42 self.var_real_iso = True No newline at end of file
42 self.var_real_iso = True
43 self.var_real_burn = True No newline at end of file
43 self.var_real_burn = True
44 self.var_real_check = True No newline at end of file
44 self.var_real_check = True
45 self.var_real_eject = True No newline at end of file
45 self.var_real_eject = True
46 self.var_real_manual_check = True No newline at end of file
46 self.var_real_manual_check = True
47 self.var_real_show_cmd = True No newline at end of file
47 self.var_real_show_cmd = True
48 No newline at end of file
48
49 else: No newline at end of file
49 else:
50 self.var_real_principal = False No newline at end of file
50 self.var_real_principal = False
51 self.var_real_detect_devices = False No newline at end of file
51 self.var_real_detect_devices = False
52 self.var_real_iso = False No newline at end of file
52 self.var_real_iso = False
53 self.var_real_burn = False No newline at end of file
53 self.var_real_burn = False
54 self.var_real_check = False No newline at end of file
54 self.var_real_check = False
55 self.var_real_eject = False No newline at end of file
55 self.var_real_eject = False
56 self.var_real_manual_check = True No newline at end of file
56 self.var_real_manual_check = True
57 self.var_real_show_cmd = True No newline at end of file
57 self.var_real_show_cmd = True
58 No newline at end of file
58
59 if self.var_real_detect_devices == True: No newline at end of file
59 if self.var_real_detect_devices == True:
60 # Reconocimiento de los dispositivos de grabacion No newline at end of file
60 # Reconocimiento de los dispositivos de grabacion
61 functions2.detect_devices(self) No newline at end of file
61 functions2.detect_devices(self)
62 else: No newline at end of file
62 else:
63 functions2.set_devices_test(self) No newline at end of file
63 functions2.set_devices_test(self)
64 No newline at end of file
64
65 #Inicialiazacion de variables No newline at end of file
65 #Inicialiazacion de variables
66 self.var_Discs = 0 #Numero de discos del proyecto No newline at end of file
66 self.var_Discs = 0 #Numero de discos del proyecto
67 self.var_Copys = 0 #Numero de copias No newline at end of file
67 self.var_Copys = 0 #Numero de copias
68 self.var_disc_n = 0 # disco actual No newline at end of file
68 self.var_disc_n = 0 # disco actual
69 self.var_copy_n = 0 # copia actual No newline at end of file
69 self.var_copy_n = 0 # copia actual
70 self.var_burned_discs = 0 #numero de discos ya grabados No newline at end of file
70 self.var_burned_discs = 0 #numero de discos ya grabados
71 No newline at end of file
71
72 self.bool_first_iso = False No newline at end of file
72 self.bool_first_iso = False
73 self.var_step = 0 # numero de paso en el proceso No newline at end of file
73 self.var_step = 0 # numero de paso en el proceso
74 self.bool_state_burning = False #si es True se puede grabar No newline at end of file
74 self.bool_state_burning = False #si es True se puede grabar
75 self.blank_discs = False # Si es true significa que se acaban de ingresar discos en blanco No newline at end of file
75 self.blank_discs = False # Si es true significa que se acaban de ingresar discos en blanco
76 No newline at end of file
76
77 self.var_list=[] # Lista de DOYs No newline at end of file
77 self.var_list=[] # Lista de DOYs
78 self.var_sublist=[] # Sub-lista de DOYs seleccionados No newline at end of file
78 self.var_sublist=[] # Sub-lista de DOYs seleccionados
79 self.var_devices=[] #Lista de dispositivos seleccionados No newline at end of file
79 self.var_devices=[] #Lista de dispositivos seleccionados
80 No newline at end of file
80
81 #Revisa si existe el archivo de confirguracion y lo carga No newline at end of file
81 #Revisa si existe el archivo de confirguracion y lo carga
82 if os.path.isfile("parameters.conf"): No newline at end of file
82 if os.path.isfile("parameters.conf"):
83 functions2.get_parameters_conf(self) No newline at end of file
83 functions2.get_parameters_conf(self)
84 self.bool_first_iso = True No newline at end of file
84 self.bool_first_iso = True
85 self.txtInfo.append("Parameters were loaded from configuration file") No newline at end of file
85 self.txtInfo.append("Parameters were loaded from configuration file")
86 self.txtInfo.append("Total number of discs for recording: "+str(self.var_Discs * self.var_Copys)) No newline at end of file
86 self.txtInfo.append("Total number of discs for recording: "+str(self.var_Discs * self.var_Copys))
87 No newline at end of file
87
88 elif self.var_real_principal == False: No newline at end of file
88 elif self.var_real_principal == False:
89 functions2.set_parameters_test(self) #Establece ciertos parametros, para pruebas No newline at end of file
89 functions2.set_parameters_test(self) #Establece ciertos parametros, para pruebas
90 No newline at end of file
90
91 functions2.set_vars(self) #Carga las variables de la clase con los parametros seleccionados No newline at end of file
91 functions2.set_vars(self) #Carga las variables de la clase con los parametros seleccionados
92 No newline at end of file
92
93 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
93 self.statusDpath = functions.dir_exists(self.var_Dpath, self)
94 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
94 self.statusRpath = functions.dir_exists(self.var_Rpath, self)
95 functions.load_days(self) No newline at end of file
95 functions.load_days(self)
96 No newline at end of file
96
97 if os.path.isfile("parameters.conf"): No newline at end of file
97 if os.path.isfile("parameters.conf"):
98 functions2.enabled_items1(True, self) #Se bloquean los parametros de configuracion No newline at end of file
98 functions2.enabled_items1(True, self) #Se bloquean los parametros de configuracion
99 No newline at end of file
99
100 if os.path.isfile("burning.conf"): No newline at end of file
100 if os.path.isfile("burning.conf"):
101 functions2.get_burning_conf(self) No newline at end of file
101 functions2.get_burning_conf(self)
102 self.txtInfo.append("Current disc: "+str(self.var_disc_n)) No newline at end of file
102 self.txtInfo.append("Current disc: "+str(self.var_disc_n))
103 self.txtInfo.append("Current copy: "+str(self.var_copy_n)) No newline at end of file
103 self.txtInfo.append("Current copy: "+str(self.var_copy_n))
104 self.txtInfo.append("Burned discs: "+str(self.var_burned_discs)) No newline at end of file
104 self.txtInfo.append("Burned discs: "+str(self.var_burned_discs))
105 self.btnStartburn.setText("Continue") No newline at end of file
105 self.btnStartburn.setText("Continue")
106 self.actionChange_Parameters.setEnabled(False) No newline at end of file
106 self.actionChange_Parameters.setEnabled(False)
107 No newline at end of file
107
108 self.connect(self.actionChange_Parameters, QtCore.SIGNAL("triggered()"), self.changeParameters) No newline at end of file
108 self.connect(self.actionChange_Parameters, QtCore.SIGNAL("triggered()"), self.changeParameters)
109 self.connect(self.actionAbout, QtCore.SIGNAL("triggered()"), self.about) No newline at end of file
109 self.connect(self.actionAbout, QtCore.SIGNAL("triggered()"), self.about)
110 No newline at end of file
110
111 self.process_iso = QtCore.QProcess() No newline at end of file
111 self.process_iso = QtCore.QProcess()
112 self.connect(self.process_iso, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_iso) No newline at end of file
112 self.connect(self.process_iso, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_iso)
113 self.connect(self.process_iso, QtCore.SIGNAL('readyReadStandardError()'), self.readError_iso) No newline at end of file
113 self.connect(self.process_iso, QtCore.SIGNAL('readyReadStandardError()'), self.readError_iso)
114 self.connect(self.process_iso, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_iso) No newline at end of file
114 self.connect(self.process_iso, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_iso)
115 No newline at end of file
115
116 self.process_burn = QtCore.QProcess() No newline at end of file
116 self.process_burn = QtCore.QProcess()
117 self.connect(self.process_burn, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_burn) No newline at end of file
117 self.connect(self.process_burn, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_burn)
118 self.connect(self.process_burn, QtCore.SIGNAL('readyReadStandardError()'), self.readError_burn) No newline at end of file
118 self.connect(self.process_burn, QtCore.SIGNAL('readyReadStandardError()'), self.readError_burn)
119 self.connect(self.process_burn, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_burn) No newline at end of file
119 self.connect(self.process_burn, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_burn)
120 No newline at end of file
120
121 self.process_check = QtCore.QProcess() No newline at end of file
121 self.process_check = QtCore.QProcess()
122 self.connect(self.process_check, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_check) No newline at end of file
122 self.connect(self.process_check, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_check)
123 self.connect(self.process_check, QtCore.SIGNAL('readyReadStandardError()'), self.readError_check) No newline at end of file
123 self.connect(self.process_check, QtCore.SIGNAL('readyReadStandardError()'), self.readError_check)
124 self.connect(self.process_check, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_check) No newline at end of file
124 self.connect(self.process_check, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_check)
125 No newline at end of file
125
126 self.process_manual_check = QtCore.QProcess() No newline at end of file
126 self.process_manual_check = QtCore.QProcess()
127 self.connect(self.process_manual_check, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_manual_check) No newline at end of file
127 self.connect(self.process_manual_check, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput_manual_check)
128 self.connect(self.process_manual_check, QtCore.SIGNAL('readyReadStandardError()'), self.readError_manual_check) No newline at end of file
128 self.connect(self.process_manual_check, QtCore.SIGNAL('readyReadStandardError()'), self.readError_manual_check)
129 self.connect(self.process_manual_check, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_manual_check) No newline at end of file
129 self.connect(self.process_manual_check, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished_manual_check)
130 No newline at end of file
130
131 def changeParameters(self): No newline at end of file
131 def changeParameters(self):
132 dlg=QtGui.QDialog() No newline at end of file
132 dlg=QtGui.QDialog()
133 dlgui=Ui_Parameters() No newline at end of file
133 dlgui=Ui_Parameters()
134 dlgui.setupUi(dlg) No newline at end of file
134 dlgui.setupUi(dlg)
135 if (dlg.exec_() == QtGui.QDialog.Accepted): No newline at end of file
135 if (dlg.exec_() == QtGui.QDialog.Accepted):
136 if dlgui.txtDisc.value() > self.var_Discs or dlgui.txtCopy.value() > dlgui.txtNcopys.value(): No newline at end of file
136 if dlgui.txtDisc.value() > self.var_Discs or dlgui.txtCopy.value() > dlgui.txtNcopys.value():
137 self.txtInfo.append("Wrong parameters") No newline at end of file
137 self.txtInfo.append("Wrong parameters")
138 else: No newline at end of file
138 else:
139 self.var_Copys = dlgui.txtNcopys.value() No newline at end of file
139 self.var_Copys = dlgui.txtNcopys.value()
140 self.var_disc_n = dlgui.txtDisc.value() No newline at end of file
140 self.var_disc_n = dlgui.txtDisc.value()
141 self.var_copy_n = dlgui.txtCopy.value() No newline at end of file
141 self.var_copy_n = dlgui.txtCopy.value()
142 self.txtInfo.append("Changed parameters") No newline at end of file
142 self.txtInfo.append("Changed parameters")
143 self.var_burned_discs = ( ( (self.var_disc_n - 1) * self.var_Copys) + self.var_copy_n -1 ) No newline at end of file
143 self.var_burned_discs = ( ( (self.var_disc_n - 1) * self.var_Copys) + self.var_copy_n -1 )
144 self.bool_first_iso = True No newline at end of file
144 self.bool_first_iso = True
145 self.txtInfo.append("Current disc: "+str(self.var_disc_n)) No newline at end of file
145 self.txtInfo.append("Current disc: "+str(self.var_disc_n))
146 self.txtInfo.append("Current copy: "+str(self.var_copy_n)) No newline at end of file
146 self.txtInfo.append("Current copy: "+str(self.var_copy_n))
147 self.txtInfo.append("Nro Copys: "+str(self.var_Copys)) No newline at end of file
147 self.txtInfo.append("Nro Copys: "+str(self.var_Copys))
148 functions2.make_parameters_conf(self) No newline at end of file
148 functions2.make_parameters_conf(self)
149 self.txtCopys.setValue(self.var_Copys) #Actualizo mananualmente el valor Copys No newline at end of file
149 self.txtCopys.setValue(self.var_Copys) #Actualizo mananualmente el valor Copys
150 No newline at end of file
150
151 No newline at end of file
151
152 No newline at end of file
152
153 def about(self): No newline at end of file
153 def about(self):
154 dlg_about=QtGui.QDialog() No newline at end of file
154 dlg_about=QtGui.QDialog()
155 dlgui_about=Ui_About() No newline at end of file
155 dlgui_about=Ui_About()
156 dlgui_about.setupUi(dlg_about) No newline at end of file
156 dlgui_about.setupUi(dlg_about)
157 dlg_about.exec_() No newline at end of file
157 dlg_about.exec_()
158 No newline at end of file
158
159 No newline at end of file
159
160 #============================================================================== No newline at end of file
160 #==============================================================================
161 # Manejo de los eventos No newline at end of file
161 # Manejo de los eventos
162 #============================================================================== No newline at end of file
162 #==============================================================================
163 No newline at end of file
163
164 #----------------------------------------------------- Obtencion de la ruta de los datos --------------------------------------------------------------- No newline at end of file
164 #----------------------------------------------------- Obtencion de la ruta de los datos ---------------------------------------------------------------
165 No newline at end of file
165
166 @pyqtSignature("") No newline at end of file
166 @pyqtSignature("")
167 def on_btnDpath_clicked(self): No newline at end of file
167 def on_btnDpath_clicked(self):
168 """ No newline at end of file
168 """
169 Permite seleccionar graficamente el direcorio de los datos a grabar No newline at end of file
169 Permite seleccionar graficamente el direcorio de los datos a grabar
170 """ No newline at end of file
170 """
171 self.var_Dpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
171 self.var_Dpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
172 self.txtDpath.setText(self.var_Dpath) No newline at end of file
172 self.txtDpath.setText(self.var_Dpath)
173 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
173 self.statusDpath = functions.dir_exists(self.var_Dpath, self)
174 functions.load_days(self) No newline at end of file
174 functions.load_days(self)
175 No newline at end of file
175
176 No newline at end of file
176
177 @pyqtSignature("") No newline at end of file
177 @pyqtSignature("")
178 def on_txtDpath_editingFinished(self): No newline at end of file
178 def on_txtDpath_editingFinished(self):
179 """ No newline at end of file
179 """
180 Carga la ruta editada y verifica que sea correcta y carga la lista de dias No newline at end of file
180 Carga la ruta editada y verifica que sea correcta y carga la lista de dias
181 """ No newline at end of file
181 """
182 self.var_Dpath=str(self.txtDpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
182 self.var_Dpath=str(self.txtDpath.text()) #Se carga la variable con la ruta recien editada
183 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
183 self.statusDpath = functions.dir_exists(self.var_Dpath, self)
184 functions.load_days(self) No newline at end of file
184 functions.load_days(self)
185 No newline at end of file
185
186 No newline at end of file
186
187 #----------------------------------------------------- Obtencion de las ruta del proyecto --------------------------------------------------------------- No newline at end of file
187 #----------------------------------------------------- Obtencion de las ruta del proyecto ---------------------------------------------------------------
188 No newline at end of file
188
189 @pyqtSignature("") No newline at end of file
189 @pyqtSignature("")
190 def on_btnRpath_clicked(self): No newline at end of file
190 def on_btnRpath_clicked(self):
191 """ No newline at end of file
191 """
192 Permite seleccionar graficamente el direcorio del proyecto No newline at end of file
192 Permite seleccionar graficamente el direcorio del proyecto
193 """ No newline at end of file
193 """
194 self.var_Rpath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
194 self.var_Rpath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
195 self.txtRpath.setText(self.var_Rpath) No newline at end of file
195 self.txtRpath.setText(self.var_Rpath)
196 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
196 self.statusRpath = functions.dir_exists(self.var_Rpath, self)
197 No newline at end of file
197
198 No newline at end of file
198
199 @pyqtSignature("") No newline at end of file
199 @pyqtSignature("")
200 def on_txtRpath_editingFinished(self): No newline at end of file
200 def on_txtRpath_editingFinished(self):
201 """ No newline at end of file
201 """
202 Valida la ruta del proyecto No newline at end of file
202 Valida la ruta del proyecto
203 """ No newline at end of file
203 """
204 self.var_Rpath = str(self.txtRpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
204 self.var_Rpath = str(self.txtRpath.text()) #Se carga la variable con la ruta recien editada
205 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
205 self.statusRpath = functions.dir_exists(self.var_Rpath, self)
206 No newline at end of file
206
207 No newline at end of file
207
208 #----------------------------------------------------- Tipo de datos --------------------------------------------------------------- No newline at end of file
208 #----------------------------------------------------- Tipo de datos ---------------------------------------------------------------
209 No newline at end of file
209
210 @pyqtSignature("int") No newline at end of file
210 @pyqtSignature("int")
211 def on_lstDtype_activated(self, index): No newline at end of file
211 def on_lstDtype_activated(self, index):
212 """ No newline at end of file
212 """
213 Permite elegir entre los tipos de archivos No newline at end of file
213 Permite elegir entre los tipos de archivos
214 """ No newline at end of file
214 """
215 self.txtDtype.setReadOnly(True) No newline at end of file
215 self.txtDtype.setReadOnly(True)
216 if index == 0: No newline at end of file
216 if index == 0:
217 self.var_Dtype ='r' No newline at end of file
217 self.var_Dtype ='r'
218 elif index == 1: No newline at end of file
218 elif index == 1:
219 self.var_Dtype ='pdata' No newline at end of file
219 self.var_Dtype ='pdata'
220 elif index == 2: No newline at end of file
220 elif index == 2:
221 self.var_Dtype ='sswma' No newline at end of file
221 self.var_Dtype ='sswma'
222 else : No newline at end of file
222 else :
223 self.var_Dtype ='' No newline at end of file
223 self.var_Dtype =''
224 self.txtDtype.setReadOnly(False) No newline at end of file
224 self.txtDtype.setReadOnly(False)
225 No newline at end of file
225
226 self.txtDtype.setText(self.var_Dtype) No newline at end of file
226 self.txtDtype.setText(self.var_Dtype)
227 functions.load_days(self) #llamada a funcion No newline at end of file
227 functions.load_days(self) #llamada a funcion
228 No newline at end of file
228
229 @pyqtSignature("") No newline at end of file
229 @pyqtSignature("")
230 def on_txtDtype_editingFinished(self): No newline at end of file
230 def on_txtDtype_editingFinished(self):
231 self.var_Dtype=str(self.txtDtype.text()) No newline at end of file
231 self.var_Dtype=str(self.txtDtype.text())
232 functions.load_days(self) #llamada a funcion No newline at end of file
232 functions.load_days(self) #llamada a funcion
233 No newline at end of file
233
234 No newline at end of file
234
235 #----------------------------------------------------- Etiqueta --------------------------------------------------------------- No newline at end of file
235 #----------------------------------------------------- Etiqueta ---------------------------------------------------------------
236 No newline at end of file
236
237 @pyqtSignature("") No newline at end of file
237 @pyqtSignature("")
238 def on_txtElabel_editingFinished(self): No newline at end of file
238 def on_txtElabel_editingFinished(self):
239 self.var_Elabel = str(self.txtElabel.text()) No newline at end of file
239 self.var_Elabel = str(self.txtElabel.text())
240 No newline at end of file
240
241 #----------------------------------------------------- Numero de copias --------------------------------------------------------------- No newline at end of file
241 #----------------------------------------------------- Numero de copias ---------------------------------------------------------------
242 @pyqtSignature("") No newline at end of file
242 @pyqtSignature("")
243 def on_txtCopys_editingFinished(self): No newline at end of file
243 def on_txtCopys_editingFinished(self):
244 self.var_Copys = self.txtCopys.value() No newline at end of file
244 self.var_Copys = self.txtCopys.value()
245 No newline at end of file
245
246 #----------------------------------------------------- Seleccion del rango de fechas --------------------------------------------------------------- No newline at end of file
246 #----------------------------------------------------- Seleccion del rango de fechas ---------------------------------------------------------------
247 No newline at end of file
247
248 @pyqtSignature("int") #CLOSED No newline at end of file
248 @pyqtSignature("int") #CLOSED
249 def on_lstStartDay_activated(self, index): No newline at end of file
249 def on_lstStartDay_activated(self, index):
250 """ No newline at end of file
250 """
251 Cambia la lista de opciones en lstStopDay No newline at end of file
251 Cambia la lista de opciones en lstStopDay
252 """ No newline at end of file
252 """
253 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex() No newline at end of file
253 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex()
254 self.lstStopDay.clear() No newline at end of file
254 self.lstStopDay.clear()
255 No newline at end of file
255
256 for i in self.var_list[index:]: No newline at end of file
256 for i in self.var_list[index:]:
257 self.lstStopDay.addItem(i) No newline at end of file
257 self.lstStopDay.addItem(i)
258 No newline at end of file
258
259 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index) No newline at end of file
259 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index)
260 No newline at end of file
260
261 functions.get_sub_list(self) No newline at end of file
261 functions.get_sub_list(self)
262 No newline at end of file
262
263 No newline at end of file
263
264 @pyqtSignature("int") #CLOSED No newline at end of file
264 @pyqtSignature("int") #CLOSED
265 def on_lstStopDay_activated(self, index): No newline at end of file
265 def on_lstStopDay_activated(self, index):
266 """ No newline at end of file
266 """
267 Cambia la lista de opciones en lstStartDay No newline at end of file
267 Cambia la lista de opciones en lstStartDay
268 """ No newline at end of file
268 """
269 var_StartDay_index=self.lstStartDay.currentIndex() No newline at end of file
269 var_StartDay_index=self.lstStartDay.currentIndex()
270 var_end_index = self.lstStopDay.count() - index No newline at end of file
270 var_end_index = self.lstStopDay.count() - index
271 self.lstStartDay.clear() No newline at end of file
271 self.lstStartDay.clear()
272 No newline at end of file
272
273 for i in self.var_list[:len(self.var_list) - var_end_index + 1]: No newline at end of file
273 for i in self.var_list[:len(self.var_list) - var_end_index + 1]:
274 self.lstStartDay.addItem(i) No newline at end of file
274 self.lstStartDay.addItem(i)
275 No newline at end of file
275
276 self.lstStartDay.setCurrentIndex(var_StartDay_index) No newline at end of file
276 self.lstStartDay.setCurrentIndex(var_StartDay_index)
277 No newline at end of file
277
278 functions.get_sub_list(self) No newline at end of file
278 functions.get_sub_list(self)
279 No newline at end of file
279
280 No newline at end of file
280
281 #----------------------------------------------------- Capacidad del dispositivo de grabacion --------------------------------------------------------------- No newline at end of file
281 #----------------------------------------------------- Capacidad del dispositivo de grabacion ---------------------------------------------------------------
282 No newline at end of file
282
283 @pyqtSignature("") No newline at end of file
283 @pyqtSignature("")
284 def on_txtDcapacity_editingFinished(self): No newline at end of file
284 def on_txtDcapacity_editingFinished(self):
285 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
285 self.var_Dcapacity = self.txtDcapacity.value()
286 No newline at end of file
286
287 No newline at end of file
287
288 @pyqtSignature("int") #CLOSED No newline at end of file
288 @pyqtSignature("int") #CLOSED
289 def on_lstDcapacity_activated(self, index): No newline at end of file
289 def on_lstDcapacity_activated(self, index):
290 """ No newline at end of file
290 """
291 Permite elegir el tamaño del disco No newline at end of file
291 Permite elegir el tamaño del disco
292 """ No newline at end of file
292 """
293 if index == 0: No newline at end of file
293 if index == 0:
294 var_size=25.0 No newline at end of file
294 var_size=25.0
295 elif index == 1: No newline at end of file
295 elif index == 1:
296 var_size=8.5 No newline at end of file
296 var_size=8.5
297 elif index == 2: No newline at end of file
297 elif index == 2:
298 var_size=4.7 No newline at end of file
298 var_size=4.7
299 elif index == 3: No newline at end of file
299 elif index == 3:
300 var_size=0.7 No newline at end of file
300 var_size=0.7
301 No newline at end of file
301
302 if index != 4: No newline at end of file
302 if index != 4:
303 self.txtDcapacity.setValue(var_size*10**9/1024**2) No newline at end of file
303 self.txtDcapacity.setValue(var_size*10**9/1024**2)
304 self.txtDcapacity.setReadOnly(True) No newline at end of file
304 self.txtDcapacity.setReadOnly(True)
305 else: No newline at end of file
305 else:
306 self.txtDcapacity.setValue(100.0) No newline at end of file
306 self.txtDcapacity.setValue(100.0)
307 self.txtDcapacity.setReadOnly(False) No newline at end of file
307 self.txtDcapacity.setReadOnly(False)
308 No newline at end of file
308
309 self.var_lstDcapacity = self.lstDcapacity.currentIndex() No newline at end of file
309 self.var_lstDcapacity = self.lstDcapacity.currentIndex()
310 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
310 self.var_Dcapacity = self.txtDcapacity.value()
311 No newline at end of file
311
312 #----------------------------------------------------- Testeo de las unidades de grabacion --------------------------------------------------------------- No newline at end of file
312 #----------------------------------------------------- Testeo de las unidades de grabacion ---------------------------------------------------------------
313 No newline at end of file
313
314 @pyqtSignature("") No newline at end of file
314 @pyqtSignature("")
315 def on_btnTdevA_clicked(self): No newline at end of file
315 def on_btnTdevA_clicked(self):
316 var_dev = str(self.txtDeviceA.text()) No newline at end of file
316 var_dev = str(self.txtDeviceA.text())
317 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
317 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
318 commands.getstatusoutput(var_cmd) No newline at end of file
318 commands.getstatusoutput(var_cmd)
319 No newline at end of file
319
320 @pyqtSignature("") No newline at end of file
320 @pyqtSignature("")
321 def on_btnTdevB_clicked(self): No newline at end of file
321 def on_btnTdevB_clicked(self):
322 var_dev = str(self.txtDeviceB.text()) No newline at end of file
322 var_dev = str(self.txtDeviceB.text())
323 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
323 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
324 commands.getstatusoutput(var_cmd) No newline at end of file
324 commands.getstatusoutput(var_cmd)
325 No newline at end of file
325
326 @pyqtSignature("") No newline at end of file
326 @pyqtSignature("")
327 def on_btnTdevC_clicked(self): No newline at end of file
327 def on_btnTdevC_clicked(self):
328 var_dev = str(self.txtDeviceC.text()) No newline at end of file
328 var_dev = str(self.txtDeviceC.text())
329 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
329 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
330 commands.getstatusoutput(var_cmd) No newline at end of file
330 commands.getstatusoutput(var_cmd)
331 No newline at end of file
331
332 @pyqtSignature("") No newline at end of file
332 @pyqtSignature("")
333 def on_btnTdevD_clicked(self): No newline at end of file
333 def on_btnTdevD_clicked(self):
334 var_dev = str(self.txtDeviceD.text()) No newline at end of file
334 var_dev = str(self.txtDeviceD.text())
335 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
335 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
336 commands.getstatusoutput(var_cmd) No newline at end of file
336 commands.getstatusoutput(var_cmd)
337 No newline at end of file
337
338 No newline at end of file
338
339 #============================================================================== No newline at end of file
339 #==============================================================================
340 # Botones para la generacion de los archivos de configuracion No newline at end of file
340 # Botones para la generacion de los archivos de configuracion
341 #============================================================================== No newline at end of file
341 #==============================================================================
342 No newline at end of file
342
343 #----------------------------------------------------- Generacion de la configuracion usando los parametros --------------------------------------------------------------- No newline at end of file
343 #----------------------------------------------------- Generacion de la configuracion usando los parametros ---------------------------------------------------------------
344 No newline at end of file
344
345 @pyqtSignature("") No newline at end of file
345 @pyqtSignature("")
346 def on_btnGbkp_clicked(self): No newline at end of file
346 def on_btnGbkp_clicked(self):
347 """ No newline at end of file
347 """
348 Generacion de archivos de configuracion usando los parametros No newline at end of file
348 Generacion de archivos de configuracion usando los parametros
349 """ No newline at end of file
349 """
350 No newline at end of file
350
351 if self.bool_state_manual_check == True:
No newline at end of file
352 self.txtInfo.append("First stop the manual check process")
No newline at end of file
353 return
No newline at end of file
354
No newline at end of file
355 No newline at end of file
351 if functions.validate_parameters(self) == False: No newline at end of file
356 if functions.validate_parameters(self) == False:
352 return No newline at end of file
357 return
353 No newline at end of file
358
354 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente No newline at end of file
359 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente
355 list_dirs=['gpath','iso','ppath', 'tmpdata'] No newline at end of file
360 list_dirs=['gpath','iso','ppath', 'tmpdata']
356 bool_make_dirs = functions.make_dirs(list_dirs, self) No newline at end of file
361 bool_make_dirs = functions.make_dirs(list_dirs, self)
357 if bool_make_dirs == False: No newline at end of file
362 if bool_make_dirs == False:
358 return No newline at end of file
363 return
359 No newline at end of file
364
360 var_files_list = functions.list_files(self) #Se obtiene la lista de archivos a grabar No newline at end of file
365 var_files_list = functions.list_files(self) #Se obtiene la lista de archivos a grabar
361 No newline at end of file
366
362 self.var_Discs = functions.make_files_dat(var_files_list, self) #Se crean los archivos .dat No newline at end of file
367 self.var_Discs = functions.make_files_dat(var_files_list, self) #Se crean los archivos .dat
363 No newline at end of file
368
364 functions.make_files_print(self) # Se crean los archivos .print No newline at end of file
369 functions.make_files_print(self) # Se crean los archivos .print
365 No newline at end of file
370
366 functions2.make_parameters_conf(self) # se crea el archivo parameters.conf No newline at end of file
371 functions2.make_parameters_conf(self) # se crea el archivo parameters.conf
367 No newline at end of file
372
368 self.txtInfo.append("Total number of discs for recording: "+str(self.var_Discs * self.var_Copys)) No newline at end of file
373 self.txtInfo.append("Total number of discs for recording: "+str(self.var_Discs * self.var_Copys))
369 No newline at end of file
374
370 #Se bloquean los parametros de configuracion No newline at end of file
375 #Se bloquean los parametros de configuracion
371 functions2.enabled_items1(True, self) No newline at end of file
376 functions2.enabled_items1(True, self)
372 self.var_disc_n = 1 No newline at end of file
377 self.var_disc_n = 1
373 self.var_copy_n = 1 No newline at end of file
378 self.var_copy_n = 1
374 self.bool_first_iso = True No newline at end of file
379 self.bool_first_iso = True
375 self.var_burned_discs = 0 #numero de discos grabados No newline at end of file
380 self.var_burned_discs = 0 #numero de discos grabados
376 No newline at end of file
381
377 No newline at end of file
382
378 #----------------------------------------------------- Permite reiniciar la configuracion --------------------------------------------------------------- No newline at end of file
383 #----------------------------------------------------- Permite reiniciar la configuracion ---------------------------------------------------------------
379 No newline at end of file
384
380 @pyqtSignature("") No newline at end of file
385 @pyqtSignature("")
381 def on_btnRestart_clicked(self): No newline at end of file
386 def on_btnRestart_clicked(self):
382 """ No newline at end of file
387 """
383 Permite que se puedan cambiar los parametros No newline at end of file
388 Permite que se puedan cambiar los parametros
384 """ No newline at end of file
389 """
385 if os.path.isfile("parameters.conf"): No newline at end of file
390 if os.path.isfile("parameters.conf"):
386 os.remove("parameters.conf") No newline at end of file
391 os.remove("parameters.conf")
387 if os.path.isfile("burning.conf"): No newline at end of file
392 if os.path.isfile("burning.conf"):
388 os.remove("burning.conf") No newline at end of file
393 os.remove("burning.conf")
389 No newline at end of file
394
390 functions2.enabled_items1(False, self) No newline at end of file
395 functions2.enabled_items1(False, self)
391 self.btnStartburn.setText("Start Burn") No newline at end of file
396 self.btnStartburn.setText("Start Burn")
392 self.txtInfo.clear() No newline at end of file
397 self.txtInfo.clear()
393 No newline at end of file
398
394 No newline at end of file
399
395 No newline at end of file
400
396 #============================================================================== No newline at end of file
401 #==============================================================================
397 # Acciones de los procesos No newline at end of file
402 # Acciones de los procesos
398 #============================================================================== No newline at end of file
403 #==============================================================================
399 No newline at end of file
404
400 #------------------------------------------------ Funciones del proceso de creacion del iso ------------------------------------------------------ No newline at end of file
405 #------------------------------------------------ Funciones del proceso de creacion del iso ------------------------------------------------------
401 No newline at end of file
406
402 def readOuput_iso(self): No newline at end of file
407 def readOuput_iso(self):
403 self.txtProgress.setText("stdout iso: " + QtCore.QString(self.process_iso.readAllStandardOutput())) No newline at end of file
408 self.txtProgress.setText("stdout iso: " + QtCore.QString(self.process_iso.readAllStandardOutput()))
404 No newline at end of file
409
405 def readError_iso(self): No newline at end of file
410 def readError_iso(self):
406 self.txtProgress.setText("stderr iso: " + QtCore.QString(self.process_iso.readAllStandardError())) No newline at end of file
411 self.txtProgress.setText("stderr iso: " + QtCore.QString(self.process_iso.readAllStandardError()))
407 No newline at end of file
412
408 def finished_iso(self): No newline at end of file
413 def finished_iso(self):
409 self.txtProgress.clear() No newline at end of file
414 self.txtProgress.clear()
410 No newline at end of file
415
411 if not(self.bool_state_burning): No newline at end of file
416 if not(self.bool_state_burning):
412 return No newline at end of file
417 return
413 No newline at end of file
418
414 if self.process_iso.exitCode() == 0: No newline at end of file
419 if self.process_iso.exitCode() == 0:
415 self.txtInfo.append("------Iso file: "+functions.i2s(self.var_disc_n)+" created successfully\n") No newline at end of file
420 self.txtInfo.append("------Iso file: "+functions.i2s(self.var_disc_n)+" created successfully\n")
416 self.var_step = 1 No newline at end of file
421 self.var_step = 1
417 self.function_burn() No newline at end of file
422 self.function_burn()
418 No newline at end of file
423
419 else: No newline at end of file
424 else:
420 self.txtInfo.append("#####Error creating iso file "+functions.i2s(self.var_disc_n) No newline at end of file
425 self.txtInfo.append("#####Error creating iso file "+functions.i2s(self.var_disc_n)
421 +" , code "+QtCore.QString(self.process_iso.exitCode())) No newline at end of file
426 +" , code "+QtCore.QString(self.process_iso.exitCode()))
422 self.txtInfo.append("Please check the data") No newline at end of file
427 self.txtInfo.append("Please check the data")
423 self.txtInfo.append("FATAL ERROR") No newline at end of file
428 self.txtInfo.append("FATAL ERROR")
424 No newline at end of file
429
425 #----------------------------------------------------- Funciones del proceso de grabado --------------------------------------------------------------- No newline at end of file
430 #----------------------------------------------------- Funciones del proceso de grabado ---------------------------------------------------------------
426 No newline at end of file
431
427 def readOuput_burn(self): No newline at end of file
432 def readOuput_burn(self):
428 self.txtProgress.setText("stdout burn: " + QtCore.QString(self.process_burn.readAllStandardOutput())) No newline at end of file
433 self.txtProgress.setText("stdout burn: " + QtCore.QString(self.process_burn.readAllStandardOutput()))
429 No newline at end of file
434
430 def readError_burn(self): No newline at end of file
435 def readError_burn(self):
431 self.txtProgress.setText("stderr burn: " + QtCore.QString(self.process_burn.readAllStandardError())) No newline at end of file
436 self.txtProgress.setText("stderr burn: " + QtCore.QString(self.process_burn.readAllStandardError()))
432 No newline at end of file
437
433 def finished_burn(self): No newline at end of file
438 def finished_burn(self):
434 self.txtProgress.clear() No newline at end of file
439 self.txtProgress.clear()
435 No newline at end of file
440
436 #Si se paro el proceso manualmente se termina No newline at end of file
441 #Si se paro el proceso manualmente se termina
437 if not(self.bool_state_burning): No newline at end of file
442 if not(self.bool_state_burning):
438 return No newline at end of file
443 return
439 No newline at end of file
444
440 if self.process_burn.exitCode() == 0: No newline at end of file
445 if self.process_burn.exitCode() == 0:
441 self.txtInfo.append("-----Complete recording, disc: "+str(self.var_disc_n)+" copy: "+str(self.var_copy_n)) No newline at end of file
446 self.txtInfo.append("-----Complete recording, disc: "+str(self.var_disc_n)+" copy: "+str(self.var_copy_n))
442 functions2.update_message(1, "COMPLETED", self) No newline at end of file
447 functions2.update_message(1, "COMPLETED", self)
443 self.var_step = 2 No newline at end of file
448 self.var_step = 2
444 self.function_check() No newline at end of file
449 self.function_check()
445 No newline at end of file
450
446 else: No newline at end of file
451 else:
447 self.txtInfo.append("#######Error recording, disc: "+functions.i2s(self.var_disc_n)+" copy: " No newline at end of file
452 self.txtInfo.append("#######Error recording, disc: "+functions.i2s(self.var_disc_n)+" copy: "
448 +functions.i2s(self.var_copy_n)+", code "+QtCore.QString(self.process_burn.exitCode())) No newline at end of file
453 +functions.i2s(self.var_copy_n)+", code "+QtCore.QString(self.process_burn.exitCode()))
449 functions2.update_message(1, "ERROR", self) No newline at end of file
454 functions2.update_message(1, "ERROR", self)
450 No newline at end of file
455
451 functions.is_last_disc_and_copy(self) No newline at end of file
456 functions.is_last_disc_and_copy(self)
452 No newline at end of file
457
453 No newline at end of file
458
454 #----------------------------------------------------- Funciones del proceso de verificacion --------------------------------------------------------------- No newline at end of file
459 #----------------------------------------------------- Funciones del proceso de verificacion ---------------------------------------------------------------
455 No newline at end of file
460
456 def readOuput_check(self): No newline at end of file
461 def readOuput_check(self):
457 self.txtProgress.setText("stdout check: " + QtCore.QString(self.process_check.readAllStandardOutput())) No newline at end of file
462 self.txtProgress.setText("stdout check: " + QtCore.QString(self.process_check.readAllStandardOutput()))
458 No newline at end of file
463
459 def readError_check(self): No newline at end of file
464 def readError_check(self):
460 self.txtProgress.setText("stderr check: " + QtCore.QString(self.process_check.readAllStandardError())) No newline at end of file
465 self.txtProgress.setText("stderr check: " + QtCore.QString(self.process_check.readAllStandardError()))
461 No newline at end of file
466
462 def finished_check(self): No newline at end of file
467 def finished_check(self):
463 self.txtProgress.clear() No newline at end of file
468 self.txtProgress.clear()
464 No newline at end of file
469
465 if not(self.bool_state_burning): No newline at end of file
470 if not(self.bool_state_burning):
466 return No newline at end of file
471 return
467 No newline at end of file
472
468 if self.process_check.exitCode() == 0: No newline at end of file
473 if self.process_check.exitCode() == 0:
469 self.txtInfo.append("--------Complete checking, disc: "+str(self.var_disc_n)+" copy: "+str(self.var_copy_n)) No newline at end of file
474 self.txtInfo.append("--------Complete checking, disc: "+str(self.var_disc_n)+" copy: "+str(self.var_copy_n))
470 functions2.update_message(2, "CHECKED", self) No newline at end of file
475 functions2.update_message(2, "CHECKED", self)
471 No newline at end of file
476
472 else: No newline at end of file
477 else:
473 self.txtInfo.append("#######Error checking, disc: "+functions.i2s(self.var_disc_n)+" copy: " No newline at end of file
478 self.txtInfo.append("#######Error checking, disc: "+functions.i2s(self.var_disc_n)+" copy: "
474 +functions.i2s(self.var_copy_n)+", code "+QtCore.QString(self.process_check.exitCode())) No newline at end of file
479 +functions.i2s(self.var_copy_n)+", code "+QtCore.QString(self.process_check.exitCode()))
475 functions2.update_message(2, "ERROR", self) No newline at end of file
480 functions2.update_message(2, "ERROR", self)
476 No newline at end of file
481
477 #borrar el contenido de tmpdata No newline at end of file
482 #borrar el contenido de tmpdata
478 var_tmpdata=self.var_Rpath+"/tmpdata" No newline at end of file
483 var_tmpdata=self.var_Rpath+"/tmpdata"
479 No newline at end of file
484
480 bool_return = functions.remove_dir(var_tmpdata, self) No newline at end of file
485 bool_return = functions.remove_dir(var_tmpdata, self)
481 if not(bool_return): No newline at end of file
486 if not(bool_return):
482 self.txtInfo.append("Error deleting directory: "+var_tmpdata) No newline at end of file
487 self.txtInfo.append("Error deleting directory: "+var_tmpdata)
483 self.bool_state_burning = False No newline at end of file
488 self.bool_state_burning = False
484 return No newline at end of file
489 return
485 No newline at end of file
490
486 bool_return = functions.make_dir(var_tmpdata, self) No newline at end of file
491 bool_return = functions.make_dir(var_tmpdata, self)
487 if not(bool_return): No newline at end of file
492 if not(bool_return):
488 self.txtInfo.append("Error creating directory:"+ var_tmpdata) No newline at end of file
493 self.txtInfo.append("Error creating directory:"+ var_tmpdata)
489 self.bool_state_burning = False No newline at end of file
494 self.bool_state_burning = False
490 return No newline at end of file
495 return
491 No newline at end of file
496
492 functions.is_last_disc_and_copy(self) No newline at end of file
497 functions.is_last_disc_and_copy(self)
493 No newline at end of file
498
494 #----------------------------------------------------- Funciones del proceso de verificacion manual --------------------------------------------------------------- No newline at end of file
499 #----------------------------------------------------- Funciones del proceso de verificacion manual ---------------------------------------------------------------
495 No newline at end of file
500
496 def readOuput_manual_check(self): No newline at end of file
501 def readOuput_manual_check(self):
497 self.txtProgress.setText("stdout check: " + QtCore.QString(self.process_manual_check.readAllStandardOutput())) No newline at end of file
502 self.txtProgress.setText("stdout check: " + QtCore.QString(self.process_manual_check.readAllStandardOutput()))
498 No newline at end of file
503
499 def readError_manual_check(self): No newline at end of file
504 def readError_manual_check(self):
500 self.txtProgress.setText("stderr check: " + QtCore.QString(self.process_manual_check.readAllStandardError())) No newline at end of file
505 self.txtProgress.setText("stderr check: " + QtCore.QString(self.process_manual_check.readAllStandardError()))
501 No newline at end of file
506
502 def finished_manual_check(self): No newline at end of file
507 def finished_manual_check(self):
503 self.txtProgress.clear() No newline at end of file
508 self.txtProgress.clear()
504 No newline at end of file
509
505 if not(self.bool_state_manual_check): No newline at end of file
510 if not(self.bool_state_manual_check):
506 return No newline at end of file
511 return
507 No newline at end of file
512
508 if self.process_manual_check.exitCode() == 0: No newline at end of file
513 if self.process_manual_check.exitCode() == 0:
509 self.txtInfo.append("--------Complete checking, disc: "+str(self.var_n_check_dirs + 1)) No newline at end of file
514 self.txtInfo.append("--------Complete checking, disc: "+str(self.var_n_check_dirs + 1))
510 functions2.update_message(2, "CHECKED", self, index=self.var_n_check_dirs) No newline at end of file
515 functions2.update_message(2, "CHECKED", self, index=self.var_n_check_dirs)
511 No newline at end of file
516
512 else: No newline at end of file
517 else:
513 self.txtInfo.append("#######Error checking, disc: "+str(self.var_n_check_dirs + 1) No newline at end of file
518 self.txtInfo.append("#######Error checking, disc: "+str(self.var_n_check_dirs + 1)
514 +", code "+QtCore.QString(self.process_manual_check.exitCode())) No newline at end of file
519 +", code "+QtCore.QString(self.process_manual_check.exitCode()))
515 functions2.update_message(2, "ERROR", self, index=self.var_n_check_dirs) No newline at end of file
520 functions2.update_message(2, "ERROR", self, index=self.var_n_check_dirs)
516 No newline at end of file
521
517 #borrar el contenido de tmpdata No newline at end of file
522 #borrar el contenido de tmpdata
518 var_tmpdata=self.var_TDpath+"/tmpdata" No newline at end of file
523 var_tmpdata=self.var_TDpath+"/tmpdata"
519 No newline at end of file
524
520 bool_return = functions.remove_dir(var_tmpdata, self) No newline at end of file
525 bool_return = functions.remove_dir(var_tmpdata, self)
521 if not(bool_return): No newline at end of file
526 if not(bool_return):
522 self.txtInfo.append("Error deleting directory: "+var_tmpdata) No newline at end of file
527 self.txtInfo.append("Error deleting directory: "+var_tmpdata)
523 self.bool_state_manual_check = False No newline at end of file
528 self.bool_state_manual_check = False
524 return No newline at end of file
529 return
525 No newline at end of file
530
526 self.var_n_check_dirs +=1 No newline at end of file
531 self.var_n_check_dirs +=1
527 No newline at end of file
532
528 if self.var_n_check_dirs >= len(self.list_check_dirs) : No newline at end of file
533 if self.var_n_check_dirs >= len(self.list_check_dirs) :
529 self.bool_state_manual_check = False No newline at end of file
534 self.bool_state_manual_check = False
530 self.function_manual_check_final() No newline at end of file
535 self.function_manual_check_final()
531 return No newline at end of file
536 return
532 No newline at end of file
537
533 self.function_manual_check() No newline at end of file
538 self.function_manual_check()
534 No newline at end of file
539
535 No newline at end of file
540
536 #============================================================================== No newline at end of file
541 #==============================================================================
537 # Botones para el proceso de grabacion No newline at end of file
542 # Botones para el proceso de grabacion
538 #============================================================================== No newline at end of file
543 #==============================================================================
539 No newline at end of file
544
540 #----------------------------------------------------- Iniciar proceso de grabacion --------------------------------------------------------------- No newline at end of file
545 #----------------------------------------------------- Iniciar proceso de grabacion ---------------------------------------------------------------
541 No newline at end of file
546
542 @pyqtSignature("") No newline at end of file
547 @pyqtSignature("")
543 def on_btnStartburn_clicked(self): No newline at end of file
548 def on_btnStartburn_clicked(self):
544 """ No newline at end of file
549 """
545 Se inicia el proceso de grabacion No newline at end of file
550 Se inicia el proceso de grabacion
546 """ No newline at end of file
551 """
547 #Verifica que exista algun dispositivo de grabacion seleccionado No newline at end of file
552 #Verifica que exista algun dispositivo de grabacion seleccionado
548 if not(functions2.selected_devices(self)): No newline at end of file
553 if not(functions2.selected_devices(self)):
549 self.txtInfo.append("There is no recording device selected") No newline at end of file
554 self.txtInfo.append("There is no recording device selected")
550 return No newline at end of file
555 return
551 No newline at end of file
556
552 # #Lista los dispositivos de grabacion a usar No newline at end of file
557 # #Lista los dispositivos de grabacion a usar
553 # for dev in self.var_devices: No newline at end of file
558 # for dev in self.var_devices:
554 # self.txtInfo.append("recording device :"+dev) No newline at end of file
559 # self.txtInfo.append("recording device :"+dev)
555 No newline at end of file
560
556 self.bool_state_burning = True No newline at end of file
561 self.bool_state_burning = True
557 functions2.enabled_items2(True, self) No newline at end of file
562 functions2.enabled_items2(True, self)
558 No newline at end of file
563
559 if self.bool_first_iso == True: No newline at end of file
564 if self.bool_first_iso == True:
560 self.txtInfo.append("BUTTON: on_btnStartburn_clicked") No newline at end of file
565 self.txtInfo.append("BUTTON: on_btnStartburn_clicked")
561 self.var_step = 4 No newline at end of file
566 self.var_step = 4
562 self.function_eject() No newline at end of file
567 self.function_eject()
563 return No newline at end of file
568 return
564 No newline at end of file
569
565 if self.var_step == 0: No newline at end of file
570 if self.var_step == 0:
566 self.function_iso() No newline at end of file
571 self.function_iso()
567 return No newline at end of file
572 return
568 No newline at end of file
573
569 if self.var_step == 1: No newline at end of file
574 if self.var_step == 1:
570 self.function_burn() No newline at end of file
575 self.function_burn()
571 return No newline at end of file
576 return
572 No newline at end of file
577
573 #----------------------------------------------------- Funcion para el grabado --------------------------------------------------------------- No newline at end of file
578 #----------------------------------------------------- Funcion para el grabado ---------------------------------------------------------------
574 No newline at end of file
579
575 def function_iso(self): No newline at end of file
580 def function_iso(self):
576 #Creacion del archivo.iso para la grabacion No newline at end of file
581 #Creacion del archivo.iso para la grabacion
577 if self.var_step == 0: No newline at end of file
582 if self.var_step == 0:
578 self.txtInfo.append("########## Disc number: "+str(self.var_disc_n)+"##########") No newline at end of file
583 self.txtInfo.append("########## Disc number: "+str(self.var_disc_n)+"##########")
579 self.txtInfo.append("------Creating iso file number: "+str(self.var_disc_n)) No newline at end of file
584 self.txtInfo.append("------Creating iso file number: "+str(self.var_disc_n))
580 No newline at end of file
585
581 var_cmd = functions.cmd_iso(self) No newline at end of file
586 var_cmd = functions.cmd_iso(self)
582 No newline at end of file
587
583 if self.var_real_show_cmd == True: No newline at end of file
588 if self.var_real_show_cmd == True:
584 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
589 self.txtInfo.append("CMD: "+var_cmd)
585 No newline at end of file
590
586 if self.var_real_iso == False: No newline at end of file
591 if self.var_real_iso == False:
587 self.txtInfo.append('**function_iso') No newline at end of file
592 self.txtInfo.append('**function_iso')
588 var_cmd="echo 'function_iso'" No newline at end of file
593 var_cmd="echo 'function_iso'"
589 No newline at end of file
594
590 self.process_iso.start(var_cmd) No newline at end of file
595 self.process_iso.start(var_cmd)
591 No newline at end of file
596
592 def function_burn(self): No newline at end of file
597 def function_burn(self):
593 #Grabacion de los DVDs No newline at end of file
598 #Grabacion de los DVDs
594 No newline at end of file
599
595 if self.var_step == 1: No newline at end of file
600 if self.var_step == 1:
596 self.txtInfo.append("------Recording disc: "+str(self.var_disc_n)+", copy:"+str(self.var_copy_n)) No newline at end of file
601 self.txtInfo.append("------Recording disc: "+str(self.var_disc_n)+", copy:"+str(self.var_copy_n))
597 functions2.update_message(1, "BURNING", self) No newline at end of file
602 functions2.update_message(1, "BURNING", self)
598 No newline at end of file
603
599 var_cmd = functions.cmd_burn(self) No newline at end of file
604 var_cmd = functions.cmd_burn(self)
600 No newline at end of file
605
601 if self.var_real_show_cmd == True: No newline at end of file
606 if self.var_real_show_cmd == True:
602 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
607 self.txtInfo.append("CMD: "+var_cmd)
603 No newline at end of file
608
604 if self.var_real_burn == False: No newline at end of file
609 if self.var_real_burn == False:
605 self.txtInfo.append('**function_burn') No newline at end of file
610 self.txtInfo.append('**function_burn')
606 var_cmd="echo 'function_burn'" No newline at end of file
611 var_cmd="echo 'function_burn'"
607 No newline at end of file
612
608 self.process_burn.start(var_cmd) No newline at end of file
613 self.process_burn.start(var_cmd)
609 No newline at end of file
614
610 def function_check(self): No newline at end of file
615 def function_check(self):
611 #Verificacion de los discos No newline at end of file
616 #Verificacion de los discos
612 if self.var_step == 2: No newline at end of file
617 if self.var_step == 2:
613 self.txtInfo.append("-----------checking disc:"+str(self.var_disc_n)+", copy:"+str(self.var_copy_n)) No newline at end of file
618 self.txtInfo.append("-----------checking disc:"+str(self.var_disc_n)+", copy:"+str(self.var_copy_n))
614 No newline at end of file
619
615 functions2.eject_one_device(self) No newline at end of file
620 functions2.eject_one_device(self)
616 functions2.eject_t_one_device(self) No newline at end of file
621 functions2.eject_t_one_device(self)
617 self.txtInfo.append("Waiting ...") No newline at end of file
622 self.txtInfo.append("Waiting ...")
618 time .sleep(20) No newline at end of file
623 time .sleep(20)
619 No newline at end of file
624
620 functions2.update_message(2, "CHECKING", self) No newline at end of file
625 functions2.update_message(2, "CHECKING", self)
621 No newline at end of file
626
622 dev_sr = functions2.get_dev_sr(self) No newline at end of file
627 dev_sr = functions2.get_dev_sr(self)
623 var_cmd = functions.cmd_check(dev_sr, self) No newline at end of file
628 var_cmd = functions.cmd_check(dev_sr, self)
624 No newline at end of file
629
625 if self.var_real_show_cmd == True: No newline at end of file
630 if self.var_real_show_cmd == True:
626 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
631 self.txtInfo.append("CMD: "+var_cmd)
627 No newline at end of file
632
628 if self.var_real_check == False: No newline at end of file
633 if self.var_real_check == False:
629 self.txtInfo.append('**function_check') No newline at end of file
634 self.txtInfo.append('**function_check')
630 var_cmd="echo 'function_check'" No newline at end of file
635 var_cmd="echo 'function_check'"
631 No newline at end of file
636
632 self.process_check.start(var_cmd) No newline at end of file
637 self.process_check.start(var_cmd)
633 No newline at end of file
638
634 #OK No newline at end of file
639 #OK
635 def function_eject(self): No newline at end of file
640 def function_eject(self):
636 self.txtInfo.append("Ejecting recording devices") No newline at end of file
641 self.txtInfo.append("Ejecting recording devices")
637 self.txtInfo.append("Please insert blank discs") No newline at end of file
642 self.txtInfo.append("Please insert blank discs")
638 No newline at end of file
643
639 if self.var_real_eject == True: No newline at end of file
644 if self.var_real_eject == True:
640 functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion No newline at end of file
645 functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion
641 else: No newline at end of file
646 else:
642 self.txtInfo.append("**functions2.eject_devices") No newline at end of file
647 self.txtInfo.append("**functions2.eject_devices")
643 No newline at end of file
648
644 self.btnStartburn.setText("Continue") No newline at end of file
649 self.btnStartburn.setText("Continue")
645 self.btnStartburn.setEnabled(True) No newline at end of file
650 self.btnStartburn.setEnabled(True)
646 No newline at end of file
651
647 if self.bool_first_iso == True: No newline at end of file
652 if self.bool_first_iso == True:
648 self.bool_first_iso = False No newline at end of file
653 self.bool_first_iso = False
649 self.var_step = 0 No newline at end of file
654 self.var_step = 0
650 No newline at end of file
655
651 elif self.var_copy_n == 1: No newline at end of file
656 elif self.var_copy_n == 1:
652 self.var_step = 0 No newline at end of file
657 self.var_step = 0
653 No newline at end of file
658
654 else: No newline at end of file
659 else:
655 self.var_step = 1 No newline at end of file
660 self.var_step = 1
656 No newline at end of file
661
657 def function_final(self): No newline at end of file
662 def function_final(self):
658 self.txtInfo.append("Recording process is complete") No newline at end of file
663 self.txtInfo.append("Recording process is complete")
659 if os.path.isfile("parameters.conf"): No newline at end of file
664 if os.path.isfile("parameters.conf"):
660 os.remove("parameters.conf") No newline at end of file
665 os.remove("parameters.conf")
661 if os.path.isfile("burning.conf"): No newline at end of file
666 if os.path.isfile("burning.conf"):
662 os.remove("burning.conf") No newline at end of file
667 os.remove("burning.conf")
663 No newline at end of file
668
664 functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion No newline at end of file
669 functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion
665 No newline at end of file
670
666 No newline at end of file
671
667 No newline at end of file
672
668 No newline at end of file
673
669 #----------------------------------------------------- Detener proceso de grabacion --------------------------------------------------------------- No newline at end of file
674 #----------------------------------------------------- Detener proceso de grabacion ---------------------------------------------------------------
670 No newline at end of file
675
671 @pyqtSignature("") No newline at end of file
676 @pyqtSignature("")
672 def on_btnStopburn_clicked(self): No newline at end of file
677 def on_btnStopburn_clicked(self):
673 """ No newline at end of file
678 """
674 Slot documentation goes here. No newline at end of file
679 Slot documentation goes here.
675 """ No newline at end of file
680 """
676 self.bool_state_burning = False No newline at end of file
681 self.bool_state_burning = False
677 No newline at end of file
682
678 if self.var_step == 0: No newline at end of file
683 if self.var_step == 0:
679 self.process_iso.terminate() #Termina el proceso, si puede No newline at end of file
684 self.process_iso.terminate() #Termina el proceso, si puede
680 # self.process_iso.kill() #Mata el proceso, no es la forma adecuada, solo usar si terminate() no funciona No newline at end of file
685 # self.process_iso.kill() #Mata el proceso, no es la forma adecuada, solo usar si terminate() no funciona
681 elif self.var_step == 1: No newline at end of file
686 elif self.var_step == 1:
682 self.process_burn.terminate() No newline at end of file
687 self.process_burn.terminate()
683 elif self.var_step == 2: No newline at end of file
688 elif self.var_step == 2:
684 self.process_check.terminate() No newline at end of file
689 self.process_check.terminate()
685 No newline at end of file
690
686 self.txtInfo.append("Stopped recording") No newline at end of file
691 self.txtInfo.append("Stopped recording")
687 functions2.enabled_items2(False, self) No newline at end of file
692 functions2.enabled_items2(False, self)
688 self.bool_first_iso = True No newline at end of file
693 self.bool_first_iso = True
689 No newline at end of file
694
690 No newline at end of file
695
691 No newline at end of file
696
692 #============================================================================== No newline at end of file
697 #==============================================================================
693 # Proceso verificacion manual No newline at end of file
698 # Proceso verificacion manual
694 #============================================================================== No newline at end of file
699 #==============================================================================
695 No newline at end of file
700
696 No newline at end of file
701
697 #----------------------------------------------------- Proceso de verificaion manual --------------------------------------------------------------- No newline at end of file
702 #----------------------------------------------------- Proceso de verificaion manual ---------------------------------------------------------------
698 No newline at end of file
703
699 No newline at end of file
704
700 @pyqtSignature("") No newline at end of file
705 @pyqtSignature("")
701 def on_btnTDpath_clicked(self): No newline at end of file
706 def on_btnTDpath_clicked(self):
702 """ No newline at end of file
707 """
703 Slot documentation goes here. No newline at end of file
708 Slot documentation goes here.
704 """ No newline at end of file
709 """
705 self.var_TDpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
710 self.var_TDpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
706 self.txtTDpath.setText(self.var_TDpath) No newline at end of file
711 self.txtTDpath.setText(self.var_TDpath)
707 self.statusTDpath = functions.dir_exists(self.var_TDpath, self) No newline at end of file
712 self.statusTDpath = functions.dir_exists(self.var_TDpath, self)
708 if self.statusTDpath: No newline at end of file
713 if self.statusTDpath:
709 self.btnCHstart.setEnabled(True) No newline at end of file
714 self.btnCHstart.setEnabled(True)
710 No newline at end of file
715
711 No newline at end of file
716
712 @pyqtSignature("") No newline at end of file
717 @pyqtSignature("")
713 def on_btnCHstart_clicked(self): No newline at end of file
718 def on_btnCHstart_clicked(self):
714 """ No newline at end of file
719 """
715 Slot documentation goes here. No newline at end of file
720 Slot documentation goes here.
716 """ No newline at end of file
721 """
717 No newline at end of file
722
718 if self.btnCHstart.text() == "STOP": No newline at end of file
723 if self.btnCHstart.text() == "STOP":
719 self.btnCHstart.setText("START") #Cambio el texto del boton No newline at end of file
724 self.btnCHstart.setText("START") #Cambio el texto del boton
720 self.bool_state_manual_check = False No newline at end of file
725 self.bool_state_manual_check = False
721 self.process_manual_check.terminate() No newline at end of file
726 self.process_manual_check.terminate()
722 No newline at end of file
727
723 #borrar el contenido de tmpdata No newline at end of file
728 #borrar el contenido de tmpdata
724 var_tmpdata=self.var_TDpath+"/tmpdata" No newline at end of file
729 var_tmpdata=self.var_TDpath+"/tmpdata"
725 bool_return = functions.remove_dir(var_tmpdata, self) No newline at end of file
730 bool_return = functions.remove_dir(var_tmpdata, self)
726 if not(bool_return): No newline at end of file
731 if not(bool_return):
727 self.txtInfo.append("Error deleting directory: "+var_tmpdata) No newline at end of file
732 self.txtInfo.append("Error deleting directory: "+var_tmpdata)
728 No newline at end of file
733
729 return No newline at end of file
734 return
730 No newline at end of file
735
731 No newline at end of file
736
732 list_dirs = functions2.mounted_devices() No newline at end of file
737 list_dirs = functions2.mounted_devices()
733 if list_dirs == "FATAL ERROR": No newline at end of file
738 if list_dirs == "FATAL ERROR":
734 self.txtInfo.append("ERROR") No newline at end of file
739 self.txtInfo.append("ERROR")
735 return No newline at end of file
740 return
736 No newline at end of file
741
737 for i in list_dirs: No newline at end of file
742 for i in list_dirs:
738 self.txtInfo.append(i) No newline at end of file
743 self.txtInfo.append(i)
739 No newline at end of file
744
740 self.list_check_dirs = list_dirs #contiene los directorios donde estan montados los discos a verificar No newline at end of file
745 self.list_check_dirs = list_dirs #contiene los directorios donde estan montados los discos a verificar
741 self.var_n_check_dirs = 0 No newline at end of file
746 self.var_n_check_dirs = 0
742 self.bool_state_manual_check = True No newline at end of file
747 self.bool_state_manual_check = True
743 No newline at end of file
748
744 self.btnTDpath.setEnabled(False) #Deshabilito el boton que permite cambiar la ruta de verificacion No newline at end of file
749 self.btnTDpath.setEnabled(False) #Deshabilito el boton que permite cambiar la ruta de verificacion
745 self.btnCHstart.setText("STOP") #Cambio el texto del boton No newline at end of file
750 self.btnCHstart.setText("STOP") #Cambio el texto del boton
746 No newline at end of file
751
747 self.function_manual_check() No newline at end of file
752 self.function_manual_check()
748 No newline at end of file
753
749 No newline at end of file
754
750 def function_manual_check(self): No newline at end of file
755 def function_manual_check(self):
751 No newline at end of file
756
752 #Verificacion de los discos No newline at end of file
757 #Verificacion de los discos
753 if self.bool_state_manual_check == True: No newline at end of file
758 if self.bool_state_manual_check == True:
754 No newline at end of file
759
755 self.txtInfo.append("-----------manually checking disc: "+str(self.var_n_check_dirs + 1) No newline at end of file
760 self.txtInfo.append("-----------manually checking disc: "+str(self.var_n_check_dirs + 1)
756 +" directory: "+self.list_check_dirs[self.var_n_check_dirs]) No newline at end of file
761 +" directory: "+self.list_check_dirs[self.var_n_check_dirs])
757 No newline at end of file
762
758 functions2.update_message(2, "CHECKING", self, index=self.var_n_check_dirs) No newline at end of file
763 functions2.update_message(2, "CHECKING", self, index=self.var_n_check_dirs)
759 No newline at end of file
764
760 #Crea la carpeta tmpdata dentro de la ruta elegida No newline at end of file
765 #Crea la carpeta tmpdata dentro de la ruta elegida
761 var_tmpdata=self.var_TDpath+"/tmpdata" No newline at end of file
766 var_tmpdata=self.var_TDpath+"/tmpdata"
762 bool_return = functions.make_dir(var_tmpdata, self) No newline at end of file
767 bool_return = functions.make_dir(var_tmpdata, self)
763 if not(bool_return): No newline at end of file
768 if not(bool_return):
764 self.txtInfo.append("Error creating directory:"+ var_tmpdata) No newline at end of file
769 self.txtInfo.append("Error creating directory:"+ var_tmpdata)
765 self.bool_state_burning = False No newline at end of file
770 self.bool_state_burning = False
766 return No newline at end of file
771 return
767 No newline at end of file
772
768 var_data_dir = self.list_check_dirs[self.var_n_check_dirs] #Carpeta donde esta montado el disco actual No newline at end of file
773 var_data_dir = self.list_check_dirs[self.var_n_check_dirs] #Carpeta donde esta montado el disco actual
769 No newline at end of file
774
770 var_cmd = functions.cmd_manual_check(var_data_dir, var_tmpdata) No newline at end of file
775 var_cmd = functions.cmd_manual_check(var_data_dir, var_tmpdata)
771 No newline at end of file
776
772 if self.var_real_show_cmd == True: No newline at end of file
777 if self.var_real_show_cmd == True:
773 self.txtInfo.append("CMD: "+var_cmd) No newline at end of file
778 self.txtInfo.append("CMD: "+var_cmd)
774 No newline at end of file
779
775 if self.var_real_manual_check == False: No newline at end of file
780 if self.var_real_manual_check == False:
776 self.txtInfo.append('**function_manual_check') No newline at end of file
781 self.txtInfo.append('**function_manual_check')
777 var_cmd="echo 'function_manual_check'" No newline at end of file
782 var_cmd="echo 'function_manual_check'"
778 No newline at end of file
783
779 self.process_manual_check.start(var_cmd) No newline at end of file
784 self.process_manual_check.start(var_cmd)
780 No newline at end of file
785
781 No newline at end of file
786
782 def function_manual_check_final(self): No newline at end of file
787 def function_manual_check_final(self):
783 self.txtInfo.append("Manual check process is complete") No newline at end of file
788 self.txtInfo.append("Manual check process is complete")
784 self.btnCHstart.setText("START") #Cambio el texto del boton No newline at end of file
789 self.btnCHstart.setText("START") #Cambio el texto del boton
785 for var_mount_point in self.list_check_dirs: No newline at end of file
790 for var_mount_point in self.list_check_dirs:
786 var_cmd = 'eject ' + var_mount_point No newline at end of file
791 var_cmd = 'eject ' + var_mount_point
787 commands.getstatusoutput(var_cmd) No newline at end of file
792 commands.getstatusoutput(var_cmd)
788 No newline at end of file
793
789 No newline at end of file
794
@@ -1,1466 +1,1408
1 <?xml version="1.0" encoding="UTF-8"?> No newline at end of file
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0"> No newline at end of file
2 <ui version="4.0">
3 <class>MainWindow</class> No newline at end of file
3 <class>MainWindow</class>
4 <widget class="QMainWindow" name="MainWindow"> No newline at end of file
4 <widget class="QMainWindow" name="MainWindow">
5 <property name="geometry"> No newline at end of file
5 <property name="geometry">
6 <rect> No newline at end of file
6 <rect>
7 <x>0</x> No newline at end of file
7 <x>0</x>
8 <y>0</y> No newline at end of file
8 <y>0</y>
9 <width>824</width> No newline at end of file
9 <width>824</width>
10 <height>717</height> No newline at end of file
10 <height>717</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>2</number> No newline at end of file
30 <number>2</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="sizePolicy"> No newline at end of file
122 <property name="sizePolicy">
123 <sizepolicy hsizetype="Minimum" vsizetype="Fixed"> No newline at end of file
123 <sizepolicy hsizetype="Minimum" vsizetype="Fixed">
124 <horstretch>0</horstretch> No newline at end of file
124 <horstretch>0</horstretch>
125 <verstretch>0</verstretch> No newline at end of file
125 <verstretch>0</verstretch>
126 </sizepolicy> No newline at end of file
126 </sizepolicy>
127 </property> No newline at end of file
127 </property>
128 <property name="text"> No newline at end of file
128 <property name="text">
129 <string>r</string> No newline at end of file
129 <string>r</string>
130 </property> No newline at end of file
130 </property>
131 <property name="readOnly"> No newline at end of file
131 <property name="readOnly">
132 <bool>true</bool> No newline at end of file
132 <bool>true</bool>
133 </property> No newline at end of file
133 </property>
134 </widget> No newline at end of file
134 </widget>
135 </item> No newline at end of file
135 </item>
136 <item> No newline at end of file
136 <item>
137 <spacer name="horizontalSpacer"> No newline at end of file
137 <spacer name="horizontalSpacer">
138 <property name="orientation"> No newline at end of file
138 <property name="orientation">
139 <enum>Qt::Horizontal</enum> No newline at end of file
139 <enum>Qt::Horizontal</enum>
140 </property> No newline at end of file
140 </property>
141 <property name="sizeType"> No newline at end of file
141 <property name="sizeType">
142 <enum>QSizePolicy::Expanding</enum> No newline at end of file
142 <enum>QSizePolicy::Expanding</enum>
143 </property> No newline at end of file
143 </property>
144 <property name="sizeHint" stdset="0"> No newline at end of file
144 <property name="sizeHint" stdset="0">
145 <size> No newline at end of file
145 <size>
146 <width>40</width> No newline at end of file
146 <width>40</width>
147 <height>20</height> No newline at end of file
147 <height>20</height>
148 </size> No newline at end of file
148 </size>
149 </property> No newline at end of file
149 </property>
150 </spacer> No newline at end of file
150 </spacer>
151 </item> No newline at end of file
151 </item>
152 </layout> No newline at end of file
152 </layout>
153 </item> No newline at end of file
153 </item>
154 <item> No newline at end of file
154 <item>
155 <layout class="QHBoxLayout" name="horizontalLayout_6"> No newline at end of file
155 <layout class="QHBoxLayout" name="horizontalLayout_6">
156 <item> No newline at end of file
156 <item>
157 <widget class="QLabel" name="lblElabel"> No newline at end of file
157 <widget class="QLabel" name="lblElabel">
158 <property name="text"> No newline at end of file
158 <property name="text">
159 <string>Exp. Label at device</string> No newline at end of file
159 <string>Exp. Label at device</string>
160 </property> No newline at end of file
160 </property>
161 </widget> No newline at end of file
161 </widget>
162 </item> No newline at end of file
162 </item>
163 <item> No newline at end of file
163 <item>
164 <widget class="QLabel" name="lblCopys"> No newline at end of file
164 <widget class="QLabel" name="lblCopys">
165 <property name="text"> No newline at end of file
165 <property name="text">
166 <string>Copys</string> No newline at end of file
166 <string>Copys</string>
167 </property> No newline at end of file
167 </property>
168 </widget> No newline at end of file
168 </widget>
169 </item> No newline at end of file
169 </item>
170 </layout> No newline at end of file
170 </layout>
171 </item> No newline at end of file
171 </item>
172 <item> No newline at end of file
172 <item>
173 <layout class="QHBoxLayout" name="horizontalLayout_5"> No newline at end of file
173 <layout class="QHBoxLayout" name="horizontalLayout_5">
174 <item> No newline at end of file
174 <item>
175 <widget class="QLineEdit" name="txtElabel"/> No newline at end of file
175 <widget class="QLineEdit" name="txtElabel"/>
176 </item> No newline at end of file
176 </item>
177 <item> No newline at end of file
177 <item>
178 <widget class="QSpinBox" name="txtCopys"> No newline at end of file
178 <widget class="QSpinBox" name="txtCopys">
179 <property name="sizePolicy"> No newline at end of file
179 <property name="sizePolicy">
180 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
180 <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
181 <horstretch>0</horstretch> No newline at end of file
181 <horstretch>0</horstretch>
182 <verstretch>0</verstretch> No newline at end of file
182 <verstretch>0</verstretch>
183 </sizepolicy> No newline at end of file
183 </sizepolicy>
184 </property> No newline at end of file
184 </property>
185 <property name="minimum"> No newline at end of file
185 <property name="minimum">
186 <number>1</number> No newline at end of file
186 <number>1</number>
187 </property> No newline at end of file
187 </property>
188 </widget> No newline at end of file
188 </widget>
189 </item> No newline at end of file
189 </item>
190 </layout> No newline at end of file
190 </layout>
191 </item> No newline at end of file
191 </item>
192 <item> No newline at end of file
192 <item>
193 <layout class="QHBoxLayout" name="horizontalLayout_7"> No newline at end of file
193 <layout class="QHBoxLayout" name="horizontalLayout_7">
194 <item> No newline at end of file
194 <item>
195 <widget class="QLabel" name="lblStartDay"> No newline at end of file
195 <widget class="QLabel" name="lblStartDay">
196 <property name="text"> No newline at end of file
196 <property name="text">
197 <string>Start Day:</string> No newline at end of file
197 <string>Start Day:</string>
198 </property> No newline at end of file
198 </property>
199 </widget> No newline at end of file
199 </widget>
200 </item> No newline at end of file
200 </item>
201 <item> No newline at end of file
201 <item>
202 <widget class="QLabel" name="lblStopDay"> No newline at end of file
202 <widget class="QLabel" name="lblStopDay">
203 <property name="text"> No newline at end of file
203 <property name="text">
204 <string>Stop Day:</string> No newline at end of file
204 <string>Stop Day:</string>
205 </property> No newline at end of file
205 </property>
206 </widget> No newline at end of file
206 </widget>
207 </item> No newline at end of file
207 </item>
208 </layout> No newline at end of file
208 </layout>
209 </item> No newline at end of file
209 </item>
210 <item> No newline at end of file
210 <item>
211 <layout class="QHBoxLayout" name="horizontalLayout_8"> No newline at end of file
211 <layout class="QHBoxLayout" name="horizontalLayout_8">
212 <item> No newline at end of file
212 <item>
213 <widget class="QComboBox" name="lstStartDay"/> No newline at end of file
213 <widget class="QComboBox" name="lstStartDay"/>
214 </item> No newline at end of file
214 </item>
215 <item> No newline at end of file
215 <item>
216 <widget class="QComboBox" name="lstStopDay"/> No newline at end of file
216 <widget class="QComboBox" name="lstStopDay"/>
217 </item> No newline at end of file
217 </item>
218 </layout> No newline at end of file
218 </layout>
219 </item> No newline at end of file
219 </item>
220 </layout> No newline at end of file
220 </layout>
221 </widget> No newline at end of file
221 </widget>
222 <widget class="QWidget" name="tabDconfig"> No newline at end of file
222 <widget class="QWidget" name="tabDconfig">
223 <property name="enabled"> No newline at end of file
223 <property name="enabled">
224 <bool>true</bool> No newline at end of file
224 <bool>true</bool>
225 </property> No newline at end of file
225 </property>
226 <property name="sizePolicy"> No newline at end of file
226 <property name="sizePolicy">
227 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
227 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
228 <horstretch>0</horstretch> No newline at end of file
228 <horstretch>0</horstretch>
229 <verstretch>0</verstretch> No newline at end of file
229 <verstretch>0</verstretch>
230 </sizepolicy> No newline at end of file
230 </sizepolicy>
231 </property> No newline at end of file
231 </property>
232 <attribute name="title"> No newline at end of file
232 <attribute name="title">
233 <string>Device Config.</string> No newline at end of file
233 <string>Device Config.</string>
234 </attribute> No newline at end of file
234 </attribute>
235 <layout class="QVBoxLayout" name="verticalLayout_3"> No newline at end of file
235 <layout class="QVBoxLayout" name="verticalLayout_3">
236 <item> No newline at end of file
236 <item>
237 <layout class="QHBoxLayout" name="horizontalLayout_12"> No newline at end of file
237 <layout class="QHBoxLayout" name="horizontalLayout_12">
238 <item> No newline at end of file
238 <item>
239 <layout class="QVBoxLayout" name="verticalLayout_15"> No newline at end of file
239 <layout class="QVBoxLayout" name="verticalLayout_15">
240 <item> No newline at end of file
240 <item>
241 <widget class="QCheckBox" name="chkDevA"> No newline at end of file
241 <widget class="QCheckBox" name="chkDevA">
242 <property name="text"> No newline at end of file
242 <property name="text">
243 <string>Dev A</string> No newline at end of file
243 <string>Dev A</string>
244 </property> No newline at end of file
244 </property>
245 <property name="checked"> No newline at end of file
245 <property name="checked">
246 <bool>true</bool> No newline at end of file
246 <bool>true</bool>
247 </property> No newline at end of file
247 </property>
248 </widget> No newline at end of file
248 </widget>
249 </item> No newline at end of file
249 </item>
250 <item> No newline at end of file
250 <item>
251 <widget class="QWidget" name="grpDevA" native="true"> No newline at end of file
251 <widget class="QWidget" name="grpDevA" native="true">
252 <layout class="QVBoxLayout" name="verticalLayout_11"> No newline at end of file
252 <layout class="QVBoxLayout" name="verticalLayout_11">
253 <item> No newline at end of file
253 <item>
254 <widget class="QLineEdit" name="txtDeviceA"> No newline at end of file
254 <widget class="QLineEdit" name="txtDeviceA">
255 <property name="readOnly"> No newline at end of file
255 <property name="readOnly">
256 <bool>true</bool> No newline at end of file
256 <bool>true</bool>
257 </property> No newline at end of file
257 </property>
258 </widget> No newline at end of file
258 </widget>
259 </item> No newline at end of file
259 </item>
260 <item> No newline at end of file
260 <item>
261 <widget class="QSpinBox" name="txtBspeedA"> No newline at end of file
261 <widget class="QSpinBox" name="txtBspeedA">
262 <property name="readOnly"> No newline at end of file
262 <property name="readOnly">
263 <bool>true</bool> No newline at end of file
263 <bool>true</bool>
264 </property> No newline at end of file
264 </property>
265 <property name="minimum"> No newline at end of file
265 <property name="minimum">
266 <number>1</number> No newline at end of file
266 <number>1</number>
267 </property> No newline at end of file
267 </property>
268 <property name="value"> No newline at end of file
268 <property name="value">
269 <number>16</number> No newline at end of file
269 <number>16</number>
270 </property> No newline at end of file
270 </property>
271 </widget> No newline at end of file
271 </widget>
272 </item> No newline at end of file
272 </item>
273 <item> No newline at end of file
273 <item>
274 <widget class="QLineEdit" name="txtBmodeA"> No newline at end of file
274 <widget class="QLineEdit" name="txtBmodeA">
275 <property name="text"> No newline at end of file
275 <property name="text">
276 <string>-sao</string> No newline at end of file
276 <string>-sao</string>
277 </property> No newline at end of file
277 </property>
278 <property name="readOnly"> No newline at end of file
278 <property name="readOnly">
279 <bool>true</bool> No newline at end of file
279 <bool>true</bool>
280 </property> No newline at end of file
280 </property>
281 </widget> No newline at end of file
281 </widget>
282 </item> No newline at end of file
282 </item>
283 <item> No newline at end of file
283 <item>
284 <widget class="QPushButton" name="btnTdevA"> No newline at end of file
284 <widget class="QPushButton" name="btnTdevA">
285 <property name="text"> No newline at end of file
285 <property name="text">
286 <string>Test DevA</string> No newline at end of file
286 <string>Test DevA</string>
287 </property> No newline at end of file
287 </property>
288 </widget> No newline at end of file
288 </widget>
289 </item> No newline at end of file
289 </item>
290 </layout> No newline at end of file
290 </layout>
291 </widget> No newline at end of file
291 </widget>
292 </item> No newline at end of file
292 </item>
293 </layout> No newline at end of file
293 </layout>
294 </item> No newline at end of file
294 </item>
295 <item> No newline at end of file
295 <item>
296 <layout class="QVBoxLayout" name="verticalLayout_16"> No newline at end of file
296 <layout class="QVBoxLayout" name="verticalLayout_16">
297 <item> No newline at end of file
297 <item>
298 <widget class="QCheckBox" name="chkDevB"> No newline at end of file
298 <widget class="QCheckBox" name="chkDevB">
299 <property name="text"> No newline at end of file
299 <property name="text">
300 <string>Dev B</string> No newline at end of file
300 <string>Dev B</string>
301 </property> No newline at end of file
301 </property>
302 <property name="checked"> No newline at end of file
302 <property name="checked">
303 <bool>true</bool> No newline at end of file
303 <bool>true</bool>
304 </property> No newline at end of file
304 </property>
305 </widget> No newline at end of file
305 </widget>
306 </item> No newline at end of file
306 </item>
307 <item> No newline at end of file
307 <item>
308 <widget class="QWidget" name="grpDevB" native="true"> No newline at end of file
308 <widget class="QWidget" name="grpDevB" native="true">
309 <layout class="QVBoxLayout" name="verticalLayout_12"> No newline at end of file
309 <layout class="QVBoxLayout" name="verticalLayout_12">
310 <item> No newline at end of file
310 <item>
311 <widget class="QLineEdit" name="txtDeviceB"> No newline at end of file
311 <widget class="QLineEdit" name="txtDeviceB">
312 <property name="readOnly"> No newline at end of file
312 <property name="readOnly">
313 <bool>true</bool> No newline at end of file
313 <bool>true</bool>
314 </property> No newline at end of file
314 </property>
315 </widget> No newline at end of file
315 </widget>
316 </item> No newline at end of file
316 </item>
317 <item> No newline at end of file
317 <item>
318 <widget class="QSpinBox" name="txtBspeedB"> No newline at end of file
318 <widget class="QSpinBox" name="txtBspeedB">
319 <property name="readOnly"> No newline at end of file
319 <property name="readOnly">
320 <bool>true</bool> No newline at end of file
320 <bool>true</bool>
321 </property> No newline at end of file
321 </property>
322 <property name="minimum"> No newline at end of file
322 <property name="minimum">
323 <number>1</number> No newline at end of file
323 <number>1</number>
324 </property> No newline at end of file
324 </property>
325 <property name="value"> No newline at end of file
325 <property name="value">
326 <number>16</number> No newline at end of file
326 <number>16</number>
327 </property> No newline at end of file
327 </property>
328 </widget> No newline at end of file
328 </widget>
329 </item> No newline at end of file
329 </item>
330 <item> No newline at end of file
330 <item>
331 <widget class="QLineEdit" name="txtBmodeB"> No newline at end of file
331 <widget class="QLineEdit" name="txtBmodeB">
332 <property name="text"> No newline at end of file
332 <property name="text">
333 <string>-sao</string> No newline at end of file
333 <string>-sao</string>
334 </property> No newline at end of file
334 </property>
335 <property name="readOnly"> No newline at end of file
335 <property name="readOnly">
336 <bool>true</bool> No newline at end of file
336 <bool>true</bool>
337 </property> No newline at end of file
337 </property>
338 </widget> No newline at end of file
338 </widget>
339 </item> No newline at end of file
339 </item>
340 <item> No newline at end of file
340 <item>
341 <widget class="QPushButton" name="btnTdevB"> No newline at end of file
341 <widget class="QPushButton" name="btnTdevB">
342 <property name="text"> No newline at end of file
342 <property name="text">
343 <string>Test DevB</string> No newline at end of file
343 <string>Test DevB</string>
344 </property> No newline at end of file
344 </property>
345 </widget> No newline at end of file
345 </widget>
346 </item> No newline at end of file
346 </item>
347 </layout> No newline at end of file
347 </layout>
348 </widget> No newline at end of file
348 </widget>
349 </item> No newline at end of file
349 </item>
350 </layout> No newline at end of file
350 </layout>
351 </item> No newline at end of file
351 </item>
352 <item> No newline at end of file
352 <item>
353 <layout class="QVBoxLayout" name="verticalLayout_17"> No newline at end of file
353 <layout class="QVBoxLayout" name="verticalLayout_17">
354 <item> No newline at end of file
354 <item>
355 <widget class="QCheckBox" name="chkDevC"> No newline at end of file
355 <widget class="QCheckBox" name="chkDevC">
356 <property name="text"> No newline at end of file
356 <property name="text">
357 <string>Dev C</string> No newline at end of file
357 <string>Dev C</string>
358 </property> No newline at end of file
358 </property>
359 <property name="checked"> No newline at end of file
359 <property name="checked">
360 <bool>true</bool> No newline at end of file
360 <bool>true</bool>
361 </property> No newline at end of file
361 </property>
362 </widget> No newline at end of file
362 </widget>
363 </item> No newline at end of file
363 </item>
364 <item> No newline at end of file
364 <item>
365 <widget class="QWidget" name="grpDevC" native="true"> No newline at end of file
365 <widget class="QWidget" name="grpDevC" native="true">
366 <layout class="QVBoxLayout" name="verticalLayout_13"> No newline at end of file
366 <layout class="QVBoxLayout" name="verticalLayout_13">
367 <item> No newline at end of file
367 <item>
368 <widget class="QLineEdit" name="txtDeviceC"> No newline at end of file
368 <widget class="QLineEdit" name="txtDeviceC">
369 <property name="readOnly"> No newline at end of file
369 <property name="readOnly">
370 <bool>true</bool> No newline at end of file
370 <bool>true</bool>
371 </property> No newline at end of file
371 </property>
372 </widget> No newline at end of file
372 </widget>
373 </item> No newline at end of file
373 </item>
374 <item> No newline at end of file
374 <item>
375 <widget class="QSpinBox" name="txtBspeedC"> No newline at end of file
375 <widget class="QSpinBox" name="txtBspeedC">
376 <property name="readOnly"> No newline at end of file
376 <property name="readOnly">
377 <bool>true</bool> No newline at end of file
377 <bool>true</bool>
378 </property> No newline at end of file
378 </property>
379 <property name="minimum"> No newline at end of file
379 <property name="minimum">
380 <number>1</number> No newline at end of file
380 <number>1</number>
381 </property> No newline at end of file
381 </property>
382 <property name="value"> No newline at end of file
382 <property name="value">
383 <number>16</number> No newline at end of file
383 <number>16</number>
384 </property> No newline at end of file
384 </property>
385 </widget> No newline at end of file
385 </widget>
386 </item> No newline at end of file
386 </item>
387 <item> No newline at end of file
387 <item>
388 <widget class="QLineEdit" name="txtBmodeC"> No newline at end of file
388 <widget class="QLineEdit" name="txtBmodeC">
389 <property name="text"> No newline at end of file
389 <property name="text">
390 <string>-sao</string> No newline at end of file
390 <string>-sao</string>
391 </property> No newline at end of file
391 </property>
392 <property name="readOnly"> No newline at end of file
392 <property name="readOnly">
393 <bool>true</bool> No newline at end of file
393 <bool>true</bool>
394 </property> No newline at end of file
394 </property>
395 </widget> No newline at end of file
395 </widget>
396 </item> No newline at end of file
396 </item>
397 <item> No newline at end of file
397 <item>
398 <widget class="QPushButton" name="btnTdevC"> No newline at end of file
398 <widget class="QPushButton" name="btnTdevC">
399 <property name="text"> No newline at end of file
399 <property name="text">
400 <string>Test DevC</string> No newline at end of file
400 <string>Test DevC</string>
401 </property> No newline at end of file
401 </property>
402 </widget> No newline at end of file
402 </widget>
403 </item> No newline at end of file
403 </item>
404 </layout> No newline at end of file
404 </layout>
405 </widget> No newline at end of file
405 </widget>
406 </item> No newline at end of file
406 </item>
407 </layout> No newline at end of file
407 </layout>
408 </item> No newline at end of file
408 </item>
409 <item> No newline at end of file
409 <item>
410 <layout class="QVBoxLayout" name="verticalLayout_18"> No newline at end of file
410 <layout class="QVBoxLayout" name="verticalLayout_18">
411 <item> No newline at end of file
411 <item>
412 <widget class="QCheckBox" name="chkDevD"> No newline at end of file
412 <widget class="QCheckBox" name="chkDevD">
413 <property name="text"> No newline at end of file
413 <property name="text">
414 <string>Dev D</string> No newline at end of file
414 <string>Dev D</string>
415 </property> No newline at end of file
415 </property>
416 <property name="checked"> No newline at end of file
416 <property name="checked">
417 <bool>true</bool> No newline at end of file
417 <bool>true</bool>
418 </property> No newline at end of file
418 </property>
419 </widget> No newline at end of file
419 </widget>
420 </item> No newline at end of file
420 </item>
421 <item> No newline at end of file
421 <item>
422 <widget class="QWidget" name="grpDevD" native="true"> No newline at end of file
422 <widget class="QWidget" name="grpDevD" native="true">
423 <layout class="QVBoxLayout" name="verticalLayout_14"> No newline at end of file
423 <layout class="QVBoxLayout" name="verticalLayout_14">
424 <item> No newline at end of file
424 <item>
425 <widget class="QLineEdit" name="txtDeviceD"> No newline at end of file
425 <widget class="QLineEdit" name="txtDeviceD">
426 <property name="readOnly"> No newline at end of file
426 <property name="readOnly">
427 <bool>true</bool> No newline at end of file
427 <bool>true</bool>
428 </property> No newline at end of file
428 </property>
429 </widget> No newline at end of file
429 </widget>
430 </item> No newline at end of file
430 </item>
431 <item> No newline at end of file
431 <item>
432 <widget class="QSpinBox" name="txtBspeedD"> No newline at end of file
432 <widget class="QSpinBox" name="txtBspeedD">
433 <property name="readOnly"> No newline at end of file
433 <property name="readOnly">
434 <bool>true</bool> No newline at end of file
434 <bool>true</bool>
435 </property> No newline at end of file
435 </property>
436 <property name="minimum"> No newline at end of file
436 <property name="minimum">
437 <number>1</number> No newline at end of file
437 <number>1</number>
438 </property> No newline at end of file
438 </property>
439 <property name="value"> No newline at end of file
439 <property name="value">
440 <number>16</number> No newline at end of file
440 <number>16</number>
441 </property> No newline at end of file
441 </property>
442 </widget> No newline at end of file
442 </widget>
443 </item> No newline at end of file
443 </item>
444 <item> No newline at end of file
444 <item>
445 <widget class="QLineEdit" name="txtBmodeD"> No newline at end of file
445 <widget class="QLineEdit" name="txtBmodeD">
446 <property name="text"> No newline at end of file
446 <property name="text">
447 <string>-sao</string> No newline at end of file
447 <string>-sao</string>
448 </property> No newline at end of file
448 </property>
449 <property name="readOnly"> No newline at end of file
449 <property name="readOnly">
450 <bool>true</bool> No newline at end of file
450 <bool>true</bool>
451 </property> No newline at end of file
451 </property>
452 </widget> No newline at end of file
452 </widget>
453 </item> No newline at end of file
453 </item>
454 <item> No newline at end of file
454 <item>
455 <widget class="QPushButton" name="btnTdevD"> No newline at end of file
455 <widget class="QPushButton" name="btnTdevD">
456 <property name="text"> No newline at end of file
456 <property name="text">
457 <string>Test DevD</string> No newline at end of file
457 <string>Test DevD</string>
458 </property> No newline at end of file
458 </property>
459 </widget> No newline at end of file
459 </widget>
460 </item> No newline at end of file
460 </item>
461 </layout> No newline at end of file
461 </layout>
462 </widget> No newline at end of file
462 </widget>
463 </item> No newline at end of file
463 </item>
464 </layout> No newline at end of file
464 </layout>
465 </item> No newline at end of file
465 </item>
466 <item> No newline at end of file
466 <item>
467 <layout class="QVBoxLayout" name="verticalLayout_19"> No newline at end of file
467 <layout class="QVBoxLayout" name="verticalLayout_19">
468 <item> No newline at end of file
468 <item>
469 <spacer name="verticalSpacer_3"> No newline at end of file
469 <spacer name="verticalSpacer_3">
470 <property name="orientation"> No newline at end of file
470 <property name="orientation">
471 <enum>Qt::Vertical</enum> No newline at end of file
471 <enum>Qt::Vertical</enum>
472 </property> No newline at end of file
472 </property>
473 <property name="sizeType"> No newline at end of file
473 <property name="sizeType">
474 <enum>QSizePolicy::Minimum</enum> No newline at end of file
474 <enum>QSizePolicy::Minimum</enum>
475 </property> No newline at end of file
475 </property>
476 <property name="sizeHint" stdset="0"> No newline at end of file
476 <property name="sizeHint" stdset="0">
477 <size> No newline at end of file
477 <size>
478 <width>20</width> No newline at end of file
478 <width>20</width>
479 <height>40</height> No newline at end of file
479 <height>40</height>
480 </size> No newline at end of file
480 </size>
481 </property> No newline at end of file
481 </property>
482 </spacer> No newline at end of file
482 </spacer>
483 </item> No newline at end of file
483 </item>
484 <item> No newline at end of file
484 <item>
485 <widget class="QWidget" name="grpDevD_2" native="true"> No newline at end of file
485 <widget class="QWidget" name="grpDevD_2" native="true">
486 <layout class="QVBoxLayout" name="verticalLayout_20"> No newline at end of file
486 <layout class="QVBoxLayout" name="verticalLayout_20">
487 <item> No newline at end of file
487 <item>
488 <widget class="QLabel" name="lblDevice"> No newline at end of file
488 <widget class="QLabel" name="lblDevice">
489 <property name="text"> No newline at end of file
489 <property name="text">
490 <string>Device</string> No newline at end of file
490 <string>Device</string>
491 </property> No newline at end of file
491 </property>
492 </widget> No newline at end of file
492 </widget>
493 </item> No newline at end of file
493 </item>
494 <item> No newline at end of file
494 <item>
495 <widget class="QLabel" name="lblBspeed"> No newline at end of file
495 <widget class="QLabel" name="lblBspeed">
496 <property name="text"> No newline at end of file
496 <property name="text">
497 <string>Burn Speed</string> No newline at end of file
497 <string>Burn Speed</string>
498 </property> No newline at end of file
498 </property>
499 </widget> No newline at end of file
499 </widget>
500 </item> No newline at end of file
500 </item>
501 <item> No newline at end of file
501 <item>
502 <widget class="QLabel" name="lblBmode"> No newline at end of file
502 <widget class="QLabel" name="lblBmode">
503 <property name="text"> No newline at end of file
503 <property name="text">
504 <string>Burn Mode</string> No newline at end of file
504 <string>Burn Mode</string>
505 </property> No newline at end of file
505 </property>
506 </widget> No newline at end of file
506 </widget>
507 </item> No newline at end of file
507 </item>
508 <item> No newline at end of file
508 <item>
509 <spacer name="verticalSpacer_4"> No newline at end of file
509 <spacer name="verticalSpacer_4">
510 <property name="orientation"> No newline at end of file
510 <property name="orientation">
511 <enum>Qt::Vertical</enum> No newline at end of file
511 <enum>Qt::Vertical</enum>
512 </property> No newline at end of file
512 </property>
513 <property name="sizeType"> No newline at end of file
513 <property name="sizeType">
514 <enum>QSizePolicy::Fixed</enum> No newline at end of file
514 <enum>QSizePolicy::Fixed</enum>
515 </property> No newline at end of file
515 </property>
516 <property name="sizeHint" stdset="0"> No newline at end of file
516 <property name="sizeHint" stdset="0">
517 <size> No newline at end of file
517 <size>
518 <width>20</width> No newline at end of file
518 <width>20</width>
519 <height>40</height> No newline at end of file
519 <height>40</height>
520 </size> No newline at end of file
520 </size>
521 </property> No newline at end of file
521 </property>
522 </spacer> No newline at end of file
522 </spacer>
523 </item> No newline at end of file
523 </item>
524 </layout> No newline at end of file
524 </layout>
525 </widget> No newline at end of file
525 </widget>
526 </item> No newline at end of file
526 </item>
527 </layout> No newline at end of file
527 </layout>
528 </item> No newline at end of file
528 </item>
529 </layout> No newline at end of file
529 </layout>
530 </item> No newline at end of file
530 </item>
531 <item> No newline at end of file
531 <item>
532 <spacer name="verticalSpacer_2"> No newline at end of file
532 <spacer name="verticalSpacer_2">
533 <property name="orientation"> No newline at end of file
533 <property name="orientation">
534 <enum>Qt::Vertical</enum> No newline at end of file
534 <enum>Qt::Vertical</enum>
535 </property> No newline at end of file
535 </property>
536 <property name="sizeType"> No newline at end of file
536 <property name="sizeType">
537 <enum>QSizePolicy::Minimum</enum> No newline at end of file
537 <enum>QSizePolicy::Minimum</enum>
538 </property> No newline at end of file
538 </property>
539 <property name="sizeHint" stdset="0"> No newline at end of file
539 <property name="sizeHint" stdset="0">
540 <size> No newline at end of file
540 <size>
541 <width>20</width> No newline at end of file
541 <width>20</width>
542 <height>40</height> No newline at end of file
542 <height>40</height>
543 </size> No newline at end of file
543 </size>
544 </property> No newline at end of file
544 </property>
545 </spacer> No newline at end of file
545 </spacer>
546 </item> No newline at end of file
546 </item>
547 <item> No newline at end of file
547 <item>
548 <layout class="QHBoxLayout" name="horizontalLayout_11"> No newline at end of file
548 <layout class="QHBoxLayout" name="horizontalLayout_11">
549 <property name="spacing"> No newline at end of file
549 <property name="spacing">
550 <number>6</number> No newline at end of file
550 <number>6</number>
551 </property> No newline at end of file
551 </property>
552 <property name="sizeConstraint"> No newline at end of file
552 <property name="sizeConstraint">
553 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
553 <enum>QLayout::SetDefaultConstraint</enum>
554 </property> No newline at end of file
554 </property>
555 <item> No newline at end of file
555 <item>
556 <widget class="QLabel" name="lblDcapacity"> No newline at end of file
556 <widget class="QLabel" name="lblDcapacity">
557 <property name="sizePolicy"> No newline at end of file
557 <property name="sizePolicy">
558 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
558 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
559 <horstretch>0</horstretch> No newline at end of file
559 <horstretch>0</horstretch>
560 <verstretch>0</verstretch> No newline at end of file
560 <verstretch>0</verstretch>
561 </sizepolicy> No newline at end of file
561 </sizepolicy>
562 </property> No newline at end of file
562 </property>
563 <property name="text"> No newline at end of file
563 <property name="text">
564 <string>Device Capacity</string> No newline at end of file
564 <string>Device Capacity</string>
565 </property> No newline at end of file
565 </property>
566 </widget> No newline at end of file
566 </widget>
567 </item> No newline at end of file
567 </item>
568 <item> No newline at end of file
568 <item>
569 <spacer name="horizontalSpacer_2"> No newline at end of file
569 <spacer name="horizontalSpacer_2">
570 <property name="orientation"> No newline at end of file
570 <property name="orientation">
571 <enum>Qt::Horizontal</enum> No newline at end of file
571 <enum>Qt::Horizontal</enum>
572 </property> No newline at end of file
572 </property>
573 <property name="sizeHint" stdset="0"> No newline at end of file
573 <property name="sizeHint" stdset="0">
574 <size> No newline at end of file
574 <size>
575 <width>40</width> No newline at end of file
575 <width>40</width>
576 <height>20</height> No newline at end of file
576 <height>20</height>
577 </size> No newline at end of file
577 </size>
578 </property> No newline at end of file
578 </property>
579 </spacer> No newline at end of file
579 </spacer>
580 </item> No newline at end of file
580 </item>
581 </layout> No newline at end of file
581 </layout>
582 </item> No newline at end of file
582 </item>
583 <item> No newline at end of file
583 <item>
584 <layout class="QHBoxLayout" name="horizontalLayout_10"> No newline at end of file
584 <layout class="QHBoxLayout" name="horizontalLayout_10">
585 <property name="sizeConstraint"> No newline at end of file
585 <property name="sizeConstraint">
586 <enum>QLayout::SetFixedSize</enum> No newline at end of file
586 <enum>QLayout::SetFixedSize</enum>
587 </property> No newline at end of file
587 </property>
588 <item> No newline at end of file
588 <item>
589 <widget class="QComboBox" name="lstDcapacity"> No newline at end of file
589 <widget class="QComboBox" name="lstDcapacity">
590 <property name="currentIndex"> No newline at end of file
590 <property name="currentIndex">
591 <number>2</number> No newline at end of file
591 <number>2</number>
592 </property> No newline at end of file
592 </property>
593 <item> No newline at end of file
593 <item>
594 <property name="text"> No newline at end of file
594 <property name="text">
595 <string>BluRay [25.0 GB]</string> No newline at end of file
595 <string>BluRay [25.0 GB]</string>
596 </property> No newline at end of file
596 </property>
597 </item> No newline at end of file
597 </item>
598 <item> No newline at end of file
598 <item>
599 <property name="text"> No newline at end of file
599 <property name="text">
600 <string>DVD2 [8.5 GB]</string> No newline at end of file
600 <string>DVD2 [8.5 GB]</string>
601 </property> No newline at end of file
601 </property>
602 </item> No newline at end of file
602 </item>
603 <item> No newline at end of file
603 <item>
604 <property name="text"> No newline at end of file
604 <property name="text">
605 <string>DVD1 [4.7 GB]</string> No newline at end of file
605 <string>DVD1 [4.7 GB]</string>
606 </property> No newline at end of file
606 </property>
607 </item> No newline at end of file
607 </item>
608 <item> No newline at end of file
608 <item>
609 <property name="text"> No newline at end of file
609 <property name="text">
610 <string>CD [0.7 GB]</string> No newline at end of file
610 <string>CD [0.7 GB]</string>
611 </property> No newline at end of file
611 </property>
612 </item> No newline at end of file
612 </item>
613 <item> No newline at end of file
613 <item>
614 <property name="text"> No newline at end of file
614 <property name="text">
615 <string>Other [? MB]</string> No newline at end of file
615 <string>Other [? MB]</string>
616 </property> No newline at end of file
616 </property>
617 </item> No newline at end of file
617 </item>
618 </widget> No newline at end of file
618 </widget>
619 </item> No newline at end of file
619 </item>
620 <item> No newline at end of file
620 <item>
621 <widget class="QDoubleSpinBox" name="txtDcapacity"> No newline at end of file
621 <widget class="QDoubleSpinBox" name="txtDcapacity">
622 <property name="sizePolicy"> No newline at end of file
622 <property name="sizePolicy">
623 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
623 <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
624 <horstretch>0</horstretch> No newline at end of file
624 <horstretch>0</horstretch>
625 <verstretch>0</verstretch> No newline at end of file
625 <verstretch>0</verstretch>
626 </sizepolicy> No newline at end of file
626 </sizepolicy>
627 </property> No newline at end of file
627 </property>
628 <property name="readOnly"> No newline at end of file
628 <property name="readOnly">
629 <bool>true</bool> No newline at end of file
629 <bool>true</bool>
630 </property> No newline at end of file
630 </property>
631 <property name="minimum"> No newline at end of file
631 <property name="minimum">
632 <double>100.000000000000000</double> No newline at end of file
632 <double>100.000000000000000</double>
633 </property> No newline at end of file
633 </property>
634 <property name="maximum"> No newline at end of file
634 <property name="maximum">
635 <double>99999.990000000005239</double> No newline at end of file
635 <double>99999.990000000005239</double>
636 </property> No newline at end of file
636 </property>
637 <property name="value"> No newline at end of file
637 <property name="value">
638 <double>4482.270000000000437</double> No newline at end of file
638 <double>4482.270000000000437</double>
639 </property> No newline at end of file
639 </property>
640 </widget> No newline at end of file
640 </widget>
641 </item> No newline at end of file
641 </item>
642 <item> No newline at end of file
642 <item>
643 <spacer name="horizontalSpacer_3"> No newline at end of file
643 <spacer name="horizontalSpacer_3">
644 <property name="orientation"> No newline at end of file
644 <property name="orientation">
645 <enum>Qt::Horizontal</enum> No newline at end of file
645 <enum>Qt::Horizontal</enum>
646 </property> No newline at end of file
646 </property>
647 <property name="sizeHint" stdset="0"> No newline at end of file
647 <property name="sizeHint" stdset="0">
648 <size> No newline at end of file
648 <size>
649 <width>40</width> No newline at end of file
649 <width>40</width>
650 <height>20</height> No newline at end of file
650 <height>20</height>
651 </size> No newline at end of file
651 </size>
652 </property> No newline at end of file
652 </property>
653 </spacer> No newline at end of file
653 </spacer>
654 </item> No newline at end of file
654 </item>
655 <item> No newline at end of file
655 <item>
656 <widget class="QLabel" name="lblPSgraphic"> No newline at end of file
656 <widget class="QLabel" name="lblPSgraphic">
657 <property name="text"> No newline at end of file
657 <property name="text">
658 <string>PS Graphic</string> No newline at end of file
658 <string>PS Graphic</string>
659 </property> No newline at end of file
659 </property>
660 </widget> No newline at end of file
660 </widget>
661 </item> No newline at end of file
661 </item>
662 <item> No newline at end of file
662 <item>
663 <widget class="QSpinBox" name="txtPSgraphic"> No newline at end of file
663 <widget class="QSpinBox" name="txtPSgraphic">
664 <property name="minimum"> No newline at end of file
664 <property name="minimum">
665 <number>1</number> No newline at end of file
665 <number>1</number>
666 </property> No newline at end of file
666 </property>
667 <property name="maximum"> No newline at end of file
667 <property name="maximum">
668 <number>33</number> No newline at end of file
668 <number>33</number>
669 </property> No newline at end of file
669 </property>
670 </widget> No newline at end of file
670 </widget>
671 </item> No newline at end of file
671 </item>
672 </layout> No newline at end of file
672 </layout>
673 </item> No newline at end of file
673 </item>
674 </layout> No newline at end of file
674 </layout>
675 </widget> No newline at end of file
675 </widget>
676 <widget class="QWidget" name="tabStatus"> No newline at end of file
676 <widget class="QWidget" name="tabStatus">
677 <attribute name="title"> No newline at end of file
677 <attribute name="title">
678 <string>Status Burn</string> No newline at end of file
678 <string>Status Burn</string>
679 </attribute> No newline at end of file
679 </attribute>
680 <layout class="QVBoxLayout" name="verticalLayout_4"> No newline at end of file
680 <layout class="QVBoxLayout" name="verticalLayout_4">
681 <item> No newline at end of file
681 <item>
682 <layout class="QHBoxLayout" name="horizontalLayout_18"> No newline at end of file
682 <layout class="QHBoxLayout" name="horizontalLayout_18">
683 <item> No newline at end of file
683 <item>
684 <layout class="QVBoxLayout" name="verticalLayout_21"> No newline at end of file
684 <layout class="QVBoxLayout" name="verticalLayout_21">
685 <item> No newline at end of file
685 <item>
686 <widget class="QLabel" name="label_4"> No newline at end of file
686 <widget class="QLabel" name="label_4">
687 <property name="text"> No newline at end of file
687 <property name="text">
688 <string>BURN</string> No newline at end of file
688 <string>BURN</string>
689 </property> No newline at end of file
689 </property>
690 </widget> No newline at end of file
690 </widget>
691 </item> No newline at end of file
691 </item>
692 <item> No newline at end of file
692 <item>
693 <spacer name="horizontalSpacer_9"> No newline at end of file
693 <spacer name="horizontalSpacer_9">
694 <property name="orientation"> No newline at end of file
694 <property name="orientation">
695 <enum>Qt::Horizontal</enum> No newline at end of file
695 <enum>Qt::Horizontal</enum>
696 </property> No newline at end of file
696 </property>
697 <property name="sizeType"> No newline at end of file
697 <property name="sizeType">
698 <enum>QSizePolicy::Minimum</enum> No newline at end of file
698 <enum>QSizePolicy::Minimum</enum>
699 </property> No newline at end of file
699 </property>
700 <property name="sizeHint" stdset="0"> No newline at end of file
700 <property name="sizeHint" stdset="0">
701 <size> No newline at end of file
701 <size>
702 <width>40</width> No newline at end of file
702 <width>40</width>
703 <height>20</height> No newline at end of file
703 <height>20</height>
704 </size> No newline at end of file
704 </size>
705 </property> No newline at end of file
705 </property>
706 </spacer> No newline at end of file
706 </spacer>
707 </item> No newline at end of file
707 </item>
708 <item> No newline at end of file
708 <item>
709 <widget class="QLabel" name="lblSTATUS"> No newline at end of file
709 <widget class="QLabel" name="lblSTATUS">
710 <property name="sizePolicy"> No newline at end of file
710 <property name="sizePolicy">
711 <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> No newline at end of file
711 <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
712 <horstretch>0</horstretch> No newline at end of file
712 <horstretch>0</horstretch>
713 <verstretch>0</verstretch> No newline at end of file
713 <verstretch>0</verstretch>
714 </sizepolicy> No newline at end of file
714 </sizepolicy>
715 </property> No newline at end of file
715 </property>
716 <property name="text"> No newline at end of file
716 <property name="text">
717 <string>STATUS</string> No newline at end of file
717 <string>STATUS</string>
718 </property> No newline at end of file
718 </property>
719 </widget> No newline at end of file
719 </widget>
720 </item> No newline at end of file
720 </item>
721 <item> No newline at end of file
721 <item>
722 <widget class="QLabel" name="lblINFO"> No newline at end of file
722 <widget class="QLabel" name="lblINFO">
723 <property name="text"> No newline at end of file
723 <property name="text">
724 <string>DISC</string> No newline at end of file
724 <string>DISC</string>
725 </property> No newline at end of file
725 </property>
726 </widget> No newline at end of file
726 </widget>
727 </item> No newline at end of file
727 </item>
728 <item> No newline at end of file
728 <item>
729 <widget class="QLabel" name="lblSET"> No newline at end of file
729 <widget class="QLabel" name="lblSET">
730 <property name="text"> No newline at end of file
730 <property name="text">
731 <string>COPY</string> No newline at end of file
731 <string>COPY</string>
732 </property> No newline at end of file
732 </property>
733 </widget> No newline at end of file
733 </widget>
734 </item> No newline at end of file
734 </item>
735 </layout> No newline at end of file
735 </layout>
736 </item> No newline at end of file
736 </item>
737 <item> No newline at end of file
737 <item>
738 <layout class="QVBoxLayout" name="verticalLayout_22"> No newline at end of file
738 <layout class="QVBoxLayout" name="verticalLayout_22">
739 <item> No newline at end of file
739 <item>
740 <spacer name="horizontalSpacer_5"> No newline at end of file
740 <spacer name="horizontalSpacer_5">
741 <property name="orientation"> No newline at end of file
741 <property name="orientation">
742 <enum>Qt::Horizontal</enum> No newline at end of file
742 <enum>Qt::Horizontal</enum>
743 </property> No newline at end of file
743 </property>
744 <property name="sizeType"> No newline at end of file
744 <property name="sizeType">
745 <enum>QSizePolicy::Minimum</enum> No newline at end of file
745 <enum>QSizePolicy::Minimum</enum>
746 </property> No newline at end of file
746 </property>
747 <property name="sizeHint" stdset="0"> No newline at end of file
747 <property name="sizeHint" stdset="0">
748 <size> No newline at end of file
748 <size>
749 <width>40</width> No newline at end of file
749 <width>40</width>
750 <height>20</height> No newline at end of file
750 <height>20</height>
751 </size> No newline at end of file
751 </size>
752 </property> No newline at end of file
752 </property>
753 </spacer> No newline at end of file
753 </spacer>
754 </item> No newline at end of file
754 </item>
755 <item> No newline at end of file
755 <item>
756 <widget class="QLabel" name="lblDevA"> No newline at end of file
756 <widget class="QLabel" name="lblDevA">
757 <property name="text"> No newline at end of file
757 <property name="text">
758 <string>DEV A</string> No newline at end of file
758 <string>DEV A</string>
759 </property> No newline at end of file
759 </property>
760 <property name="alignment"> No newline at end of file
760 <property name="alignment">
761 <set>Qt::AlignCenter</set> No newline at end of file
761 <set>Qt::AlignCenter</set>
762 </property> No newline at end of file
762 </property>
763 </widget> No newline at end of file
763 </widget>
764 </item> No newline at end of file
764 </item>
765 <item> No newline at end of file
765 <item>
766 <widget class="QLineEdit" name="txtBstatusA"> No newline at end of file
766 <widget class="QLineEdit" name="txtBstatusA">
767 <property name="readOnly"> No newline at end of file
767 <property name="readOnly">
768 <bool>true</bool> No newline at end of file
768 <bool>true</bool>
769 </property> No newline at end of file
769 </property>
770 </widget> No newline at end of file
770 </widget>
771 </item> No newline at end of file
771 </item>
772 <item> No newline at end of file
772 <item>
773 <widget class="QLineEdit" name="txtBdiscA"> No newline at end of file
773 <widget class="QLineEdit" name="txtBdiscA">
774 <property name="readOnly"> No newline at end of file
774 <property name="readOnly">
775 <bool>true</bool> No newline at end of file
775 <bool>true</bool>
776 </property> No newline at end of file
776 </property>
777 </widget> No newline at end of file
777 </widget>
778 </item> No newline at end of file
778 </item>
779 <item> No newline at end of file
779 <item>
780 <widget class="QLineEdit" name="txtBcopyA"> No newline at end of file
780 <widget class="QLineEdit" name="txtBcopyA">
781 <property name="readOnly"> No newline at end of file
781 <property name="readOnly">
782 <bool>true</bool> No newline at end of file
782 <bool>true</bool>
783 </property> No newline at end of file
783 </property>
784 </widget> No newline at end of file
784 </widget>
785 </item> No newline at end of file
785 </item>
786 </layout> No newline at end of file
786 </layout>
787 </item> No newline at end of file
787 </item>
788 <item> No newline at end of file
788 <item>
789 <layout class="QVBoxLayout" name="verticalLayout_23"> No newline at end of file
789 <layout class="QVBoxLayout" name="verticalLayout_23">
790 <item> No newline at end of file
790 <item>
791 <spacer name="horizontalSpacer_6"> No newline at end of file
791 <spacer name="horizontalSpacer_6">
792 <property name="orientation"> No newline at end of file
792 <property name="orientation">
793 <enum>Qt::Horizontal</enum> No newline at end of file
793 <enum>Qt::Horizontal</enum>
794 </property> No newline at end of file
794 </property>
795 <property name="sizeType"> No newline at end of file
795 <property name="sizeType">
796 <enum>QSizePolicy::Minimum</enum> No newline at end of file
796 <enum>QSizePolicy::Minimum</enum>
797 </property> No newline at end of file
797 </property>
798 <property name="sizeHint" stdset="0"> No newline at end of file
798 <property name="sizeHint" stdset="0">
799 <size> No newline at end of file
799 <size>
800 <width>40</width> No newline at end of file
800 <width>40</width>
801 <height>20</height> No newline at end of file
801 <height>20</height>
802 </size> No newline at end of file
802 </size>
803 </property> No newline at end of file
803 </property>
804 </spacer> No newline at end of file
804 </spacer>
805 </item> No newline at end of file
805 </item>
806 <item> No newline at end of file
806 <item>
807 <widget class="QLabel" name="lblDevB"> No newline at end of file
807 <widget class="QLabel" name="lblDevB">
808 <property name="text"> No newline at end of file
808 <property name="text">
809 <string>DEV B</string> No newline at end of file
809 <string>DEV B</string>
810 </property> No newline at end of file
810 </property>
811 <property name="alignment"> No newline at end of file
811 <property name="alignment">
812 <set>Qt::AlignCenter</set> No newline at end of file
812 <set>Qt::AlignCenter</set>
813 </property> No newline at end of file
813 </property>
814 </widget> No newline at end of file
814 </widget>
815 </item> No newline at end of file
815 </item>
816 <item> No newline at end of file
816 <item>
817 <widget class="QLineEdit" name="txtBstatusB"> No newline at end of file
817 <widget class="QLineEdit" name="txtBstatusB">
818 <property name="readOnly"> No newline at end of file
818 <property name="readOnly">
819 <bool>true</bool> No newline at end of file
819 <bool>true</bool>
820 </property> No newline at end of file
820 </property>
821 </widget> No newline at end of file
821 </widget>
822 </item> No newline at end of file
822 </item>
823 <item> No newline at end of file
823 <item>
824 <widget class="QLineEdit" name="txtBdiscB"> No newline at end of file
824 <widget class="QLineEdit" name="txtBdiscB">
825 <property name="readOnly"> No newline at end of file
825 <property name="readOnly">
826 <bool>true</bool> No newline at end of file
826 <bool>true</bool>
827 </property> No newline at end of file
827 </property>
828 </widget> No newline at end of file
828 </widget>
829 </item> No newline at end of file
829 </item>
830 <item> No newline at end of file
830 <item>
831 <widget class="QLineEdit" name="txtBcopyB"> No newline at end of file
831 <widget class="QLineEdit" name="txtBcopyB">
832 <property name="readOnly"> No newline at end of file
832 <property name="readOnly">
833 <bool>true</bool> No newline at end of file
833 <bool>true</bool>
834 </property> No newline at end of file
834 </property>
835 </widget> No newline at end of file
835 </widget>
836 </item> No newline at end of file
836 </item>
837 </layout> No newline at end of file
837 </layout>
838 </item> No newline at end of file
838 </item>
839 <item> No newline at end of file
839 <item>
840 <layout class="QVBoxLayout" name="verticalLayout_24"> No newline at end of file
840 <layout class="QVBoxLayout" name="verticalLayout_24">
841 <item> No newline at end of file
841 <item>
842 <spacer name="horizontalSpacer_7"> No newline at end of file
842 <spacer name="horizontalSpacer_7">
843 <property name="orientation"> No newline at end of file
843 <property name="orientation">
844 <enum>Qt::Horizontal</enum> No newline at end of file
844 <enum>Qt::Horizontal</enum>
845 </property> No newline at end of file
845 </property>
846 <property name="sizeType"> No newline at end of file
846 <property name="sizeType">
847 <enum>QSizePolicy::Minimum</enum> No newline at end of file
847 <enum>QSizePolicy::Minimum</enum>
848 </property> No newline at end of file
848 </property>
849 <property name="sizeHint" stdset="0"> No newline at end of file
849 <property name="sizeHint" stdset="0">
850 <size> No newline at end of file
850 <size>
851 <width>40</width> No newline at end of file
851 <width>40</width>
852 <height>20</height> No newline at end of file
852 <height>20</height>
853 </size> No newline at end of file
853 </size>
854 </property> No newline at end of file
854 </property>
855 </spacer> No newline at end of file
855 </spacer>
856 </item> No newline at end of file
856 </item>
857 <item> No newline at end of file
857 <item>
858 <widget class="QLabel" name="lblDevC"> No newline at end of file
858 <widget class="QLabel" name="lblDevC">
859 <property name="text"> No newline at end of file
859 <property name="text">
860 <string>DEV C</string> No newline at end of file
860 <string>DEV C</string>
861 </property> No newline at end of file
861 </property>
862 <property name="alignment"> No newline at end of file
862 <property name="alignment">
863 <set>Qt::AlignCenter</set> No newline at end of file
863 <set>Qt::AlignCenter</set>
864 </property> No newline at end of file
864 </property>
865 </widget> No newline at end of file
865 </widget>
866 </item> No newline at end of file
866 </item>
867 <item> No newline at end of file
867 <item>
868 <widget class="QLineEdit" name="txtBstatusC"> No newline at end of file
868 <widget class="QLineEdit" name="txtBstatusC">
869 <property name="readOnly"> No newline at end of file
869 <property name="readOnly">
870 <bool>true</bool> No newline at end of file
870 <bool>true</bool>
871 </property> No newline at end of file
871 </property>
872 </widget> No newline at end of file
872 </widget>
873 </item> No newline at end of file
873 </item>
874 <item> No newline at end of file
874 <item>
875 <widget class="QLineEdit" name="txtBdiscC"> No newline at end of file
875 <widget class="QLineEdit" name="txtBdiscC">
876 <property name="readOnly"> No newline at end of file
876 <property name="readOnly">
877 <bool>true</bool> No newline at end of file
877 <bool>true</bool>
878 </property> No newline at end of file
878 </property>
879 </widget> No newline at end of file
879 </widget>
880 </item> No newline at end of file
880 </item>
881 <item> No newline at end of file
881 <item>
882 <widget class="QLineEdit" name="txtBcopyC"> No newline at end of file
882 <widget class="QLineEdit" name="txtBcopyC">
883 <property name="readOnly"> No newline at end of file
883 <property name="readOnly">
884 <bool>true</bool> No newline at end of file
884 <bool>true</bool>
885 </property> No newline at end of file
885 </property>
886 </widget> No newline at end of file
886 </widget>
887 </item> No newline at end of file
887 </item>
888 </layout> No newline at end of file
888 </layout>
889 </item> No newline at end of file
889 </item>
890 <item> No newline at end of file
890 <item>
891 <layout class="QVBoxLayout" name="verticalLayout_25"> No newline at end of file
891 <layout class="QVBoxLayout" name="verticalLayout_25">
892 <item> No newline at end of file
892 <item>
893 <spacer name="horizontalSpacer_8"> No newline at end of file
893 <spacer name="horizontalSpacer_8">
894 <property name="orientation"> No newline at end of file
894 <property name="orientation">
895 <enum>Qt::Horizontal</enum> No newline at end of file
895 <enum>Qt::Horizontal</enum>
896 </property> No newline at end of file
896 </property>
897 <property name="sizeType"> No newline at end of file
897 <property name="sizeType">
898 <enum>QSizePolicy::Minimum</enum> No newline at end of file
898 <enum>QSizePolicy::Minimum</enum>
899 </property> No newline at end of file
899 </property>
900 <property name="sizeHint" stdset="0"> No newline at end of file
900 <property name="sizeHint" stdset="0">
901 <size> No newline at end of file
901 <size>
902 <width>40</width> No newline at end of file
902 <width>40</width>
903 <height>20</height> No newline at end of file
903 <height>20</height>
904 </size> No newline at end of file
904 </size>
905 </property> No newline at end of file
905 </property>
906 </spacer> No newline at end of file
906 </spacer>
907 </item> No newline at end of file
907 </item>
908 <item> No newline at end of file
908 <item>
909 <widget class="QLabel" name="lblDevD"> No newline at end of file
909 <widget class="QLabel" name="lblDevD">
910 <property name="text"> No newline at end of file
910 <property name="text">
911 <string>DEV D</string> No newline at end of file
911 <string>DEV D</string>
912 </property> No newline at end of file
912 </property>
913 <property name="alignment"> No newline at end of file
913 <property name="alignment">
914 <set>Qt::AlignCenter</set> No newline at end of file
914 <set>Qt::AlignCenter</set>
915 </property> No newline at end of file
915 </property>
916 </widget> No newline at end of file
916 </widget>
917 </item> No newline at end of file
917 </item>
918 <item> No newline at end of file
918 <item>
919 <widget class="QLineEdit" name="txtBstatusD"> No newline at end of file
919 <widget class="QLineEdit" name="txtBstatusD">
920 <property name="readOnly"> No newline at end of file
920 <property name="readOnly">
921 <bool>true</bool> No newline at end of file
921 <bool>true</bool>
922 </property> No newline at end of file
922 </property>
923 </widget> No newline at end of file
923 </widget>
924 </item> No newline at end of file
924 </item>
925 <item> No newline at end of file
925 <item>
926 <widget class="QLineEdit" name="txtBdiscD"> No newline at end of file
926 <widget class="QLineEdit" name="txtBdiscD">
927 <property name="readOnly"> No newline at end of file
927 <property name="readOnly">
928 <bool>true</bool> No newline at end of file
928 <bool>true</bool>
929 </property> No newline at end of file
929 </property>
930 </widget> No newline at end of file
930 </widget>
931 </item> No newline at end of file
931 </item>
932 <item> No newline at end of file
932 <item>
933 <widget class="QLineEdit" name="txtBcopyD"> No newline at end of file
933 <widget class="QLineEdit" name="txtBcopyD">
934 <property name="readOnly"> No newline at end of file
934 <property name="readOnly">
935 <bool>true</bool> No newline at end of file
935 <bool>true</bool>
936 </property> No newline at end of file
936 </property>
937 </widget> No newline at end of file
937 </widget>
938 </item> No newline at end of file
938 </item>
939 </layout> No newline at end of file
939 </layout>
940 </item> No newline at end of file
940 </item>
941 </layout> No newline at end of file
941 </layout>
942 </item> No newline at end of file
942 </item>
943 <item> No newline at end of file
943 <item>
944 <spacer name="verticalSpacer"> No newline at end of file
944 <spacer name="verticalSpacer">
945 <property name="orientation"> No newline at end of file
945 <property name="orientation">
946 <enum>Qt::Vertical</enum> No newline at end of file
946 <enum>Qt::Vertical</enum>
947 </property> No newline at end of file
947 </property>
948 <property name="sizeType"> No newline at end of file
948 <property name="sizeType">
949 <enum>QSizePolicy::Fixed</enum> No newline at end of file
949 <enum>QSizePolicy::Fixed</enum>
950 </property> No newline at end of file
950 </property>
951 <property name="sizeHint" stdset="0"> No newline at end of file
951 <property name="sizeHint" stdset="0">
952 <size> No newline at end of file
952 <size>
953 <width>20</width> No newline at end of file
953 <width>20</width>
954 <height>20</height> No newline at end of file
954 <height>20</height>
955 </size> No newline at end of file
955 </size>
956 </property> No newline at end of file
956 </property>
957 </spacer> No newline at end of file
957 </spacer>
958 </item> No newline at end of file
958 </item>
959 <item> No newline at end of file
959 <item>
960 <layout class="QHBoxLayout" name="horizontalLayout_16"> No newline at end of file
960 <layout class="QHBoxLayout" name="horizontalLayout_16">
961 <item> No newline at end of file
961 <item>
962 <widget class="QLabel" name="label"> No newline at end of file
962 <widget class="QLabel" name="label">
963 <property name="text"> No newline at end of file
963 <property name="text">
964 <string>CHECK</string> No newline at end of file
964 <string>CHECK</string>
965 </property> No newline at end of file
965 </property>
966 </widget> No newline at end of file
966 </widget>
967 </item> No newline at end of file
967 </item>
968 <item> No newline at end of file
968 <item>
969 <spacer name="horizontalSpacer_14"> No newline at end of file
969 <spacer name="horizontalSpacer_14">
970 <property name="orientation"> No newline at end of file
970 <property name="orientation">
971 <enum>Qt::Horizontal</enum> No newline at end of file
971 <enum>Qt::Horizontal</enum>
972 </property> No newline at end of file
972 </property>
973 <property name="sizeHint" stdset="0"> No newline at end of file
973 <property name="sizeHint" stdset="0">
974 <size> No newline at end of file
974 <size>
975 <width>40</width> No newline at end of file
975 <width>40</width>
976 <height>20</height> No newline at end of file
976 <height>20</height>
977 </size> No newline at end of file
977 </size>
978 </property> No newline at end of file
978 </property>
979 </spacer> No newline at end of file
979 </spacer>
980 </item> No newline at end of file
980 </item>
981 </layout> No newline at end of file
981 </layout>
982 </item> No newline at end of file
982 </item>
983 <item> No newline at end of file
983 <item>
984 <layout class="QHBoxLayout" name="horizontalLayout_17"> No newline at end of file
984 <layout class="QHBoxLayout" name="horizontalLayout_17">
985 <item> No newline at end of file
985 <item>
986 <spacer name="horizontalSpacer_13"> No newline at end of file
986 <spacer name="horizontalSpacer_13">
987 <property name="orientation"> No newline at end of file
987 <property name="orientation">
988 <enum>Qt::Horizontal</enum> No newline at end of file
988 <enum>Qt::Horizontal</enum>
989 </property> No newline at end of file
989 </property>
990 <property name="sizeType"> No newline at end of file
990 <property name="sizeType">
991 <enum>QSizePolicy::Fixed</enum> No newline at end of file
991 <enum>QSizePolicy::Fixed</enum>
992 </property> No newline at end of file
992 </property>
993 <property name="sizeHint" stdset="0"> No newline at end of file
993 <property name="sizeHint" stdset="0">
994 <size> No newline at end of file
994 <size>
995 <width>50</width> No newline at end of file
995 <width>50</width>
996 <height>20</height> No newline at end of file
996 <height>20</height>
997 </size> No newline at end of file
997 </size>
998 </property> No newline at end of file
998 </property>
999 </spacer> No newline at end of file
999 </spacer>
1000 </item> No newline at end of file
1000 </item>
1001 <item> No newline at end of file
1001 <item>
1002 <widget class="QLineEdit" name="txtTDpath"> No newline at end of file
1002 <widget class="QLineEdit" name="txtTDpath">
1003 <property name="enabled">
1003 <property name="enabled">
No newline at end of file
1004 <bool>true</bool> No newline at end of file
1004 <bool>false</bool> No newline at end of file
1005 </property> No newline at end of file
1005 </property>
1006 <property name="readOnly"> No newline at end of file
1006 <property name="readOnly">
1007 <bool>true</bool> No newline at end of file
1007 <bool>true</bool>
1008 </property> No newline at end of file
1008 </property>
1009 </widget> No newline at end of file
1009 </widget>
1010 </item> No newline at end of file
1010 </item>
1011 <item> No newline at end of file
1011 <item>
1012 <widget class="QPushButton" name="btnTDpath"> No newline at end of file
1012 <widget class="QPushButton" name="btnTDpath">
1013 <property name="enabled">
1013 <property name="enabled">
No newline at end of file
1014 <bool>true</bool> No newline at end of file
1014 <bool>false</bool> No newline at end of file
1015 </property> No newline at end of file
1015 </property>
1016 <property name="text"> No newline at end of file
1016 <property name="text">
1017 <string>Temp Data Path</string> No newline at end of file
1017 <string>Temp Data Path</string>
1018 </property> No newline at end of file
1018 </property>
1019 </widget> No newline at end of file
1019 </widget>
1020 </item> No newline at end of file
1020 </item>
1021 </layout> No newline at end of file
1021 </layout>
1022 </item> No newline at end of file
1022 </item>
1023 <item> No newline at end of file
1023 <item>
1024 <layout class="QHBoxLayout" name="horizontalLayout_19"> No newline at end of file
1024 <layout class="QHBoxLayout" name="horizontalLayout_19">
1025 <item> No newline at end of file
1025 <item>
1026 <layout class="QVBoxLayout" name="verticalLayout_26"> No newline at end of file
1026 <layout class="QVBoxLayout" name="verticalLayout_26">
1027 <item> No newline at end of file
1027 <item>
1028 <spacer name="horizontalSpacer_10"> No newline at end of file
1028 <spacer name="horizontalSpacer_10">
1029 <property name="orientation"> No newline at end of file
1029 <property name="orientation">
1030 <enum>Qt::Horizontal</enum> No newline at end of file
1030 <enum>Qt::Horizontal</enum>
1031 </property> No newline at end of file
1031 </property>
1032 <property name="sizeType"> No newline at end of file
1032 <property name="sizeType">
1033 <enum>QSizePolicy::Minimum</enum> No newline at end of file
1033 <enum>QSizePolicy::Minimum</enum>
1034 </property> No newline at end of file
1034 </property>
1035 <property name="sizeHint" stdset="0"> No newline at end of file
1035 <property name="sizeHint" stdset="0">
1036 <size> No newline at end of file
1036 <size>
1037 <width>40</width> No newline at end of file
1037 <width>40</width>
1038 <height>20</height> No newline at end of file
1038 <height>20</height>
1039 </size> No newline at end of file
1039 </size>
1040 </property> No newline at end of file
1040 </property>
1041 </spacer> No newline at end of file
1041 </spacer>
1042 </item> No newline at end of file
1042 </item>
1043 <item> No newline at end of file
1043 <item>
1044 <widget class="QLabel" name="lblSTATUS_2"> No newline at end of file
1044 <widget class="QLabel" name="lblSTATUS_2">
1045 <property name="sizePolicy"> No newline at end of file
1045 <property name="sizePolicy">
1046 <sizepolicy hsizetype="Preferred" vsizetype="Preferred"> No newline at end of file
1046 <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
1047 <horstretch>0</horstretch> No newline at end of file
1047 <horstretch>0</horstretch>
1048 <verstretch>0</verstretch> No newline at end of file
1048 <verstretch>0</verstretch>
1049 </sizepolicy> No newline at end of file
1049 </sizepolicy>
1050 </property> No newline at end of file
1050 </property>
1051 <property name="text"> No newline at end of file
1051 <property name="text">
1052 <string>STATUS</string> No newline at end of file
1052 <string>STATUS</string>
1053 </property> No newline at end of file
1053 </property>
1054 </widget> No newline at end of file
1054 </widget>
1055 </item> No newline at end of file
1055 </item>
1056 </layout> No newline at end of file
1056 </layout>
1057 </item> No newline at end of file
1057 </item>
1058 <item> No newline at end of file
1058 <item>
1059 <layout class="QVBoxLayout" name="verticalLayout_27"> No newline at end of file
1059 <layout class="QVBoxLayout" name="verticalLayout_27">
1060 <item> No newline at end of file
1060 <item>
1061 <widget class="QLabel" name="lblDevA_2"> No newline at end of file
1061 <widget class="QLabel" name="lblDevA_2">
1062 <property name="text"> No newline at end of file
1062 <property name="text">
1063 <string>DEV A</string> No newline at end of file
1063 <string>DEV A</string>
1064 </property> No newline at end of file
1064 </property>
1065 <property name="alignment"> No newline at end of file
1065 <property name="alignment">
1066 <set>Qt::AlignCenter</set> No newline at end of file
1066 <set>Qt::AlignCenter</set>
1067 </property> No newline at end of file
1067 </property>
1068 </widget> No newline at end of file
1068 </widget>
1069 </item> No newline at end of file
1069 </item>
1070 <item> No newline at end of file
1070 <item>
1071 <widget class="QLineEdit" name="txtCHstatusA"> No newline at end of file
1071 <widget class="QLineEdit" name="txtCHstatusA">
1072 <property name="readOnly"> No newline at end of file
1072 <property name="readOnly">
1073 <bool>true</bool> No newline at end of file
1073 <bool>true</bool>
1074 </property> No newline at end of file
1074 </property>
1075 </widget> No newline at end of file
1075 </widget>
1076 </item> No newline at end of file
1076 </item>
1077 </layout> No newline at end of file
1077 </layout>
1078 </item> No newline at end of file
1078 </item>
1079 <item> No newline at end of file
1079 <item>
1080 <layout class="QVBoxLayout" name="verticalLayout_28"> No newline at end of file
1080 <layout class="QVBoxLayout" name="verticalLayout_28">
1081 <item> No newline at end of file
1081 <item>
1082 <widget class="QLabel" name="lblDevB_2"> No newline at end of file
1082 <widget class="QLabel" name="lblDevB_2">
1083 <property name="text"> No newline at end of file
1083 <property name="text">
1084 <string>DEV B</string> No newline at end of file
1084 <string>DEV B</string>
1085 </property> No newline at end of file
1085 </property>
1086 <property name="alignment"> No newline at end of file
1086 <property name="alignment">
1087 <set>Qt::AlignCenter</set> No newline at end of file
1087 <set>Qt::AlignCenter</set>
1088 </property> No newline at end of file
1088 </property>
1089 </widget> No newline at end of file
1089 </widget>
1090 </item> No newline at end of file
1090 </item>
1091 <item> No newline at end of file
1091 <item>
1092 <widget class="QLineEdit" name="txtCHstatusB"> No newline at end of file
1092 <widget class="QLineEdit" name="txtCHstatusB">
1093 <property name="readOnly"> No newline at end of file
1093 <property name="readOnly">
1094 <bool>true</bool> No newline at end of file
1094 <bool>true</bool>
1095 </property> No newline at end of file
1095 </property>
1096 </widget> No newline at end of file
1096 </widget>
1097 </item> No newline at end of file
1097 </item>
1098 </layout> No newline at end of file
1098 </layout>
1099 </item> No newline at end of file
1099 </item>
1100 <item> No newline at end of file
1100 <item>
1101 <layout class="QVBoxLayout" name="verticalLayout_29"> No newline at end of file
1101 <layout class="QVBoxLayout" name="verticalLayout_29">
1102 <item> No newline at end of file
1102 <item>
1103 <widget class="QLabel" name="lblDevC_2"> No newline at end of file
1103 <widget class="QLabel" name="lblDevC_2">
1104 <property name="text"> No newline at end of file
1104 <property name="text">
1105 <string>DEV C</string> No newline at end of file
1105 <string>DEV C</string>
1106 </property> No newline at end of file
1106 </property>
1107 <property name="alignment"> No newline at end of file
1107 <property name="alignment">
1108 <set>Qt::AlignCenter</set> No newline at end of file
1108 <set>Qt::AlignCenter</set>
1109 </property> No newline at end of file
1109 </property>
1110 </widget> No newline at end of file
1110 </widget>
1111 </item> No newline at end of file
1111 </item>
1112 <item> No newline at end of file
1112 <item>
1113 <widget class="QLineEdit" name="txtCHstatusC"> No newline at end of file
1113 <widget class="QLineEdit" name="txtCHstatusC">
1114 <property name="readOnly"> No newline at end of file
1114 <property name="readOnly">
1115 <bool>true</bool> No newline at end of file
1115 <bool>true</bool>
1116 </property> No newline at end of file
1116 </property>
1117 </widget> No newline at end of file
1117 </widget>
1118 </item> No newline at end of file
1118 </item>
1119 </layout> No newline at end of file
1119 </layout>
1120 </item> No newline at end of file
1120 </item>
1121 <item> No newline at end of file
1121 <item>
1122 <layout class="QVBoxLayout" name="verticalLayout_30"> No newline at end of file
1122 <layout class="QVBoxLayout" name="verticalLayout_30">
1123 <item> No newline at end of file
1123 <item>
1124 <widget class="QLabel" name="lblDevD_2"> No newline at end of file
1124 <widget class="QLabel" name="lblDevD_2">
1125 <property name="text"> No newline at end of file
1125 <property name="text">
1126 <string>DEV D</string> No newline at end of file
1126 <string>DEV D</string>
1127 </property> No newline at end of file
1127 </property>
1128 <property name="alignment"> No newline at end of file
1128 <property name="alignment">
1129 <set>Qt::AlignCenter</set> No newline at end of file
1129 <set>Qt::AlignCenter</set>
1130 </property> No newline at end of file
1130 </property>
1131 </widget> No newline at end of file
1131 </widget>
1132 </item> No newline at end of file
1132 </item>
1133 <item> No newline at end of file
1133 <item>
1134 <widget class="QLineEdit" name="txtCHstatusD"> No newline at end of file
1134 <widget class="QLineEdit" name="txtCHstatusD">
1135 <property name="readOnly"> No newline at end of file
1135 <property name="readOnly">
1136 <bool>true</bool> No newline at end of file
1136 <bool>true</bool>
1137 </property> No newline at end of file
1137 </property>
1138 </widget> No newline at end of file
1138 </widget>
1139 </item> No newline at end of file
1139 </item>
1140 </layout> No newline at end of file
1140 </layout>
1141 </item> No newline at end of file
1141 </item>
1142 </layout> No newline at end of file
1142 </layout>
1143 </item> No newline at end of file
1143 </item>
1144 <item> No newline at end of file
1144 <item>
1145 <layout class="QHBoxLayout" name="horizontalLayout_20"> No newline at end of file
1145 <layout class="QHBoxLayout" name="horizontalLayout_20">
1146 <item> No newline at end of file
1146 <item>
1147 <spacer name="horizontalSpacer_12"> No newline at end of file
1147 <spacer name="horizontalSpacer_12">
1148 <property name="orientation"> No newline at end of file
1148 <property name="orientation">
1149 <enum>Qt::Horizontal</enum> No newline at end of file
1149 <enum>Qt::Horizontal</enum>
1150 </property> No newline at end of file
1150 </property>
1151 <property name="sizeType"> No newline at end of file
1151 <property name="sizeType">
1152 <enum>QSizePolicy::Minimum</enum> No newline at end of file
1152 <enum>QSizePolicy::Minimum</enum>
1153 </property> No newline at end of file
1153 </property>
1154 <property name="sizeHint" stdset="0"> No newline at end of file
1154 <property name="sizeHint" stdset="0">
1155 <size> No newline at end of file
1155 <size>
1156 <width>50</width> No newline at end of file
1156 <width>50</width>
1157 <height>20</height> No newline at end of file
1157 <height>20</height>
1158 </size> No newline at end of file
1158 </size>
1159 </property> No newline at end of file
1159 </property>
1160 </spacer>
1160 </spacer>
No newline at end of file
1161 </item>
No newline at end of file
1162 <item>
No newline at end of file
1163 <widget class="QCheckBox" name="chkCheck">
No newline at end of file
1164 <property name="enabled">
No newline at end of file
1165 <bool>true</bool>
No newline at end of file
1166 </property>
No newline at end of file
1167 <property name="text">
No newline at end of file
1168 <string>MANUAL</string>
No newline at end of file
1169 </property>
No newline at end of file
1170 </widget> No newline at end of file
1171 </item> No newline at end of file
1161 </item>
1172 <item> No newline at end of file
1162 <item>
1173 <spacer name="horizontalSpacer_15"> No newline at end of file
1163 <spacer name="horizontalSpacer_15">
1174 <property name="orientation"> No newline at end of file
1164 <property name="orientation">
1175 <enum>Qt::Horizontal</enum> No newline at end of file
1165 <enum>Qt::Horizontal</enum>
1176 </property> No newline at end of file
1166 </property>
1177 <property name="sizeHint" stdset="0"> No newline at end of file
1167 <property name="sizeHint" stdset="0">
1178 <size> No newline at end of file
1168 <size>
1179 <width>40</width> No newline at end of file
1169 <width>40</width>
1180 <height>20</height> No newline at end of file
1170 <height>20</height>
1181 </size> No newline at end of file
1171 </size>
1182 </property> No newline at end of file
1172 </property>
1183 </spacer> No newline at end of file
1173 </spacer>
1184 </item> No newline at end of file
1174 </item>
1185 <item> No newline at end of file
1175 <item>
1186 <widget class="QPushButton" name="btnCHstart"> No newline at end of file
1176 <widget class="QPushButton" name="btnCHstart">
1187 <property name="enabled"> No newline at end of file
1177 <property name="enabled">
1188 <bool>false</bool> No newline at end of file
1178 <bool>false</bool>
1189 </property> No newline at end of file
1179 </property>
1190 <property name="text"> No newline at end of file
1180 <property name="text">
1191 <string>START</string> No newline at end of file
1181 <string>START</string>
1192 </property> No newline at end of file
1182 </property>
1193 </widget> No newline at end of file
1183 </widget>
1194 </item> No newline at end of file
1184 </item>
1195 </layout> No newline at end of file
1185 </layout>
1196 </item> No newline at end of file
1186 </item>
1197 </layout> No newline at end of file
1187 </layout>
1198 </widget> No newline at end of file
1188 </widget>
1199 </widget> No newline at end of file
1189 </widget>
1200 </item> No newline at end of file
1190 </item>
1201 <item> No newline at end of file
1191 <item>
1202 <widget class="QTextEdit" name="txtInfo"> No newline at end of file
1192 <widget class="QTextEdit" name="txtInfo">
1203 <property name="readOnly"> No newline at end of file
1193 <property name="readOnly">
1204 <bool>true</bool> No newline at end of file
1194 <bool>true</bool>
1205 </property> No newline at end of file
1195 </property>
1206 </widget> No newline at end of file
1196 </widget>
1207 </item> No newline at end of file
1197 </item>
1208 <item> No newline at end of file
1198 <item>
1209 <widget class="QLineEdit" name="txtProgress"> No newline at end of file
1199 <widget class="QLineEdit" name="txtProgress">
1210 <property name="sizePolicy"> No newline at end of file
1200 <property name="sizePolicy">
1211 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> No newline at end of file
1201 <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
1212 <horstretch>0</horstretch> No newline at end of file
1202 <horstretch>0</horstretch>
1213 <verstretch>0</verstretch> No newline at end of file
1203 <verstretch>0</verstretch>
1214 </sizepolicy> No newline at end of file
1204 </sizepolicy>
1215 </property> No newline at end of file
1205 </property>
1216 </widget> No newline at end of file
1206 </widget>
1217 </item> No newline at end of file
1207 </item>
1218 <item> No newline at end of file
1208 <item>
1219 <layout class="QHBoxLayout" name="horizontalLayout_2"> No newline at end of file
1209 <layout class="QHBoxLayout" name="horizontalLayout_2">
1220 <property name="sizeConstraint"> No newline at end of file
1210 <property name="sizeConstraint">
1221 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
1211 <enum>QLayout::SetDefaultConstraint</enum>
1222 </property> No newline at end of file
1212 </property>
1223 <item> No newline at end of file
1213 <item>
1224 <widget class="QPushButton" name="btnGbkp"> No newline at end of file
1214 <widget class="QPushButton" name="btnGbkp">
1225 <property name="enabled"> No newline at end of file
1215 <property name="enabled">
1226 <bool>false</bool> No newline at end of file
1216 <bool>false</bool>
1227 </property> No newline at end of file
1217 </property>
1228 <property name="text"> No newline at end of file
1218 <property name="text">
1229 <string>Generate Bkp</string> No newline at end of file
1219 <string>Generate Bkp</string>
1230 </property> No newline at end of file
1220 </property>
1231 </widget> No newline at end of file
1221 </widget>
1232 </item> No newline at end of file
1222 </item>
1233 <item> No newline at end of file
1223 <item>
1234 <widget class="QPushButton" name="btnRestart"> No newline at end of file
1224 <widget class="QPushButton" name="btnRestart">
1235 <property name="enabled"> No newline at end of file
1225 <property name="enabled">
1236 <bool>false</bool> No newline at end of file
1226 <bool>false</bool>
1237 </property> No newline at end of file
1227 </property>
1238 <property name="text"> No newline at end of file
1228 <property name="text">
1239 <string>Restart</string> No newline at end of file
1229 <string>Restart</string>
1240 </property> No newline at end of file
1230 </property>
1241 </widget> No newline at end of file
1231 </widget>
1242 </item> No newline at end of file
1232 </item>
1243 <item> No newline at end of file
1233 <item>
1244 <widget class="QPushButton" name="btnStartburn"> No newline at end of file
1234 <widget class="QPushButton" name="btnStartburn">
1245 <property name="enabled"> No newline at end of file
1235 <property name="enabled">
1246 <bool>false</bool> No newline at end of file
1236 <bool>false</bool>
1247 </property> No newline at end of file
1237 </property>
1248 <property name="text"> No newline at end of file
1238 <property name="text">
1249 <string>Start Burn</string> No newline at end of file
1239 <string>Start Burn</string>
1250 </property> No newline at end of file
1240 </property>
1251 </widget> No newline at end of file
1241 </widget>
1252 </item> No newline at end of file
1242 </item>
1253 <item> No newline at end of file
1243 <item>
1254 <widget class="QPushButton" name="btnStopburn"> No newline at end of file
1244 <widget class="QPushButton" name="btnStopburn">
1255 <property name="enabled"> No newline at end of file
1245 <property name="enabled">
1256 <bool>false</bool> No newline at end of file
1246 <bool>false</bool>
1257 </property> No newline at end of file
1247 </property>
1258 <property name="text"> No newline at end of file
1248 <property name="text">
1259 <string>Stop Burn</string> No newline at end of file
1249 <string>Stop Burn</string>
1260 </property> No newline at end of file
1250 </property>
1261 </widget> No newline at end of file
1251 </widget>
1262 </item> No newline at end of file
1252 </item>
1263 </layout> No newline at end of file
1253 </layout>
1264 </item> No newline at end of file
1254 </item>
1265 </layout> No newline at end of file
1255 </layout>
1266 </widget> No newline at end of file
1256 </widget>
1267 <widget class="QMenuBar" name="menubar"> No newline at end of file
1257 <widget class="QMenuBar" name="menubar">
1268 <property name="geometry"> No newline at end of file
1258 <property name="geometry">
1269 <rect> No newline at end of file
1259 <rect>
1270 <x>0</x> No newline at end of file
1260 <x>0</x>
1271 <y>0</y> No newline at end of file
1261 <y>0</y>
1272 <width>824</width> No newline at end of file
1262 <width>824</width>
1273 <height>25</height> No newline at end of file
1263 <height>25</height>
1274 </rect> No newline at end of file
1264 </rect>
1275 </property> No newline at end of file
1265 </property>
1276 <widget class="QMenu" name="menuFile"> No newline at end of file
1266 <widget class="QMenu" name="menuFile">
1277 <property name="title"> No newline at end of file
1267 <property name="title">
1278 <string>File</string> No newline at end of file
1268 <string>File</string>
1279 </property> No newline at end of file
1269 </property>
1280 <addaction name="actionQuit"/> No newline at end of file
1270 <addaction name="actionQuit"/>
1281 </widget> No newline at end of file
1271 </widget>
1282 <widget class="QMenu" name="menuHelp"> No newline at end of file
1272 <widget class="QMenu" name="menuHelp">
1283 <property name="title"> No newline at end of file
1273 <property name="title">
1284 <string>Help</string> No newline at end of file
1274 <string>Help</string>
1285 </property> No newline at end of file
1275 </property>
1286 <addaction name="actionAbout"/> No newline at end of file
1276 <addaction name="actionAbout"/>
1287 </widget> No newline at end of file
1277 </widget>
1288 <widget class="QMenu" name="menuParameters"> No newline at end of file
1278 <widget class="QMenu" name="menuParameters">
1289 <property name="title"> No newline at end of file
1279 <property name="title">
1290 <string>Parameters</string> No newline at end of file
1280 <string>Parameters</string>
1291 </property> No newline at end of file
1281 </property>
1292 <addaction name="actionChange_Parameters"/> No newline at end of file
1282 <addaction name="actionChange_Parameters"/>
1293 </widget> No newline at end of file
1283 </widget>
1294 <addaction name="menuFile"/> No newline at end of file
1284 <addaction name="menuFile"/>
1295 <addaction name="menuParameters"/> No newline at end of file
1285 <addaction name="menuParameters"/>
1296 <addaction name="menuHelp"/> No newline at end of file
1286 <addaction name="menuHelp"/>
1297 </widget> No newline at end of file
1287 </widget>
1298 <widget class="QStatusBar" name="statusbar"/> No newline at end of file
1288 <widget class="QStatusBar" name="statusbar"/>
1299 <action name="actionChange_Parameters"> No newline at end of file
1289 <action name="actionChange_Parameters">
1300 <property name="enabled"> No newline at end of file
1290 <property name="enabled">
1301 <bool>false</bool> No newline at end of file
1291 <bool>false</bool>
1302 </property> No newline at end of file
1292 </property>
1303 <property name="text"> No newline at end of file
1293 <property name="text">
1304 <string>Change Parameters</string> No newline at end of file
1294 <string>Change Parameters</string>
1305 </property> No newline at end of file
1295 </property>
1306 </action> No newline at end of file
1296 </action>
1307 <action name="actionQuit"> No newline at end of file
1297 <action name="actionQuit">
1308 <property name="text"> No newline at end of file
1298 <property name="text">
1309 <string>Quit</string> No newline at end of file
1299 <string>Quit</string>
1310 </property> No newline at end of file
1300 </property>
1311 </action> No newline at end of file
1301 </action>
1312 <action name="actionAbout"> No newline at end of file
1302 <action name="actionAbout">
1313 <property name="text"> No newline at end of file
1303 <property name="text">
1314 <string>About</string> No newline at end of file
1304 <string>About</string>
1315 </property> No newline at end of file
1305 </property>
1316 </action> No newline at end of file
1306 </action>
1317 </widget> No newline at end of file
1307 </widget>
1318 <tabstops> No newline at end of file
1308 <tabstops>
1319 <tabstop>txtDpath</tabstop> No newline at end of file
1309 <tabstop>txtDpath</tabstop>
1320 <tabstop>btnDpath</tabstop> No newline at end of file
1310 <tabstop>btnDpath</tabstop>
1321 <tabstop>txtRpath</tabstop> No newline at end of file
1311 <tabstop>txtRpath</tabstop>
1322 <tabstop>btnRpath</tabstop> No newline at end of file
1312 <tabstop>btnRpath</tabstop>
1323 <tabstop>lstDtype</tabstop> No newline at end of file
1313 <tabstop>lstDtype</tabstop>
1324 <tabstop>txtDtype</tabstop> No newline at end of file
1314 <tabstop>txtDtype</tabstop>
1325 <tabstop>txtElabel</tabstop> No newline at end of file
1315 <tabstop>txtElabel</tabstop>
1326 <tabstop>lstStartDay</tabstop> No newline at end of file
1316 <tabstop>lstStartDay</tabstop>
1327 <tabstop>lstStopDay</tabstop> No newline at end of file
1317 <tabstop>lstStopDay</tabstop>
1328 <tabstop>lstDcapacity</tabstop> No newline at end of file
1318 <tabstop>lstDcapacity</tabstop>
1329 <tabstop>tabWidget</tabstop> No newline at end of file
1319 <tabstop>tabWidget</tabstop>
1330 <tabstop>btnGbkp</tabstop> No newline at end of file
1320 <tabstop>btnGbkp</tabstop>
1331 <tabstop>btnRestart</tabstop> No newline at end of file
1321 <tabstop>btnRestart</tabstop>
1332 <tabstop>btnStartburn</tabstop> No newline at end of file
1322 <tabstop>btnStartburn</tabstop>
1333 <tabstop>btnStopburn</tabstop> No newline at end of file
1323 <tabstop>btnStopburn</tabstop>
1334 </tabstops> No newline at end of file
1324 </tabstops>
1335 <resources/> No newline at end of file
1325 <resources/>
1336 <connections> No newline at end of file
1326 <connections>
1337 <connection> No newline at end of file
1327 <connection>
1338 <sender>actionQuit</sender> No newline at end of file
1328 <sender>actionQuit</sender>
1339 <signal>triggered()</signal> No newline at end of file
1329 <signal>triggered()</signal>
1340 <receiver>MainWindow</receiver> No newline at end of file
1330 <receiver>MainWindow</receiver>
1341 <slot>close()</slot> No newline at end of file
1331 <slot>close()</slot>
1342 <hints> No newline at end of file
1332 <hints>
1343 <hint type="sourcelabel"> No newline at end of file
1333 <hint type="sourcelabel">
1344 <x>-1</x> No newline at end of file
1334 <x>-1</x>
1345 <y>-1</y> No newline at end of file
1335 <y>-1</y>
1346 </hint> No newline at end of file
1336 </hint>
1347 <hint type="destinationlabel"> No newline at end of file
1337 <hint type="destinationlabel">
1348 <x>306</x> No newline at end of file
1338 <x>306</x>
1349 <y>358</y> No newline at end of file
1339 <y>358</y>
1350 </hint> No newline at end of file
1340 </hint>
1351 </hints> No newline at end of file
1341 </hints>
1352 </connection> No newline at end of file
1342 </connection>
1353 <connection> No newline at end of file
1343 <connection>
1354 <sender>chkDevD</sender> No newline at end of file
1344 <sender>chkDevD</sender>
1355 <signal>toggled(bool)</signal> No newline at end of file
1345 <signal>toggled(bool)</signal>
1356 <receiver>grpDevD</receiver> No newline at end of file
1346 <receiver>grpDevD</receiver>
1357 <slot>setEnabled(bool)</slot> No newline at end of file
1347 <slot>setEnabled(bool)</slot>
1358 <hints> No newline at end of file
1348 <hints>
1359 <hint type="sourcelabel">
1349 <hint type="sourcelabel">
No newline at end of file
1350 <x>119</x>
1360 <x>701</x>
No newline at end of file
No newline at end of file
1351 <y>103</y> No newline at end of file
1361 <y>98</y> No newline at end of file
1362 </hint> No newline at end of file
1352 </hint>
1363 <hint type="destinationlabel">
1353 <hint type="destinationlabel">
No newline at end of file
1354 <x>119</x>
1364 <x>701</x>
No newline at end of file
No newline at end of file
1355 <y>103</y> No newline at end of file
1365 <y>251</y> No newline at end of file
1366 </hint> No newline at end of file
1356 </hint>
1367 </hints> No newline at end of file
1357 </hints>
1368 </connection> No newline at end of file
1358 </connection>
1369 <connection> No newline at end of file
1359 <connection>
1370 <sender>chkDevB</sender> No newline at end of file
1360 <sender>chkDevB</sender>
1371 <signal>toggled(bool)</signal> No newline at end of file
1361 <signal>toggled(bool)</signal>
1372 <receiver>grpDevB</receiver> No newline at end of file
1362 <receiver>grpDevB</receiver>
1373 <slot>setEnabled(bool)</slot> No newline at end of file
1363 <slot>setEnabled(bool)</slot>
1374 <hints> No newline at end of file
1364 <hints>
1375 <hint type="sourcelabel">
1365 <hint type="sourcelabel">
No newline at end of file
1366 <x>119</x>
1376 <x>263</x>
No newline at end of file
No newline at end of file
1367 <y>103</y> No newline at end of file
1377 <y>79</y> No newline at end of file
1378 </hint> No newline at end of file
1368 </hint>
1379 <hint type="destinationlabel">
1369 <hint type="destinationlabel">
No newline at end of file
1370 <x>119</x>
1380 <x>251</x>
No newline at end of file
No newline at end of file
1371 <y>103</y> No newline at end of file
1381 <y>167</y> No newline at end of file
1382 </hint> No newline at end of file
1372 </hint>
1383 </hints> No newline at end of file
1373 </hints>
1384 </connection> No newline at end of file
1374 </connection>
1385 <connection> No newline at end of file
1375 <connection>
1386 <sender>chkDevC</sender> No newline at end of file
1376 <sender>chkDevC</sender>
1387 <signal>toggled(bool)</signal> No newline at end of file
1377 <signal>toggled(bool)</signal>
1388 <receiver>grpDevC</receiver> No newline at end of file
1378 <receiver>grpDevC</receiver>
1389 <slot>setEnabled(bool)</slot> No newline at end of file
1379 <slot>setEnabled(bool)</slot>
1390 <hints> No newline at end of file
1380 <hints>
1391 <hint type="sourcelabel">
1381 <hint type="sourcelabel">
No newline at end of file
1382 <x>119</x>
1392 <x>391</x>
No newline at end of file
No newline at end of file
1383 <y>103</y> No newline at end of file
1393 <y>79</y> No newline at end of file
1394 </hint> No newline at end of file
1384 </hint>
1395 <hint type="destinationlabel">
1385 <hint type="destinationlabel">
No newline at end of file
1386 <x>119</x>
1396 <x>391</x>
No newline at end of file
No newline at end of file
1387 <y>103</y> No newline at end of file
1397 <y>202</y> No newline at end of file
1398 </hint> No newline at end of file
1388 </hint>
1399 </hints> No newline at end of file
1389 </hints>
1400 </connection> No newline at end of file
1390 </connection>
1401 <connection> No newline at end of file
1391 <connection>
1402 <sender>chkDevA</sender> No newline at end of file
1392 <sender>chkDevA</sender>
1403 <signal>toggled(bool)</signal> No newline at end of file
1393 <signal>toggled(bool)</signal>
1404 <receiver>grpDevA</receiver> No newline at end of file
1394 <receiver>grpDevA</receiver>
1405 <slot>setEnabled(bool)</slot> No newline at end of file
1395 <slot>setEnabled(bool)</slot>
1406 <hints> No newline at end of file
1396 <hints>
1407 <hint type="sourcelabel"> No newline at end of file
1397 <hint type="sourcelabel">
1408 <x>105</x> No newline at end of file
1398 <x>105</x>
1409 <y>79</y> No newline at end of file
1399 <y>79</y>
1410 </hint> No newline at end of file
1400 </hint>
1411 <hint type="destinationlabel">
1401 <hint type="destinationlabel">
No newline at end of file
1402 <x>106</x>
1412 <x>95</x>
No newline at end of file
No newline at end of file
1403 <y>103</y> No newline at end of file
1413 <y>167</y>
No newline at end of file
1414 </hint>
No newline at end of file
1415 </hints>
No newline at end of file
1416 </connection>
No newline at end of file
1417 <connection>
No newline at end of file
1418 <sender>chkCheck</sender>
No newline at end of file
1419 <signal>toggled(bool)</signal>
No newline at end of file
1420 <receiver>txtTDpath</receiver>
No newline at end of file
1421 <slot>setEnabled(bool)</slot>
No newline at end of file
1422 <hints>
No newline at end of file
1423 <hint type="sourcelabel">
No newline at end of file
1424 <x>160</x>
No newline at end of file
1425 <y>378</y>
No newline at end of file
1426 </hint>
No newline at end of file
1427 <hint type="destinationlabel">
No newline at end of file
1428 <x>231</x>
No newline at end of file
1429 <y>306</y>
No newline at end of file
1430 </hint>
No newline at end of file
1431 </hints>
No newline at end of file
1432 </connection>
No newline at end of file
1433 <connection>
No newline at end of file
1434 <sender>chkCheck</sender>
No newline at end of file
1435 <signal>toggled(bool)</signal>
No newline at end of file
1436 <receiver>btnTDpath</receiver>
No newline at end of file
1437 <slot>setEnabled(bool)</slot>
No newline at end of file
1438 <hints>
No newline at end of file
1439 <hint type="sourcelabel">
No newline at end of file
1440 <x>160</x>
No newline at end of file
1441 <y>387</y>
No newline at end of file
1442 </hint>
No newline at end of file
1443 <hint type="destinationlabel">
No newline at end of file
1444 <x>802</x>
No newline at end of file
1445 <y>305</y>
No newline at end of file
1446 </hint>
No newline at end of file
1447 </hints>
No newline at end of file
1448 </connection>
No newline at end of file
1449 <connection>
No newline at end of file
1450 <sender>chkCheck</sender>
No newline at end of file
1451 <signal>toggled(bool)</signal>
No newline at end of file
1452 <receiver>txtTDpath</receiver>
No newline at end of file
1453 <slot>clear()</slot>
No newline at end of file
1454 <hints>
No newline at end of file
1455 <hint type="sourcelabel">
No newline at end of file
1456 <x>145</x>
No newline at end of file
1457 <y>388</y>
No newline at end of file
1458 </hint>
No newline at end of file
1459 <hint type="destinationlabel">
No newline at end of file
1460 <x>377</x>
No newline at end of file
1461 <y>303</y> No newline at end of file
1462 </hint> No newline at end of file
1404 </hint>
1463 </hints> No newline at end of file
1405 </hints>
1464 </connection> No newline at end of file
1406 </connection>
1465 </connections> No newline at end of file
1407 </connections>
1466 </ui> No newline at end of file
1408 </ui>
@@ -1,58 +1,58
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/JRO_SVN/eric4/jro_backup_manager/ui/About.ui' No newline at end of file
3 # Form implementation generated from reading ui file '/home/ricardoar/JRO_SVN/eric4/jro_backup_manager/ui/About.ui'
4 #
4 #
No newline at end of file
5 # Created: Thu May 27 12:18:45 2010 No newline at end of file
5 # Created: Thu May 27 12:04:54 2010 No newline at end of file
6 # by: PyQt4 UI code generator 4.6 No newline at end of file
6 # by: PyQt4 UI code generator 4.6
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_About(object): No newline at end of file
12 class Ui_About(object):
13 def setupUi(self, About): No newline at end of file
13 def setupUi(self, About):
14 About.setObjectName("About") No newline at end of file
14 About.setObjectName("About")
15 About.resize(250, 230) No newline at end of file
15 About.resize(250, 230)
16 About.setMinimumSize(QtCore.QSize(250, 230)) No newline at end of file
16 About.setMinimumSize(QtCore.QSize(250, 230))
17 About.setMaximumSize(QtCore.QSize(250, 230)) No newline at end of file
17 About.setMaximumSize(QtCore.QSize(250, 230))
18 self.verticalLayout = QtGui.QVBoxLayout(About) No newline at end of file
18 self.verticalLayout = QtGui.QVBoxLayout(About)
19 self.verticalLayout.setObjectName("verticalLayout") No newline at end of file
19 self.verticalLayout.setObjectName("verticalLayout")
20 self.textEdit = QtGui.QTextEdit(About) No newline at end of file
20 self.textEdit = QtGui.QTextEdit(About)
21 self.textEdit.setMaximumSize(QtCore.QSize(16777215, 16777215)) No newline at end of file
21 self.textEdit.setMaximumSize(QtCore.QSize(16777215, 16777215))
22 self.textEdit.setReadOnly(True) No newline at end of file
22 self.textEdit.setReadOnly(True)
23 self.textEdit.setObjectName("textEdit") No newline at end of file
23 self.textEdit.setObjectName("textEdit")
24 self.verticalLayout.addWidget(self.textEdit) No newline at end of file
24 self.verticalLayout.addWidget(self.textEdit)
25 self.btnOK = QtGui.QPushButton(About) No newline at end of file
25 self.btnOK = QtGui.QPushButton(About)
26 self.btnOK.setObjectName("btnOK") No newline at end of file
26 self.btnOK.setObjectName("btnOK")
27 self.verticalLayout.addWidget(self.btnOK) No newline at end of file
27 self.verticalLayout.addWidget(self.btnOK)
28 No newline at end of file
28
29 self.retranslateUi(About) No newline at end of file
29 self.retranslateUi(About)
30 QtCore.QObject.connect(self.btnOK, QtCore.SIGNAL("clicked()"), About.close) No newline at end of file
30 QtCore.QObject.connect(self.btnOK, QtCore.SIGNAL("clicked()"), About.close)
31 QtCore.QMetaObject.connectSlotsByName(About) No newline at end of file
31 QtCore.QMetaObject.connectSlotsByName(About)
32 No newline at end of file
32
33 def retranslateUi(self, About): No newline at end of file
33 def retranslateUi(self, About):
34 About.setWindowTitle(QtGui.QApplication.translate("About", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
34 About.setWindowTitle(QtGui.QApplication.translate("About", "About", None, QtGui.QApplication.UnicodeUTF8))
35 self.textEdit.setHtml(QtGui.QApplication.translate("About", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n" No newline at end of file
35 self.textEdit.setHtml(QtGui.QApplication.translate("About", "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
36 "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n" No newline at end of file
36 "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
37 "p, li { white-space: pre-wrap; }\n" No newline at end of file
37 "p, li { white-space: pre-wrap; }\n"
38 "</style></head><body style=\" font-family:\'Sans\'; font-size:10pt; font-weight:400; font-style:normal;\">\n" No newline at end of file
38 "</style></head><body style=\" font-family:\'Sans\'; font-size:10pt; font-weight:400; font-style:normal;\">\n"
39 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">JRO BACKUP MANAGER</span></p>\n" No newline at end of file
39 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-weight:600;\">JRO BACKUP MANAGER</span></p>\n"
40 "<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;\"></p>\n" No newline at end of file
40 "<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-weight:600;\"></p>\n"
41 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Author:</span></p>\n" No newline at end of file
41 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Author:</span></p>\n"
42 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Ricardo Farino Alonso Rondón</span></p>\n" No newline at end of file
42 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Ricardo Farino Alonso Rondón</span></p>\n"
43 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">ricardo.alonso@jro.igp.gob.pe</span></p>\n" No newline at end of file
43 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">ricardo.alonso@jro.igp.gob.pe</span></p>\n"
44 "<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-style:italic;\"></p>\n" No newline at end of file
44 "<p align=\"center\" style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-style:italic;\"></p>\n"
45 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Jicamarca Radio Observatory</span></p>\n" No newline at end of file
45 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Jicamarca Radio Observatory</span></p>\n"
46 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Jicamarca - May 2010</span></p></body></html>", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
46 "<p align=\"center\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" font-style:italic;\">Jicamarca - May 2010</span></p></body></html>", None, QtGui.QApplication.UnicodeUTF8))
47 self.btnOK.setText(QtGui.QApplication.translate("About", "OK", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
47 self.btnOK.setText(QtGui.QApplication.translate("About", "OK", None, QtGui.QApplication.UnicodeUTF8))
48 No newline at end of file
48
49 No newline at end of file
49
50 if __name__ == "__main__": No newline at end of file
50 if __name__ == "__main__":
51 import sys No newline at end of file
51 import sys
52 app = QtGui.QApplication(sys.argv) No newline at end of file
52 app = QtGui.QApplication(sys.argv)
53 About = QtGui.QDialog() No newline at end of file
53 About = QtGui.QDialog()
54 ui = Ui_About() No newline at end of file
54 ui = Ui_About()
55 ui.setupUi(About) No newline at end of file
55 ui.setupUi(About)
56 About.show() No newline at end of file
56 About.show()
57 sys.exit(app.exec_()) No newline at end of file
57 sys.exit(app.exec_())
58 No newline at end of file
58
@@ -1,709 +1,701
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/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/JRO_SVN/eric4/jro_backup_manager/ui/MainWindow.ui'
4 #
4 #
No newline at end of file
5 # Created: Thu May 27 12:18:44 2010 No newline at end of file
5 # Created: Thu May 27 12:04:54 2010 No newline at end of file
6 # by: PyQt4 UI code generator 4.6 No newline at end of file
6 # by: PyQt4 UI code generator 4.6
7 # No newline at end of file
7 #
8 # WARNING! All changes made in this file will be lost! No newline at end of file
8 # WARNING! All changes made in this file will be lost!
9 No newline at end of file
9
10 from PyQt4 import QtCore, QtGui No newline at end of file
10 from PyQt4 import QtCore, QtGui
11 No newline at end of file
11
12 class Ui_MainWindow(object): No newline at end of file
12 class Ui_MainWindow(object):
13 def setupUi(self, MainWindow): No newline at end of file
13 def setupUi(self, MainWindow):
14 MainWindow.setObjectName("MainWindow") No newline at end of file
14 MainWindow.setObjectName("MainWindow")
15 MainWindow.resize(824, 717) No newline at end of file
15 MainWindow.resize(824, 717)
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 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed) No newline at end of file
76 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
77 sizePolicy.setHorizontalStretch(0) No newline at end of file
77 sizePolicy.setHorizontalStretch(0)
78 sizePolicy.setVerticalStretch(0) No newline at end of file
78 sizePolicy.setVerticalStretch(0)
79 sizePolicy.setHeightForWidth(self.txtDtype.sizePolicy().hasHeightForWidth()) No newline at end of file
79 sizePolicy.setHeightForWidth(self.txtDtype.sizePolicy().hasHeightForWidth())
80 self.txtDtype.setSizePolicy(sizePolicy) No newline at end of file
80 self.txtDtype.setSizePolicy(sizePolicy)
81 self.txtDtype.setReadOnly(True) No newline at end of file
81 self.txtDtype.setReadOnly(True)
82 self.txtDtype.setObjectName("txtDtype") No newline at end of file
82 self.txtDtype.setObjectName("txtDtype")
83 self.horizontalLayout_4.addWidget(self.txtDtype) No newline at end of file
83 self.horizontalLayout_4.addWidget(self.txtDtype)
84 spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) No newline at end of file
84 spacerItem = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
85 self.horizontalLayout_4.addItem(spacerItem) No newline at end of file
85 self.horizontalLayout_4.addItem(spacerItem)
86 self.verticalLayout_2.addLayout(self.horizontalLayout_4) No newline at end of file
86 self.verticalLayout_2.addLayout(self.horizontalLayout_4)
87 self.horizontalLayout_6 = QtGui.QHBoxLayout() No newline at end of file
87 self.horizontalLayout_6 = QtGui.QHBoxLayout()
88 self.horizontalLayout_6.setObjectName("horizontalLayout_6") No newline at end of file
88 self.horizontalLayout_6.setObjectName("horizontalLayout_6")
89 self.lblElabel = QtGui.QLabel(self.tabParameters) No newline at end of file
89 self.lblElabel = QtGui.QLabel(self.tabParameters)
90 self.lblElabel.setObjectName("lblElabel") No newline at end of file
90 self.lblElabel.setObjectName("lblElabel")
91 self.horizontalLayout_6.addWidget(self.lblElabel) No newline at end of file
91 self.horizontalLayout_6.addWidget(self.lblElabel)
92 self.lblCopys = QtGui.QLabel(self.tabParameters) No newline at end of file
92 self.lblCopys = QtGui.QLabel(self.tabParameters)
93 self.lblCopys.setObjectName("lblCopys") No newline at end of file
93 self.lblCopys.setObjectName("lblCopys")
94 self.horizontalLayout_6.addWidget(self.lblCopys) No newline at end of file
94 self.horizontalLayout_6.addWidget(self.lblCopys)
95 self.verticalLayout_2.addLayout(self.horizontalLayout_6) No newline at end of file
95 self.verticalLayout_2.addLayout(self.horizontalLayout_6)
96 self.horizontalLayout_5 = QtGui.QHBoxLayout() No newline at end of file
96 self.horizontalLayout_5 = QtGui.QHBoxLayout()
97 self.horizontalLayout_5.setObjectName("horizontalLayout_5") No newline at end of file
97 self.horizontalLayout_5.setObjectName("horizontalLayout_5")
98 self.txtElabel = QtGui.QLineEdit(self.tabParameters) No newline at end of file
98 self.txtElabel = QtGui.QLineEdit(self.tabParameters)
99 self.txtElabel.setObjectName("txtElabel") No newline at end of file
99 self.txtElabel.setObjectName("txtElabel")
100 self.horizontalLayout_5.addWidget(self.txtElabel) No newline at end of file
100 self.horizontalLayout_5.addWidget(self.txtElabel)
101 self.txtCopys = QtGui.QSpinBox(self.tabParameters) No newline at end of file
101 self.txtCopys = QtGui.QSpinBox(self.tabParameters)
102 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) No newline at end of file
102 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
103 sizePolicy.setHorizontalStretch(0) No newline at end of file
103 sizePolicy.setHorizontalStretch(0)
104 sizePolicy.setVerticalStretch(0) No newline at end of file
104 sizePolicy.setVerticalStretch(0)
105 sizePolicy.setHeightForWidth(self.txtCopys.sizePolicy().hasHeightForWidth()) No newline at end of file
105 sizePolicy.setHeightForWidth(self.txtCopys.sizePolicy().hasHeightForWidth())
106 self.txtCopys.setSizePolicy(sizePolicy) No newline at end of file
106 self.txtCopys.setSizePolicy(sizePolicy)
107 self.txtCopys.setMinimum(1) No newline at end of file
107 self.txtCopys.setMinimum(1)
108 self.txtCopys.setObjectName("txtCopys") No newline at end of file
108 self.txtCopys.setObjectName("txtCopys")
109 self.horizontalLayout_5.addWidget(self.txtCopys) No newline at end of file
109 self.horizontalLayout_5.addWidget(self.txtCopys)
110 self.verticalLayout_2.addLayout(self.horizontalLayout_5) No newline at end of file
110 self.verticalLayout_2.addLayout(self.horizontalLayout_5)
111 self.horizontalLayout_7 = QtGui.QHBoxLayout() No newline at end of file
111 self.horizontalLayout_7 = QtGui.QHBoxLayout()
112 self.horizontalLayout_7.setObjectName("horizontalLayout_7") No newline at end of file
112 self.horizontalLayout_7.setObjectName("horizontalLayout_7")
113 self.lblStartDay = QtGui.QLabel(self.tabParameters) No newline at end of file
113 self.lblStartDay = QtGui.QLabel(self.tabParameters)
114 self.lblStartDay.setObjectName("lblStartDay") No newline at end of file
114 self.lblStartDay.setObjectName("lblStartDay")
115 self.horizontalLayout_7.addWidget(self.lblStartDay) No newline at end of file
115 self.horizontalLayout_7.addWidget(self.lblStartDay)
116 self.lblStopDay = QtGui.QLabel(self.tabParameters) No newline at end of file
116 self.lblStopDay = QtGui.QLabel(self.tabParameters)
117 self.lblStopDay.setObjectName("lblStopDay") No newline at end of file
117 self.lblStopDay.setObjectName("lblStopDay")
118 self.horizontalLayout_7.addWidget(self.lblStopDay) No newline at end of file
118 self.horizontalLayout_7.addWidget(self.lblStopDay)
119 self.verticalLayout_2.addLayout(self.horizontalLayout_7) No newline at end of file
119 self.verticalLayout_2.addLayout(self.horizontalLayout_7)
120 self.horizontalLayout_8 = QtGui.QHBoxLayout() No newline at end of file
120 self.horizontalLayout_8 = QtGui.QHBoxLayout()
121 self.horizontalLayout_8.setObjectName("horizontalLayout_8") No newline at end of file
121 self.horizontalLayout_8.setObjectName("horizontalLayout_8")
122 self.lstStartDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
122 self.lstStartDay = QtGui.QComboBox(self.tabParameters)
123 self.lstStartDay.setObjectName("lstStartDay") No newline at end of file
123 self.lstStartDay.setObjectName("lstStartDay")
124 self.horizontalLayout_8.addWidget(self.lstStartDay) No newline at end of file
124 self.horizontalLayout_8.addWidget(self.lstStartDay)
125 self.lstStopDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
125 self.lstStopDay = QtGui.QComboBox(self.tabParameters)
126 self.lstStopDay.setObjectName("lstStopDay") No newline at end of file
126 self.lstStopDay.setObjectName("lstStopDay")
127 self.horizontalLayout_8.addWidget(self.lstStopDay) No newline at end of file
127 self.horizontalLayout_8.addWidget(self.lstStopDay)
128 self.verticalLayout_2.addLayout(self.horizontalLayout_8) No newline at end of file
128 self.verticalLayout_2.addLayout(self.horizontalLayout_8)
129 self.tabWidget.addTab(self.tabParameters, "") No newline at end of file
129 self.tabWidget.addTab(self.tabParameters, "")
130 self.tabDconfig = QtGui.QWidget() No newline at end of file
130 self.tabDconfig = QtGui.QWidget()
131 self.tabDconfig.setEnabled(True) No newline at end of file
131 self.tabDconfig.setEnabled(True)
132 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
132 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
133 sizePolicy.setHorizontalStretch(0) No newline at end of file
133 sizePolicy.setHorizontalStretch(0)
134 sizePolicy.setVerticalStretch(0) No newline at end of file
134 sizePolicy.setVerticalStretch(0)
135 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth()) No newline at end of file
135 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth())
136 self.tabDconfig.setSizePolicy(sizePolicy) No newline at end of file
136 self.tabDconfig.setSizePolicy(sizePolicy)
137 self.tabDconfig.setObjectName("tabDconfig") No newline at end of file
137 self.tabDconfig.setObjectName("tabDconfig")
138 self.verticalLayout_3 = QtGui.QVBoxLayout(self.tabDconfig) No newline at end of file
138 self.verticalLayout_3 = QtGui.QVBoxLayout(self.tabDconfig)
139 self.verticalLayout_3.setObjectName("verticalLayout_3") No newline at end of file
139 self.verticalLayout_3.setObjectName("verticalLayout_3")
140 self.horizontalLayout_12 = QtGui.QHBoxLayout() No newline at end of file
140 self.horizontalLayout_12 = QtGui.QHBoxLayout()
141 self.horizontalLayout_12.setObjectName("horizontalLayout_12") No newline at end of file
141 self.horizontalLayout_12.setObjectName("horizontalLayout_12")
142 self.verticalLayout_15 = QtGui.QVBoxLayout() No newline at end of file
142 self.verticalLayout_15 = QtGui.QVBoxLayout()
143 self.verticalLayout_15.setObjectName("verticalLayout_15") No newline at end of file
143 self.verticalLayout_15.setObjectName("verticalLayout_15")
144 self.chkDevA = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
144 self.chkDevA = QtGui.QCheckBox(self.tabDconfig)
145 self.chkDevA.setChecked(True) No newline at end of file
145 self.chkDevA.setChecked(True)
146 self.chkDevA.setObjectName("chkDevA") No newline at end of file
146 self.chkDevA.setObjectName("chkDevA")
147 self.verticalLayout_15.addWidget(self.chkDevA) No newline at end of file
147 self.verticalLayout_15.addWidget(self.chkDevA)
148 self.grpDevA = QtGui.QWidget(self.tabDconfig) No newline at end of file
148 self.grpDevA = QtGui.QWidget(self.tabDconfig)
149 self.grpDevA.setObjectName("grpDevA") No newline at end of file
149 self.grpDevA.setObjectName("grpDevA")
150 self.verticalLayout_11 = QtGui.QVBoxLayout(self.grpDevA) No newline at end of file
150 self.verticalLayout_11 = QtGui.QVBoxLayout(self.grpDevA)
151 self.verticalLayout_11.setObjectName("verticalLayout_11") No newline at end of file
151 self.verticalLayout_11.setObjectName("verticalLayout_11")
152 self.txtDeviceA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
152 self.txtDeviceA = QtGui.QLineEdit(self.grpDevA)
153 self.txtDeviceA.setReadOnly(True) No newline at end of file
153 self.txtDeviceA.setReadOnly(True)
154 self.txtDeviceA.setObjectName("txtDeviceA") No newline at end of file
154 self.txtDeviceA.setObjectName("txtDeviceA")
155 self.verticalLayout_11.addWidget(self.txtDeviceA) No newline at end of file
155 self.verticalLayout_11.addWidget(self.txtDeviceA)
156 self.txtBspeedA = QtGui.QSpinBox(self.grpDevA) No newline at end of file
156 self.txtBspeedA = QtGui.QSpinBox(self.grpDevA)
157 self.txtBspeedA.setReadOnly(True) No newline at end of file
157 self.txtBspeedA.setReadOnly(True)
158 self.txtBspeedA.setMinimum(1) No newline at end of file
158 self.txtBspeedA.setMinimum(1)
159 self.txtBspeedA.setProperty("value", 16) No newline at end of file
159 self.txtBspeedA.setProperty("value", 16)
160 self.txtBspeedA.setObjectName("txtBspeedA") No newline at end of file
160 self.txtBspeedA.setObjectName("txtBspeedA")
161 self.verticalLayout_11.addWidget(self.txtBspeedA) No newline at end of file
161 self.verticalLayout_11.addWidget(self.txtBspeedA)
162 self.txtBmodeA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
162 self.txtBmodeA = QtGui.QLineEdit(self.grpDevA)
163 self.txtBmodeA.setReadOnly(True) No newline at end of file
163 self.txtBmodeA.setReadOnly(True)
164 self.txtBmodeA.setObjectName("txtBmodeA") No newline at end of file
164 self.txtBmodeA.setObjectName("txtBmodeA")
165 self.verticalLayout_11.addWidget(self.txtBmodeA) No newline at end of file
165 self.verticalLayout_11.addWidget(self.txtBmodeA)
166 self.btnTdevA = QtGui.QPushButton(self.grpDevA) No newline at end of file
166 self.btnTdevA = QtGui.QPushButton(self.grpDevA)
167 self.btnTdevA.setObjectName("btnTdevA") No newline at end of file
167 self.btnTdevA.setObjectName("btnTdevA")
168 self.verticalLayout_11.addWidget(self.btnTdevA) No newline at end of file
168 self.verticalLayout_11.addWidget(self.btnTdevA)
169 self.verticalLayout_15.addWidget(self.grpDevA) No newline at end of file
169 self.verticalLayout_15.addWidget(self.grpDevA)
170 self.horizontalLayout_12.addLayout(self.verticalLayout_15) No newline at end of file
170 self.horizontalLayout_12.addLayout(self.verticalLayout_15)
171 self.verticalLayout_16 = QtGui.QVBoxLayout() No newline at end of file
171 self.verticalLayout_16 = QtGui.QVBoxLayout()
172 self.verticalLayout_16.setObjectName("verticalLayout_16") No newline at end of file
172 self.verticalLayout_16.setObjectName("verticalLayout_16")
173 self.chkDevB = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
173 self.chkDevB = QtGui.QCheckBox(self.tabDconfig)
174 self.chkDevB.setChecked(True) No newline at end of file
174 self.chkDevB.setChecked(True)
175 self.chkDevB.setObjectName("chkDevB") No newline at end of file
175 self.chkDevB.setObjectName("chkDevB")
176 self.verticalLayout_16.addWidget(self.chkDevB) No newline at end of file
176 self.verticalLayout_16.addWidget(self.chkDevB)
177 self.grpDevB = QtGui.QWidget(self.tabDconfig) No newline at end of file
177 self.grpDevB = QtGui.QWidget(self.tabDconfig)
178 self.grpDevB.setObjectName("grpDevB") No newline at end of file
178 self.grpDevB.setObjectName("grpDevB")
179 self.verticalLayout_12 = QtGui.QVBoxLayout(self.grpDevB) No newline at end of file
179 self.verticalLayout_12 = QtGui.QVBoxLayout(self.grpDevB)
180 self.verticalLayout_12.setObjectName("verticalLayout_12") No newline at end of file
180 self.verticalLayout_12.setObjectName("verticalLayout_12")
181 self.txtDeviceB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
181 self.txtDeviceB = QtGui.QLineEdit(self.grpDevB)
182 self.txtDeviceB.setReadOnly(True) No newline at end of file
182 self.txtDeviceB.setReadOnly(True)
183 self.txtDeviceB.setObjectName("txtDeviceB") No newline at end of file
183 self.txtDeviceB.setObjectName("txtDeviceB")
184 self.verticalLayout_12.addWidget(self.txtDeviceB) No newline at end of file
184 self.verticalLayout_12.addWidget(self.txtDeviceB)
185 self.txtBspeedB = QtGui.QSpinBox(self.grpDevB) No newline at end of file
185 self.txtBspeedB = QtGui.QSpinBox(self.grpDevB)
186 self.txtBspeedB.setReadOnly(True) No newline at end of file
186 self.txtBspeedB.setReadOnly(True)
187 self.txtBspeedB.setMinimum(1) No newline at end of file
187 self.txtBspeedB.setMinimum(1)
188 self.txtBspeedB.setProperty("value", 16) No newline at end of file
188 self.txtBspeedB.setProperty("value", 16)
189 self.txtBspeedB.setObjectName("txtBspeedB") No newline at end of file
189 self.txtBspeedB.setObjectName("txtBspeedB")
190 self.verticalLayout_12.addWidget(self.txtBspeedB) No newline at end of file
190 self.verticalLayout_12.addWidget(self.txtBspeedB)
191 self.txtBmodeB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
191 self.txtBmodeB = QtGui.QLineEdit(self.grpDevB)
192 self.txtBmodeB.setReadOnly(True) No newline at end of file
192 self.txtBmodeB.setReadOnly(True)
193 self.txtBmodeB.setObjectName("txtBmodeB") No newline at end of file
193 self.txtBmodeB.setObjectName("txtBmodeB")
194 self.verticalLayout_12.addWidget(self.txtBmodeB) No newline at end of file
194 self.verticalLayout_12.addWidget(self.txtBmodeB)
195 self.btnTdevB = QtGui.QPushButton(self.grpDevB) No newline at end of file
195 self.btnTdevB = QtGui.QPushButton(self.grpDevB)
196 self.btnTdevB.setObjectName("btnTdevB") No newline at end of file
196 self.btnTdevB.setObjectName("btnTdevB")
197 self.verticalLayout_12.addWidget(self.btnTdevB) No newline at end of file
197 self.verticalLayout_12.addWidget(self.btnTdevB)
198 self.verticalLayout_16.addWidget(self.grpDevB) No newline at end of file
198 self.verticalLayout_16.addWidget(self.grpDevB)
199 self.horizontalLayout_12.addLayout(self.verticalLayout_16) No newline at end of file
199 self.horizontalLayout_12.addLayout(self.verticalLayout_16)
200 self.verticalLayout_17 = QtGui.QVBoxLayout() No newline at end of file
200 self.verticalLayout_17 = QtGui.QVBoxLayout()
201 self.verticalLayout_17.setObjectName("verticalLayout_17") No newline at end of file
201 self.verticalLayout_17.setObjectName("verticalLayout_17")
202 self.chkDevC = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
202 self.chkDevC = QtGui.QCheckBox(self.tabDconfig)
203 self.chkDevC.setChecked(True) No newline at end of file
203 self.chkDevC.setChecked(True)
204 self.chkDevC.setObjectName("chkDevC") No newline at end of file
204 self.chkDevC.setObjectName("chkDevC")
205 self.verticalLayout_17.addWidget(self.chkDevC) No newline at end of file
205 self.verticalLayout_17.addWidget(self.chkDevC)
206 self.grpDevC = QtGui.QWidget(self.tabDconfig) No newline at end of file
206 self.grpDevC = QtGui.QWidget(self.tabDconfig)
207 self.grpDevC.setObjectName("grpDevC") No newline at end of file
207 self.grpDevC.setObjectName("grpDevC")
208 self.verticalLayout_13 = QtGui.QVBoxLayout(self.grpDevC) No newline at end of file
208 self.verticalLayout_13 = QtGui.QVBoxLayout(self.grpDevC)
209 self.verticalLayout_13.setObjectName("verticalLayout_13") No newline at end of file
209 self.verticalLayout_13.setObjectName("verticalLayout_13")
210 self.txtDeviceC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
210 self.txtDeviceC = QtGui.QLineEdit(self.grpDevC)
211 self.txtDeviceC.setReadOnly(True) No newline at end of file
211 self.txtDeviceC.setReadOnly(True)
212 self.txtDeviceC.setObjectName("txtDeviceC") No newline at end of file
212 self.txtDeviceC.setObjectName("txtDeviceC")
213 self.verticalLayout_13.addWidget(self.txtDeviceC) No newline at end of file
213 self.verticalLayout_13.addWidget(self.txtDeviceC)
214 self.txtBspeedC = QtGui.QSpinBox(self.grpDevC) No newline at end of file
214 self.txtBspeedC = QtGui.QSpinBox(self.grpDevC)
215 self.txtBspeedC.setReadOnly(True) No newline at end of file
215 self.txtBspeedC.setReadOnly(True)
216 self.txtBspeedC.setMinimum(1) No newline at end of file
216 self.txtBspeedC.setMinimum(1)
217 self.txtBspeedC.setProperty("value", 16) No newline at end of file
217 self.txtBspeedC.setProperty("value", 16)
218 self.txtBspeedC.setObjectName("txtBspeedC") No newline at end of file
218 self.txtBspeedC.setObjectName("txtBspeedC")
219 self.verticalLayout_13.addWidget(self.txtBspeedC) No newline at end of file
219 self.verticalLayout_13.addWidget(self.txtBspeedC)
220 self.txtBmodeC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
220 self.txtBmodeC = QtGui.QLineEdit(self.grpDevC)
221 self.txtBmodeC.setReadOnly(True) No newline at end of file
221 self.txtBmodeC.setReadOnly(True)
222 self.txtBmodeC.setObjectName("txtBmodeC") No newline at end of file
222 self.txtBmodeC.setObjectName("txtBmodeC")
223 self.verticalLayout_13.addWidget(self.txtBmodeC) No newline at end of file
223 self.verticalLayout_13.addWidget(self.txtBmodeC)
224 self.btnTdevC = QtGui.QPushButton(self.grpDevC) No newline at end of file
224 self.btnTdevC = QtGui.QPushButton(self.grpDevC)
225 self.btnTdevC.setObjectName("btnTdevC") No newline at end of file
225 self.btnTdevC.setObjectName("btnTdevC")
226 self.verticalLayout_13.addWidget(self.btnTdevC) No newline at end of file
226 self.verticalLayout_13.addWidget(self.btnTdevC)
227 self.verticalLayout_17.addWidget(self.grpDevC) No newline at end of file
227 self.verticalLayout_17.addWidget(self.grpDevC)
228 self.horizontalLayout_12.addLayout(self.verticalLayout_17) No newline at end of file
228 self.horizontalLayout_12.addLayout(self.verticalLayout_17)
229 self.verticalLayout_18 = QtGui.QVBoxLayout() No newline at end of file
229 self.verticalLayout_18 = QtGui.QVBoxLayout()
230 self.verticalLayout_18.setObjectName("verticalLayout_18") No newline at end of file
230 self.verticalLayout_18.setObjectName("verticalLayout_18")
231 self.chkDevD = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
231 self.chkDevD = QtGui.QCheckBox(self.tabDconfig)
232 self.chkDevD.setChecked(True) No newline at end of file
232 self.chkDevD.setChecked(True)
233 self.chkDevD.setObjectName("chkDevD") No newline at end of file
233 self.chkDevD.setObjectName("chkDevD")
234 self.verticalLayout_18.addWidget(self.chkDevD) No newline at end of file
234 self.verticalLayout_18.addWidget(self.chkDevD)
235 self.grpDevD = QtGui.QWidget(self.tabDconfig) No newline at end of file
235 self.grpDevD = QtGui.QWidget(self.tabDconfig)
236 self.grpDevD.setObjectName("grpDevD") No newline at end of file
236 self.grpDevD.setObjectName("grpDevD")
237 self.verticalLayout_14 = QtGui.QVBoxLayout(self.grpDevD) No newline at end of file
237 self.verticalLayout_14 = QtGui.QVBoxLayout(self.grpDevD)
238 self.verticalLayout_14.setObjectName("verticalLayout_14") No newline at end of file
238 self.verticalLayout_14.setObjectName("verticalLayout_14")
239 self.txtDeviceD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
239 self.txtDeviceD = QtGui.QLineEdit(self.grpDevD)
240 self.txtDeviceD.setReadOnly(True) No newline at end of file
240 self.txtDeviceD.setReadOnly(True)
241 self.txtDeviceD.setObjectName("txtDeviceD") No newline at end of file
241 self.txtDeviceD.setObjectName("txtDeviceD")
242 self.verticalLayout_14.addWidget(self.txtDeviceD) No newline at end of file
242 self.verticalLayout_14.addWidget(self.txtDeviceD)
243 self.txtBspeedD = QtGui.QSpinBox(self.grpDevD) No newline at end of file
243 self.txtBspeedD = QtGui.QSpinBox(self.grpDevD)
244 self.txtBspeedD.setReadOnly(True) No newline at end of file
244 self.txtBspeedD.setReadOnly(True)
245 self.txtBspeedD.setMinimum(1) No newline at end of file
245 self.txtBspeedD.setMinimum(1)
246 self.txtBspeedD.setProperty("value", 16) No newline at end of file
246 self.txtBspeedD.setProperty("value", 16)
247 self.txtBspeedD.setObjectName("txtBspeedD") No newline at end of file
247 self.txtBspeedD.setObjectName("txtBspeedD")
248 self.verticalLayout_14.addWidget(self.txtBspeedD) No newline at end of file
248 self.verticalLayout_14.addWidget(self.txtBspeedD)
249 self.txtBmodeD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
249 self.txtBmodeD = QtGui.QLineEdit(self.grpDevD)
250 self.txtBmodeD.setReadOnly(True) No newline at end of file
250 self.txtBmodeD.setReadOnly(True)
251 self.txtBmodeD.setObjectName("txtBmodeD") No newline at end of file
251 self.txtBmodeD.setObjectName("txtBmodeD")
252 self.verticalLayout_14.addWidget(self.txtBmodeD) No newline at end of file
252 self.verticalLayout_14.addWidget(self.txtBmodeD)
253 self.btnTdevD = QtGui.QPushButton(self.grpDevD) No newline at end of file
253 self.btnTdevD = QtGui.QPushButton(self.grpDevD)
254 self.btnTdevD.setObjectName("btnTdevD") No newline at end of file
254 self.btnTdevD.setObjectName("btnTdevD")
255 self.verticalLayout_14.addWidget(self.btnTdevD) No newline at end of file
255 self.verticalLayout_14.addWidget(self.btnTdevD)
256 self.verticalLayout_18.addWidget(self.grpDevD) No newline at end of file
256 self.verticalLayout_18.addWidget(self.grpDevD)
257 self.horizontalLayout_12.addLayout(self.verticalLayout_18) No newline at end of file
257 self.horizontalLayout_12.addLayout(self.verticalLayout_18)
258 self.verticalLayout_19 = QtGui.QVBoxLayout() No newline at end of file
258 self.verticalLayout_19 = QtGui.QVBoxLayout()
259 self.verticalLayout_19.setObjectName("verticalLayout_19") No newline at end of file
259 self.verticalLayout_19.setObjectName("verticalLayout_19")
260 spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
260 spacerItem1 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
261 self.verticalLayout_19.addItem(spacerItem1) No newline at end of file
261 self.verticalLayout_19.addItem(spacerItem1)
262 self.grpDevD_2 = QtGui.QWidget(self.tabDconfig) No newline at end of file
262 self.grpDevD_2 = QtGui.QWidget(self.tabDconfig)
263 self.grpDevD_2.setObjectName("grpDevD_2") No newline at end of file
263 self.grpDevD_2.setObjectName("grpDevD_2")
264 self.verticalLayout_20 = QtGui.QVBoxLayout(self.grpDevD_2) No newline at end of file
264 self.verticalLayout_20 = QtGui.QVBoxLayout(self.grpDevD_2)
265 self.verticalLayout_20.setObjectName("verticalLayout_20") No newline at end of file
265 self.verticalLayout_20.setObjectName("verticalLayout_20")
266 self.lblDevice = QtGui.QLabel(self.grpDevD_2) No newline at end of file
266 self.lblDevice = QtGui.QLabel(self.grpDevD_2)
267 self.lblDevice.setObjectName("lblDevice") No newline at end of file
267 self.lblDevice.setObjectName("lblDevice")
268 self.verticalLayout_20.addWidget(self.lblDevice) No newline at end of file
268 self.verticalLayout_20.addWidget(self.lblDevice)
269 self.lblBspeed = QtGui.QLabel(self.grpDevD_2) No newline at end of file
269 self.lblBspeed = QtGui.QLabel(self.grpDevD_2)
270 self.lblBspeed.setObjectName("lblBspeed") No newline at end of file
270 self.lblBspeed.setObjectName("lblBspeed")
271 self.verticalLayout_20.addWidget(self.lblBspeed) No newline at end of file
271 self.verticalLayout_20.addWidget(self.lblBspeed)
272 self.lblBmode = QtGui.QLabel(self.grpDevD_2) No newline at end of file
272 self.lblBmode = QtGui.QLabel(self.grpDevD_2)
273 self.lblBmode.setObjectName("lblBmode") No newline at end of file
273 self.lblBmode.setObjectName("lblBmode")
274 self.verticalLayout_20.addWidget(self.lblBmode) No newline at end of file
274 self.verticalLayout_20.addWidget(self.lblBmode)
275 spacerItem2 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed) No newline at end of file
275 spacerItem2 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
276 self.verticalLayout_20.addItem(spacerItem2) No newline at end of file
276 self.verticalLayout_20.addItem(spacerItem2)
277 self.verticalLayout_19.addWidget(self.grpDevD_2) No newline at end of file
277 self.verticalLayout_19.addWidget(self.grpDevD_2)
278 self.horizontalLayout_12.addLayout(self.verticalLayout_19) No newline at end of file
278 self.horizontalLayout_12.addLayout(self.verticalLayout_19)
279 self.verticalLayout_3.addLayout(self.horizontalLayout_12) No newline at end of file
279 self.verticalLayout_3.addLayout(self.horizontalLayout_12)
280 spacerItem3 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
280 spacerItem3 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
281 self.verticalLayout_3.addItem(spacerItem3) No newline at end of file
281 self.verticalLayout_3.addItem(spacerItem3)
282 self.horizontalLayout_11 = QtGui.QHBoxLayout() No newline at end of file
282 self.horizontalLayout_11 = QtGui.QHBoxLayout()
283 self.horizontalLayout_11.setSpacing(6) No newline at end of file
283 self.horizontalLayout_11.setSpacing(6)
284 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
284 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
285 self.horizontalLayout_11.setObjectName("horizontalLayout_11") No newline at end of file
285 self.horizontalLayout_11.setObjectName("horizontalLayout_11")
286 self.lblDcapacity = QtGui.QLabel(self.tabDconfig) No newline at end of file
286 self.lblDcapacity = QtGui.QLabel(self.tabDconfig)
287 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
287 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
288 sizePolicy.setHorizontalStretch(0) No newline at end of file
288 sizePolicy.setHorizontalStretch(0)
289 sizePolicy.setVerticalStretch(0) No newline at end of file
289 sizePolicy.setVerticalStretch(0)
290 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
290 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth())
291 self.lblDcapacity.setSizePolicy(sizePolicy) No newline at end of file
291 self.lblDcapacity.setSizePolicy(sizePolicy)
292 self.lblDcapacity.setObjectName("lblDcapacity") No newline at end of file
292 self.lblDcapacity.setObjectName("lblDcapacity")
293 self.horizontalLayout_11.addWidget(self.lblDcapacity) No newline at end of file
293 self.horizontalLayout_11.addWidget(self.lblDcapacity)
294 spacerItem4 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) No newline at end of file
294 spacerItem4 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
295 self.horizontalLayout_11.addItem(spacerItem4) No newline at end of file
295 self.horizontalLayout_11.addItem(spacerItem4)
296 self.verticalLayout_3.addLayout(self.horizontalLayout_11) No newline at end of file
296 self.verticalLayout_3.addLayout(self.horizontalLayout_11)
297 self.horizontalLayout_10 = QtGui.QHBoxLayout() No newline at end of file
297 self.horizontalLayout_10 = QtGui.QHBoxLayout()
298 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
298 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize)
299 self.horizontalLayout_10.setObjectName("horizontalLayout_10") No newline at end of file
299 self.horizontalLayout_10.setObjectName("horizontalLayout_10")
300 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig) No newline at end of file
300 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig)
301 self.lstDcapacity.setObjectName("lstDcapacity") No newline at end of file
301 self.lstDcapacity.setObjectName("lstDcapacity")
302 self.lstDcapacity.addItem("") No newline at end of file
302 self.lstDcapacity.addItem("")
303 self.lstDcapacity.addItem("") No newline at end of file
303 self.lstDcapacity.addItem("")
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.horizontalLayout_10.addWidget(self.lstDcapacity) No newline at end of file
307 self.horizontalLayout_10.addWidget(self.lstDcapacity)
308 self.txtDcapacity = QtGui.QDoubleSpinBox(self.tabDconfig) No newline at end of file
308 self.txtDcapacity = QtGui.QDoubleSpinBox(self.tabDconfig)
309 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) No newline at end of file
309 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
310 sizePolicy.setHorizontalStretch(0) No newline at end of file
310 sizePolicy.setHorizontalStretch(0)
311 sizePolicy.setVerticalStretch(0) No newline at end of file
311 sizePolicy.setVerticalStretch(0)
312 sizePolicy.setHeightForWidth(self.txtDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
312 sizePolicy.setHeightForWidth(self.txtDcapacity.sizePolicy().hasHeightForWidth())
313 self.txtDcapacity.setSizePolicy(sizePolicy) No newline at end of file
313 self.txtDcapacity.setSizePolicy(sizePolicy)
314 self.txtDcapacity.setReadOnly(True) No newline at end of file
314 self.txtDcapacity.setReadOnly(True)
315 self.txtDcapacity.setMinimum(100.0) No newline at end of file
315 self.txtDcapacity.setMinimum(100.0)
316 self.txtDcapacity.setMaximum(99999.99) No newline at end of file
316 self.txtDcapacity.setMaximum(99999.99)
317 self.txtDcapacity.setProperty("value", 4482.27) No newline at end of file
317 self.txtDcapacity.setProperty("value", 4482.27)
318 self.txtDcapacity.setObjectName("txtDcapacity") No newline at end of file
318 self.txtDcapacity.setObjectName("txtDcapacity")
319 self.horizontalLayout_10.addWidget(self.txtDcapacity) No newline at end of file
319 self.horizontalLayout_10.addWidget(self.txtDcapacity)
320 spacerItem5 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) No newline at end of file
320 spacerItem5 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
321 self.horizontalLayout_10.addItem(spacerItem5) No newline at end of file
321 self.horizontalLayout_10.addItem(spacerItem5)
322 self.lblPSgraphic = QtGui.QLabel(self.tabDconfig) No newline at end of file
322 self.lblPSgraphic = QtGui.QLabel(self.tabDconfig)
323 self.lblPSgraphic.setObjectName("lblPSgraphic") No newline at end of file
323 self.lblPSgraphic.setObjectName("lblPSgraphic")
324 self.horizontalLayout_10.addWidget(self.lblPSgraphic) No newline at end of file
324 self.horizontalLayout_10.addWidget(self.lblPSgraphic)
325 self.txtPSgraphic = QtGui.QSpinBox(self.tabDconfig) No newline at end of file
325 self.txtPSgraphic = QtGui.QSpinBox(self.tabDconfig)
326 self.txtPSgraphic.setMinimum(1) No newline at end of file
326 self.txtPSgraphic.setMinimum(1)
327 self.txtPSgraphic.setMaximum(33) No newline at end of file
327 self.txtPSgraphic.setMaximum(33)
328 self.txtPSgraphic.setObjectName("txtPSgraphic") No newline at end of file
328 self.txtPSgraphic.setObjectName("txtPSgraphic")
329 self.horizontalLayout_10.addWidget(self.txtPSgraphic) No newline at end of file
329 self.horizontalLayout_10.addWidget(self.txtPSgraphic)
330 self.verticalLayout_3.addLayout(self.horizontalLayout_10) No newline at end of file
330 self.verticalLayout_3.addLayout(self.horizontalLayout_10)
331 self.tabWidget.addTab(self.tabDconfig, "") No newline at end of file
331 self.tabWidget.addTab(self.tabDconfig, "")
332 self.tabStatus = QtGui.QWidget() No newline at end of file
332 self.tabStatus = QtGui.QWidget()
333 self.tabStatus.setObjectName("tabStatus") No newline at end of file
333 self.tabStatus.setObjectName("tabStatus")
334 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabStatus) No newline at end of file
334 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabStatus)
335 self.verticalLayout_4.setObjectName("verticalLayout_4") No newline at end of file
335 self.verticalLayout_4.setObjectName("verticalLayout_4")
336 self.horizontalLayout_18 = QtGui.QHBoxLayout() No newline at end of file
336 self.horizontalLayout_18 = QtGui.QHBoxLayout()
337 self.horizontalLayout_18.setObjectName("horizontalLayout_18") No newline at end of file
337 self.horizontalLayout_18.setObjectName("horizontalLayout_18")
338 self.verticalLayout_21 = QtGui.QVBoxLayout() No newline at end of file
338 self.verticalLayout_21 = QtGui.QVBoxLayout()
339 self.verticalLayout_21.setObjectName("verticalLayout_21") No newline at end of file
339 self.verticalLayout_21.setObjectName("verticalLayout_21")
340 self.label_4 = QtGui.QLabel(self.tabStatus) No newline at end of file
340 self.label_4 = QtGui.QLabel(self.tabStatus)
341 self.label_4.setObjectName("label_4") No newline at end of file
341 self.label_4.setObjectName("label_4")
342 self.verticalLayout_21.addWidget(self.label_4) No newline at end of file
342 self.verticalLayout_21.addWidget(self.label_4)
343 spacerItem6 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
343 spacerItem6 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
344 self.verticalLayout_21.addItem(spacerItem6) No newline at end of file
344 self.verticalLayout_21.addItem(spacerItem6)
345 self.lblSTATUS = QtGui.QLabel(self.tabStatus) No newline at end of file
345 self.lblSTATUS = QtGui.QLabel(self.tabStatus)
346 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred) No newline at end of file
346 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred)
347 sizePolicy.setHorizontalStretch(0) No newline at end of file
347 sizePolicy.setHorizontalStretch(0)
348 sizePolicy.setVerticalStretch(0) No newline at end of file
348 sizePolicy.setVerticalStretch(0)
349 sizePolicy.setHeightForWidth(self.lblSTATUS.sizePolicy().hasHeightForWidth()) No newline at end of file
349 sizePolicy.setHeightForWidth(self.lblSTATUS.sizePolicy().hasHeightForWidth())
350 self.lblSTATUS.setSizePolicy(sizePolicy) No newline at end of file
350 self.lblSTATUS.setSizePolicy(sizePolicy)
351 self.lblSTATUS.setObjectName("lblSTATUS") No newline at end of file
351 self.lblSTATUS.setObjectName("lblSTATUS")
352 self.verticalLayout_21.addWidget(self.lblSTATUS) No newline at end of file
352 self.verticalLayout_21.addWidget(self.lblSTATUS)
353 self.lblINFO = QtGui.QLabel(self.tabStatus) No newline at end of file
353 self.lblINFO = QtGui.QLabel(self.tabStatus)
354 self.lblINFO.setObjectName("lblINFO") No newline at end of file
354 self.lblINFO.setObjectName("lblINFO")
355 self.verticalLayout_21.addWidget(self.lblINFO) No newline at end of file
355 self.verticalLayout_21.addWidget(self.lblINFO)
356 self.lblSET = QtGui.QLabel(self.tabStatus) No newline at end of file
356 self.lblSET = QtGui.QLabel(self.tabStatus)
357 self.lblSET.setObjectName("lblSET") No newline at end of file
357 self.lblSET.setObjectName("lblSET")
358 self.verticalLayout_21.addWidget(self.lblSET) No newline at end of file
358 self.verticalLayout_21.addWidget(self.lblSET)
359 self.horizontalLayout_18.addLayout(self.verticalLayout_21) No newline at end of file
359 self.horizontalLayout_18.addLayout(self.verticalLayout_21)
360 self.verticalLayout_22 = QtGui.QVBoxLayout() No newline at end of file
360 self.verticalLayout_22 = QtGui.QVBoxLayout()
361 self.verticalLayout_22.setObjectName("verticalLayout_22") No newline at end of file
361 self.verticalLayout_22.setObjectName("verticalLayout_22")
362 spacerItem7 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
362 spacerItem7 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
363 self.verticalLayout_22.addItem(spacerItem7) No newline at end of file
363 self.verticalLayout_22.addItem(spacerItem7)
364 self.lblDevA = QtGui.QLabel(self.tabStatus) No newline at end of file
364 self.lblDevA = QtGui.QLabel(self.tabStatus)
365 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
365 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter)
366 self.lblDevA.setObjectName("lblDevA") No newline at end of file
366 self.lblDevA.setObjectName("lblDevA")
367 self.verticalLayout_22.addWidget(self.lblDevA) No newline at end of file
367 self.verticalLayout_22.addWidget(self.lblDevA)
368 self.txtBstatusA = QtGui.QLineEdit(self.tabStatus) No newline at end of file
368 self.txtBstatusA = QtGui.QLineEdit(self.tabStatus)
369 self.txtBstatusA.setReadOnly(True) No newline at end of file
369 self.txtBstatusA.setReadOnly(True)
370 self.txtBstatusA.setObjectName("txtBstatusA") No newline at end of file
370 self.txtBstatusA.setObjectName("txtBstatusA")
371 self.verticalLayout_22.addWidget(self.txtBstatusA) No newline at end of file
371 self.verticalLayout_22.addWidget(self.txtBstatusA)
372 self.txtBdiscA = QtGui.QLineEdit(self.tabStatus) No newline at end of file
372 self.txtBdiscA = QtGui.QLineEdit(self.tabStatus)
373 self.txtBdiscA.setReadOnly(True) No newline at end of file
373 self.txtBdiscA.setReadOnly(True)
374 self.txtBdiscA.setObjectName("txtBdiscA") No newline at end of file
374 self.txtBdiscA.setObjectName("txtBdiscA")
375 self.verticalLayout_22.addWidget(self.txtBdiscA) No newline at end of file
375 self.verticalLayout_22.addWidget(self.txtBdiscA)
376 self.txtBcopyA = QtGui.QLineEdit(self.tabStatus) No newline at end of file
376 self.txtBcopyA = QtGui.QLineEdit(self.tabStatus)
377 self.txtBcopyA.setReadOnly(True) No newline at end of file
377 self.txtBcopyA.setReadOnly(True)
378 self.txtBcopyA.setObjectName("txtBcopyA") No newline at end of file
378 self.txtBcopyA.setObjectName("txtBcopyA")
379 self.verticalLayout_22.addWidget(self.txtBcopyA) No newline at end of file
379 self.verticalLayout_22.addWidget(self.txtBcopyA)
380 self.horizontalLayout_18.addLayout(self.verticalLayout_22) No newline at end of file
380 self.horizontalLayout_18.addLayout(self.verticalLayout_22)
381 self.verticalLayout_23 = QtGui.QVBoxLayout() No newline at end of file
381 self.verticalLayout_23 = QtGui.QVBoxLayout()
382 self.verticalLayout_23.setObjectName("verticalLayout_23") No newline at end of file
382 self.verticalLayout_23.setObjectName("verticalLayout_23")
383 spacerItem8 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
383 spacerItem8 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
384 self.verticalLayout_23.addItem(spacerItem8) No newline at end of file
384 self.verticalLayout_23.addItem(spacerItem8)
385 self.lblDevB = QtGui.QLabel(self.tabStatus) No newline at end of file
385 self.lblDevB = QtGui.QLabel(self.tabStatus)
386 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
386 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter)
387 self.lblDevB.setObjectName("lblDevB") No newline at end of file
387 self.lblDevB.setObjectName("lblDevB")
388 self.verticalLayout_23.addWidget(self.lblDevB) No newline at end of file
388 self.verticalLayout_23.addWidget(self.lblDevB)
389 self.txtBstatusB = QtGui.QLineEdit(self.tabStatus) No newline at end of file
389 self.txtBstatusB = QtGui.QLineEdit(self.tabStatus)
390 self.txtBstatusB.setReadOnly(True) No newline at end of file
390 self.txtBstatusB.setReadOnly(True)
391 self.txtBstatusB.setObjectName("txtBstatusB") No newline at end of file
391 self.txtBstatusB.setObjectName("txtBstatusB")
392 self.verticalLayout_23.addWidget(self.txtBstatusB) No newline at end of file
392 self.verticalLayout_23.addWidget(self.txtBstatusB)
393 self.txtBdiscB = QtGui.QLineEdit(self.tabStatus) No newline at end of file
393 self.txtBdiscB = QtGui.QLineEdit(self.tabStatus)
394 self.txtBdiscB.setReadOnly(True) No newline at end of file
394 self.txtBdiscB.setReadOnly(True)
395 self.txtBdiscB.setObjectName("txtBdiscB") No newline at end of file
395 self.txtBdiscB.setObjectName("txtBdiscB")
396 self.verticalLayout_23.addWidget(self.txtBdiscB) No newline at end of file
396 self.verticalLayout_23.addWidget(self.txtBdiscB)
397 self.txtBcopyB = QtGui.QLineEdit(self.tabStatus) No newline at end of file
397 self.txtBcopyB = QtGui.QLineEdit(self.tabStatus)
398 self.txtBcopyB.setReadOnly(True) No newline at end of file
398 self.txtBcopyB.setReadOnly(True)
399 self.txtBcopyB.setObjectName("txtBcopyB") No newline at end of file
399 self.txtBcopyB.setObjectName("txtBcopyB")
400 self.verticalLayout_23.addWidget(self.txtBcopyB) No newline at end of file
400 self.verticalLayout_23.addWidget(self.txtBcopyB)
401 self.horizontalLayout_18.addLayout(self.verticalLayout_23) No newline at end of file
401 self.horizontalLayout_18.addLayout(self.verticalLayout_23)
402 self.verticalLayout_24 = QtGui.QVBoxLayout() No newline at end of file
402 self.verticalLayout_24 = QtGui.QVBoxLayout()
403 self.verticalLayout_24.setObjectName("verticalLayout_24") No newline at end of file
403 self.verticalLayout_24.setObjectName("verticalLayout_24")
404 spacerItem9 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
404 spacerItem9 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
405 self.verticalLayout_24.addItem(spacerItem9) No newline at end of file
405 self.verticalLayout_24.addItem(spacerItem9)
406 self.lblDevC = QtGui.QLabel(self.tabStatus) No newline at end of file
406 self.lblDevC = QtGui.QLabel(self.tabStatus)
407 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
407 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter)
408 self.lblDevC.setObjectName("lblDevC") No newline at end of file
408 self.lblDevC.setObjectName("lblDevC")
409 self.verticalLayout_24.addWidget(self.lblDevC) No newline at end of file
409 self.verticalLayout_24.addWidget(self.lblDevC)
410 self.txtBstatusC = QtGui.QLineEdit(self.tabStatus) No newline at end of file
410 self.txtBstatusC = QtGui.QLineEdit(self.tabStatus)
411 self.txtBstatusC.setReadOnly(True) No newline at end of file
411 self.txtBstatusC.setReadOnly(True)
412 self.txtBstatusC.setObjectName("txtBstatusC") No newline at end of file
412 self.txtBstatusC.setObjectName("txtBstatusC")
413 self.verticalLayout_24.addWidget(self.txtBstatusC) No newline at end of file
413 self.verticalLayout_24.addWidget(self.txtBstatusC)
414 self.txtBdiscC = QtGui.QLineEdit(self.tabStatus) No newline at end of file
414 self.txtBdiscC = QtGui.QLineEdit(self.tabStatus)
415 self.txtBdiscC.setReadOnly(True) No newline at end of file
415 self.txtBdiscC.setReadOnly(True)
416 self.txtBdiscC.setObjectName("txtBdiscC") No newline at end of file
416 self.txtBdiscC.setObjectName("txtBdiscC")
417 self.verticalLayout_24.addWidget(self.txtBdiscC) No newline at end of file
417 self.verticalLayout_24.addWidget(self.txtBdiscC)
418 self.txtBcopyC = QtGui.QLineEdit(self.tabStatus) No newline at end of file
418 self.txtBcopyC = QtGui.QLineEdit(self.tabStatus)
419 self.txtBcopyC.setReadOnly(True) No newline at end of file
419 self.txtBcopyC.setReadOnly(True)
420 self.txtBcopyC.setObjectName("txtBcopyC") No newline at end of file
420 self.txtBcopyC.setObjectName("txtBcopyC")
421 self.verticalLayout_24.addWidget(self.txtBcopyC) No newline at end of file
421 self.verticalLayout_24.addWidget(self.txtBcopyC)
422 self.horizontalLayout_18.addLayout(self.verticalLayout_24) No newline at end of file
422 self.horizontalLayout_18.addLayout(self.verticalLayout_24)
423 self.verticalLayout_25 = QtGui.QVBoxLayout() No newline at end of file
423 self.verticalLayout_25 = QtGui.QVBoxLayout()
424 self.verticalLayout_25.setObjectName("verticalLayout_25") No newline at end of file
424 self.verticalLayout_25.setObjectName("verticalLayout_25")
425 spacerItem10 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
425 spacerItem10 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
426 self.verticalLayout_25.addItem(spacerItem10) No newline at end of file
426 self.verticalLayout_25.addItem(spacerItem10)
427 self.lblDevD = QtGui.QLabel(self.tabStatus) No newline at end of file
427 self.lblDevD = QtGui.QLabel(self.tabStatus)
428 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
428 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter)
429 self.lblDevD.setObjectName("lblDevD") No newline at end of file
429 self.lblDevD.setObjectName("lblDevD")
430 self.verticalLayout_25.addWidget(self.lblDevD) No newline at end of file
430 self.verticalLayout_25.addWidget(self.lblDevD)
431 self.txtBstatusD = QtGui.QLineEdit(self.tabStatus) No newline at end of file
431 self.txtBstatusD = QtGui.QLineEdit(self.tabStatus)
432 self.txtBstatusD.setReadOnly(True) No newline at end of file
432 self.txtBstatusD.setReadOnly(True)
433 self.txtBstatusD.setObjectName("txtBstatusD") No newline at end of file
433 self.txtBstatusD.setObjectName("txtBstatusD")
434 self.verticalLayout_25.addWidget(self.txtBstatusD) No newline at end of file
434 self.verticalLayout_25.addWidget(self.txtBstatusD)
435 self.txtBdiscD = QtGui.QLineEdit(self.tabStatus) No newline at end of file
435 self.txtBdiscD = QtGui.QLineEdit(self.tabStatus)
436 self.txtBdiscD.setReadOnly(True) No newline at end of file
436 self.txtBdiscD.setReadOnly(True)
437 self.txtBdiscD.setObjectName("txtBdiscD") No newline at end of file
437 self.txtBdiscD.setObjectName("txtBdiscD")
438 self.verticalLayout_25.addWidget(self.txtBdiscD) No newline at end of file
438 self.verticalLayout_25.addWidget(self.txtBdiscD)
439 self.txtBcopyD = QtGui.QLineEdit(self.tabStatus) No newline at end of file
439 self.txtBcopyD = QtGui.QLineEdit(self.tabStatus)
440 self.txtBcopyD.setReadOnly(True) No newline at end of file
440 self.txtBcopyD.setReadOnly(True)
441 self.txtBcopyD.setObjectName("txtBcopyD") No newline at end of file
441 self.txtBcopyD.setObjectName("txtBcopyD")
442 self.verticalLayout_25.addWidget(self.txtBcopyD) No newline at end of file
442 self.verticalLayout_25.addWidget(self.txtBcopyD)
443 self.horizontalLayout_18.addLayout(self.verticalLayout_25) No newline at end of file
443 self.horizontalLayout_18.addLayout(self.verticalLayout_25)
444 self.verticalLayout_4.addLayout(self.horizontalLayout_18) No newline at end of file
444 self.verticalLayout_4.addLayout(self.horizontalLayout_18)
445 spacerItem11 = QtGui.QSpacerItem(20, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed) No newline at end of file
445 spacerItem11 = QtGui.QSpacerItem(20, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Fixed)
446 self.verticalLayout_4.addItem(spacerItem11) No newline at end of file
446 self.verticalLayout_4.addItem(spacerItem11)
447 self.horizontalLayout_16 = QtGui.QHBoxLayout() No newline at end of file
447 self.horizontalLayout_16 = QtGui.QHBoxLayout()
448 self.horizontalLayout_16.setObjectName("horizontalLayout_16") No newline at end of file
448 self.horizontalLayout_16.setObjectName("horizontalLayout_16")
449 self.label = QtGui.QLabel(self.tabStatus) No newline at end of file
449 self.label = QtGui.QLabel(self.tabStatus)
450 self.label.setObjectName("label") No newline at end of file
450 self.label.setObjectName("label")
451 self.horizontalLayout_16.addWidget(self.label) No newline at end of file
451 self.horizontalLayout_16.addWidget(self.label)
452 spacerItem12 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) No newline at end of file
452 spacerItem12 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
453 self.horizontalLayout_16.addItem(spacerItem12) No newline at end of file
453 self.horizontalLayout_16.addItem(spacerItem12)
454 self.verticalLayout_4.addLayout(self.horizontalLayout_16) No newline at end of file
454 self.verticalLayout_4.addLayout(self.horizontalLayout_16)
455 self.horizontalLayout_17 = QtGui.QHBoxLayout() No newline at end of file
455 self.horizontalLayout_17 = QtGui.QHBoxLayout()
456 self.horizontalLayout_17.setObjectName("horizontalLayout_17") No newline at end of file
456 self.horizontalLayout_17.setObjectName("horizontalLayout_17")
457 spacerItem13 = QtGui.QSpacerItem(50, 20, QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Minimum) No newline at end of file
457 spacerItem13 = QtGui.QSpacerItem(50, 20, QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Minimum)
458 self.horizontalLayout_17.addItem(spacerItem13) No newline at end of file
458 self.horizontalLayout_17.addItem(spacerItem13)
459 self.txtTDpath = QtGui.QLineEdit(self.tabStatus)
459 self.txtTDpath = QtGui.QLineEdit(self.tabStatus)
No newline at end of file
460 self.txtTDpath.setEnabled(True) No newline at end of file
460 self.txtTDpath.setEnabled(False) No newline at end of file
461 self.txtTDpath.setReadOnly(True) No newline at end of file
461 self.txtTDpath.setReadOnly(True)
462 self.txtTDpath.setObjectName("txtTDpath") No newline at end of file
462 self.txtTDpath.setObjectName("txtTDpath")
463 self.horizontalLayout_17.addWidget(self.txtTDpath) No newline at end of file
463 self.horizontalLayout_17.addWidget(self.txtTDpath)
464 self.btnTDpath = QtGui.QPushButton(self.tabStatus)
464 self.btnTDpath = QtGui.QPushButton(self.tabStatus)
No newline at end of file
465 self.btnTDpath.setEnabled(True) No newline at end of file
465 self.btnTDpath.setEnabled(False) No newline at end of file
466 self.btnTDpath.setObjectName("btnTDpath") No newline at end of file
466 self.btnTDpath.setObjectName("btnTDpath")
467 self.horizontalLayout_17.addWidget(self.btnTDpath) No newline at end of file
467 self.horizontalLayout_17.addWidget(self.btnTDpath)
468 self.verticalLayout_4.addLayout(self.horizontalLayout_17) No newline at end of file
468 self.verticalLayout_4.addLayout(self.horizontalLayout_17)
469 self.horizontalLayout_19 = QtGui.QHBoxLayout() No newline at end of file
469 self.horizontalLayout_19 = QtGui.QHBoxLayout()
470 self.horizontalLayout_19.setObjectName("horizontalLayout_19") No newline at end of file
470 self.horizontalLayout_19.setObjectName("horizontalLayout_19")
471 self.verticalLayout_26 = QtGui.QVBoxLayout() No newline at end of file
471 self.verticalLayout_26 = QtGui.QVBoxLayout()
472 self.verticalLayout_26.setObjectName("verticalLayout_26") No newline at end of file
472 self.verticalLayout_26.setObjectName("verticalLayout_26")
473 spacerItem14 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
473 spacerItem14 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
474 self.verticalLayout_26.addItem(spacerItem14) No newline at end of file
474 self.verticalLayout_26.addItem(spacerItem14)
475 self.lblSTATUS_2 = QtGui.QLabel(self.tabStatus) No newline at end of file
475 self.lblSTATUS_2 = QtGui.QLabel(self.tabStatus)
476 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred) No newline at end of file
476 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred)
477 sizePolicy.setHorizontalStretch(0) No newline at end of file
477 sizePolicy.setHorizontalStretch(0)
478 sizePolicy.setVerticalStretch(0) No newline at end of file
478 sizePolicy.setVerticalStretch(0)
479 sizePolicy.setHeightForWidth(self.lblSTATUS_2.sizePolicy().hasHeightForWidth()) No newline at end of file
479 sizePolicy.setHeightForWidth(self.lblSTATUS_2.sizePolicy().hasHeightForWidth())
480 self.lblSTATUS_2.setSizePolicy(sizePolicy) No newline at end of file
480 self.lblSTATUS_2.setSizePolicy(sizePolicy)
481 self.lblSTATUS_2.setObjectName("lblSTATUS_2") No newline at end of file
481 self.lblSTATUS_2.setObjectName("lblSTATUS_2")
482 self.verticalLayout_26.addWidget(self.lblSTATUS_2) No newline at end of file
482 self.verticalLayout_26.addWidget(self.lblSTATUS_2)
483 self.horizontalLayout_19.addLayout(self.verticalLayout_26) No newline at end of file
483 self.horizontalLayout_19.addLayout(self.verticalLayout_26)
484 self.verticalLayout_27 = QtGui.QVBoxLayout() No newline at end of file
484 self.verticalLayout_27 = QtGui.QVBoxLayout()
485 self.verticalLayout_27.setObjectName("verticalLayout_27") No newline at end of file
485 self.verticalLayout_27.setObjectName("verticalLayout_27")
486 self.lblDevA_2 = QtGui.QLabel(self.tabStatus) No newline at end of file
486 self.lblDevA_2 = QtGui.QLabel(self.tabStatus)
487 self.lblDevA_2.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
487 self.lblDevA_2.setAlignment(QtCore.Qt.AlignCenter)
488 self.lblDevA_2.setObjectName("lblDevA_2") No newline at end of file
488 self.lblDevA_2.setObjectName("lblDevA_2")
489 self.verticalLayout_27.addWidget(self.lblDevA_2) No newline at end of file
489 self.verticalLayout_27.addWidget(self.lblDevA_2)
490 self.txtCHstatusA = QtGui.QLineEdit(self.tabStatus) No newline at end of file
490 self.txtCHstatusA = QtGui.QLineEdit(self.tabStatus)
491 self.txtCHstatusA.setReadOnly(True) No newline at end of file
491 self.txtCHstatusA.setReadOnly(True)
492 self.txtCHstatusA.setObjectName("txtCHstatusA") No newline at end of file
492 self.txtCHstatusA.setObjectName("txtCHstatusA")
493 self.verticalLayout_27.addWidget(self.txtCHstatusA) No newline at end of file
493 self.verticalLayout_27.addWidget(self.txtCHstatusA)
494 self.horizontalLayout_19.addLayout(self.verticalLayout_27) No newline at end of file
494 self.horizontalLayout_19.addLayout(self.verticalLayout_27)
495 self.verticalLayout_28 = QtGui.QVBoxLayout() No newline at end of file
495 self.verticalLayout_28 = QtGui.QVBoxLayout()
496 self.verticalLayout_28.setObjectName("verticalLayout_28") No newline at end of file
496 self.verticalLayout_28.setObjectName("verticalLayout_28")
497 self.lblDevB_2 = QtGui.QLabel(self.tabStatus) No newline at end of file
497 self.lblDevB_2 = QtGui.QLabel(self.tabStatus)
498 self.lblDevB_2.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
498 self.lblDevB_2.setAlignment(QtCore.Qt.AlignCenter)
499 self.lblDevB_2.setObjectName("lblDevB_2") No newline at end of file
499 self.lblDevB_2.setObjectName("lblDevB_2")
500 self.verticalLayout_28.addWidget(self.lblDevB_2) No newline at end of file
500 self.verticalLayout_28.addWidget(self.lblDevB_2)
501 self.txtCHstatusB = QtGui.QLineEdit(self.tabStatus) No newline at end of file
501 self.txtCHstatusB = QtGui.QLineEdit(self.tabStatus)
502 self.txtCHstatusB.setReadOnly(True) No newline at end of file
502 self.txtCHstatusB.setReadOnly(True)
503 self.txtCHstatusB.setObjectName("txtCHstatusB") No newline at end of file
503 self.txtCHstatusB.setObjectName("txtCHstatusB")
504 self.verticalLayout_28.addWidget(self.txtCHstatusB) No newline at end of file
504 self.verticalLayout_28.addWidget(self.txtCHstatusB)
505 self.horizontalLayout_19.addLayout(self.verticalLayout_28) No newline at end of file
505 self.horizontalLayout_19.addLayout(self.verticalLayout_28)
506 self.verticalLayout_29 = QtGui.QVBoxLayout() No newline at end of file
506 self.verticalLayout_29 = QtGui.QVBoxLayout()
507 self.verticalLayout_29.setObjectName("verticalLayout_29") No newline at end of file
507 self.verticalLayout_29.setObjectName("verticalLayout_29")
508 self.lblDevC_2 = QtGui.QLabel(self.tabStatus) No newline at end of file
508 self.lblDevC_2 = QtGui.QLabel(self.tabStatus)
509 self.lblDevC_2.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
509 self.lblDevC_2.setAlignment(QtCore.Qt.AlignCenter)
510 self.lblDevC_2.setObjectName("lblDevC_2") No newline at end of file
510 self.lblDevC_2.setObjectName("lblDevC_2")
511 self.verticalLayout_29.addWidget(self.lblDevC_2) No newline at end of file
511 self.verticalLayout_29.addWidget(self.lblDevC_2)
512 self.txtCHstatusC = QtGui.QLineEdit(self.tabStatus) No newline at end of file
512 self.txtCHstatusC = QtGui.QLineEdit(self.tabStatus)
513 self.txtCHstatusC.setReadOnly(True) No newline at end of file
513 self.txtCHstatusC.setReadOnly(True)
514 self.txtCHstatusC.setObjectName("txtCHstatusC") No newline at end of file
514 self.txtCHstatusC.setObjectName("txtCHstatusC")
515 self.verticalLayout_29.addWidget(self.txtCHstatusC) No newline at end of file
515 self.verticalLayout_29.addWidget(self.txtCHstatusC)
516 self.horizontalLayout_19.addLayout(self.verticalLayout_29) No newline at end of file
516 self.horizontalLayout_19.addLayout(self.verticalLayout_29)
517 self.verticalLayout_30 = QtGui.QVBoxLayout() No newline at end of file
517 self.verticalLayout_30 = QtGui.QVBoxLayout()
518 self.verticalLayout_30.setObjectName("verticalLayout_30") No newline at end of file
518 self.verticalLayout_30.setObjectName("verticalLayout_30")
519 self.lblDevD_2 = QtGui.QLabel(self.tabStatus) No newline at end of file
519 self.lblDevD_2 = QtGui.QLabel(self.tabStatus)
520 self.lblDevD_2.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
520 self.lblDevD_2.setAlignment(QtCore.Qt.AlignCenter)
521 self.lblDevD_2.setObjectName("lblDevD_2") No newline at end of file
521 self.lblDevD_2.setObjectName("lblDevD_2")
522 self.verticalLayout_30.addWidget(self.lblDevD_2) No newline at end of file
522 self.verticalLayout_30.addWidget(self.lblDevD_2)
523 self.txtCHstatusD = QtGui.QLineEdit(self.tabStatus) No newline at end of file
523 self.txtCHstatusD = QtGui.QLineEdit(self.tabStatus)
524 self.txtCHstatusD.setReadOnly(True) No newline at end of file
524 self.txtCHstatusD.setReadOnly(True)
525 self.txtCHstatusD.setObjectName("txtCHstatusD") No newline at end of file
525 self.txtCHstatusD.setObjectName("txtCHstatusD")
526 self.verticalLayout_30.addWidget(self.txtCHstatusD) No newline at end of file
526 self.verticalLayout_30.addWidget(self.txtCHstatusD)
527 self.horizontalLayout_19.addLayout(self.verticalLayout_30) No newline at end of file
527 self.horizontalLayout_19.addLayout(self.verticalLayout_30)
528 self.verticalLayout_4.addLayout(self.horizontalLayout_19) No newline at end of file
528 self.verticalLayout_4.addLayout(self.horizontalLayout_19)
529 self.horizontalLayout_20 = QtGui.QHBoxLayout() No newline at end of file
529 self.horizontalLayout_20 = QtGui.QHBoxLayout()
530 self.horizontalLayout_20.setObjectName("horizontalLayout_20") No newline at end of file
530 self.horizontalLayout_20.setObjectName("horizontalLayout_20")
531 spacerItem15 = QtGui.QSpacerItem(50, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
531 spacerItem15 = QtGui.QSpacerItem(50, 20, QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
532 self.horizontalLayout_20.addItem(spacerItem15)
532 self.horizontalLayout_20.addItem(spacerItem15)
No newline at end of file
533 self.chkCheck = QtGui.QCheckBox(self.tabStatus)
No newline at end of file
534 self.chkCheck.setEnabled(True)
No newline at end of file
535 self.chkCheck.setObjectName("chkCheck")
No newline at end of file
536 self.horizontalLayout_20.addWidget(self.chkCheck) No newline at end of file
537 spacerItem16 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum) No newline at end of file
533 spacerItem16 = QtGui.QSpacerItem(40, 20, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Minimum)
538 self.horizontalLayout_20.addItem(spacerItem16) No newline at end of file
534 self.horizontalLayout_20.addItem(spacerItem16)
539 self.btnCHstart = QtGui.QPushButton(self.tabStatus) No newline at end of file
535 self.btnCHstart = QtGui.QPushButton(self.tabStatus)
540 self.btnCHstart.setEnabled(False) No newline at end of file
536 self.btnCHstart.setEnabled(False)
541 self.btnCHstart.setObjectName("btnCHstart") No newline at end of file
537 self.btnCHstart.setObjectName("btnCHstart")
542 self.horizontalLayout_20.addWidget(self.btnCHstart) No newline at end of file
538 self.horizontalLayout_20.addWidget(self.btnCHstart)
543 self.verticalLayout_4.addLayout(self.horizontalLayout_20) No newline at end of file
539 self.verticalLayout_4.addLayout(self.horizontalLayout_20)
544 self.tabWidget.addTab(self.tabStatus, "") No newline at end of file
540 self.tabWidget.addTab(self.tabStatus, "")
545 self.verticalLayout.addWidget(self.tabWidget) No newline at end of file
541 self.verticalLayout.addWidget(self.tabWidget)
546 self.txtInfo = QtGui.QTextEdit(self.centralwidget) No newline at end of file
542 self.txtInfo = QtGui.QTextEdit(self.centralwidget)
547 self.txtInfo.setReadOnly(True) No newline at end of file
543 self.txtInfo.setReadOnly(True)
548 self.txtInfo.setObjectName("txtInfo") No newline at end of file
544 self.txtInfo.setObjectName("txtInfo")
549 self.verticalLayout.addWidget(self.txtInfo) No newline at end of file
545 self.verticalLayout.addWidget(self.txtInfo)
550 self.txtProgress = QtGui.QLineEdit(self.centralwidget) No newline at end of file
546 self.txtProgress = QtGui.QLineEdit(self.centralwidget)
551 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) No newline at end of file
547 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
552 sizePolicy.setHorizontalStretch(0) No newline at end of file
548 sizePolicy.setHorizontalStretch(0)
553 sizePolicy.setVerticalStretch(0) No newline at end of file
549 sizePolicy.setVerticalStretch(0)
554 sizePolicy.setHeightForWidth(self.txtProgress.sizePolicy().hasHeightForWidth()) No newline at end of file
550 sizePolicy.setHeightForWidth(self.txtProgress.sizePolicy().hasHeightForWidth())
555 self.txtProgress.setSizePolicy(sizePolicy) No newline at end of file
551 self.txtProgress.setSizePolicy(sizePolicy)
556 self.txtProgress.setObjectName("txtProgress") No newline at end of file
552 self.txtProgress.setObjectName("txtProgress")
557 self.verticalLayout.addWidget(self.txtProgress) No newline at end of file
553 self.verticalLayout.addWidget(self.txtProgress)
558 self.horizontalLayout_2 = QtGui.QHBoxLayout() No newline at end of file
554 self.horizontalLayout_2 = QtGui.QHBoxLayout()
559 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
555 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
560 self.horizontalLayout_2.setObjectName("horizontalLayout_2") No newline at end of file
556 self.horizontalLayout_2.setObjectName("horizontalLayout_2")
561 self.btnGbkp = QtGui.QPushButton(self.centralwidget) No newline at end of file
557 self.btnGbkp = QtGui.QPushButton(self.centralwidget)
562 self.btnGbkp.setEnabled(False) No newline at end of file
558 self.btnGbkp.setEnabled(False)
563 self.btnGbkp.setObjectName("btnGbkp") No newline at end of file
559 self.btnGbkp.setObjectName("btnGbkp")
564 self.horizontalLayout_2.addWidget(self.btnGbkp) No newline at end of file
560 self.horizontalLayout_2.addWidget(self.btnGbkp)
565 self.btnRestart = QtGui.QPushButton(self.centralwidget) No newline at end of file
561 self.btnRestart = QtGui.QPushButton(self.centralwidget)
566 self.btnRestart.setEnabled(False) No newline at end of file
562 self.btnRestart.setEnabled(False)
567 self.btnRestart.setObjectName("btnRestart") No newline at end of file
563 self.btnRestart.setObjectName("btnRestart")
568 self.horizontalLayout_2.addWidget(self.btnRestart) No newline at end of file
564 self.horizontalLayout_2.addWidget(self.btnRestart)
569 self.btnStartburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
565 self.btnStartburn = QtGui.QPushButton(self.centralwidget)
570 self.btnStartburn.setEnabled(False) No newline at end of file
566 self.btnStartburn.setEnabled(False)
571 self.btnStartburn.setObjectName("btnStartburn") No newline at end of file
567 self.btnStartburn.setObjectName("btnStartburn")
572 self.horizontalLayout_2.addWidget(self.btnStartburn) No newline at end of file
568 self.horizontalLayout_2.addWidget(self.btnStartburn)
573 self.btnStopburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
569 self.btnStopburn = QtGui.QPushButton(self.centralwidget)
574 self.btnStopburn.setEnabled(False) No newline at end of file
570 self.btnStopburn.setEnabled(False)
575 self.btnStopburn.setObjectName("btnStopburn") No newline at end of file
571 self.btnStopburn.setObjectName("btnStopburn")
576 self.horizontalLayout_2.addWidget(self.btnStopburn) No newline at end of file
572 self.horizontalLayout_2.addWidget(self.btnStopburn)
577 self.verticalLayout.addLayout(self.horizontalLayout_2) No newline at end of file
573 self.verticalLayout.addLayout(self.horizontalLayout_2)
578 MainWindow.setCentralWidget(self.centralwidget) No newline at end of file
574 MainWindow.setCentralWidget(self.centralwidget)
579 self.menubar = QtGui.QMenuBar(MainWindow) No newline at end of file
575 self.menubar = QtGui.QMenuBar(MainWindow)
580 self.menubar.setGeometry(QtCore.QRect(0, 0, 824, 25)) No newline at end of file
576 self.menubar.setGeometry(QtCore.QRect(0, 0, 824, 25))
581 self.menubar.setObjectName("menubar") No newline at end of file
577 self.menubar.setObjectName("menubar")
582 self.menuFile = QtGui.QMenu(self.menubar) No newline at end of file
578 self.menuFile = QtGui.QMenu(self.menubar)
583 self.menuFile.setObjectName("menuFile") No newline at end of file
579 self.menuFile.setObjectName("menuFile")
584 self.menuHelp = QtGui.QMenu(self.menubar) No newline at end of file
580 self.menuHelp = QtGui.QMenu(self.menubar)
585 self.menuHelp.setObjectName("menuHelp") No newline at end of file
581 self.menuHelp.setObjectName("menuHelp")
586 self.menuParameters = QtGui.QMenu(self.menubar) No newline at end of file
582 self.menuParameters = QtGui.QMenu(self.menubar)
587 self.menuParameters.setObjectName("menuParameters") No newline at end of file
583 self.menuParameters.setObjectName("menuParameters")
588 MainWindow.setMenuBar(self.menubar) No newline at end of file
584 MainWindow.setMenuBar(self.menubar)
589 self.statusbar = QtGui.QStatusBar(MainWindow) No newline at end of file
585 self.statusbar = QtGui.QStatusBar(MainWindow)
590 self.statusbar.setObjectName("statusbar") No newline at end of file
586 self.statusbar.setObjectName("statusbar")
591 MainWindow.setStatusBar(self.statusbar) No newline at end of file
587 MainWindow.setStatusBar(self.statusbar)
592 self.actionChange_Parameters = QtGui.QAction(MainWindow) No newline at end of file
588 self.actionChange_Parameters = QtGui.QAction(MainWindow)
593 self.actionChange_Parameters.setEnabled(False) No newline at end of file
589 self.actionChange_Parameters.setEnabled(False)
594 self.actionChange_Parameters.setObjectName("actionChange_Parameters") No newline at end of file
590 self.actionChange_Parameters.setObjectName("actionChange_Parameters")
595 self.actionQuit = QtGui.QAction(MainWindow) No newline at end of file
591 self.actionQuit = QtGui.QAction(MainWindow)
596 self.actionQuit.setObjectName("actionQuit") No newline at end of file
592 self.actionQuit.setObjectName("actionQuit")
597 self.actionAbout = QtGui.QAction(MainWindow) No newline at end of file
593 self.actionAbout = QtGui.QAction(MainWindow)
598 self.actionAbout.setObjectName("actionAbout") No newline at end of file
594 self.actionAbout.setObjectName("actionAbout")
599 self.menuFile.addAction(self.actionQuit) No newline at end of file
595 self.menuFile.addAction(self.actionQuit)
600 self.menuHelp.addAction(self.actionAbout) No newline at end of file
596 self.menuHelp.addAction(self.actionAbout)
601 self.menuParameters.addAction(self.actionChange_Parameters) No newline at end of file
597 self.menuParameters.addAction(self.actionChange_Parameters)
602 self.menubar.addAction(self.menuFile.menuAction()) No newline at end of file
598 self.menubar.addAction(self.menuFile.menuAction())
603 self.menubar.addAction(self.menuParameters.menuAction()) No newline at end of file
599 self.menubar.addAction(self.menuParameters.menuAction())
604 self.menubar.addAction(self.menuHelp.menuAction()) No newline at end of file
600 self.menubar.addAction(self.menuHelp.menuAction())
605 No newline at end of file
601
606 self.retranslateUi(MainWindow) No newline at end of file
602 self.retranslateUi(MainWindow)
607 self.tabWidget.setCurrentIndex(2) No newline at end of file
603 self.tabWidget.setCurrentIndex(2)
608 self.lstDcapacity.setCurrentIndex(2) No newline at end of file
604 self.lstDcapacity.setCurrentIndex(2)
609 QtCore.QObject.connect(self.actionQuit, QtCore.SIGNAL("triggered()"), MainWindow.close) No newline at end of file
605 QtCore.QObject.connect(self.actionQuit, QtCore.SIGNAL("triggered()"), MainWindow.close)
610 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled) No newline at end of file
606 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled)
611 QtCore.QObject.connect(self.chkDevB, QtCore.SIGNAL("toggled(bool)"), self.grpDevB.setEnabled) No newline at end of file
607 QtCore.QObject.connect(self.chkDevB, QtCore.SIGNAL("toggled(bool)"), self.grpDevB.setEnabled)
612 QtCore.QObject.connect(self.chkDevC, QtCore.SIGNAL("toggled(bool)"), self.grpDevC.setEnabled) No newline at end of file
608 QtCore.QObject.connect(self.chkDevC, QtCore.SIGNAL("toggled(bool)"), self.grpDevC.setEnabled)
613 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.grpDevA.setEnabled)
609 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.grpDevA.setEnabled)
No newline at end of file
614 QtCore.QObject.connect(self.chkCheck, QtCore.SIGNAL("toggled(bool)"), self.txtTDpath.setEnabled)
No newline at end of file
615 QtCore.QObject.connect(self.chkCheck, QtCore.SIGNAL("toggled(bool)"), self.btnTDpath.setEnabled)
No newline at end of file
616 QtCore.QObject.connect(self.chkCheck, QtCore.SIGNAL("toggled(bool)"), self.txtTDpath.clear) No newline at end of file
617 QtCore.QMetaObject.connectSlotsByName(MainWindow) No newline at end of file
610 QtCore.QMetaObject.connectSlotsByName(MainWindow)
618 MainWindow.setTabOrder(self.txtDpath, self.btnDpath) No newline at end of file
611 MainWindow.setTabOrder(self.txtDpath, self.btnDpath)
619 MainWindow.setTabOrder(self.btnDpath, self.txtRpath) No newline at end of file
612 MainWindow.setTabOrder(self.btnDpath, self.txtRpath)
620 MainWindow.setTabOrder(self.txtRpath, self.btnRpath) No newline at end of file
613 MainWindow.setTabOrder(self.txtRpath, self.btnRpath)
621 MainWindow.setTabOrder(self.btnRpath, self.lstDtype) No newline at end of file
614 MainWindow.setTabOrder(self.btnRpath, self.lstDtype)
622 MainWindow.setTabOrder(self.lstDtype, self.txtDtype) No newline at end of file
615 MainWindow.setTabOrder(self.lstDtype, self.txtDtype)
623 MainWindow.setTabOrder(self.txtDtype, self.txtElabel) No newline at end of file
616 MainWindow.setTabOrder(self.txtDtype, self.txtElabel)
624 MainWindow.setTabOrder(self.txtElabel, self.lstStartDay) No newline at end of file
617 MainWindow.setTabOrder(self.txtElabel, self.lstStartDay)
625 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay) No newline at end of file
618 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay)
626 MainWindow.setTabOrder(self.lstStopDay, self.lstDcapacity) No newline at end of file
619 MainWindow.setTabOrder(self.lstStopDay, self.lstDcapacity)
627 MainWindow.setTabOrder(self.lstDcapacity, self.tabWidget) No newline at end of file
620 MainWindow.setTabOrder(self.lstDcapacity, self.tabWidget)
628 MainWindow.setTabOrder(self.tabWidget, self.btnGbkp) No newline at end of file
621 MainWindow.setTabOrder(self.tabWidget, self.btnGbkp)
629 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart) No newline at end of file
622 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart)
630 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn) No newline at end of file
623 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn)
631 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn) No newline at end of file
624 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn)
632 No newline at end of file
625
633 def retranslateUi(self, MainWindow): No newline at end of file
626 def retranslateUi(self, MainWindow):
634 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
627 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8))
635 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
628 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8))
636 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
629 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8))
637 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
630 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8))
638 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
631 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8))
639 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
632 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8))
640 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
633 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8))
641 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
634 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8))
642 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
635 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8))
643 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
636 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8))
644 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
637 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8))
645 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
638 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8))
646 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
639 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8))
647 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
640 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
648 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
641 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8))
649 self.txtBmodeA.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
642 self.txtBmodeA.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8))
650 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
643 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8))
651 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
644 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8))
652 self.txtBmodeB.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
645 self.txtBmodeB.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8))
653 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
646 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8))
654 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
647 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8))
655 self.txtBmodeC.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
648 self.txtBmodeC.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8))
656 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
649 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8))
657 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
650 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8))
658 self.txtBmodeD.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
651 self.txtBmodeD.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8))
659 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
652 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8))
660 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
653 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8))
661 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
654 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8))
662 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
655 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8))
663 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
656 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity", None, QtGui.QApplication.UnicodeUTF8))
664 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
657 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8))
665 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
658 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8))
666 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
659 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
667 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
660 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
668 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? MB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
661 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? MB]", None, QtGui.QApplication.UnicodeUTF8))
669 self.lblPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
662 self.lblPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8))
670 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
663 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8))
671 self.label_4.setText(QtGui.QApplication.translate("MainWindow", "BURN", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
664 self.label_4.setText(QtGui.QApplication.translate("MainWindow", "BURN", None, QtGui.QApplication.UnicodeUTF8))
672 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
665 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8))
673 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "DISC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
666 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "DISC", None, QtGui.QApplication.UnicodeUTF8))
674 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "COPY", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
667 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "COPY", None, QtGui.QApplication.UnicodeUTF8))
675 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
668 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8))
676 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
669 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8))
677 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
670 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8))
678 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
671 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8))
679 self.label.setText(QtGui.QApplication.translate("MainWindow", "CHECK", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
672 self.label.setText(QtGui.QApplication.translate("MainWindow", "CHECK", None, QtGui.QApplication.UnicodeUTF8))
680 self.btnTDpath.setText(QtGui.QApplication.translate("MainWindow", "Temp Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
673 self.btnTDpath.setText(QtGui.QApplication.translate("MainWindow", "Temp Data Path", None, QtGui.QApplication.UnicodeUTF8))
681 self.lblSTATUS_2.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
674 self.lblSTATUS_2.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8))
682 self.lblDevA_2.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
675 self.lblDevA_2.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8))
683 self.lblDevB_2.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
676 self.lblDevB_2.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8))
684 self.lblDevC_2.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
677 self.lblDevC_2.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8))
685 self.lblDevD_2.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8))
678 self.lblDevD_2.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8))
No newline at end of file
686 self.chkCheck.setText(QtGui.QApplication.translate("MainWindow", "MANUAL", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
687 self.btnCHstart.setText(QtGui.QApplication.translate("MainWindow", "START", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
679 self.btnCHstart.setText(QtGui.QApplication.translate("MainWindow", "START", None, QtGui.QApplication.UnicodeUTF8))
688 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabStatus), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
680 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabStatus), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8))
689 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
681 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8))
690 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
682 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8))
691 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
683 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8))
692 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
684 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8))
693 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
685 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8))
694 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
686 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8))
695 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
687 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
696 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
688 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8))
697 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
689 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8))
698 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
690 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8))
699 No newline at end of file
691
700 No newline at end of file
692
701 if __name__ == "__main__": No newline at end of file
693 if __name__ == "__main__":
702 import sys No newline at end of file
694 import sys
703 app = QtGui.QApplication(sys.argv) No newline at end of file
695 app = QtGui.QApplication(sys.argv)
704 MainWindow = QtGui.QMainWindow() No newline at end of file
696 MainWindow = QtGui.QMainWindow()
705 ui = Ui_MainWindow() No newline at end of file
697 ui = Ui_MainWindow()
706 ui.setupUi(MainWindow) No newline at end of file
698 ui.setupUi(MainWindow)
707 MainWindow.show() No newline at end of file
699 MainWindow.show()
708 sys.exit(app.exec_()) No newline at end of file
700 sys.exit(app.exec_())
709 No newline at end of file
701
@@ -1,77 +1,77
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/JRO_SVN/eric4/jro_backup_manager/ui/Parameters.ui' No newline at end of file
3 # Form implementation generated from reading ui file '/home/ricardoar/JRO_SVN/eric4/jro_backup_manager/ui/Parameters.ui'
4 #
4 #
No newline at end of file
5 # Created: Thu May 27 12:18:45 2010 No newline at end of file
5 # Created: Thu May 27 12:04:54 2010 No newline at end of file
6 # by: PyQt4 UI code generator 4.6 No newline at end of file
6 # by: PyQt4 UI code generator 4.6
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_Parameters(object): No newline at end of file
12 class Ui_Parameters(object):
13 def setupUi(self, Parameters): No newline at end of file
13 def setupUi(self, Parameters):
14 Parameters.setObjectName("Parameters") No newline at end of file
14 Parameters.setObjectName("Parameters")
15 Parameters.resize(207, 152) No newline at end of file
15 Parameters.resize(207, 152)
16 self.verticalLayout = QtGui.QVBoxLayout(Parameters) No newline at end of file
16 self.verticalLayout = QtGui.QVBoxLayout(Parameters)
17 self.verticalLayout.setObjectName("verticalLayout") No newline at end of file
17 self.verticalLayout.setObjectName("verticalLayout")
18 self.horizontalLayout_3 = QtGui.QHBoxLayout() No newline at end of file
18 self.horizontalLayout_3 = QtGui.QHBoxLayout()
19 self.horizontalLayout_3.setObjectName("horizontalLayout_3") No newline at end of file
19 self.horizontalLayout_3.setObjectName("horizontalLayout_3")
20 self.verticalLayout_2 = QtGui.QVBoxLayout() No newline at end of file
20 self.verticalLayout_2 = QtGui.QVBoxLayout()
21 self.verticalLayout_2.setObjectName("verticalLayout_2") No newline at end of file
21 self.verticalLayout_2.setObjectName("verticalLayout_2")
22 self.label = QtGui.QLabel(Parameters) No newline at end of file
22 self.label = QtGui.QLabel(Parameters)
23 self.label.setObjectName("label") No newline at end of file
23 self.label.setObjectName("label")
24 self.verticalLayout_2.addWidget(self.label) No newline at end of file
24 self.verticalLayout_2.addWidget(self.label)
25 self.label_3 = QtGui.QLabel(Parameters) No newline at end of file
25 self.label_3 = QtGui.QLabel(Parameters)
26 self.label_3.setObjectName("label_3") No newline at end of file
26 self.label_3.setObjectName("label_3")
27 self.verticalLayout_2.addWidget(self.label_3) No newline at end of file
27 self.verticalLayout_2.addWidget(self.label_3)
28 self.label_2 = QtGui.QLabel(Parameters) No newline at end of file
28 self.label_2 = QtGui.QLabel(Parameters)
29 self.label_2.setObjectName("label_2") No newline at end of file
29 self.label_2.setObjectName("label_2")
30 self.verticalLayout_2.addWidget(self.label_2) No newline at end of file
30 self.verticalLayout_2.addWidget(self.label_2)
31 self.horizontalLayout_3.addLayout(self.verticalLayout_2) No newline at end of file
31 self.horizontalLayout_3.addLayout(self.verticalLayout_2)
32 self.verticalLayout_3 = QtGui.QVBoxLayout() No newline at end of file
32 self.verticalLayout_3 = QtGui.QVBoxLayout()
33 self.verticalLayout_3.setObjectName("verticalLayout_3") No newline at end of file
33 self.verticalLayout_3.setObjectName("verticalLayout_3")
34 self.txtNcopys = QtGui.QSpinBox(Parameters) No newline at end of file
34 self.txtNcopys = QtGui.QSpinBox(Parameters)
35 self.txtNcopys.setMinimum(1) No newline at end of file
35 self.txtNcopys.setMinimum(1)
36 self.txtNcopys.setMaximum(999) No newline at end of file
36 self.txtNcopys.setMaximum(999)
37 self.txtNcopys.setObjectName("txtNcopys") No newline at end of file
37 self.txtNcopys.setObjectName("txtNcopys")
38 self.verticalLayout_3.addWidget(self.txtNcopys) No newline at end of file
38 self.verticalLayout_3.addWidget(self.txtNcopys)
39 self.txtDisc = QtGui.QSpinBox(Parameters) No newline at end of file
39 self.txtDisc = QtGui.QSpinBox(Parameters)
40 self.txtDisc.setMinimum(1) No newline at end of file
40 self.txtDisc.setMinimum(1)
41 self.txtDisc.setMaximum(999999) No newline at end of file
41 self.txtDisc.setMaximum(999999)
42 self.txtDisc.setObjectName("txtDisc") No newline at end of file
42 self.txtDisc.setObjectName("txtDisc")
43 self.verticalLayout_3.addWidget(self.txtDisc) No newline at end of file
43 self.verticalLayout_3.addWidget(self.txtDisc)
44 self.txtCopy = QtGui.QSpinBox(Parameters) No newline at end of file
44 self.txtCopy = QtGui.QSpinBox(Parameters)
45 self.txtCopy.setMinimum(1) No newline at end of file
45 self.txtCopy.setMinimum(1)
46 self.txtCopy.setMaximum(999) No newline at end of file
46 self.txtCopy.setMaximum(999)
47 self.txtCopy.setObjectName("txtCopy") No newline at end of file
47 self.txtCopy.setObjectName("txtCopy")
48 self.verticalLayout_3.addWidget(self.txtCopy) No newline at end of file
48 self.verticalLayout_3.addWidget(self.txtCopy)
49 self.horizontalLayout_3.addLayout(self.verticalLayout_3) No newline at end of file
49 self.horizontalLayout_3.addLayout(self.verticalLayout_3)
50 self.verticalLayout.addLayout(self.horizontalLayout_3) No newline at end of file
50 self.verticalLayout.addLayout(self.horizontalLayout_3)
51 self.buttonBox = QtGui.QDialogButtonBox(Parameters) No newline at end of file
51 self.buttonBox = QtGui.QDialogButtonBox(Parameters)
52 self.buttonBox.setOrientation(QtCore.Qt.Horizontal) No newline at end of file
52 self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
53 self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok) No newline at end of file
53 self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
54 self.buttonBox.setObjectName("buttonBox") No newline at end of file
54 self.buttonBox.setObjectName("buttonBox")
55 self.verticalLayout.addWidget(self.buttonBox) No newline at end of file
55 self.verticalLayout.addWidget(self.buttonBox)
56 No newline at end of file
56
57 self.retranslateUi(Parameters) No newline at end of file
57 self.retranslateUi(Parameters)
58 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), Parameters.accept) No newline at end of file
58 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("accepted()"), Parameters.accept)
59 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), Parameters.reject) No newline at end of file
59 QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL("rejected()"), Parameters.reject)
60 QtCore.QMetaObject.connectSlotsByName(Parameters) No newline at end of file
60 QtCore.QMetaObject.connectSlotsByName(Parameters)
61 No newline at end of file
61
62 def retranslateUi(self, Parameters): No newline at end of file
62 def retranslateUi(self, Parameters):
63 Parameters.setWindowTitle(QtGui.QApplication.translate("Parameters", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
63 Parameters.setWindowTitle(QtGui.QApplication.translate("Parameters", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
64 self.label.setText(QtGui.QApplication.translate("Parameters", "N° Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
64 self.label.setText(QtGui.QApplication.translate("Parameters", "N° Copys", None, QtGui.QApplication.UnicodeUTF8))
65 self.label_3.setText(QtGui.QApplication.translate("Parameters", "Disc", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
65 self.label_3.setText(QtGui.QApplication.translate("Parameters", "Disc", None, QtGui.QApplication.UnicodeUTF8))
66 self.label_2.setText(QtGui.QApplication.translate("Parameters", "Copy", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
66 self.label_2.setText(QtGui.QApplication.translate("Parameters", "Copy", None, QtGui.QApplication.UnicodeUTF8))
67 No newline at end of file
67
68 No newline at end of file
68
69 if __name__ == "__main__": No newline at end of file
69 if __name__ == "__main__":
70 import sys No newline at end of file
70 import sys
71 app = QtGui.QApplication(sys.argv) No newline at end of file
71 app = QtGui.QApplication(sys.argv)
72 Parameters = QtGui.QDialog() No newline at end of file
72 Parameters = QtGui.QDialog()
73 ui = Ui_Parameters() No newline at end of file
73 ui = Ui_Parameters()
74 ui.setupUi(Parameters) No newline at end of file
74 ui.setupUi(Parameters)
75 Parameters.show() No newline at end of file
75 Parameters.show()
76 sys.exit(app.exec_()) No newline at end of file
76 sys.exit(app.exec_())
77 No newline at end of file
77
General Comments 0
You need to be logged in to leave comments. Login now