##// END OF EJS Templates
crea .iso, expulsa unidades y graba ...
ralonso -
r62:63
parent child
Show More
@@ -1,151 +1,157
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 var_output = commands.getstatusoutput(var_cmd) No newline at end of file
18 var_output = commands.getstatusoutput(var_cmd)
19 if var_output[0] != 0: No newline at end of file
19 if var_output[0] != 0:
20 self.txtInfo.append("No se pudo encontrar los dispositivos de grabacion, output_error:" + str(var_output)) No newline at end of file
20 self.txtInfo.append("No se pudo encontrar los dispositivos de grabacion, output_error:" + str(var_output))
21 else: No newline at end of file
21 else:
22 self.txtInfo.append("dispositivos encontrados") No newline at end of file
22 self.txtInfo.append("dispositivos encontrados")
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
53
No newline at end of file
54 def eject_devices(self):
No newline at end of file
55 for var_dev in self.var_devices:
No newline at end of file
56 var_cmd = 'eject ' + var_dev
No newline at end of file
57 commands.getstatusoutput(var_cmd) No newline at end of file
52 No newline at end of file
58
53 #----------------------------------- listado de los dispositivos de grabacion seleccionados -------------------------------------------- No newline at end of file
59 #----------------------------------- listado de los dispositivos de grabacion seleccionados --------------------------------------------
54 No newline at end of file
60
55 def selected_devices(self): No newline at end of file
61 def selected_devices(self):
56 self.var_devices=[] No newline at end of file
62 self.var_devices=[]
57 if self.chkDevA.isChecked(): No newline at end of file
63 if self.chkDevA.isChecked():
58 self.var_devices.append(str(self.txtDeviceA.text())) No newline at end of file
64 self.var_devices.append(str(self.txtDeviceA.text()))
59 if self.chkDevB.isChecked(): No newline at end of file
65 if self.chkDevB.isChecked():
60 self.var_devices.append(str(self.txtDeviceB.text())) No newline at end of file
66 self.var_devices.append(str(self.txtDeviceB.text()))
61 if self.chkDevC.isChecked(): No newline at end of file
67 if self.chkDevC.isChecked():
62 self.var_devices.append(str(self.txtDeviceC.text())) No newline at end of file
68 self.var_devices.append(str(self.txtDeviceC.text()))
63 if self.chkDevD.isChecked(): No newline at end of file
69 if self.chkDevD.isChecked():
64 self.var_devices.append(str(self.txtDeviceD.text())) No newline at end of file
70 self.var_devices.append(str(self.txtDeviceD.text()))
65 No newline at end of file
71
66 if len(self.var_devices) == 0: No newline at end of file
72 if len(self.var_devices) == 0:
67 return False No newline at end of file
73 return False
68 else: No newline at end of file
74 else:
69 return True No newline at end of file
75 return True
70 No newline at end of file
76
71 No newline at end of file
77
72 #----------------------------------------------------- Inicializacion para pruebas--------------------------------------------------------------- No newline at end of file
78 #----------------------------------------------------- Inicializacion para pruebas---------------------------------------------------------------
73 No newline at end of file
79
74 def set_parameters_test(self): No newline at end of file
80 def set_parameters_test(self):
75 """ No newline at end of file
81 """
76 Se usa para inicializar ciertos parametros para pruebas No newline at end of file
82 Se usa para inicializar ciertos parametros para pruebas
77 """ No newline at end of file
83 """
78 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS') No newline at end of file
84 self.txtDpath.setText('/home/ricardoar/optional/STORAGE/EW_DRIFTS')
79 self.txtRpath.setText('/home/ricardoar/optional/prueba1_jro_backup_manager') No newline at end of file
85 self.txtRpath.setText('/home/ricardoar/optional/prueba1_jro_backup_manager')
80 self.txtElabel.setText('EW_DRIFTS_pruebas') No newline at end of file
86 self.txtElabel.setText('EW_DRIFTS_pruebas')
81 self.lstDcapacity.setCurrentIndex(4) No newline at end of file
87 self.lstDcapacity.setCurrentIndex(4)
82 self.txtDcapacity.setValue(250.0) No newline at end of file
88 self.txtDcapacity.setValue(250.0)
83 self.txtDcapacity.setReadOnly(False) No newline at end of file
89 self.txtDcapacity.setReadOnly(False)
84 No newline at end of file
90
85 No newline at end of file
91
86 #----------------------------------------------------- crea parameters.conf --------------------------------------------------------------- No newline at end of file
92 #----------------------------------------------------- crea parameters.conf ---------------------------------------------------------------
87 No newline at end of file
93
88 def make_parameters_conf(self): No newline at end of file
94 def make_parameters_conf(self):
89 var_file = open("parameters.conf","w") No newline at end of file
95 var_file = open("parameters.conf","w")
90 var_file.write(self.var_Dpath+"\n") #0 Ruta de los datos No newline at end of file
96 var_file.write(self.var_Dpath+"\n") #0 Ruta de los datos
91 var_file.write(self.var_Rpath+"\n") #1 Ruta del proyecto No newline at end of file
97 var_file.write(self.var_Rpath+"\n") #1 Ruta del proyecto
92 var_file.write(str(self.var_lstDtype)+"\n") #2 opcion Data Type No newline at end of file
98 var_file.write(str(self.var_lstDtype)+"\n") #2 opcion Data Type
93 var_file.write(self.var_Dtype+"\n") #3 extension Data Type No newline at end of file
99 var_file.write(self.var_Dtype+"\n") #3 extension Data Type
94 var_file.write(self.var_Elabel+"\n") #4 etiqueta No newline at end of file
100 var_file.write(self.var_Elabel+"\n") #4 etiqueta
95 var_file.write(str(self.var_Copys)+"\n") #5 Numero de copias No newline at end of file
101 var_file.write(str(self.var_Copys)+"\n") #5 Numero de copias
96 var_file.write(str(self.var_lstDcapacity)+"\n") #6 opcion Device Capacity No newline at end of file
102 var_file.write(str(self.var_lstDcapacity)+"\n") #6 opcion Device Capacity
97 var_file.write(str(self.var_Dcapacity)+"\n") #7 tamaΓ±o Device Capacity No newline at end of file
103 var_file.write(str(self.var_Dcapacity)+"\n") #7 tamaΓ±o Device Capacity
98 var_file.write(str(self.var_Discs)+"\n") #8 Numero de discos a grabar No newline at end of file
104 var_file.write(str(self.var_Discs)+"\n") #8 Numero de discos a grabar
99 # var_file.write(str(self.lstStartDay.currentIndex())+"\n") #9 Indice fecha inicial No newline at end of file
105 # var_file.write(str(self.lstStartDay.currentIndex())+"\n") #9 Indice fecha inicial
100 # var_file.write(str(self.lstStopDay.currentIndex())+"\n") #10 Indice fecha final No newline at end of file
106 # var_file.write(str(self.lstStopDay.currentIndex())+"\n") #10 Indice fecha final
101 No newline at end of file
107
102 var_file.close() No newline at end of file
108 var_file.close()
103 No newline at end of file
109
104 #----------------------------------------------------- carga parameters.conf --------------------------------------------------------------- No newline at end of file
110 #----------------------------------------------------- carga parameters.conf ---------------------------------------------------------------
105 No newline at end of file
111
106 def get_parameters_conf(self): No newline at end of file
112 def get_parameters_conf(self):
107 var_file = open("parameters.conf","r") No newline at end of file
113 var_file = open("parameters.conf","r")
108 lines = var_file.readlines() No newline at end of file
114 lines = var_file.readlines()
109 self.txtDpath.setText(lines[0][:-1]) #0 No newline at end of file
115 self.txtDpath.setText(lines[0][:-1]) #0
110 self.txtRpath.setText(lines[1][:-1]) #1 No newline at end of file
116 self.txtRpath.setText(lines[1][:-1]) #1
111 self.lstDtype.setCurrentIndex(int(lines[2])) #2 No newline at end of file
117 self.lstDtype.setCurrentIndex(int(lines[2])) #2
112 self.txtDtype.setText(lines[3][:-1]) #3 No newline at end of file
118 self.txtDtype.setText(lines[3][:-1]) #3
113 self.txtElabel.setText(lines[4][:-1]) #4 No newline at end of file
119 self.txtElabel.setText(lines[4][:-1]) #4
114 self.txtCopys.setValue(int(lines[5][:-1])) #5 No newline at end of file
120 self.txtCopys.setValue(int(lines[5][:-1])) #5
115 self.lstDcapacity.setCurrentIndex(int(lines[6])) #6 No newline at end of file
121 self.lstDcapacity.setCurrentIndex(int(lines[6])) #6
116 self.txtDcapacity.setValue(float(lines[7])) #7 No newline at end of file
122 self.txtDcapacity.setValue(float(lines[7])) #7
117 self.var_Discs = int(lines[8]) #8 No newline at end of file
123 self.var_Discs = int(lines[8]) #8
118 # var_StartDay = int(lines[6]) #9 No newline at end of file
124 # var_StartDay = int(lines[6]) #9
119 # var_StopDay = int(lines[7]) #10 No newline at end of file
125 # var_StopDay = int(lines[7]) #10
120 var_file.close() No newline at end of file
126 var_file.close()
121 No newline at end of file
127
122 No newline at end of file
128
123 No newline at end of file
129
124 #-------------------------- actualiza el valor de las variables con los parametros seleccionados ----------------------------- No newline at end of file
130 #-------------------------- actualiza el valor de las variables con los parametros seleccionados -----------------------------
125 No newline at end of file
131
126 def set_vars(self): No newline at end of file
132 def set_vars(self):
127 self.var_Dpath = str(self.txtDpath.text()) #0 No newline at end of file
133 self.var_Dpath = str(self.txtDpath.text()) #0
128 self.var_Rpath = str(self.txtRpath.text()) #1 No newline at end of file
134 self.var_Rpath = str(self.txtRpath.text()) #1
129 self.var_lstDtype = self.lstDtype.currentIndex() #2 No newline at end of file
135 self.var_lstDtype = self.lstDtype.currentIndex() #2
130 self.var_Dtype = str(self.txtDtype.text()) #3 No newline at end of file
136 self.var_Dtype = str(self.txtDtype.text()) #3
131 self.var_Elabel = str(self.txtElabel.text()) #4 No newline at end of file
137 self.var_Elabel = str(self.txtElabel.text()) #4
132 self.var_Copys = self.txtCopys.value() #5 No newline at end of file
138 self.var_Copys = self.txtCopys.value() #5
133 self.var_lstDcapacity = self.lstDcapacity.currentIndex() #6 No newline at end of file
139 self.var_lstDcapacity = self.lstDcapacity.currentIndex() #6
134 self.var_Dcapacity = self.txtDcapacity.value() #7 No newline at end of file
140 self.var_Dcapacity = self.txtDcapacity.value() #7
135 self.var_Discs = self.var_Discs #8 No newline at end of file
141 self.var_Discs = self.var_Discs #8
136 No newline at end of file
142
137 #---------------------------------------------- Habilitacion y deshabilitacion de items ------------------------------------------------------- No newline at end of file
143 #---------------------------------------------- Habilitacion y deshabilitacion de items -------------------------------------------------------
138 No newline at end of file
144
139 def enabled_items1(var_bool, self): No newline at end of file
145 def enabled_items1(var_bool, self):
140 self.tabParameters.setEnabled(not(var_bool)) No newline at end of file
146 self.tabParameters.setEnabled(not(var_bool))
141 self.lstDcapacity.setEnabled(not(var_bool)) No newline at end of file
147 self.lstDcapacity.setEnabled(not(var_bool))
142 self.txtDcapacity.setEnabled(not(var_bool)) No newline at end of file
148 self.txtDcapacity.setEnabled(not(var_bool))
143 self.btnGbkp.setEnabled(not(var_bool)) No newline at end of file
149 self.btnGbkp.setEnabled(not(var_bool))
144 self.btnRestart.setEnabled(var_bool) No newline at end of file
150 self.btnRestart.setEnabled(var_bool)
145 self.btnStartburn.setEnabled(var_bool) No newline at end of file
151 self.btnStartburn.setEnabled(var_bool)
146 No newline at end of file
152
147 No newline at end of file
153
148 def enabled_items2(var_bool, self): No newline at end of file
154 def enabled_items2(var_bool, self):
149 self.btnRestart.setEnabled(not(var_bool)) No newline at end of file
155 self.btnRestart.setEnabled(not(var_bool))
150 self.btnStartburn.setEnabled(not(var_bool)) No newline at end of file
156 self.btnStartburn.setEnabled(not(var_bool))
151 self.btnStopburn.setEnabled(var_bool) No newline at end of file
157 self.btnStopburn.setEnabled(var_bool)
@@ -1,402 +1,422
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 PyQt4 import QtGui No newline at end of file
11 from PyQt4 import QtGui
12 from subprocess import * No newline at end of file
12 from subprocess import *
13 import sys No newline at end of file
13 import sys
14 import os No newline at end of file
14 import os
15 #import subprocess No newline at end of file
15 #import subprocess
16 import commands No newline at end of file
16 import commands
17 from functions import functions No newline at end of file
17 from functions import functions
18 from functions import functions2 No newline at end of file
18 from functions import functions2
19 No newline at end of file
19
20 class MainWindow(QMainWindow, Ui_MainWindow): No newline at end of file
20 class MainWindow(QMainWindow, Ui_MainWindow):
21 """ No newline at end of file
21 """
22 Class documentation goes here. No newline at end of file
22 Class documentation goes here.
23 """ No newline at end of file
23 """
24 No newline at end of file
24
25 def __init__(self, parent = None): No newline at end of file
25 def __init__(self, parent = None):
26 QMainWindow.__init__(self, parent) No newline at end of file
26 QMainWindow.__init__(self, parent)
27 self.setupUi(self) No newline at end of file
27 self.setupUi(self)
28 self.setupUi2() No newline at end of file
28 self.setupUi2()
29 #sys.stdout = self #redirige salida estandar No newline at end of file
29 #sys.stdout = self #redirige salida estandar
30 No newline at end of file
30
31 def setupUi2(self): No newline at end of file
31 def setupUi2(self):
32 No newline at end of file
32
33 # functions2.detect_devices(self) #busca los dispositivos de grabacion No newline at end of file
33 # functions2.detect_devices(self) #busca los dispositivos de grabacion
34 No newline at end of file
34
35 self.var_Discs = 0 #Numero de discos del proyecto No newline at end of file
35 self.var_Discs = 0 #Numero de discos del proyecto
36 self.var_Copys = 0 #Numero de copias No newline at end of file
36 self.var_Copys = 0 #Numero de copias
37 self.var_disc_n = 0 No newline at end of file
37 self.var_disc_n = 0
38 self.var_copy_n = 0 No newline at end of file
38 self.var_copy_n = 0
39 No newline at end of file
39
40 self.var_list=[] No newline at end of file
40 self.var_list=[]
41 self.var_sublist=[] No newline at end of file
41 self.var_sublist=[]
42 No newline at end of file
42
43 self.var_devices=[] No newline at end of file
43 self.var_devices=[]
44 No newline at end of file
44
45 self.var_step = 0 No newline at end of file
45 self.var_step = 0
46 self.bool_state_burning = False No newline at end of file
46 self.bool_state_burning = False
47 self.blank_discs = False No newline at end of file
47 No newline at end of file
48
48 No newline at end of file
49
49 #Revisa si existe el archivo de confirguracion No newline at end of file
50 #Revisa si existe el archivo de confirguracion
50 if os.path.isfile("parameters.conf"): No newline at end of file
51 if os.path.isfile("parameters.conf"):
51 self.txtInfo.append("Archivo de configuracion encontrado") No newline at end of file
52 self.txtInfo.append("Archivo de configuracion encontrado")
52 functions2.get_parameters_conf(self) No newline at end of file
53 functions2.get_parameters_conf(self)
53 self.txtInfo.append("El proyecto es de "+str(self.var_Discs)+" discos") No newline at end of file
54 self.txtInfo.append("El proyecto es de "+str(self.var_Discs)+" discos")
54 else: No newline at end of file
55 else:
55 self.txtInfo.append("Elija los parametros de configuracion") No newline at end of file
56 self.txtInfo.append("Elija los parametros de configuracion")
56 functions2.set_parameters_test(self) #Establece ciertos parametros, para pruebas No newline at end of file
57 functions2.set_parameters_test(self) #Establece ciertos parametros, para pruebas
57 No newline at end of file
58
58 functions2.set_vars(self) #Carga las variables de la clase con los parametros seleccionados No newline at end of file
59 functions2.set_vars(self) #Carga las variables de la clase con los parametros seleccionados
59 No newline at end of file
60
60 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
61 self.statusDpath = functions.dir_exists(self.var_Dpath, self)
61 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
62 self.statusRpath = functions.dir_exists(self.var_Rpath, self)
62 functions.load_days(self) No newline at end of file
63 functions.load_days(self)
63 No newline at end of file
64
64 if os.path.isfile("parameters.conf"): No newline at end of file
65 if os.path.isfile("parameters.conf"):
65 functions2.enabled_items1(True, self) #Se bloquean los parametros de configuracion No newline at end of file
66 functions2.enabled_items1(True, self) #Se bloquean los parametros de configuracion
66 No newline at end of file
67
67 No newline at end of file
68
68 self.var_process = QtCore.QProcess() No newline at end of file
69 self.var_process = QtCore.QProcess()
69 self.connect(self.var_process, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput) No newline at end of file
70 self.connect(self.var_process, QtCore.SIGNAL('readyReadStandardOutput()'), self.readOuput)
70 self.connect(self.var_process, QtCore.SIGNAL('readyReadStandardError()'), self.readError) No newline at end of file
71 self.connect(self.var_process, QtCore.SIGNAL('readyReadStandardError()'), self.readError)
71 self.connect(self.var_process, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished) No newline at end of file
72 self.connect(self.var_process, QtCore.SIGNAL('finished(int,QProcess::ExitStatus)'), self.finished)
72 No newline at end of file
73
73 No newline at end of file
74
74 def write(self, txt): No newline at end of file
75 def write(self, txt):
75 self.txtInfo.append(str(txt)) No newline at end of file
76 self.txtInfo.append(str(txt))
76 No newline at end of file
77
77 No newline at end of file
78
78 #----------------------------------------------------- Funciones del proceso --------------------------------------------------------------- No newline at end of file
79 #----------------------------------------------------- Funciones del proceso ---------------------------------------------------------------
79 No newline at end of file
80
80 def readOuput(self): No newline at end of file
81 def readOuput(self):
81 self.txtSburn.insertPlainText("stdout: " + QtCore.QString(self.var_process.readAllStandardOutput())) No newline at end of file
82 self.txtSburn.insertPlainText("stdout: " + QtCore.QString(self.var_process.readAllStandardOutput()))
82 No newline at end of file
83
83 def readError(self): No newline at end of file
84 def readError(self):
84 self.txtSburn.insertPlainText("stderr: " + QtCore.QString(self.var_process.readAllStandardError())) No newline at end of file
85 self.txtSburn.insertPlainText("stderr: " + QtCore.QString(self.var_process.readAllStandardError()))
85 No newline at end of file
86
86 def finished(self): No newline at end of file
87 def finished(self):
87 self.txtInfo.append("proceso terminado finished() "+QtCore.QString(self.var_process.exitCode())+"\n") No newline at end of file
88 self.txtInfo.append("proceso terminado finished() "+QtCore.QString(self.var_process.exitCode())+"\n")
88 if self.var_disc_n <= self.var_Discs and self.bool_state_burning: No newline at end of file
89 if self.var_disc_n <= self.var_Discs and self.bool_state_burning:
89 self.burning() No newline at end of file
90 self.burning()
90 No newline at end of file
91
91 No newline at end of file
92
92 #----------------------------------------------------- Obtencion de la ruta de los datos --------------------------------------------------------------- No newline at end of file
93 #----------------------------------------------------- Obtencion de la ruta de los datos ---------------------------------------------------------------
93 No newline at end of file
94
94 @pyqtSignature("") No newline at end of file
95 @pyqtSignature("")
95 def on_btnDpath_clicked(self): No newline at end of file
96 def on_btnDpath_clicked(self):
96 """ No newline at end of file
97 """
97 Permite seleccionar graficamente el direcorio de los datos a grabar No newline at end of file
98 Permite seleccionar graficamente el direcorio de los datos a grabar
98 """ No newline at end of file
99 """
99 self.var_Dpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
100 self.var_Dpath= str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
100 self.txtDpath.setText(self.var_Dpath) No newline at end of file
101 self.txtDpath.setText(self.var_Dpath)
101 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
102 self.statusDpath = functions.dir_exists(self.var_Dpath, self)
102 functions.load_days(self) No newline at end of file
103 functions.load_days(self)
103 No newline at end of file
104
104 No newline at end of file
105
105 @pyqtSignature("") No newline at end of file
106 @pyqtSignature("")
106 def on_txtDpath_editingFinished(self): No newline at end of file
107 def on_txtDpath_editingFinished(self):
107 """ No newline at end of file
108 """
108 Carga la ruta editada y verifica que sea correcta y carga la lista de dias No newline at end of file
109 Carga la ruta editada y verifica que sea correcta y carga la lista de dias
109 """ No newline at end of file
110 """
110 self.var_Dpath=str(self.txtDpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
111 self.var_Dpath=str(self.txtDpath.text()) #Se carga la variable con la ruta recien editada
111 self.statusDpath = functions.dir_exists(self.var_Dpath, self) No newline at end of file
112 self.statusDpath = functions.dir_exists(self.var_Dpath, self)
112 functions.load_days(self) No newline at end of file
113 functions.load_days(self)
113 No newline at end of file
114
114 No newline at end of file
115
115 #----------------------------------------------------- Obtencion de las ruta del proyecto --------------------------------------------------------------- No newline at end of file
116 #----------------------------------------------------- Obtencion de las ruta del proyecto ---------------------------------------------------------------
116 No newline at end of file
117
117 @pyqtSignature("") No newline at end of file
118 @pyqtSignature("")
118 def on_btnRpath_clicked(self): No newline at end of file
119 def on_btnRpath_clicked(self):
119 """ No newline at end of file
120 """
120 Permite seleccionar graficamente el direcorio del proyecto No newline at end of file
121 Permite seleccionar graficamente el direcorio del proyecto
121 """ No newline at end of file
122 """
122 self.var_Rpath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly)) No newline at end of file
123 self.var_Rpath = str(QtGui.QFileDialog.getExistingDirectory(self, 'Open Directory', './', QtGui.QFileDialog.ShowDirsOnly))
123 self.txtRpath.setText(self.var_Rpath) No newline at end of file
124 self.txtRpath.setText(self.var_Rpath)
124 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
125 self.statusRpath = functions.dir_exists(self.var_Rpath, self)
125 No newline at end of file
126
126 No newline at end of file
127
127 @pyqtSignature("") No newline at end of file
128 @pyqtSignature("")
128 def on_txtRpath_editingFinished(self): No newline at end of file
129 def on_txtRpath_editingFinished(self):
129 """ No newline at end of file
130 """
130 Valida la ruta del proyecto No newline at end of file
131 Valida la ruta del proyecto
131 """ No newline at end of file
132 """
132 self.var_Rpath = str(self.txtRpath.text()) #Se carga la variable con la ruta recien editada No newline at end of file
133 self.var_Rpath = str(self.txtRpath.text()) #Se carga la variable con la ruta recien editada
133 self.statusRpath = functions.dir_exists(self.var_Rpath, self) No newline at end of file
134 self.statusRpath = functions.dir_exists(self.var_Rpath, self)
134 No newline at end of file
135
135 No newline at end of file
136
136 #----------------------------------------------------- Tipo de datos --------------------------------------------------------------- No newline at end of file
137 #----------------------------------------------------- Tipo de datos ---------------------------------------------------------------
137 No newline at end of file
138
138 @pyqtSignature("int") No newline at end of file
139 @pyqtSignature("int")
139 def on_lstDtype_activated(self, index): No newline at end of file
140 def on_lstDtype_activated(self, index):
140 """ No newline at end of file
141 """
141 Permite elegir entre los tipos de archivos No newline at end of file
142 Permite elegir entre los tipos de archivos
142 """ No newline at end of file
143 """
143 self.txtDtype.setReadOnly(True) No newline at end of file
144 self.txtDtype.setReadOnly(True)
144 if index == 0: No newline at end of file
145 if index == 0:
145 self.var_Dtype ='r' No newline at end of file
146 self.var_Dtype ='r'
146 elif index == 1: No newline at end of file
147 elif index == 1:
147 self.var_Dtype ='pdata' No newline at end of file
148 self.var_Dtype ='pdata'
148 elif index == 2: No newline at end of file
149 elif index == 2:
149 self.var_Dtype ='sswma' No newline at end of file
150 self.var_Dtype ='sswma'
150 else : No newline at end of file
151 else :
151 self.var_Dtype ='' No newline at end of file
152 self.var_Dtype =''
152 self.txtDtype.setReadOnly(False) No newline at end of file
153 self.txtDtype.setReadOnly(False)
153 No newline at end of file
154
154 self.txtDtype.setText(self.var_Dtype) No newline at end of file
155 self.txtDtype.setText(self.var_Dtype)
155 functions.load_days(self) #llamada a funcion No newline at end of file
156 functions.load_days(self) #llamada a funcion
156 No newline at end of file
157
157 @pyqtSignature("") No newline at end of file
158 @pyqtSignature("")
158 def on_txtDtype_editingFinished(self): No newline at end of file
159 def on_txtDtype_editingFinished(self):
159 self.var_Dtype=str(self.txtDtype.text()) No newline at end of file
160 self.var_Dtype=str(self.txtDtype.text())
160 functions.load_days(self) #llamada a funcion No newline at end of file
161 functions.load_days(self) #llamada a funcion
161 No newline at end of file
162
162 No newline at end of file
163
163 #----------------------------------------------------- Etiqueta --------------------------------------------------------------- No newline at end of file
164 #----------------------------------------------------- Etiqueta ---------------------------------------------------------------
164 No newline at end of file
165
165 @pyqtSignature("") No newline at end of file
166 @pyqtSignature("")
166 def on_txtElabel_editingFinished(self): No newline at end of file
167 def on_txtElabel_editingFinished(self):
167 self.var_Elabel = str(self.txtElabel.text()) No newline at end of file
168 self.var_Elabel = str(self.txtElabel.text())
168 No newline at end of file
169
169 #----------------------------------------------------- Numero de copias --------------------------------------------------------------- No newline at end of file
170 #----------------------------------------------------- Numero de copias ---------------------------------------------------------------
170 @pyqtSignature("") No newline at end of file
171 @pyqtSignature("")
171 def on_txtCopys_editingFinished(self): No newline at end of file
172 def on_txtCopys_editingFinished(self):
172 self.var_Copys = self.txtCopys.value() No newline at end of file
173 self.var_Copys = self.txtCopys.value()
173 No newline at end of file
174
174 #----------------------------------------------------- Seleccion del rango de fechas --------------------------------------------------------------- No newline at end of file
175 #----------------------------------------------------- Seleccion del rango de fechas ---------------------------------------------------------------
175 No newline at end of file
176
176 @pyqtSignature("int") #CLOSED No newline at end of file
177 @pyqtSignature("int") #CLOSED
177 def on_lstStartDay_activated(self, index): No newline at end of file
178 def on_lstStartDay_activated(self, index):
178 """ No newline at end of file
179 """
179 Cambia la lista de opciones en lstStopDay No newline at end of file
180 Cambia la lista de opciones en lstStopDay
180 """ No newline at end of file
181 """
181 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex() No newline at end of file
182 var_StopDay_index=self.lstStopDay.count() - self.lstStopDay.currentIndex()
182 self.lstStopDay.clear() No newline at end of file
183 self.lstStopDay.clear()
183 No newline at end of file
184
184 for i in self.var_list[index:]: No newline at end of file
185 for i in self.var_list[index:]:
185 self.lstStopDay.addItem(i) No newline at end of file
186 self.lstStopDay.addItem(i)
186 No newline at end of file
187
187 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index) No newline at end of file
188 self.lstStopDay.setCurrentIndex(self.lstStopDay.count() - var_StopDay_index)
188 No newline at end of file
189
189 functions.get_sub_list(self) No newline at end of file
190 functions.get_sub_list(self)
190 No newline at end of file
191
191 No newline at end of file
192
192 @pyqtSignature("int") #CLOSED No newline at end of file
193 @pyqtSignature("int") #CLOSED
193 def on_lstStopDay_activated(self, index): No newline at end of file
194 def on_lstStopDay_activated(self, index):
194 """ No newline at end of file
195 """
195 Cambia la lista de opciones en lstStartDay No newline at end of file
196 Cambia la lista de opciones en lstStartDay
196 """ No newline at end of file
197 """
197 var_StartDay_index=self.lstStartDay.currentIndex() No newline at end of file
198 var_StartDay_index=self.lstStartDay.currentIndex()
198 var_end_index = self.lstStopDay.count() - index No newline at end of file
199 var_end_index = self.lstStopDay.count() - index
199 self.lstStartDay.clear() No newline at end of file
200 self.lstStartDay.clear()
200 No newline at end of file
201
201 for i in self.var_list[:len(self.var_list) - var_end_index + 1]: No newline at end of file
202 for i in self.var_list[:len(self.var_list) - var_end_index + 1]:
202 self.lstStartDay.addItem(i) No newline at end of file
203 self.lstStartDay.addItem(i)
203 No newline at end of file
204
204 self.lstStartDay.setCurrentIndex(var_StartDay_index) No newline at end of file
205 self.lstStartDay.setCurrentIndex(var_StartDay_index)
205 No newline at end of file
206
206 functions.get_sub_list(self) No newline at end of file
207 functions.get_sub_list(self)
207 No newline at end of file
208
208 No newline at end of file
209
209 #----------------------------------------------------- Capacidad del dispositivo de grabacion --------------------------------------------------------------- No newline at end of file
210 #----------------------------------------------------- Capacidad del dispositivo de grabacion ---------------------------------------------------------------
210 No newline at end of file
211
211 @pyqtSignature("") No newline at end of file
212 @pyqtSignature("")
212 def on_txtDcapacity_editingFinished(self): No newline at end of file
213 def on_txtDcapacity_editingFinished(self):
213 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
214 self.var_Dcapacity = self.txtDcapacity.value()
214 No newline at end of file
215
215 No newline at end of file
216
216 @pyqtSignature("int") #CLOSED No newline at end of file
217 @pyqtSignature("int") #CLOSED
217 def on_lstDcapacity_activated(self, index): No newline at end of file
218 def on_lstDcapacity_activated(self, index):
218 """ No newline at end of file
219 """
219 Permite elegir el tamaΓ±o del disco No newline at end of file
220 Permite elegir el tamaΓ±o del disco
220 """ No newline at end of file
221 """
221 if index == 0: No newline at end of file
222 if index == 0:
222 var_size=25.0 No newline at end of file
223 var_size=25.0
223 elif index == 1: No newline at end of file
224 elif index == 1:
224 var_size=8.5 No newline at end of file
225 var_size=8.5
225 elif index == 2: No newline at end of file
226 elif index == 2:
226 var_size=4.7 No newline at end of file
227 var_size=4.7
227 elif index == 3: No newline at end of file
228 elif index == 3:
228 var_size=0.7 No newline at end of file
229 var_size=0.7
229 No newline at end of file
230
230 if index != 4: No newline at end of file
231 if index != 4:
231 self.txtDcapacity.setValue(var_size*10**9/1024**2) No newline at end of file
232 self.txtDcapacity.setValue(var_size*10**9/1024**2)
232 self.txtDcapacity.setReadOnly(True) No newline at end of file
233 self.txtDcapacity.setReadOnly(True)
233 else: No newline at end of file
234 else:
234 self.txtDcapacity.setValue(100.0) No newline at end of file
235 self.txtDcapacity.setValue(100.0)
235 self.txtDcapacity.setReadOnly(False) No newline at end of file
236 self.txtDcapacity.setReadOnly(False)
236 No newline at end of file
237
237 self.var_lstDcapacity = self.lstDcapacity.currentIndex() No newline at end of file
238 self.var_lstDcapacity = self.lstDcapacity.currentIndex()
238 self.var_Dcapacity = self.txtDcapacity.value() No newline at end of file
239 self.var_Dcapacity = self.txtDcapacity.value()
239 No newline at end of file
240
240 No newline at end of file
241
241 #============================================================================== No newline at end of file
242 #==============================================================================
242 # Botones para la generacion de los archivos de configuracion y el proceso de grabacion No newline at end of file
243 # Botones para la generacion de los archivos de configuracion y el proceso de grabacion
243 #============================================================================== No newline at end of file
244 #==============================================================================
244 No newline at end of file
245
245 #----------------------------------------------------- Generacion de la configuracion usando los parametros --------------------------------------------------------------- No newline at end of file
246 #----------------------------------------------------- Generacion de la configuracion usando los parametros ---------------------------------------------------------------
246 No newline at end of file
247
247 @pyqtSignature("") No newline at end of file
248 @pyqtSignature("")
248 def on_btnGbkp_clicked(self): No newline at end of file
249 def on_btnGbkp_clicked(self):
249 """ No newline at end of file
250 """
250 Generacion de archivos de configuracion usando los parametros No newline at end of file
251 Generacion de archivos de configuracion usando los parametros
251 """ No newline at end of file
252 """
252 No newline at end of file
253
253 if functions.validate_parameters(self) == False: No newline at end of file
254 if functions.validate_parameters(self) == False:
254 return No newline at end of file
255 return
255 No newline at end of file
256
256 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente No newline at end of file
257 #Crea las carpetas en la ruta del proyecto y verifica que se crearon correctamente
257 list_dirs=['gpath','iso','ppath'] No newline at end of file
258 list_dirs=['gpath','iso','ppath']
258 bool_make_dirs = functions.make_dirs(list_dirs, self) No newline at end of file
259 bool_make_dirs = functions.make_dirs(list_dirs, self)
259 if bool_make_dirs == False: No newline at end of file
260 if bool_make_dirs == False:
260 return No newline at end of file
261 return
261 No newline at end of file
262
262 var_files_list = functions.list_files(self) #Se obtiene la lista de archivos a grabar No newline at end of file
263 var_files_list = functions.list_files(self) #Se obtiene la lista de archivos a grabar
263 self.var_Discs = functions.make_files_dat(var_files_list, self) #Se crean los archivos .dat No newline at end of file
264 self.var_Discs = functions.make_files_dat(var_files_list, self) #Se crean los archivos .dat
264 functions.make_files_print(self) # Se crean los archivos .print No newline at end of file
265 functions.make_files_print(self) # Se crean los archivos .print
265 functions2.make_parameters_conf(self) # se crea el archivo parameters.conf
266 functions2.make_parameters_conf(self) # se crea el archivo parameters.conf
No newline at end of file
267 self.txtInfo.append("Numero de archivos .iso a grabar: "+str(self.var_Discs))
266 No newline at end of file
No newline at end of file
268 self.txtInfo.append("Numero de DVDs totales a grabar: "+str(self.var_Discs * self.var_Copys)) No newline at end of file
267 #Se bloquean los parametros de configuracion No newline at end of file
269 #Se bloquean los parametros de configuracion
268 functions2.enabled_items1(True, self) No newline at end of file
270 functions2.enabled_items1(True, self)
269 No newline at end of file
271
270 No newline at end of file
272
271 No newline at end of file
273
272 #----------------------------------------------------- Permite reiniciar la configuracion --------------------------------------------------------------- No newline at end of file
274 #----------------------------------------------------- Permite reiniciar la configuracion ---------------------------------------------------------------
273 No newline at end of file
275
274 @pyqtSignature("") No newline at end of file
276 @pyqtSignature("")
275 def on_btnRestart_clicked(self): No newline at end of file
277 def on_btnRestart_clicked(self):
276 """ No newline at end of file
278 """
277 Permite que se puedan cambiar los parametros No newline at end of file
279 Permite que se puedan cambiar los parametros
278 """ No newline at end of file
280 """
279 functions2.enabled_items1(False, self) No newline at end of file
281 functions2.enabled_items1(False, self)
280 os.remove("parameters.conf") No newline at end of file
282 os.remove("parameters.conf")
281 No newline at end of file
283
282 No newline at end of file
284
283 #----------------------------------------------------- Iniciar proceso de grabacion --------------------------------------------------------------- No newline at end of file
285 #----------------------------------------------------- Iniciar proceso de grabacion ---------------------------------------------------------------
284 No newline at end of file
286
285 @pyqtSignature("") No newline at end of file
287 @pyqtSignature("")
286 def on_btnStartburn_clicked(self): No newline at end of file
288 def on_btnStartburn_clicked(self):
287 """ No newline at end of file
289 """
288 Se inicia el proceso de grabacion No newline at end of file
290 Se inicia el proceso de grabacion
289 """ No newline at end of file
291 """
292
No newline at end of file
293 if self.blank_discs == True:
No newline at end of file
294 self.btnStartburn.setEnabled(False)
No newline at end of file
295 self.burning()
No newline at end of file
296 return No newline at end of file
290 No newline at end of file
297
291 #Verifica que exista algun dispositivo de grabacion seleccionado No newline at end of file
298 #Verifica que exista algun dispositivo de grabacion seleccionado
292 if not(functions2.selected_devices(self)): No newline at end of file
299 if not(functions2.selected_devices(self)):
293 self.txtInfo.append("No hay ningun dispositivo de grabacion seleccionado ") No newline at end of file
300 self.txtInfo.append("No hay ningun dispositivo de grabacion seleccionado ")
294 return No newline at end of file
301 return
295 No newline at end of file
302
296 #Lista los dispositivos de grabacion a usar No newline at end of file
303 #Lista los dispositivos de grabacion a usar
297 for dev in self.var_devices: No newline at end of file
304 for dev in self.var_devices:
298 self.txtInfo.append("dispositivo :"+dev) No newline at end of file
305 self.txtInfo.append("dispositivo :"+dev)
299 No newline at end of file
306
300 #Asigna las variables con los valores iniciales No newline at end of file
307 #Asigna las variables con los valores iniciales
301 self.var_disc_n = 0 # numero de disco actual para grabacion No newline at end of file
308 self.var_disc_n = 0 # numero de disco actual para grabacion
302 self.var_copy_n = 0 No newline at end of file
309 self.var_copy_n = 0
303 self.var_step = 0 No newline at end of file
310 self.var_step = 0
304 self.bool_state_burning = True No newline at end of file
311 self.bool_state_burning = True
312 self.blank_discs = False No newline at end of file
305 No newline at end of file
313
306 functions2.enabled_items2(True, self) No newline at end of file
314 functions2.enabled_items2(True, self)
307 self.burning() No newline at end of file
315 self.burning()
308 No newline at end of file
316
309 def burning(self): No newline at end of file
317 def burning(self):
310 No newline at end of file
318
311 var_Rpath_ppath=self.var_Rpath+"/ppath" No newline at end of file
319 var_Rpath_ppath=self.var_Rpath+"/ppath"
312 var_Rpath_iso=self.var_Rpath+"/iso" No newline at end of file
320 var_Rpath_iso=self.var_Rpath+"/iso"
313 No newline at end of file
321
314 #Creacion del archivo.iso para la grabacion No newline at end of file
322 #Creacion del archivo.iso para la grabacion
315 if self.var_step == 0:
323 if self.var_step == 0:
No newline at end of file
324 #borra la imagen.iso del numero de disco anterior
316
No newline at end of file
No newline at end of file
325 if self.var_disc_n > 0:
317 self.var_disc_n += 1 # numero de disco actual para grabacion
No newline at end of file
No newline at end of file
326 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso"
318 self.var_copy_n = 0 No newline at end of file
No newline at end of file
327 # os.remove(file_iso)
No newline at end of file
328
No newline at end of file
329 self.var_disc_n += 1 # aumenta numero de disco actual para grabacion
No newline at end of file
330 self.var_copy_n = 0 # Resetea el numero actual de la copia No newline at end of file
319 No newline at end of file
331
320 #Si ya se grabaron todos los discos No newline at end of file
332 #Si ya se grabaron todos los discos
321 if self.var_disc_n > self.var_Discs: No newline at end of file
333 if self.var_disc_n > self.var_Discs:
322 self.bool_state_burning = False No newline at end of file
334 self.bool_state_burning = False
323 self.txtInfo.append("GRABACION TERMINADA") No newline at end of file
335 self.txtInfo.append("GRABACION TERMINADA")
336 # functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion
No newline at end of file
337 No newline at end of file
324 return No newline at end of file
338 return
325 No newline at end of file
339
326 self.txtInfo.append("########## DISCO NUMERO: "+str(self.var_disc_n)+"##########") No newline at end of file
340 self.txtInfo.append("########## DISCO NUMERO: "+str(self.var_disc_n)+"##########")
327 self.txtInfo.append("--------Creando el iso del disco numero: "+str(self.var_disc_n)) No newline at end of file
341 self.txtInfo.append("--------Creando el iso del disco numero: "+str(self.var_disc_n))
328 No newline at end of file
342
329 #comando para la creacion del archivo.iso No newline at end of file
343 #comando para la creacion del archivo.iso
330 file_dat=var_Rpath_ppath+"/"+self.var_Elabel+"_"+functions.i2s(self.var_disc_n)+".dat" No newline at end of file
344 file_dat=var_Rpath_ppath+"/"+self.var_Elabel+"_"+functions.i2s(self.var_disc_n)+".dat"
331 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso" No newline at end of file
345 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso"
332 var_cmd = 'genisoimage -hide-joliet-trans-tbl -joliet-long -r ' No newline at end of file
346 var_cmd = 'genisoimage -hide-joliet-trans-tbl -joliet-long -r '
333 var_cmd += ' -A '+self.var_Elabel+' -V '+self.var_Elabel No newline at end of file
347 var_cmd += ' -A '+self.var_Elabel+' -V '+self.var_Elabel
334 var_cmd += ' -graft-points -path-list '+ file_dat+' -o '+file_iso No newline at end of file
348 var_cmd += ' -graft-points -path-list '+ file_dat+' -o '+file_iso
335 self.var_step = 1 #Se ira al paso de la grabacion en la siguiente llamada No newline at end of file
349 self.var_step = 1 #Se ira al paso de la grabacion en la siguiente llamada
336 No newline at end of file
350
337 #Grabacion de los DVDs No newline at end of file
351 #Grabacion de los DVDs
338 elif self.var_step == 1: No newline at end of file
352 elif self.var_step == 1:
339 self.var_copy_n += 1 # numero de copia actual No newline at end of file
353 self.var_copy_n += 1 # numero de copia actual
354 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) ) % len(self.var_devices)
No newline at end of file
355
No newline at end of file
356 if var_index == 0 and self.blank_discs == False:
No newline at end of file
357 self.txtInfo.append("EXPULSANDO BANDEJAS")
No newline at end of file
358 self.var_copy_n -= 1 #El numero de copia se regresa al estado anterior
No newline at end of file
359 # functions2.eject_devices(self) # Expulsa las bandejas de los dispostivos de grabacion
No newline at end of file
360 self.blank_discs = True
No newline at end of file
361 self.btnStartburn.setText("Continue")
No newline at end of file
362 self.btnStartburn.setEnabled(True)
No newline at end of file
363 return
No newline at end of file
364
No newline at end of file
365 self.blank_discs = False
No newline at end of file
366 No newline at end of file
340 self.txtInfo.append("Grabando la copia numero: "+str(self.var_copy_n)) No newline at end of file
367 self.txtInfo.append("Grabando la copia numero: "+str(self.var_copy_n))
341 No newline at end of file
368 #Si esta es la ultima copia se pasara al siguiente disco en la siguiente llamada a la funcion
342 #Si esta es la ultima copia se pasara al siguiente disco en la siguiente llamada a la funcion No newline at end of file
369 if self.var_copy_n == self.var_Copys:
343 if self.var_copy_n == self.var_Copys: No newline at end of file
370 self.var_step = 0
344 self.var_step = 0 No newline at end of file
371
345
372 var_dev_tmp = self.var_devices[var_index]
No newline at end of file
346 var_index = ( ( (self.var_disc_n - 1) * self.var_Copys) + (self.var_copy_n - 1) ) % len(self.var_devices)
No newline at end of file
347
No newline at end of file
348 if var_index == 0:
No newline at end of file
349 self.txtInfo.append("EXPULSANDO BANDEJAS")
No newline at end of file
350 No newline at end of file
351 var_dev_tmp = self.var_devices[var_index] No newline at end of file
373 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso"
352 file_iso=var_Rpath_iso+"/"+functions.i2s(self.var_disc_n)+".iso" No newline at end of file
374 var_cmd = "wodim -v dev="+var_dev_tmp+" speed=16 "+ file_iso
353 var_cmd = "wodim -v dev="+var_dev_tmp+" speed=16 "+ file_iso No newline at end of file
375
354 No newline at end of file
376 self.var_process.start('ls')
355 No newline at end of file
377 self.txtInfo.append("CMD: "+var_cmd)
356 self.var_process.start('ls')
378
No newline at end of file
379 # self.txtInfo.append("creando iso") No newline at end of file
357 self.txtInfo.append(var_cmd) No newline at end of file
358 No newline at end of file
380 # self.var_process.start(var_cmd)
359 # self.txtInfo.append("creando iso") No newline at end of file
381
360 # self.var_process.start(var_cmd) No newline at end of file
382
361 No newline at end of file
383 #----------------------------------------------------- Detener proceso de grabacion ---------------------------------------------------------------
362 No newline at end of file
384
363 #----------------------------------------------------- Detener proceso de grabacion --------------------------------------------------------------- No newline at end of file
385 @pyqtSignature("")
364 No newline at end of file
386 def on_btnStopburn_clicked(self):
365 @pyqtSignature("") No newline at end of file
387 """
366 def on_btnStopburn_clicked(self): No newline at end of file
388 Slot documentation goes here.
367 """ No newline at end of file
389 """
368 Slot documentation goes here. No newline at end of file
390 self.bool_state_burning = False
369 """ No newline at end of file
391 self.var_process.terminate() #Termina el proceso, si puede
370 self.bool_state_burning = False No newline at end of file
392 # self.var_process.kill() #Mata el proceso, no es la forma adecuada, solo usar si terminate() no funciona
371 self.var_process.terminate() #Termina el proceso, si puede No newline at end of file
393 self.txtInfo.append("SE DETUVO LA GRABACION MANUALMENTE")
372 # self.var_process.kill() #Mata el proceso, no es la forma adecuada, solo usar si terminate() no funciona No newline at end of file
394 functions2.enabled_items2(False, self)
373 No newline at end of file
395 self.btnStartburn.setText("Start Burn")
374 self.txtInfo.append("SE DETUVO LA GRABACION MANUALMENTE") No newline at end of file
396
375 functions2.enabled_items2(False, self) No newline at end of file
397
398 #----------------------------------------------------- Testeo de las unidades de grabacion --------------------------------------------------------------- No newline at end of file
376 No newline at end of file
399
377 No newline at end of file
400 @pyqtSignature("")
378 #----------------------------------------------------- Testeo de las unidades de grabacion --------------------------------------------------------------- No newline at end of file
401 def on_btnTdevA_clicked(self):
379 No newline at end of file
402 var_dev = str(self.txtDeviceA.text())
380 @pyqtSignature("") No newline at end of file
403 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
381 def on_btnTdevA_clicked(self): No newline at end of file
404 commands.getstatusoutput(var_cmd)
382 var_dev = str(self.txtDeviceA.text()) No newline at end of file
405
383 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
406 @pyqtSignature("")
384 commands.getstatusoutput(var_cmd) No newline at end of file
407 def on_btnTdevB_clicked(self):
385 No newline at end of file
408 var_dev = str(self.txtDeviceB.text())
386 @pyqtSignature("") No newline at end of file
409 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
387 def on_btnTdevB_clicked(self): No newline at end of file
410 commands.getstatusoutput(var_cmd)
388 var_dev = str(self.txtDeviceB.text()) No newline at end of file
411
389 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
412 @pyqtSignature("")
390 commands.getstatusoutput(var_cmd) No newline at end of file
413 def on_btnTdevC_clicked(self):
391 No newline at end of file
414 var_dev = str(self.txtDeviceC.text())
392 @pyqtSignature("") No newline at end of file
415 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
393 def on_btnTdevC_clicked(self): No newline at end of file
416 commands.getstatusoutput(var_cmd)
394 var_dev = str(self.txtDeviceC.text()) No newline at end of file
417
395 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
418 @pyqtSignature("")
396 commands.getstatusoutput(var_cmd) No newline at end of file
419 def on_btnTdevD_clicked(self):
397 No newline at end of file
420 var_dev = str(self.txtDeviceD.text())
398 @pyqtSignature("") No newline at end of file
421 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev
399 def on_btnTdevD_clicked(self): No newline at end of file
422 commands.getstatusoutput(var_cmd)
400 var_dev = str(self.txtDeviceD.text()) No newline at end of file
423
401 var_cmd = 'eject ' + var_dev + '; eject -t ' + var_dev No newline at end of file
424 L424: rhodecode diff rendering error
402 commands.getstatusoutput(var_cmd) No newline at end of file
425 L425: rhodecode diff rendering error
@@ -1,1022 +1,1022
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>809</width> No newline at end of file
9 <width>809</width>
10 <height>737</height> No newline at end of file
10 <height>737</height>
11 </rect> No newline at end of file
11 </rect>
12 </property> No newline at end of file
12 </property>
13 <property name="windowTitle"> No newline at end of file
13 <property name="windowTitle">
14 <string>JRO BACKUP MANAGER</string> No newline at end of file
14 <string>JRO BACKUP MANAGER</string>
15 </property> No newline at end of file
15 </property>
16 <widget class="QWidget" name="centralwidget"> No newline at end of file
16 <widget class="QWidget" name="centralwidget">
17 <layout class="QVBoxLayout" name="verticalLayout"> No newline at end of file
17 <layout class="QVBoxLayout" name="verticalLayout">
18 <item> No newline at end of file
18 <item>
19 <widget class="QTabWidget" name="tabWidget"> No newline at end of file
19 <widget class="QTabWidget" name="tabWidget">
20 <property name="enabled"> No newline at end of file
20 <property name="enabled">
21 <bool>true</bool> No newline at end of file
21 <bool>true</bool>
22 </property> No newline at end of file
22 </property>
23 <property name="sizePolicy"> No newline at end of file
23 <property name="sizePolicy">
24 <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> No newline at end of file
24 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
25 <horstretch>0</horstretch> No newline at end of file
25 <horstretch>0</horstretch>
26 <verstretch>0</verstretch> No newline at end of file
26 <verstretch>0</verstretch>
27 </sizepolicy> No newline at end of file
27 </sizepolicy>
28 </property> No newline at end of file
28 </property>
29 <property name="currentIndex"> No newline at end of file
29 <property name="currentIndex">
30 <number>0</number> No newline at end of file
30 <number>0</number>
31 </property> No newline at end of file
31 </property>
32 <widget class="QWidget" name="tabParameters"> No newline at end of file
32 <widget class="QWidget" name="tabParameters">
33 <property name="enabled"> No newline at end of file
33 <property name="enabled">
34 <bool>true</bool> No newline at end of file
34 <bool>true</bool>
35 </property> No newline at end of file
35 </property>
36 <attribute name="title"> No newline at end of file
36 <attribute name="title">
37 <string>Parameters</string> No newline at end of file
37 <string>Parameters</string>
38 </attribute> No newline at end of file
38 </attribute>
39 <layout class="QVBoxLayout" name="verticalLayout_2"> No newline at end of file
39 <layout class="QVBoxLayout" name="verticalLayout_2">
40 <item> No newline at end of file
40 <item>
41 <layout class="QHBoxLayout" name="horizontalLayout"> No newline at end of file
41 <layout class="QHBoxLayout" name="horizontalLayout">
42 <property name="sizeConstraint"> No newline at end of file
42 <property name="sizeConstraint">
43 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
43 <enum>QLayout::SetDefaultConstraint</enum>
44 </property> No newline at end of file
44 </property>
45 <item> No newline at end of file
45 <item>
46 <widget class="QLineEdit" name="txtDpath"> No newline at end of file
46 <widget class="QLineEdit" name="txtDpath">
47 <property name="sizePolicy"> No newline at end of file
47 <property name="sizePolicy">
48 <sizepolicy hsizetype="Preferred" vsizetype="Fixed"> No newline at end of file
48 <sizepolicy hsizetype="Preferred" vsizetype="Fixed">
49 <horstretch>0</horstretch> No newline at end of file
49 <horstretch>0</horstretch>
50 <verstretch>0</verstretch> No newline at end of file
50 <verstretch>0</verstretch>
51 </sizepolicy> No newline at end of file
51 </sizepolicy>
52 </property> No newline at end of file
52 </property>
53 </widget> No newline at end of file
53 </widget>
54 </item> No newline at end of file
54 </item>
55 <item> No newline at end of file
55 <item>
56 <widget class="QPushButton" name="btnDpath"> No newline at end of file
56 <widget class="QPushButton" name="btnDpath">
57 <property name="sizePolicy"> No newline at end of file
57 <property name="sizePolicy">
58 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
58 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
59 <horstretch>0</horstretch> No newline at end of file
59 <horstretch>0</horstretch>
60 <verstretch>0</verstretch> No newline at end of file
60 <verstretch>0</verstretch>
61 </sizepolicy> No newline at end of file
61 </sizepolicy>
62 </property> No newline at end of file
62 </property>
63 <property name="text"> No newline at end of file
63 <property name="text">
64 <string>Data Path</string> No newline at end of file
64 <string>Data Path</string>
65 </property> No newline at end of file
65 </property>
66 <property name="checkable"> No newline at end of file
66 <property name="checkable">
67 <bool>false</bool> No newline at end of file
67 <bool>false</bool>
68 </property> No newline at end of file
68 </property>
69 </widget> No newline at end of file
69 </widget>
70 </item> No newline at end of file
70 </item>
71 </layout> No newline at end of file
71 </layout>
72 </item> No newline at end of file
72 </item>
73 <item> No newline at end of file
73 <item>
74 <layout class="QHBoxLayout" name="horizontalLayout_3"> No newline at end of file
74 <layout class="QHBoxLayout" name="horizontalLayout_3">
75 <item> No newline at end of file
75 <item>
76 <widget class="QLineEdit" name="txtRpath"/> No newline at end of file
76 <widget class="QLineEdit" name="txtRpath"/>
77 </item> No newline at end of file
77 </item>
78 <item> No newline at end of file
78 <item>
79 <widget class="QPushButton" name="btnRpath"> No newline at end of file
79 <widget class="QPushButton" name="btnRpath">
80 <property name="text"> No newline at end of file
80 <property name="text">
81 <string>Resource Path</string> No newline at end of file
81 <string>Resource Path</string>
82 </property> No newline at end of file
82 </property>
83 </widget> No newline at end of file
83 </widget>
84 </item> No newline at end of file
84 </item>
85 </layout> No newline at end of file
85 </layout>
86 </item> No newline at end of file
86 </item>
87 <item> No newline at end of file
87 <item>
88 <widget class="QLabel" name="lblDtype"> No newline at end of file
88 <widget class="QLabel" name="lblDtype">
89 <property name="text"> No newline at end of file
89 <property name="text">
90 <string>Data Type</string> No newline at end of file
90 <string>Data Type</string>
91 </property> No newline at end of file
91 </property>
92 </widget> No newline at end of file
92 </widget>
93 </item> No newline at end of file
93 </item>
94 <item> No newline at end of file
94 <item>
95 <layout class="QHBoxLayout" name="horizontalLayout_4"> No newline at end of file
95 <layout class="QHBoxLayout" name="horizontalLayout_4">
96 <item> No newline at end of file
96 <item>
97 <widget class="QComboBox" name="lstDtype"> No newline at end of file
97 <widget class="QComboBox" name="lstDtype">
98 <item> No newline at end of file
98 <item>
99 <property name="text"> No newline at end of file
99 <property name="text">
100 <string>Raw Data</string> No newline at end of file
100 <string>Raw Data</string>
101 </property> No newline at end of file
101 </property>
102 </item> No newline at end of file
102 </item>
103 <item> No newline at end of file
103 <item>
104 <property name="text"> No newline at end of file
104 <property name="text">
105 <string>Process Data</string> No newline at end of file
105 <string>Process Data</string>
106 </property> No newline at end of file
106 </property>
107 </item> No newline at end of file
107 </item>
108 <item> No newline at end of file
108 <item>
109 <property name="text"> No newline at end of file
109 <property name="text">
110 <string>BLTR Data</string> No newline at end of file
110 <string>BLTR Data</string>
111 </property> No newline at end of file
111 </property>
112 </item> No newline at end of file
112 </item>
113 <item> No newline at end of file
113 <item>
114 <property name="text"> No newline at end of file
114 <property name="text">
115 <string>Other</string> No newline at end of file
115 <string>Other</string>
116 </property> No newline at end of file
116 </property>
117 </item> No newline at end of file
117 </item>
118 </widget> No newline at end of file
118 </widget>
119 </item> No newline at end of file
119 </item>
120 <item> No newline at end of file
120 <item>
121 <widget class="QLineEdit" name="txtDtype"> No newline at end of file
121 <widget class="QLineEdit" name="txtDtype">
122 <property name="text"> No newline at end of file
122 <property name="text">
123 <string>r</string> No newline at end of file
123 <string>r</string>
124 </property> No newline at end of file
124 </property>
125 <property name="readOnly"> No newline at end of file
125 <property name="readOnly">
126 <bool>true</bool> No newline at end of file
126 <bool>true</bool>
127 </property> No newline at end of file
127 </property>
128 </widget> No newline at end of file
128 </widget>
129 </item> No newline at end of file
129 </item>
130 <item> No newline at end of file
130 <item>
131 <widget class="QCheckBox" name="chkMST"> No newline at end of file
131 <widget class="QCheckBox" name="chkMST">
132 <property name="text"> No newline at end of file
132 <property name="text">
133 <string>MST-ISR Data</string> No newline at end of file
133 <string>MST-ISR Data</string>
134 </property> No newline at end of file
134 </property>
135 </widget> No newline at end of file
135 </widget>
136 </item> No newline at end of file
136 </item>
137 </layout> No newline at end of file
137 </layout>
138 </item> No newline at end of file
138 </item>
139 <item> No newline at end of file
139 <item>
140 <layout class="QHBoxLayout" name="horizontalLayout_6"> No newline at end of file
140 <layout class="QHBoxLayout" name="horizontalLayout_6">
141 <item> No newline at end of file
141 <item>
142 <widget class="QLabel" name="lblElabel"> No newline at end of file
142 <widget class="QLabel" name="lblElabel">
143 <property name="text"> No newline at end of file
143 <property name="text">
144 <string>Exp. Label at device</string> No newline at end of file
144 <string>Exp. Label at device</string>
145 </property> No newline at end of file
145 </property>
146 </widget> No newline at end of file
146 </widget>
147 </item> No newline at end of file
147 </item>
148 <item> No newline at end of file
148 <item>
149 <widget class="QLabel" name="lblCopys"> No newline at end of file
149 <widget class="QLabel" name="lblCopys">
150 <property name="text"> No newline at end of file
150 <property name="text">
151 <string>Copys</string> No newline at end of file
151 <string>Copys</string>
152 </property> No newline at end of file
152 </property>
153 </widget> No newline at end of file
153 </widget>
154 </item> No newline at end of file
154 </item>
155 </layout> No newline at end of file
155 </layout>
156 </item> No newline at end of file
156 </item>
157 <item> No newline at end of file
157 <item>
158 <layout class="QHBoxLayout" name="horizontalLayout_5"> No newline at end of file
158 <layout class="QHBoxLayout" name="horizontalLayout_5">
159 <item> No newline at end of file
159 <item>
160 <widget class="QLineEdit" name="txtElabel"/> No newline at end of file
160 <widget class="QLineEdit" name="txtElabel"/>
161 </item> No newline at end of file
161 </item>
162 <item> No newline at end of file
162 <item>
163 <widget class="QSpinBox" name="txtCopys"> No newline at end of file
163 <widget class="QSpinBox" name="txtCopys">
164 <property name="sizePolicy"> No newline at end of file
164 <property name="sizePolicy">
165 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
165 <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
166 <horstretch>0</horstretch> No newline at end of file
166 <horstretch>0</horstretch>
167 <verstretch>0</verstretch> No newline at end of file
167 <verstretch>0</verstretch>
168 </sizepolicy> No newline at end of file
168 </sizepolicy>
169 </property> No newline at end of file
169 </property>
170 <property name="minimum"> No newline at end of file
170 <property name="minimum">
171 <number>1</number> No newline at end of file
171 <number>1</number>
172 </property> No newline at end of file
172 </property>
173 </widget> No newline at end of file
173 </widget>
174 </item> No newline at end of file
174 </item>
175 </layout> No newline at end of file
175 </layout>
176 </item> No newline at end of file
176 </item>
177 <item> No newline at end of file
177 <item>
178 <layout class="QHBoxLayout" name="horizontalLayout_7"> No newline at end of file
178 <layout class="QHBoxLayout" name="horizontalLayout_7">
179 <item> No newline at end of file
179 <item>
180 <widget class="QLabel" name="lblStartDay"> No newline at end of file
180 <widget class="QLabel" name="lblStartDay">
181 <property name="text"> No newline at end of file
181 <property name="text">
182 <string>Start Day:</string> No newline at end of file
182 <string>Start Day:</string>
183 </property> No newline at end of file
183 </property>
184 </widget> No newline at end of file
184 </widget>
185 </item> No newline at end of file
185 </item>
186 <item> No newline at end of file
186 <item>
187 <widget class="QLabel" name="lblStopDay"> No newline at end of file
187 <widget class="QLabel" name="lblStopDay">
188 <property name="text"> No newline at end of file
188 <property name="text">
189 <string>Stop Day:</string> No newline at end of file
189 <string>Stop Day:</string>
190 </property> No newline at end of file
190 </property>
191 </widget> No newline at end of file
191 </widget>
192 </item> No newline at end of file
192 </item>
193 </layout> No newline at end of file
193 </layout>
194 </item> No newline at end of file
194 </item>
195 <item> No newline at end of file
195 <item>
196 <layout class="QHBoxLayout" name="horizontalLayout_8"> No newline at end of file
196 <layout class="QHBoxLayout" name="horizontalLayout_8">
197 <item> No newline at end of file
197 <item>
198 <widget class="QComboBox" name="lstStartDay"/> No newline at end of file
198 <widget class="QComboBox" name="lstStartDay"/>
199 </item> No newline at end of file
199 </item>
200 <item> No newline at end of file
200 <item>
201 <widget class="QComboBox" name="lstStopDay"/> No newline at end of file
201 <widget class="QComboBox" name="lstStopDay"/>
202 </item> No newline at end of file
202 </item>
203 </layout> No newline at end of file
203 </layout>
204 </item> No newline at end of file
204 </item>
205 </layout> No newline at end of file
205 </layout>
206 </widget> No newline at end of file
206 </widget>
207 <widget class="QWidget" name="tabDconfig"> No newline at end of file
207 <widget class="QWidget" name="tabDconfig">
208 <property name="enabled"> No newline at end of file
208 <property name="enabled">
209 <bool>true</bool> No newline at end of file
209 <bool>true</bool>
210 </property> No newline at end of file
210 </property>
211 <property name="sizePolicy"> No newline at end of file
211 <property name="sizePolicy">
212 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
212 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
213 <horstretch>0</horstretch> No newline at end of file
213 <horstretch>0</horstretch>
214 <verstretch>0</verstretch> No newline at end of file
214 <verstretch>0</verstretch>
215 </sizepolicy> No newline at end of file
215 </sizepolicy>
216 </property> No newline at end of file
216 </property>
217 <attribute name="title"> No newline at end of file
217 <attribute name="title">
218 <string>Device Config.</string> No newline at end of file
218 <string>Device Config.</string>
219 </attribute> No newline at end of file
219 </attribute>
220 <layout class="QVBoxLayout" name="verticalLayout_3"> No newline at end of file
220 <layout class="QVBoxLayout" name="verticalLayout_3">
221 <item> No newline at end of file
221 <item>
222 <layout class="QGridLayout" name="gridLayout"> No newline at end of file
222 <layout class="QGridLayout" name="gridLayout">
223 <item row="0" column="0"> No newline at end of file
223 <item row="0" column="0">
224 <layout class="QVBoxLayout" name="verticalLayout_15"> No newline at end of file
224 <layout class="QVBoxLayout" name="verticalLayout_15">
225 <item> No newline at end of file
225 <item>
226 <widget class="QCheckBox" name="chkDevA"> No newline at end of file
226 <widget class="QCheckBox" name="chkDevA">
227 <property name="text"> No newline at end of file
227 <property name="text">
228 <string>Dev A</string> No newline at end of file
228 <string>Dev A</string>
229 </property> No newline at end of file
229 </property>
230 <property name="checked"> No newline at end of file
230 <property name="checked">
231 <bool>true</bool> No newline at end of file
231 <bool>true</bool>
232 </property> No newline at end of file
232 </property>
233 </widget> No newline at end of file
233 </widget>
234 </item> No newline at end of file
234 </item>
235 <item> No newline at end of file
235 <item>
236 <widget class="QWidget" name="grpDevA" native="true"> No newline at end of file
236 <widget class="QWidget" name="grpDevA" native="true">
237 <layout class="QVBoxLayout" name="verticalLayout_11"> No newline at end of file
237 <layout class="QVBoxLayout" name="verticalLayout_11">
238 <item> No newline at end of file
238 <item>
239 <widget class="QLineEdit" name="txtDeviceA"/> No newline at end of file
239 <widget class="QLineEdit" name="txtDeviceA"/>
240 </item> No newline at end of file
240 </item>
241 <item> No newline at end of file
241 <item>
242 <widget class="QLineEdit" name="txtBspeedA"> No newline at end of file
242 <widget class="QLineEdit" name="txtBspeedA">
243 <property name="text"> No newline at end of file
243 <property name="text">
244 <string>16</string> No newline at end of file
244 <string>16</string>
245 </property> No newline at end of file
245 </property>
246 </widget> No newline at end of file
246 </widget>
247 </item> No newline at end of file
247 </item>
248 <item> No newline at end of file
248 <item>
249 <widget class="QLineEdit" name="txtBmodeA"> No newline at end of file
249 <widget class="QLineEdit" name="txtBmodeA">
250 <property name="text"> No newline at end of file
250 <property name="text">
251 <string>-sao</string> No newline at end of file
251 <string>-sao</string>
252 </property> No newline at end of file
252 </property>
253 </widget> No newline at end of file
253 </widget>
254 </item> No newline at end of file
254 </item>
255 <item> No newline at end of file
255 <item>
256 <widget class="QPushButton" name="btnTdevA"> No newline at end of file
256 <widget class="QPushButton" name="btnTdevA">
257 <property name="text"> No newline at end of file
257 <property name="text">
258 <string>Test DevA</string> No newline at end of file
258 <string>Test DevA</string>
259 </property> No newline at end of file
259 </property>
260 </widget> No newline at end of file
260 </widget>
261 </item> No newline at end of file
261 </item>
262 </layout> No newline at end of file
262 </layout>
263 </widget> No newline at end of file
263 </widget>
264 </item> No newline at end of file
264 </item>
265 </layout> No newline at end of file
265 </layout>
266 </item> No newline at end of file
266 </item>
267 <item row="0" column="1"> No newline at end of file
267 <item row="0" column="1">
268 <layout class="QVBoxLayout" name="verticalLayout_16"> No newline at end of file
268 <layout class="QVBoxLayout" name="verticalLayout_16">
269 <item> No newline at end of file
269 <item>
270 <widget class="QCheckBox" name="chkDevB"> No newline at end of file
270 <widget class="QCheckBox" name="chkDevB">
271 <property name="text"> No newline at end of file
271 <property name="text">
272 <string>Dev B</string> No newline at end of file
272 <string>Dev B</string>
273 </property> No newline at end of file
273 </property>
274 <property name="checked"> No newline at end of file
274 <property name="checked">
275 <bool>true</bool> No newline at end of file
275 <bool>true</bool>
276 </property> No newline at end of file
276 </property>
277 </widget> No newline at end of file
277 </widget>
278 </item> No newline at end of file
278 </item>
279 <item> No newline at end of file
279 <item>
280 <widget class="QWidget" name="grpDevB" native="true"> No newline at end of file
280 <widget class="QWidget" name="grpDevB" native="true">
281 <layout class="QVBoxLayout" name="verticalLayout_12"> No newline at end of file
281 <layout class="QVBoxLayout" name="verticalLayout_12">
282 <item> No newline at end of file
282 <item>
283 <widget class="QLineEdit" name="txtDeviceB"/> No newline at end of file
283 <widget class="QLineEdit" name="txtDeviceB"/>
284 </item> No newline at end of file
284 </item>
285 <item> No newline at end of file
285 <item>
286 <widget class="QLineEdit" name="txtBspeedB"> No newline at end of file
286 <widget class="QLineEdit" name="txtBspeedB">
287 <property name="text"> No newline at end of file
287 <property name="text">
288 <string>16</string> No newline at end of file
288 <string>16</string>
289 </property> No newline at end of file
289 </property>
290 </widget> No newline at end of file
290 </widget>
291 </item> No newline at end of file
291 </item>
292 <item> No newline at end of file
292 <item>
293 <widget class="QLineEdit" name="txtBmodeB"> No newline at end of file
293 <widget class="QLineEdit" name="txtBmodeB">
294 <property name="text"> No newline at end of file
294 <property name="text">
295 <string>-sao</string> No newline at end of file
295 <string>-sao</string>
296 </property> No newline at end of file
296 </property>
297 </widget> No newline at end of file
297 </widget>
298 </item> No newline at end of file
298 </item>
299 <item> No newline at end of file
299 <item>
300 <widget class="QPushButton" name="btnTdevB"> No newline at end of file
300 <widget class="QPushButton" name="btnTdevB">
301 <property name="text"> No newline at end of file
301 <property name="text">
302 <string>Test DevB</string> No newline at end of file
302 <string>Test DevB</string>
303 </property> No newline at end of file
303 </property>
304 </widget> No newline at end of file
304 </widget>
305 </item> No newline at end of file
305 </item>
306 </layout> No newline at end of file
306 </layout>
307 </widget> No newline at end of file
307 </widget>
308 </item> No newline at end of file
308 </item>
309 </layout> No newline at end of file
309 </layout>
310 </item> No newline at end of file
310 </item>
311 <item row="0" column="2"> No newline at end of file
311 <item row="0" column="2">
312 <layout class="QVBoxLayout" name="verticalLayout_17"> No newline at end of file
312 <layout class="QVBoxLayout" name="verticalLayout_17">
313 <item> No newline at end of file
313 <item>
314 <widget class="QCheckBox" name="chkDevC"> No newline at end of file
314 <widget class="QCheckBox" name="chkDevC">
315 <property name="text"> No newline at end of file
315 <property name="text">
316 <string>Dev C</string> No newline at end of file
316 <string>Dev C</string>
317 </property> No newline at end of file
317 </property>
318 <property name="checked"> No newline at end of file
318 <property name="checked">
319 <bool>true</bool> No newline at end of file
319 <bool>true</bool>
320 </property> No newline at end of file
320 </property>
321 </widget> No newline at end of file
321 </widget>
322 </item> No newline at end of file
322 </item>
323 <item> No newline at end of file
323 <item>
324 <widget class="QWidget" name="grpDevC" native="true"> No newline at end of file
324 <widget class="QWidget" name="grpDevC" native="true">
325 <layout class="QVBoxLayout" name="verticalLayout_13"> No newline at end of file
325 <layout class="QVBoxLayout" name="verticalLayout_13">
326 <item> No newline at end of file
326 <item>
327 <widget class="QLineEdit" name="txtDeviceC"/> No newline at end of file
327 <widget class="QLineEdit" name="txtDeviceC"/>
328 </item> No newline at end of file
328 </item>
329 <item> No newline at end of file
329 <item>
330 <widget class="QLineEdit" name="txtBspeedC"> No newline at end of file
330 <widget class="QLineEdit" name="txtBspeedC">
331 <property name="text"> No newline at end of file
331 <property name="text">
332 <string>16</string> No newline at end of file
332 <string>16</string>
333 </property> No newline at end of file
333 </property>
334 </widget> No newline at end of file
334 </widget>
335 </item> No newline at end of file
335 </item>
336 <item> No newline at end of file
336 <item>
337 <widget class="QLineEdit" name="txtBmodeC"> No newline at end of file
337 <widget class="QLineEdit" name="txtBmodeC">
338 <property name="text"> No newline at end of file
338 <property name="text">
339 <string>-sao</string> No newline at end of file
339 <string>-sao</string>
340 </property> No newline at end of file
340 </property>
341 </widget> No newline at end of file
341 </widget>
342 </item> No newline at end of file
342 </item>
343 <item> No newline at end of file
343 <item>
344 <widget class="QPushButton" name="btnTdevC"> No newline at end of file
344 <widget class="QPushButton" name="btnTdevC">
345 <property name="text"> No newline at end of file
345 <property name="text">
346 <string>Test DevC</string> No newline at end of file
346 <string>Test DevC</string>
347 </property> No newline at end of file
347 </property>
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 </widget> No newline at end of file
351 </widget>
352 </item> No newline at end of file
352 </item>
353 </layout> No newline at end of file
353 </layout>
354 </item> No newline at end of file
354 </item>
355 <item row="0" column="3"> No newline at end of file
355 <item row="0" column="3">
356 <layout class="QVBoxLayout" name="verticalLayout_18"> No newline at end of file
356 <layout class="QVBoxLayout" name="verticalLayout_18">
357 <item> No newline at end of file
357 <item>
358 <widget class="QCheckBox" name="chkDevD"> No newline at end of file
358 <widget class="QCheckBox" name="chkDevD">
359 <property name="text"> No newline at end of file
359 <property name="text">
360 <string>Dev D</string> No newline at end of file
360 <string>Dev D</string>
361 </property> No newline at end of file
361 </property>
362 <property name="checked"> No newline at end of file
362 <property name="checked">
363 <bool>true</bool> No newline at end of file
363 <bool>true</bool>
364 </property> No newline at end of file
364 </property>
365 </widget> No newline at end of file
365 </widget>
366 </item> No newline at end of file
366 </item>
367 <item> No newline at end of file
367 <item>
368 <widget class="QWidget" name="grpDevD" native="true"> No newline at end of file
368 <widget class="QWidget" name="grpDevD" native="true">
369 <layout class="QVBoxLayout" name="verticalLayout_14"> No newline at end of file
369 <layout class="QVBoxLayout" name="verticalLayout_14">
370 <item> No newline at end of file
370 <item>
371 <widget class="QLineEdit" name="txtDeviceD"/> No newline at end of file
371 <widget class="QLineEdit" name="txtDeviceD"/>
372 </item> No newline at end of file
372 </item>
373 <item> No newline at end of file
373 <item>
374 <widget class="QLineEdit" name="txtBspeedD"> No newline at end of file
374 <widget class="QLineEdit" name="txtBspeedD">
375 <property name="text"> No newline at end of file
375 <property name="text">
376 <string>16</string> No newline at end of file
376 <string>16</string>
377 </property> No newline at end of file
377 </property>
378 </widget> No newline at end of file
378 </widget>
379 </item> No newline at end of file
379 </item>
380 <item> No newline at end of file
380 <item>
381 <widget class="QLineEdit" name="txtBmodeD"> No newline at end of file
381 <widget class="QLineEdit" name="txtBmodeD">
382 <property name="text"> No newline at end of file
382 <property name="text">
383 <string>-sao</string> No newline at end of file
383 <string>-sao</string>
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="QPushButton" name="btnTdevD"> No newline at end of file
388 <widget class="QPushButton" name="btnTdevD">
389 <property name="text"> No newline at end of file
389 <property name="text">
390 <string>Test DevD</string> No newline at end of file
390 <string>Test DevD</string>
391 </property> No newline at end of file
391 </property>
392 </widget> No newline at end of file
392 </widget>
393 </item> No newline at end of file
393 </item>
394 </layout> No newline at end of file
394 </layout>
395 </widget> No newline at end of file
395 </widget>
396 </item> No newline at end of file
396 </item>
397 </layout> No newline at end of file
397 </layout>
398 </item> No newline at end of file
398 </item>
399 <item row="0" column="4"> No newline at end of file
399 <item row="0" column="4">
400 <layout class="QVBoxLayout" name="verticalLayout_19"> No newline at end of file
400 <layout class="QVBoxLayout" name="verticalLayout_19">
401 <item> No newline at end of file
401 <item>
402 <widget class="QLabel" name="label_2"> No newline at end of file
402 <widget class="QLabel" name="label_2">
403 <property name="text"> No newline at end of file
403 <property name="text">
404 <string/> No newline at end of file
404 <string/>
405 </property> No newline at end of file
405 </property>
406 </widget> No newline at end of file
406 </widget>
407 </item> No newline at end of file
407 </item>
408 <item> No newline at end of file
408 <item>
409 <widget class="QLabel" name="lblDevice"> No newline at end of file
409 <widget class="QLabel" name="lblDevice">
410 <property name="text"> No newline at end of file
410 <property name="text">
411 <string>Device</string> No newline at end of file
411 <string>Device</string>
412 </property> No newline at end of file
412 </property>
413 </widget> No newline at end of file
413 </widget>
414 </item> No newline at end of file
414 </item>
415 <item> No newline at end of file
415 <item>
416 <widget class="QLabel" name="lblBspeed"> No newline at end of file
416 <widget class="QLabel" name="lblBspeed">
417 <property name="text"> No newline at end of file
417 <property name="text">
418 <string>Burn Speed</string> No newline at end of file
418 <string>Burn Speed</string>
419 </property> No newline at end of file
419 </property>
420 </widget> No newline at end of file
420 </widget>
421 </item> No newline at end of file
421 </item>
422 <item> No newline at end of file
422 <item>
423 <widget class="QLabel" name="lblBmode"> No newline at end of file
423 <widget class="QLabel" name="lblBmode">
424 <property name="text"> No newline at end of file
424 <property name="text">
425 <string>Burn Mode</string> No newline at end of file
425 <string>Burn Mode</string>
426 </property> No newline at end of file
426 </property>
427 </widget> No newline at end of file
427 </widget>
428 </item> No newline at end of file
428 </item>
429 <item> No newline at end of file
429 <item>
430 <widget class="QLabel" name="label"> No newline at end of file
430 <widget class="QLabel" name="label">
431 <property name="text"> No newline at end of file
431 <property name="text">
432 <string/> No newline at end of file
432 <string/>
433 </property> No newline at end of file
433 </property>
434 </widget> No newline at end of file
434 </widget>
435 </item> No newline at end of file
435 </item>
436 </layout> No newline at end of file
436 </layout>
437 </item> No newline at end of file
437 </item>
438 </layout> No newline at end of file
438 </layout>
439 </item> No newline at end of file
439 </item>
440 <item> No newline at end of file
440 <item>
441 <layout class="QHBoxLayout" name="horizontalLayout_9"> No newline at end of file
441 <layout class="QHBoxLayout" name="horizontalLayout_9">
442 <property name="sizeConstraint"> No newline at end of file
442 <property name="sizeConstraint">
443 <enum>QLayout::SetFixedSize</enum> No newline at end of file
443 <enum>QLayout::SetFixedSize</enum>
444 </property> No newline at end of file
444 </property>
445 <item> No newline at end of file
445 <item>
446 <widget class="QLabel" name="lblBprocess"> No newline at end of file
446 <widget class="QLabel" name="lblBprocess">
447 <property name="sizePolicy"> No newline at end of file
447 <property name="sizePolicy">
448 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
448 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
449 <horstretch>0</horstretch> No newline at end of file
449 <horstretch>0</horstretch>
450 <verstretch>0</verstretch> No newline at end of file
450 <verstretch>0</verstretch>
451 </sizepolicy> No newline at end of file
451 </sizepolicy>
452 </property> No newline at end of file
452 </property>
453 <property name="text"> No newline at end of file
453 <property name="text">
454 <string>Burning process</string> No newline at end of file
454 <string>Burning process</string>
455 </property> No newline at end of file
455 </property>
456 </widget> No newline at end of file
456 </widget>
457 </item> No newline at end of file
457 </item>
458 <item> No newline at end of file
458 <item>
459 <widget class="QCheckBox" name="chkSimultaneously"> No newline at end of file
459 <widget class="QCheckBox" name="chkSimultaneously">
460 <property name="sizePolicy"> No newline at end of file
460 <property name="sizePolicy">
461 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
461 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
462 <horstretch>0</horstretch> No newline at end of file
462 <horstretch>0</horstretch>
463 <verstretch>0</verstretch> No newline at end of file
463 <verstretch>0</verstretch>
464 </sizepolicy> No newline at end of file
464 </sizepolicy>
465 </property> No newline at end of file
465 </property>
466 <property name="text"> No newline at end of file
466 <property name="text">
467 <string>Simultaneously</string> No newline at end of file
467 <string>Simultaneously</string>
468 </property> No newline at end of file
468 </property>
469 </widget> No newline at end of file
469 </widget>
470 </item> No newline at end of file
470 </item>
471 <item> No newline at end of file
471 <item>
472 <widget class="QCheckBox" name="chkSequentially"> No newline at end of file
472 <widget class="QCheckBox" name="chkSequentially">
473 <property name="sizePolicy"> No newline at end of file
473 <property name="sizePolicy">
474 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
474 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
475 <horstretch>0</horstretch> No newline at end of file
475 <horstretch>0</horstretch>
476 <verstretch>0</verstretch> No newline at end of file
476 <verstretch>0</verstretch>
477 </sizepolicy> No newline at end of file
477 </sizepolicy>
478 </property> No newline at end of file
478 </property>
479 <property name="text"> No newline at end of file
479 <property name="text">
480 <string>Sequentially</string> No newline at end of file
480 <string>Sequentially</string>
481 </property> No newline at end of file
481 </property>
482 <property name="checked"> No newline at end of file
482 <property name="checked">
483 <bool>true</bool> No newline at end of file
483 <bool>true</bool>
484 </property> No newline at end of file
484 </property>
485 </widget> No newline at end of file
485 </widget>
486 </item> No newline at end of file
486 </item>
487 </layout> No newline at end of file
487 </layout>
488 </item> No newline at end of file
488 </item>
489 <item> No newline at end of file
489 <item>
490 <layout class="QHBoxLayout" name="horizontalLayout_11"> No newline at end of file
490 <layout class="QHBoxLayout" name="horizontalLayout_11">
491 <property name="spacing"> No newline at end of file
491 <property name="spacing">
492 <number>6</number> No newline at end of file
492 <number>6</number>
493 </property> No newline at end of file
493 </property>
494 <property name="sizeConstraint"> No newline at end of file
494 <property name="sizeConstraint">
495 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
495 <enum>QLayout::SetDefaultConstraint</enum>
496 </property> No newline at end of file
496 </property>
497 <item> No newline at end of file
497 <item>
498 <widget class="QLabel" name="lblDcapacity"> No newline at end of file
498 <widget class="QLabel" name="lblDcapacity">
499 <property name="sizePolicy"> No newline at end of file
499 <property name="sizePolicy">
500 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
500 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
501 <horstretch>0</horstretch> No newline at end of file
501 <horstretch>0</horstretch>
502 <verstretch>0</verstretch> No newline at end of file
502 <verstretch>0</verstretch>
503 </sizepolicy> No newline at end of file
503 </sizepolicy>
504 </property> No newline at end of file
504 </property>
505 <property name="text"> No newline at end of file
505 <property name="text">
506 <string>Device Capacity (MB)</string> No newline at end of file
506 <string>Device Capacity (MB)</string>
507 </property> No newline at end of file
507 </property>
508 </widget> No newline at end of file
508 </widget>
509 </item> No newline at end of file
509 </item>
510 <item> No newline at end of file
510 <item>
511 <widget class="QCheckBox" name="chkSalert"> No newline at end of file
511 <widget class="QCheckBox" name="chkSalert">
512 <property name="sizePolicy"> No newline at end of file
512 <property name="sizePolicy">
513 <sizepolicy hsizetype="Fixed" vsizetype="Fixed"> No newline at end of file
513 <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
514 <horstretch>0</horstretch> No newline at end of file
514 <horstretch>0</horstretch>
515 <verstretch>0</verstretch> No newline at end of file
515 <verstretch>0</verstretch>
516 </sizepolicy> No newline at end of file
516 </sizepolicy>
517 </property> No newline at end of file
517 </property>
518 <property name="text"> No newline at end of file
518 <property name="text">
519 <string>Sound Alert</string> No newline at end of file
519 <string>Sound Alert</string>
520 </property> No newline at end of file
520 </property>
521 </widget> No newline at end of file
521 </widget>
522 </item> No newline at end of file
522 </item>
523 </layout> No newline at end of file
523 </layout>
524 </item> No newline at end of file
524 </item>
525 <item> No newline at end of file
525 <item>
526 <layout class="QHBoxLayout" name="horizontalLayout_10"> No newline at end of file
526 <layout class="QHBoxLayout" name="horizontalLayout_10">
527 <property name="sizeConstraint"> No newline at end of file
527 <property name="sizeConstraint">
528 <enum>QLayout::SetFixedSize</enum> No newline at end of file
528 <enum>QLayout::SetFixedSize</enum>
529 </property> No newline at end of file
529 </property>
530 <item> No newline at end of file
530 <item>
531 <widget class="QComboBox" name="lstDcapacity"> No newline at end of file
531 <widget class="QComboBox" name="lstDcapacity">
532 <property name="currentIndex"> No newline at end of file
532 <property name="currentIndex">
533 <number>2</number> No newline at end of file
533 <number>2</number>
534 </property> No newline at end of file
534 </property>
535 <item> No newline at end of file
535 <item>
536 <property name="text"> No newline at end of file
536 <property name="text">
537 <string>BluRay [25.0 GB]</string> No newline at end of file
537 <string>BluRay [25.0 GB]</string>
538 </property> No newline at end of file
538 </property>
539 </item> No newline at end of file
539 </item>
540 <item> No newline at end of file
540 <item>
541 <property name="text"> No newline at end of file
541 <property name="text">
542 <string>DVD2 [8.5 GB]</string> No newline at end of file
542 <string>DVD2 [8.5 GB]</string>
543 </property> No newline at end of file
543 </property>
544 </item> No newline at end of file
544 </item>
545 <item> No newline at end of file
545 <item>
546 <property name="text"> No newline at end of file
546 <property name="text">
547 <string>DVD1 [4.7 GB]</string> No newline at end of file
547 <string>DVD1 [4.7 GB]</string>
548 </property> No newline at end of file
548 </property>
549 </item> No newline at end of file
549 </item>
550 <item> No newline at end of file
550 <item>
551 <property name="text"> No newline at end of file
551 <property name="text">
552 <string>CD [0.7 GB]</string> No newline at end of file
552 <string>CD [0.7 GB]</string>
553 </property> No newline at end of file
553 </property>
554 </item> No newline at end of file
554 </item>
555 <item> No newline at end of file
555 <item>
556 <property name="text"> No newline at end of file
556 <property name="text">
557 <string>Other [? GB]</string> No newline at end of file
557 <string>Other [? GB]</string>
558 </property> No newline at end of file
558 </property>
559 </item> No newline at end of file
559 </item>
560 </widget> No newline at end of file
560 </widget>
561 </item> No newline at end of file
561 </item>
562 <item> No newline at end of file
562 <item>
563 <widget class="QDoubleSpinBox" name="txtDcapacity"> No newline at end of file
563 <widget class="QDoubleSpinBox" name="txtDcapacity">
564 <property name="sizePolicy"> No newline at end of file
564 <property name="sizePolicy">
565 <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> No newline at end of file
565 <sizepolicy hsizetype="Expanding" vsizetype="Fixed">
566 <horstretch>0</horstretch> No newline at end of file
566 <horstretch>0</horstretch>
567 <verstretch>0</verstretch> No newline at end of file
567 <verstretch>0</verstretch>
568 </sizepolicy> No newline at end of file
568 </sizepolicy>
569 </property> No newline at end of file
569 </property>
570 <property name="readOnly"> No newline at end of file
570 <property name="readOnly">
571 <bool>true</bool> No newline at end of file
571 <bool>true</bool>
572 </property> No newline at end of file
572 </property>
573 <property name="minimum"> No newline at end of file
573 <property name="minimum">
574 <double>100.000000000000000</double> No newline at end of file
574 <double>100.000000000000000</double>
575 </property> No newline at end of file
575 </property>
576 <property name="maximum"> No newline at end of file
576 <property name="maximum">
577 <double>99999.990000000005239</double> No newline at end of file
577 <double>99999.990000000005239</double>
578 </property> No newline at end of file
578 </property>
579 <property name="value"> No newline at end of file
579 <property name="value">
580 <double>4482.270000000000437</double> No newline at end of file
580 <double>4482.270000000000437</double>
581 </property> No newline at end of file
581 </property>
582 </widget> No newline at end of file
582 </widget>
583 </item> No newline at end of file
583 </item>
584 <item> No newline at end of file
584 <item>
585 <widget class="QCheckBox" name="chkPSgraphic"> No newline at end of file
585 <widget class="QCheckBox" name="chkPSgraphic">
586 <property name="text"> No newline at end of file
586 <property name="text">
587 <string>PS Graphic</string> No newline at end of file
587 <string>PS Graphic</string>
588 </property> No newline at end of file
588 </property>
589 </widget> No newline at end of file
589 </widget>
590 </item> No newline at end of file
590 </item>
591 <item> No newline at end of file
591 <item>
592 <widget class="QLineEdit" name="lineEdit_17"/> No newline at end of file
592 <widget class="QLineEdit" name="lineEdit_17"/>
593 </item> No newline at end of file
593 </item>
594 </layout> No newline at end of file
594 </layout>
595 </item> No newline at end of file
595 </item>
596 </layout> No newline at end of file
596 </layout>
597 </widget> No newline at end of file
597 </widget>
598 <widget class="QWidget" name="tabSburn"> No newline at end of file
598 <widget class="QWidget" name="tabSburn">
599 <attribute name="title"> No newline at end of file
599 <attribute name="title">
600 <string>Status Burn</string> No newline at end of file
600 <string>Status Burn</string>
601 </attribute> No newline at end of file
601 </attribute>
602 <layout class="QVBoxLayout" name="verticalLayout_4"> No newline at end of file
602 <layout class="QVBoxLayout" name="verticalLayout_4">
603 <item> No newline at end of file
603 <item>
604 <widget class="QWidget" name="widget_2" native="true"> No newline at end of file
604 <widget class="QWidget" name="widget_2" native="true">
605 <property name="sizePolicy"> No newline at end of file
605 <property name="sizePolicy">
606 <sizepolicy hsizetype="Minimum" vsizetype="Minimum"> No newline at end of file
606 <sizepolicy hsizetype="Minimum" vsizetype="Minimum">
607 <horstretch>0</horstretch> No newline at end of file
607 <horstretch>0</horstretch>
608 <verstretch>0</verstretch> No newline at end of file
608 <verstretch>0</verstretch>
609 </sizepolicy> No newline at end of file
609 </sizepolicy>
610 </property> No newline at end of file
610 </property>
611 <property name="maximumSize"> No newline at end of file
611 <property name="maximumSize">
612 <size> No newline at end of file
612 <size>
613 <width>500</width> No newline at end of file
613 <width>500</width>
614 <height>16777215</height> No newline at end of file
614 <height>16777215</height>
615 </size> No newline at end of file
615 </size>
616 </property> No newline at end of file
616 </property>
617 <layout class="QGridLayout" name="gridLayout_2"> No newline at end of file
617 <layout class="QGridLayout" name="gridLayout_2">
618 <item row="3" column="2"> No newline at end of file
618 <item row="3" column="2">
619 <widget class="QLineEdit" name="txtSTATUSb"> No newline at end of file
619 <widget class="QLineEdit" name="txtSTATUSb">
620 <property name="readOnly"> No newline at end of file
620 <property name="readOnly">
621 <bool>true</bool> No newline at end of file
621 <bool>true</bool>
622 </property> No newline at end of file
622 </property>
623 </widget> No newline at end of file
623 </widget>
624 </item> No newline at end of file
624 </item>
625 <item row="5" column="1"> No newline at end of file
625 <item row="5" column="1">
626 <widget class="QLineEdit" name="txtINFOa"> No newline at end of file
626 <widget class="QLineEdit" name="txtINFOa">
627 <property name="readOnly"> No newline at end of file
627 <property name="readOnly">
628 <bool>true</bool> No newline at end of file
628 <bool>true</bool>
629 </property> No newline at end of file
629 </property>
630 </widget> No newline at end of file
630 </widget>
631 </item> No newline at end of file
631 </item>
632 <item row="3" column="1"> No newline at end of file
632 <item row="3" column="1">
633 <widget class="QLineEdit" name="txtSTATUSa"> No newline at end of file
633 <widget class="QLineEdit" name="txtSTATUSa">
634 <property name="readOnly"> No newline at end of file
634 <property name="readOnly">
635 <bool>true</bool> No newline at end of file
635 <bool>true</bool>
636 </property> No newline at end of file
636 </property>
637 </widget> No newline at end of file
637 </widget>
638 </item> No newline at end of file
638 </item>
639 <item row="5" column="2"> No newline at end of file
639 <item row="5" column="2">
640 <widget class="QLineEdit" name="txtINFOb"> No newline at end of file
640 <widget class="QLineEdit" name="txtINFOb">
641 <property name="readOnly"> No newline at end of file
641 <property name="readOnly">
642 <bool>true</bool> No newline at end of file
642 <bool>true</bool>
643 </property> No newline at end of file
643 </property>
644 </widget> No newline at end of file
644 </widget>
645 </item> No newline at end of file
645 </item>
646 <item row="3" column="3"> No newline at end of file
646 <item row="3" column="3">
647 <widget class="QLineEdit" name="txtSTATUSc"> No newline at end of file
647 <widget class="QLineEdit" name="txtSTATUSc">
648 <property name="readOnly"> No newline at end of file
648 <property name="readOnly">
649 <bool>true</bool> No newline at end of file
649 <bool>true</bool>
650 </property> No newline at end of file
650 </property>
651 </widget> No newline at end of file
651 </widget>
652 </item> No newline at end of file
652 </item>
653 <item row="3" column="4"> No newline at end of file
653 <item row="3" column="4">
654 <widget class="QLineEdit" name="txtSTATUSd"> No newline at end of file
654 <widget class="QLineEdit" name="txtSTATUSd">
655 <property name="readOnly"> No newline at end of file
655 <property name="readOnly">
656 <bool>true</bool> No newline at end of file
656 <bool>true</bool>
657 </property> No newline at end of file
657 </property>
658 </widget> No newline at end of file
658 </widget>
659 </item> No newline at end of file
659 </item>
660 <item row="5" column="4"> No newline at end of file
660 <item row="5" column="4">
661 <widget class="QLineEdit" name="txtINFOd"> No newline at end of file
661 <widget class="QLineEdit" name="txtINFOd">
662 <property name="readOnly"> No newline at end of file
662 <property name="readOnly">
663 <bool>true</bool> No newline at end of file
663 <bool>true</bool>
664 </property> No newline at end of file
664 </property>
665 </widget> No newline at end of file
665 </widget>
666 </item> No newline at end of file
666 </item>
667 <item row="6" column="1"> No newline at end of file
667 <item row="6" column="1">
668 <widget class="QLineEdit" name="txtSETa"> No newline at end of file
668 <widget class="QLineEdit" name="txtSETa">
669 <property name="readOnly"> No newline at end of file
669 <property name="readOnly">
670 <bool>true</bool> No newline at end of file
670 <bool>true</bool>
671 </property> No newline at end of file
671 </property>
672 </widget> No newline at end of file
672 </widget>
673 </item> No newline at end of file
673 </item>
674 <item row="6" column="2"> No newline at end of file
674 <item row="6" column="2">
675 <widget class="QLineEdit" name="txtSETb"> No newline at end of file
675 <widget class="QLineEdit" name="txtSETb">
676 <property name="readOnly"> No newline at end of file
676 <property name="readOnly">
677 <bool>true</bool> No newline at end of file
677 <bool>true</bool>
678 </property> No newline at end of file
678 </property>
679 </widget> No newline at end of file
679 </widget>
680 </item> No newline at end of file
680 </item>
681 <item row="6" column="3"> No newline at end of file
681 <item row="6" column="3">
682 <widget class="QLineEdit" name="txtSETc"> No newline at end of file
682 <widget class="QLineEdit" name="txtSETc">
683 <property name="readOnly"> No newline at end of file
683 <property name="readOnly">
684 <bool>true</bool> No newline at end of file
684 <bool>true</bool>
685 </property> No newline at end of file
685 </property>
686 </widget> No newline at end of file
686 </widget>
687 </item> No newline at end of file
687 </item>
688 <item row="6" column="4"> No newline at end of file
688 <item row="6" column="4">
689 <widget class="QLineEdit" name="txtSETd"> No newline at end of file
689 <widget class="QLineEdit" name="txtSETd">
690 <property name="readOnly"> No newline at end of file
690 <property name="readOnly">
691 <bool>true</bool> No newline at end of file
691 <bool>true</bool>
692 </property> No newline at end of file
692 </property>
693 </widget> No newline at end of file
693 </widget>
694 </item> No newline at end of file
694 </item>
695 <item row="3" column="0"> No newline at end of file
695 <item row="3" column="0">
696 <widget class="QLabel" name="lblSTATUS"> No newline at end of file
696 <widget class="QLabel" name="lblSTATUS">
697 <property name="text"> No newline at end of file
697 <property name="text">
698 <string>STATUS</string> No newline at end of file
698 <string>STATUS</string>
699 </property> No newline at end of file
699 </property>
700 </widget> No newline at end of file
700 </widget>
701 </item> No newline at end of file
701 </item>
702 <item row="5" column="0"> No newline at end of file
702 <item row="5" column="0">
703 <widget class="QLabel" name="lblINFO"> No newline at end of file
703 <widget class="QLabel" name="lblINFO">
704 <property name="text"> No newline at end of file
704 <property name="text">
705 <string>INFO</string> No newline at end of file
705 <string>INFO</string>
706 </property> No newline at end of file
706 </property>
707 </widget> No newline at end of file
707 </widget>
708 </item> No newline at end of file
708 </item>
709 <item row="6" column="0"> No newline at end of file
709 <item row="6" column="0">
710 <widget class="QLabel" name="lblSET"> No newline at end of file
710 <widget class="QLabel" name="lblSET">
711 <property name="text"> No newline at end of file
711 <property name="text">
712 <string>SET</string> No newline at end of file
712 <string>SET</string>
713 </property> No newline at end of file
713 </property>
714 </widget> No newline at end of file
714 </widget>
715 </item> No newline at end of file
715 </item>
716 <item row="0" column="1"> No newline at end of file
716 <item row="0" column="1">
717 <widget class="QLabel" name="lblDevA"> No newline at end of file
717 <widget class="QLabel" name="lblDevA">
718 <property name="text"> No newline at end of file
718 <property name="text">
719 <string>DEV A</string> No newline at end of file
719 <string>DEV A</string>
720 </property> No newline at end of file
720 </property>
721 <property name="alignment"> No newline at end of file
721 <property name="alignment">
722 <set>Qt::AlignCenter</set> No newline at end of file
722 <set>Qt::AlignCenter</set>
723 </property> No newline at end of file
723 </property>
724 </widget> No newline at end of file
724 </widget>
725 </item> No newline at end of file
725 </item>
726 <item row="0" column="2"> No newline at end of file
726 <item row="0" column="2">
727 <widget class="QLabel" name="lblDevB"> No newline at end of file
727 <widget class="QLabel" name="lblDevB">
728 <property name="text"> No newline at end of file
728 <property name="text">
729 <string>DEV B</string> No newline at end of file
729 <string>DEV B</string>
730 </property> No newline at end of file
730 </property>
731 <property name="alignment"> No newline at end of file
731 <property name="alignment">
732 <set>Qt::AlignCenter</set> No newline at end of file
732 <set>Qt::AlignCenter</set>
733 </property> No newline at end of file
733 </property>
734 </widget> No newline at end of file
734 </widget>
735 </item> No newline at end of file
735 </item>
736 <item row="0" column="3"> No newline at end of file
736 <item row="0" column="3">
737 <widget class="QLabel" name="lblDevC"> No newline at end of file
737 <widget class="QLabel" name="lblDevC">
738 <property name="text"> No newline at end of file
738 <property name="text">
739 <string>DEV C</string> No newline at end of file
739 <string>DEV C</string>
740 </property> No newline at end of file
740 </property>
741 <property name="alignment"> No newline at end of file
741 <property name="alignment">
742 <set>Qt::AlignCenter</set> No newline at end of file
742 <set>Qt::AlignCenter</set>
743 </property> No newline at end of file
743 </property>
744 </widget> No newline at end of file
744 </widget>
745 </item> No newline at end of file
745 </item>
746 <item row="0" column="4"> No newline at end of file
746 <item row="0" column="4">
747 <widget class="QLabel" name="lblDevD"> No newline at end of file
747 <widget class="QLabel" name="lblDevD">
748 <property name="text"> No newline at end of file
748 <property name="text">
749 <string>DEV D</string> No newline at end of file
749 <string>DEV D</string>
750 </property> No newline at end of file
750 </property>
751 <property name="alignment"> No newline at end of file
751 <property name="alignment">
752 <set>Qt::AlignCenter</set> No newline at end of file
752 <set>Qt::AlignCenter</set>
753 </property> No newline at end of file
753 </property>
754 </widget> No newline at end of file
754 </widget>
755 </item> No newline at end of file
755 </item>
756 <item row="5" column="3"> No newline at end of file
756 <item row="5" column="3">
757 <widget class="QLineEdit" name="txtINFOc"> No newline at end of file
757 <widget class="QLineEdit" name="txtINFOc">
758 <property name="readOnly"> No newline at end of file
758 <property name="readOnly">
759 <bool>true</bool> No newline at end of file
759 <bool>true</bool>
760 </property> No newline at end of file
760 </property>
761 </widget> No newline at end of file
761 </widget>
762 </item> No newline at end of file
762 </item>
763 </layout> No newline at end of file
763 </layout>
764 </widget> No newline at end of file
764 </widget>
765 </item> No newline at end of file
765 </item>
766 <item> No newline at end of file
766 <item>
767 <widget class="QTextEdit" name="txtSburn"> No newline at end of file
767 <widget class="QTextEdit" name="txtSburn">
768 <property name="readOnly"> No newline at end of file
768 <property name="readOnly">
769 <bool>true</bool> No newline at end of file
769 <bool>true</bool>
770 </property> No newline at end of file
770 </property>
771 </widget> No newline at end of file
771 </widget>
772 </item> No newline at end of file
772 </item>
773 </layout> No newline at end of file
773 </layout>
774 </widget> No newline at end of file
774 </widget>
775 </widget> No newline at end of file
775 </widget>
776 </item> No newline at end of file
776 </item>
777 <item> No newline at end of file
777 <item>
778 <widget class="QTextEdit" name="txtInfo"> No newline at end of file
778 <widget class="QTextEdit" name="txtInfo">
779 <property name="readOnly"> No newline at end of file
779 <property name="readOnly">
780 <bool>true</bool> No newline at end of file
780 <bool>true</bool>
781 </property> No newline at end of file
781 </property>
782 </widget> No newline at end of file
782 </widget>
783 </item> No newline at end of file
783 </item>
784 <item> No newline at end of file
784 <item>
785 <layout class="QHBoxLayout" name="horizontalLayout_2"> No newline at end of file
785 <layout class="QHBoxLayout" name="horizontalLayout_2">
786 <property name="sizeConstraint"> No newline at end of file
786 <property name="sizeConstraint">
787 <enum>QLayout::SetDefaultConstraint</enum> No newline at end of file
787 <enum>QLayout::SetDefaultConstraint</enum>
788 </property> No newline at end of file
788 </property>
789 <item> No newline at end of file
789 <item>
790 <widget class="QPushButton" name="btnGbkp"> No newline at end of file
790 <widget class="QPushButton" name="btnGbkp">
791 <property name="enabled"> No newline at end of file
791 <property name="enabled">
792 <bool>false</bool> No newline at end of file
792 <bool>false</bool>
793 </property> No newline at end of file
793 </property>
794 <property name="text"> No newline at end of file
794 <property name="text">
795 <string>Generate Bkp</string> No newline at end of file
795 <string>Generate Bkp</string>
796 </property> No newline at end of file
796 </property>
797 </widget> No newline at end of file
797 </widget>
798 </item> No newline at end of file
798 </item>
799 <item> No newline at end of file
799 <item>
800 <widget class="QPushButton" name="btnRestart"> No newline at end of file
800 <widget class="QPushButton" name="btnRestart">
801 <property name="enabled"> No newline at end of file
801 <property name="enabled">
802 <bool>false</bool> No newline at end of file
802 <bool>false</bool>
803 </property> No newline at end of file
803 </property>
804 <property name="text"> No newline at end of file
804 <property name="text">
805 <string>Restart</string> No newline at end of file
805 <string>Restart</string>
806 </property> No newline at end of file
806 </property>
807 </widget> No newline at end of file
807 </widget>
808 </item> No newline at end of file
808 </item>
809 <item> No newline at end of file
809 <item>
810 <widget class="QPushButton" name="btnStartburn"> No newline at end of file
810 <widget class="QPushButton" name="btnStartburn">
811 <property name="enabled"> No newline at end of file
811 <property name="enabled">
812 <bool>false</bool> No newline at end of file
812 <bool>false</bool>
813 </property> No newline at end of file
813 </property>
814 <property name="text"> No newline at end of file
814 <property name="text">
815 <string>Start Burn</string> No newline at end of file
815 <string>Start Burn</string>
816 </property> No newline at end of file
816 </property>
817 </widget> No newline at end of file
817 </widget>
818 </item> No newline at end of file
818 </item>
819 <item> No newline at end of file
819 <item>
820 <widget class="QPushButton" name="btnStopburn"> No newline at end of file
820 <widget class="QPushButton" name="btnStopburn">
821 <property name="enabled"> No newline at end of file
821 <property name="enabled">
822 <bool>false</bool> No newline at end of file
822 <bool>false</bool>
823 </property> No newline at end of file
823 </property>
824 <property name="text"> No newline at end of file
824 <property name="text">
825 <string>Stop Burn</string> No newline at end of file
825 <string>Stop Burn</string>
826 </property> No newline at end of file
826 </property>
827 </widget> No newline at end of file
827 </widget>
828 </item> No newline at end of file
828 </item>
829 </layout> No newline at end of file
829 </layout>
830 </item> No newline at end of file
830 </item>
831 </layout> No newline at end of file
831 </layout>
832 </widget> No newline at end of file
832 </widget>
833 <widget class="QMenuBar" name="menubar"> No newline at end of file
833 <widget class="QMenuBar" name="menubar">
834 <property name="geometry"> No newline at end of file
834 <property name="geometry">
835 <rect> No newline at end of file
835 <rect>
836 <x>0</x> No newline at end of file
836 <x>0</x>
837 <y>0</y> No newline at end of file
837 <y>0</y>
838 <width>809</width>
838 <width>809</width>
No newline at end of file
839 <height>25</height> No newline at end of file
839 <height>21</height> No newline at end of file
840 </rect> No newline at end of file
840 </rect>
841 </property> No newline at end of file
841 </property>
842 <widget class="QMenu" name="menuParameters"> No newline at end of file
842 <widget class="QMenu" name="menuParameters">
843 <property name="title"> No newline at end of file
843 <property name="title">
844 <string>Parameters</string> No newline at end of file
844 <string>Parameters</string>
845 </property> No newline at end of file
845 </property>
846 <addaction name="actionChange_Parameters"/> No newline at end of file
846 <addaction name="actionChange_Parameters"/>
847 </widget> No newline at end of file
847 </widget>
848 <widget class="QMenu" name="menuHelp"> No newline at end of file
848 <widget class="QMenu" name="menuHelp">
849 <property name="title"> No newline at end of file
849 <property name="title">
850 <string>Help</string> No newline at end of file
850 <string>Help</string>
851 </property> No newline at end of file
851 </property>
852 <addaction name="actionAbout"/> No newline at end of file
852 <addaction name="actionAbout"/>
853 </widget> No newline at end of file
853 </widget>
854 <widget class="QMenu" name="menuFile"> No newline at end of file
854 <widget class="QMenu" name="menuFile">
855 <property name="title"> No newline at end of file
855 <property name="title">
856 <string>File</string> No newline at end of file
856 <string>File</string>
857 </property> No newline at end of file
857 </property>
858 <addaction name="actionSave_Config"/> No newline at end of file
858 <addaction name="actionSave_Config"/>
859 <addaction name="actionQuit"/> No newline at end of file
859 <addaction name="actionQuit"/>
860 </widget> No newline at end of file
860 </widget>
861 <addaction name="menuFile"/> No newline at end of file
861 <addaction name="menuFile"/>
862 <addaction name="menuParameters"/> No newline at end of file
862 <addaction name="menuParameters"/>
863 <addaction name="menuHelp"/> No newline at end of file
863 <addaction name="menuHelp"/>
864 </widget> No newline at end of file
864 </widget>
865 <widget class="QStatusBar" name="statusbar"/> No newline at end of file
865 <widget class="QStatusBar" name="statusbar"/>
866 <action name="actionChange_Parameters"> No newline at end of file
866 <action name="actionChange_Parameters">
867 <property name="text"> No newline at end of file
867 <property name="text">
868 <string>Change Parameters</string> No newline at end of file
868 <string>Change Parameters</string>
869 </property> No newline at end of file
869 </property>
870 </action> No newline at end of file
870 </action>
871 <action name="actionSave_Config"> No newline at end of file
871 <action name="actionSave_Config">
872 <property name="text"> No newline at end of file
872 <property name="text">
873 <string>Save Config</string> No newline at end of file
873 <string>Save Config</string>
874 </property> No newline at end of file
874 </property>
875 </action> No newline at end of file
875 </action>
876 <action name="actionQuit"> No newline at end of file
876 <action name="actionQuit">
877 <property name="text"> No newline at end of file
877 <property name="text">
878 <string>Quit</string> No newline at end of file
878 <string>Quit</string>
879 </property> No newline at end of file
879 </property>
880 </action> No newline at end of file
880 </action>
881 <action name="actionAbout"> No newline at end of file
881 <action name="actionAbout">
882 <property name="text"> No newline at end of file
882 <property name="text">
883 <string>About</string> No newline at end of file
883 <string>About</string>
884 </property> No newline at end of file
884 </property>
885 </action> No newline at end of file
885 </action>
886 </widget> No newline at end of file
886 </widget>
887 <tabstops> No newline at end of file
887 <tabstops>
888 <tabstop>txtDpath</tabstop> No newline at end of file
888 <tabstop>txtDpath</tabstop>
889 <tabstop>btnDpath</tabstop> No newline at end of file
889 <tabstop>btnDpath</tabstop>
890 <tabstop>txtRpath</tabstop> No newline at end of file
890 <tabstop>txtRpath</tabstop>
891 <tabstop>btnRpath</tabstop> No newline at end of file
891 <tabstop>btnRpath</tabstop>
892 <tabstop>lstDtype</tabstop> No newline at end of file
892 <tabstop>lstDtype</tabstop>
893 <tabstop>txtDtype</tabstop> No newline at end of file
893 <tabstop>txtDtype</tabstop>
894 <tabstop>chkMST</tabstop> No newline at end of file
894 <tabstop>chkMST</tabstop>
895 <tabstop>txtElabel</tabstop> No newline at end of file
895 <tabstop>txtElabel</tabstop>
896 <tabstop>lstStartDay</tabstop> No newline at end of file
896 <tabstop>lstStartDay</tabstop>
897 <tabstop>lstStopDay</tabstop> No newline at end of file
897 <tabstop>lstStopDay</tabstop>
898 <tabstop>chkSimultaneously</tabstop> No newline at end of file
898 <tabstop>chkSimultaneously</tabstop>
899 <tabstop>chkSequentially</tabstop> No newline at end of file
899 <tabstop>chkSequentially</tabstop>
900 <tabstop>chkSalert</tabstop> No newline at end of file
900 <tabstop>chkSalert</tabstop>
901 <tabstop>lstDcapacity</tabstop> No newline at end of file
901 <tabstop>lstDcapacity</tabstop>
902 <tabstop>chkPSgraphic</tabstop> No newline at end of file
902 <tabstop>chkPSgraphic</tabstop>
903 <tabstop>lineEdit_17</tabstop> No newline at end of file
903 <tabstop>lineEdit_17</tabstop>
904 <tabstop>txtSTATUSa</tabstop> No newline at end of file
904 <tabstop>txtSTATUSa</tabstop>
905 <tabstop>txtSTATUSb</tabstop> No newline at end of file
905 <tabstop>txtSTATUSb</tabstop>
906 <tabstop>txtSTATUSc</tabstop> No newline at end of file
906 <tabstop>txtSTATUSc</tabstop>
907 <tabstop>txtSTATUSd</tabstop> No newline at end of file
907 <tabstop>txtSTATUSd</tabstop>
908 <tabstop>txtINFOa</tabstop> No newline at end of file
908 <tabstop>txtINFOa</tabstop>
909 <tabstop>txtINFOb</tabstop> No newline at end of file
909 <tabstop>txtINFOb</tabstop>
910 <tabstop>txtINFOc</tabstop> No newline at end of file
910 <tabstop>txtINFOc</tabstop>
911 <tabstop>txtINFOd</tabstop> No newline at end of file
911 <tabstop>txtINFOd</tabstop>
912 <tabstop>txtSETa</tabstop> No newline at end of file
912 <tabstop>txtSETa</tabstop>
913 <tabstop>txtSETb</tabstop> No newline at end of file
913 <tabstop>txtSETb</tabstop>
914 <tabstop>txtSETc</tabstop> No newline at end of file
914 <tabstop>txtSETc</tabstop>
915 <tabstop>txtSETd</tabstop> No newline at end of file
915 <tabstop>txtSETd</tabstop>
916 <tabstop>tabWidget</tabstop> No newline at end of file
916 <tabstop>tabWidget</tabstop>
917 <tabstop>txtSburn</tabstop> No newline at end of file
917 <tabstop>txtSburn</tabstop>
918 <tabstop>btnGbkp</tabstop> No newline at end of file
918 <tabstop>btnGbkp</tabstop>
919 <tabstop>btnRestart</tabstop> No newline at end of file
919 <tabstop>btnRestart</tabstop>
920 <tabstop>btnStartburn</tabstop> No newline at end of file
920 <tabstop>btnStartburn</tabstop>
921 <tabstop>btnStopburn</tabstop> No newline at end of file
921 <tabstop>btnStopburn</tabstop>
922 </tabstops> No newline at end of file
922 </tabstops>
923 <resources/> No newline at end of file
923 <resources/>
924 <connections> No newline at end of file
924 <connections>
925 <connection> No newline at end of file
925 <connection>
926 <sender>chkSequentially</sender> No newline at end of file
926 <sender>chkSequentially</sender>
927 <signal>clicked()</signal> No newline at end of file
927 <signal>clicked()</signal>
928 <receiver>chkSimultaneously</receiver> No newline at end of file
928 <receiver>chkSimultaneously</receiver>
929 <slot>toggle()</slot> No newline at end of file
929 <slot>toggle()</slot>
930 <hints> No newline at end of file
930 <hints>
931 <hint type="sourcelabel"> No newline at end of file
931 <hint type="sourcelabel">
932 <x>635</x> No newline at end of file
932 <x>635</x>
933 <y>276</y> No newline at end of file
933 <y>276</y>
934 </hint> No newline at end of file
934 </hint>
935 <hint type="destinationlabel"> No newline at end of file
935 <hint type="destinationlabel">
936 <x>350</x> No newline at end of file
936 <x>350</x>
937 <y>269</y> No newline at end of file
937 <y>269</y>
938 </hint> No newline at end of file
938 </hint>
939 </hints> No newline at end of file
939 </hints>
940 </connection> No newline at end of file
940 </connection>
941 <connection> No newline at end of file
941 <connection>
942 <sender>chkSimultaneously</sender> No newline at end of file
942 <sender>chkSimultaneously</sender>
943 <signal>clicked()</signal> No newline at end of file
943 <signal>clicked()</signal>
944 <receiver>chkSequentially</receiver> No newline at end of file
944 <receiver>chkSequentially</receiver>
945 <slot>toggle()</slot> No newline at end of file
945 <slot>toggle()</slot>
946 <hints> No newline at end of file
946 <hints>
947 <hint type="sourcelabel"> No newline at end of file
947 <hint type="sourcelabel">
948 <x>433</x> No newline at end of file
948 <x>433</x>
949 <y>276</y> No newline at end of file
949 <y>276</y>
950 </hint> No newline at end of file
950 </hint>
951 <hint type="destinationlabel"> No newline at end of file
951 <hint type="destinationlabel">
952 <x>635</x> No newline at end of file
952 <x>635</x>
953 <y>276</y> No newline at end of file
953 <y>276</y>
954 </hint> No newline at end of file
954 </hint>
955 </hints> No newline at end of file
955 </hints>
956 </connection> No newline at end of file
956 </connection>
957 <connection> No newline at end of file
957 <connection>
958 <sender>chkDevA</sender> No newline at end of file
958 <sender>chkDevA</sender>
959 <signal>toggled(bool)</signal> No newline at end of file
959 <signal>toggled(bool)</signal>
960 <receiver>grpDevA</receiver> No newline at end of file
960 <receiver>grpDevA</receiver>
961 <slot>setEnabled(bool)</slot> No newline at end of file
961 <slot>setEnabled(bool)</slot>
962 <hints> No newline at end of file
962 <hints>
963 <hint type="sourcelabel"> No newline at end of file
963 <hint type="sourcelabel">
964 <x>95</x> No newline at end of file
964 <x>95</x>
965 <y>86</y> No newline at end of file
965 <y>86</y>
966 </hint> No newline at end of file
966 </hint>
967 <hint type="destinationlabel"> No newline at end of file
967 <hint type="destinationlabel">
968 <x>95</x> No newline at end of file
968 <x>95</x>
969 <y>167</y> No newline at end of file
969 <y>167</y>
970 </hint> No newline at end of file
970 </hint>
971 </hints> No newline at end of file
971 </hints>
972 </connection> No newline at end of file
972 </connection>
973 <connection> No newline at end of file
973 <connection>
974 <sender>chkDevB</sender> No newline at end of file
974 <sender>chkDevB</sender>
975 <signal>toggled(bool)</signal> No newline at end of file
975 <signal>toggled(bool)</signal>
976 <receiver>grpDevB</receiver> No newline at end of file
976 <receiver>grpDevB</receiver>
977 <slot>setEnabled(bool)</slot> No newline at end of file
977 <slot>setEnabled(bool)</slot>
978 <hints> No newline at end of file
978 <hints>
979 <hint type="sourcelabel"> No newline at end of file
979 <hint type="sourcelabel">
980 <x>251</x> No newline at end of file
980 <x>251</x>
981 <y>86</y> No newline at end of file
981 <y>86</y>
982 </hint> No newline at end of file
982 </hint>
983 <hint type="destinationlabel"> No newline at end of file
983 <hint type="destinationlabel">
984 <x>251</x> No newline at end of file
984 <x>251</x>
985 <y>167</y> No newline at end of file
985 <y>167</y>
986 </hint> No newline at end of file
986 </hint>
987 </hints> No newline at end of file
987 </hints>
988 </connection> No newline at end of file
988 </connection>
989 <connection> No newline at end of file
989 <connection>
990 <sender>chkDevC</sender> No newline at end of file
990 <sender>chkDevC</sender>
991 <signal>toggled(bool)</signal> No newline at end of file
991 <signal>toggled(bool)</signal>
992 <receiver>grpDevC</receiver> No newline at end of file
992 <receiver>grpDevC</receiver>
993 <slot>setEnabled(bool)</slot> No newline at end of file
993 <slot>setEnabled(bool)</slot>
994 <hints> No newline at end of file
994 <hints>
995 <hint type="sourcelabel"> No newline at end of file
995 <hint type="sourcelabel">
996 <x>407</x> No newline at end of file
996 <x>407</x>
997 <y>86</y> No newline at end of file
997 <y>86</y>
998 </hint> No newline at end of file
998 </hint>
999 <hint type="destinationlabel"> No newline at end of file
999 <hint type="destinationlabel">
1000 <x>407</x> No newline at end of file
1000 <x>407</x>
1001 <y>167</y> No newline at end of file
1001 <y>167</y>
1002 </hint> No newline at end of file
1002 </hint>
1003 </hints> No newline at end of file
1003 </hints>
1004 </connection> No newline at end of file
1004 </connection>
1005 <connection> No newline at end of file
1005 <connection>
1006 <sender>chkDevD</sender> No newline at end of file
1006 <sender>chkDevD</sender>
1007 <signal>toggled(bool)</signal> No newline at end of file
1007 <signal>toggled(bool)</signal>
1008 <receiver>grpDevD</receiver> No newline at end of file
1008 <receiver>grpDevD</receiver>
1009 <slot>setEnabled(bool)</slot> No newline at end of file
1009 <slot>setEnabled(bool)</slot>
1010 <hints> No newline at end of file
1010 <hints>
1011 <hint type="sourcelabel"> No newline at end of file
1011 <hint type="sourcelabel">
1012 <x>563</x> No newline at end of file
1012 <x>563</x>
1013 <y>86</y> No newline at end of file
1013 <y>86</y>
1014 </hint> No newline at end of file
1014 </hint>
1015 <hint type="destinationlabel"> No newline at end of file
1015 <hint type="destinationlabel">
1016 <x>563</x> No newline at end of file
1016 <x>563</x>
1017 <y>167</y> No newline at end of file
1017 <y>167</y>
1018 </hint> No newline at end of file
1018 </hint>
1019 </hints> No newline at end of file
1019 </hints>
1020 </connection> No newline at end of file
1020 </connection>
1021 </connections> No newline at end of file
1021 </connections>
1022 </ui> No newline at end of file
1022 </ui>
@@ -1,604 +1,602
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: Wed May 19 11:22:43 2010
5 # Created: Wed May 19 01:44:24 2010
No newline at end of file
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.7.2 No newline at end of file
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(809, 737) No newline at end of file
15 MainWindow.resize(809, 737)
16 self.centralwidget = QtGui.QWidget(MainWindow) No newline at end of file
16 self.centralwidget = QtGui.QWidget(MainWindow)
17 self.centralwidget.setObjectName("centralwidget") No newline at end of file
17 self.centralwidget.setObjectName("centralwidget")
18 self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget) No newline at end of file
18 self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget)
19 self.verticalLayout.setObjectName("verticalLayout") No newline at end of file
19 self.verticalLayout.setObjectName("verticalLayout")
20 self.tabWidget = QtGui.QTabWidget(self.centralwidget) No newline at end of file
20 self.tabWidget = QtGui.QTabWidget(self.centralwidget)
21 self.tabWidget.setEnabled(True) No newline at end of file
21 self.tabWidget.setEnabled(True)
22 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) No newline at end of file
22 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
23 sizePolicy.setHorizontalStretch(0) No newline at end of file
23 sizePolicy.setHorizontalStretch(0)
24 sizePolicy.setVerticalStretch(0) No newline at end of file
24 sizePolicy.setVerticalStretch(0)
25 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth()) No newline at end of file
25 sizePolicy.setHeightForWidth(self.tabWidget.sizePolicy().hasHeightForWidth())
26 self.tabWidget.setSizePolicy(sizePolicy) No newline at end of file
26 self.tabWidget.setSizePolicy(sizePolicy)
27 self.tabWidget.setObjectName("tabWidget") No newline at end of file
27 self.tabWidget.setObjectName("tabWidget")
28 self.tabParameters = QtGui.QWidget() No newline at end of file
28 self.tabParameters = QtGui.QWidget()
29 self.tabParameters.setEnabled(True) No newline at end of file
29 self.tabParameters.setEnabled(True)
30 self.tabParameters.setObjectName("tabParameters") No newline at end of file
30 self.tabParameters.setObjectName("tabParameters")
31 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters) No newline at end of file
31 self.verticalLayout_2 = QtGui.QVBoxLayout(self.tabParameters)
32 self.verticalLayout_2.setObjectName("verticalLayout_2") No newline at end of file
32 self.verticalLayout_2.setObjectName("verticalLayout_2")
33 self.horizontalLayout = QtGui.QHBoxLayout() No newline at end of file
33 self.horizontalLayout = QtGui.QHBoxLayout()
34 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
34 self.horizontalLayout.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
35 self.horizontalLayout.setObjectName("horizontalLayout") No newline at end of file
35 self.horizontalLayout.setObjectName("horizontalLayout")
36 self.txtDpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
36 self.txtDpath = QtGui.QLineEdit(self.tabParameters)
37 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed) No newline at end of file
37 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Fixed)
38 sizePolicy.setHorizontalStretch(0) No newline at end of file
38 sizePolicy.setHorizontalStretch(0)
39 sizePolicy.setVerticalStretch(0) No newline at end of file
39 sizePolicy.setVerticalStretch(0)
40 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
40 sizePolicy.setHeightForWidth(self.txtDpath.sizePolicy().hasHeightForWidth())
41 self.txtDpath.setSizePolicy(sizePolicy) No newline at end of file
41 self.txtDpath.setSizePolicy(sizePolicy)
42 self.txtDpath.setObjectName("txtDpath") No newline at end of file
42 self.txtDpath.setObjectName("txtDpath")
43 self.horizontalLayout.addWidget(self.txtDpath) No newline at end of file
43 self.horizontalLayout.addWidget(self.txtDpath)
44 self.btnDpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
44 self.btnDpath = QtGui.QPushButton(self.tabParameters)
45 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
45 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
46 sizePolicy.setHorizontalStretch(0) No newline at end of file
46 sizePolicy.setHorizontalStretch(0)
47 sizePolicy.setVerticalStretch(0) No newline at end of file
47 sizePolicy.setVerticalStretch(0)
48 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth()) No newline at end of file
48 sizePolicy.setHeightForWidth(self.btnDpath.sizePolicy().hasHeightForWidth())
49 self.btnDpath.setSizePolicy(sizePolicy) No newline at end of file
49 self.btnDpath.setSizePolicy(sizePolicy)
50 self.btnDpath.setCheckable(False) No newline at end of file
50 self.btnDpath.setCheckable(False)
51 self.btnDpath.setObjectName("btnDpath") No newline at end of file
51 self.btnDpath.setObjectName("btnDpath")
52 self.horizontalLayout.addWidget(self.btnDpath) No newline at end of file
52 self.horizontalLayout.addWidget(self.btnDpath)
53 self.verticalLayout_2.addLayout(self.horizontalLayout) No newline at end of file
53 self.verticalLayout_2.addLayout(self.horizontalLayout)
54 self.horizontalLayout_3 = QtGui.QHBoxLayout() No newline at end of file
54 self.horizontalLayout_3 = QtGui.QHBoxLayout()
55 self.horizontalLayout_3.setObjectName("horizontalLayout_3") No newline at end of file
55 self.horizontalLayout_3.setObjectName("horizontalLayout_3")
56 self.txtRpath = QtGui.QLineEdit(self.tabParameters) No newline at end of file
56 self.txtRpath = QtGui.QLineEdit(self.tabParameters)
57 self.txtRpath.setObjectName("txtRpath") No newline at end of file
57 self.txtRpath.setObjectName("txtRpath")
58 self.horizontalLayout_3.addWidget(self.txtRpath) No newline at end of file
58 self.horizontalLayout_3.addWidget(self.txtRpath)
59 self.btnRpath = QtGui.QPushButton(self.tabParameters) No newline at end of file
59 self.btnRpath = QtGui.QPushButton(self.tabParameters)
60 self.btnRpath.setObjectName("btnRpath") No newline at end of file
60 self.btnRpath.setObjectName("btnRpath")
61 self.horizontalLayout_3.addWidget(self.btnRpath) No newline at end of file
61 self.horizontalLayout_3.addWidget(self.btnRpath)
62 self.verticalLayout_2.addLayout(self.horizontalLayout_3) No newline at end of file
62 self.verticalLayout_2.addLayout(self.horizontalLayout_3)
63 self.lblDtype = QtGui.QLabel(self.tabParameters) No newline at end of file
63 self.lblDtype = QtGui.QLabel(self.tabParameters)
64 self.lblDtype.setObjectName("lblDtype") No newline at end of file
64 self.lblDtype.setObjectName("lblDtype")
65 self.verticalLayout_2.addWidget(self.lblDtype) No newline at end of file
65 self.verticalLayout_2.addWidget(self.lblDtype)
66 self.horizontalLayout_4 = QtGui.QHBoxLayout() No newline at end of file
66 self.horizontalLayout_4 = QtGui.QHBoxLayout()
67 self.horizontalLayout_4.setObjectName("horizontalLayout_4") No newline at end of file
67 self.horizontalLayout_4.setObjectName("horizontalLayout_4")
68 self.lstDtype = QtGui.QComboBox(self.tabParameters) No newline at end of file
68 self.lstDtype = QtGui.QComboBox(self.tabParameters)
69 self.lstDtype.setObjectName("lstDtype") No newline at end of file
69 self.lstDtype.setObjectName("lstDtype")
70 self.lstDtype.addItem("") No newline at end of file
70 self.lstDtype.addItem("")
71 self.lstDtype.addItem("") No newline at end of file
71 self.lstDtype.addItem("")
72 self.lstDtype.addItem("") No newline at end of file
72 self.lstDtype.addItem("")
73 self.lstDtype.addItem("") No newline at end of file
73 self.lstDtype.addItem("")
74 self.horizontalLayout_4.addWidget(self.lstDtype) No newline at end of file
74 self.horizontalLayout_4.addWidget(self.lstDtype)
75 self.txtDtype = QtGui.QLineEdit(self.tabParameters) No newline at end of file
75 self.txtDtype = QtGui.QLineEdit(self.tabParameters)
76 self.txtDtype.setReadOnly(True) No newline at end of file
76 self.txtDtype.setReadOnly(True)
77 self.txtDtype.setObjectName("txtDtype") No newline at end of file
77 self.txtDtype.setObjectName("txtDtype")
78 self.horizontalLayout_4.addWidget(self.txtDtype) No newline at end of file
78 self.horizontalLayout_4.addWidget(self.txtDtype)
79 self.chkMST = QtGui.QCheckBox(self.tabParameters) No newline at end of file
79 self.chkMST = QtGui.QCheckBox(self.tabParameters)
80 self.chkMST.setObjectName("chkMST") No newline at end of file
80 self.chkMST.setObjectName("chkMST")
81 self.horizontalLayout_4.addWidget(self.chkMST) No newline at end of file
81 self.horizontalLayout_4.addWidget(self.chkMST)
82 self.verticalLayout_2.addLayout(self.horizontalLayout_4) No newline at end of file
82 self.verticalLayout_2.addLayout(self.horizontalLayout_4)
83 self.horizontalLayout_6 = QtGui.QHBoxLayout() No newline at end of file
83 self.horizontalLayout_6 = QtGui.QHBoxLayout()
84 self.horizontalLayout_6.setObjectName("horizontalLayout_6") No newline at end of file
84 self.horizontalLayout_6.setObjectName("horizontalLayout_6")
85 self.lblElabel = QtGui.QLabel(self.tabParameters) No newline at end of file
85 self.lblElabel = QtGui.QLabel(self.tabParameters)
86 self.lblElabel.setObjectName("lblElabel") No newline at end of file
86 self.lblElabel.setObjectName("lblElabel")
87 self.horizontalLayout_6.addWidget(self.lblElabel) No newline at end of file
87 self.horizontalLayout_6.addWidget(self.lblElabel)
88 self.lblCopys = QtGui.QLabel(self.tabParameters) No newline at end of file
88 self.lblCopys = QtGui.QLabel(self.tabParameters)
89 self.lblCopys.setObjectName("lblCopys") No newline at end of file
89 self.lblCopys.setObjectName("lblCopys")
90 self.horizontalLayout_6.addWidget(self.lblCopys) No newline at end of file
90 self.horizontalLayout_6.addWidget(self.lblCopys)
91 self.verticalLayout_2.addLayout(self.horizontalLayout_6) No newline at end of file
91 self.verticalLayout_2.addLayout(self.horizontalLayout_6)
92 self.horizontalLayout_5 = QtGui.QHBoxLayout() No newline at end of file
92 self.horizontalLayout_5 = QtGui.QHBoxLayout()
93 self.horizontalLayout_5.setObjectName("horizontalLayout_5") No newline at end of file
93 self.horizontalLayout_5.setObjectName("horizontalLayout_5")
94 self.txtElabel = QtGui.QLineEdit(self.tabParameters) No newline at end of file
94 self.txtElabel = QtGui.QLineEdit(self.tabParameters)
95 self.txtElabel.setObjectName("txtElabel") No newline at end of file
95 self.txtElabel.setObjectName("txtElabel")
96 self.horizontalLayout_5.addWidget(self.txtElabel) No newline at end of file
96 self.horizontalLayout_5.addWidget(self.txtElabel)
97 self.txtCopys = QtGui.QSpinBox(self.tabParameters) No newline at end of file
97 self.txtCopys = QtGui.QSpinBox(self.tabParameters)
98 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) No newline at end of file
98 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
99 sizePolicy.setHorizontalStretch(0) No newline at end of file
99 sizePolicy.setHorizontalStretch(0)
100 sizePolicy.setVerticalStretch(0) No newline at end of file
100 sizePolicy.setVerticalStretch(0)
101 sizePolicy.setHeightForWidth(self.txtCopys.sizePolicy().hasHeightForWidth()) No newline at end of file
101 sizePolicy.setHeightForWidth(self.txtCopys.sizePolicy().hasHeightForWidth())
102 self.txtCopys.setSizePolicy(sizePolicy) No newline at end of file
102 self.txtCopys.setSizePolicy(sizePolicy)
103 self.txtCopys.setMinimum(1) No newline at end of file
103 self.txtCopys.setMinimum(1)
104 self.txtCopys.setObjectName("txtCopys") No newline at end of file
104 self.txtCopys.setObjectName("txtCopys")
105 self.horizontalLayout_5.addWidget(self.txtCopys) No newline at end of file
105 self.horizontalLayout_5.addWidget(self.txtCopys)
106 self.verticalLayout_2.addLayout(self.horizontalLayout_5) No newline at end of file
106 self.verticalLayout_2.addLayout(self.horizontalLayout_5)
107 self.horizontalLayout_7 = QtGui.QHBoxLayout() No newline at end of file
107 self.horizontalLayout_7 = QtGui.QHBoxLayout()
108 self.horizontalLayout_7.setObjectName("horizontalLayout_7") No newline at end of file
108 self.horizontalLayout_7.setObjectName("horizontalLayout_7")
109 self.lblStartDay = QtGui.QLabel(self.tabParameters) No newline at end of file
109 self.lblStartDay = QtGui.QLabel(self.tabParameters)
110 self.lblStartDay.setObjectName("lblStartDay") No newline at end of file
110 self.lblStartDay.setObjectName("lblStartDay")
111 self.horizontalLayout_7.addWidget(self.lblStartDay) No newline at end of file
111 self.horizontalLayout_7.addWidget(self.lblStartDay)
112 self.lblStopDay = QtGui.QLabel(self.tabParameters) No newline at end of file
112 self.lblStopDay = QtGui.QLabel(self.tabParameters)
113 self.lblStopDay.setObjectName("lblStopDay") No newline at end of file
113 self.lblStopDay.setObjectName("lblStopDay")
114 self.horizontalLayout_7.addWidget(self.lblStopDay) No newline at end of file
114 self.horizontalLayout_7.addWidget(self.lblStopDay)
115 self.verticalLayout_2.addLayout(self.horizontalLayout_7) No newline at end of file
115 self.verticalLayout_2.addLayout(self.horizontalLayout_7)
116 self.horizontalLayout_8 = QtGui.QHBoxLayout() No newline at end of file
116 self.horizontalLayout_8 = QtGui.QHBoxLayout()
117 self.horizontalLayout_8.setObjectName("horizontalLayout_8") No newline at end of file
117 self.horizontalLayout_8.setObjectName("horizontalLayout_8")
118 self.lstStartDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
118 self.lstStartDay = QtGui.QComboBox(self.tabParameters)
119 self.lstStartDay.setObjectName("lstStartDay") No newline at end of file
119 self.lstStartDay.setObjectName("lstStartDay")
120 self.horizontalLayout_8.addWidget(self.lstStartDay) No newline at end of file
120 self.horizontalLayout_8.addWidget(self.lstStartDay)
121 self.lstStopDay = QtGui.QComboBox(self.tabParameters) No newline at end of file
121 self.lstStopDay = QtGui.QComboBox(self.tabParameters)
122 self.lstStopDay.setObjectName("lstStopDay") No newline at end of file
122 self.lstStopDay.setObjectName("lstStopDay")
123 self.horizontalLayout_8.addWidget(self.lstStopDay) No newline at end of file
123 self.horizontalLayout_8.addWidget(self.lstStopDay)
124 self.verticalLayout_2.addLayout(self.horizontalLayout_8) No newline at end of file
124 self.verticalLayout_2.addLayout(self.horizontalLayout_8)
125 self.tabWidget.addTab(self.tabParameters, "") No newline at end of file
125 self.tabWidget.addTab(self.tabParameters, "")
126 self.tabDconfig = QtGui.QWidget() No newline at end of file
126 self.tabDconfig = QtGui.QWidget()
127 self.tabDconfig.setEnabled(True) No newline at end of file
127 self.tabDconfig.setEnabled(True)
128 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
128 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
129 sizePolicy.setHorizontalStretch(0) No newline at end of file
129 sizePolicy.setHorizontalStretch(0)
130 sizePolicy.setVerticalStretch(0) No newline at end of file
130 sizePolicy.setVerticalStretch(0)
131 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth()) No newline at end of file
131 sizePolicy.setHeightForWidth(self.tabDconfig.sizePolicy().hasHeightForWidth())
132 self.tabDconfig.setSizePolicy(sizePolicy) No newline at end of file
132 self.tabDconfig.setSizePolicy(sizePolicy)
133 self.tabDconfig.setObjectName("tabDconfig") No newline at end of file
133 self.tabDconfig.setObjectName("tabDconfig")
134 self.verticalLayout_3 = QtGui.QVBoxLayout(self.tabDconfig) No newline at end of file
134 self.verticalLayout_3 = QtGui.QVBoxLayout(self.tabDconfig)
135 self.verticalLayout_3.setObjectName("verticalLayout_3") No newline at end of file
135 self.verticalLayout_3.setObjectName("verticalLayout_3")
136 self.gridLayout = QtGui.QGridLayout() No newline at end of file
136 self.gridLayout = QtGui.QGridLayout()
137 self.gridLayout.setObjectName("gridLayout") No newline at end of file
137 self.gridLayout.setObjectName("gridLayout")
138 self.verticalLayout_15 = QtGui.QVBoxLayout() No newline at end of file
138 self.verticalLayout_15 = QtGui.QVBoxLayout()
139 self.verticalLayout_15.setObjectName("verticalLayout_15") No newline at end of file
139 self.verticalLayout_15.setObjectName("verticalLayout_15")
140 self.chkDevA = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
140 self.chkDevA = QtGui.QCheckBox(self.tabDconfig)
141 self.chkDevA.setChecked(True) No newline at end of file
141 self.chkDevA.setChecked(True)
142 self.chkDevA.setObjectName("chkDevA") No newline at end of file
142 self.chkDevA.setObjectName("chkDevA")
143 self.verticalLayout_15.addWidget(self.chkDevA) No newline at end of file
143 self.verticalLayout_15.addWidget(self.chkDevA)
144 self.grpDevA = QtGui.QWidget(self.tabDconfig) No newline at end of file
144 self.grpDevA = QtGui.QWidget(self.tabDconfig)
145 self.grpDevA.setObjectName("grpDevA") No newline at end of file
145 self.grpDevA.setObjectName("grpDevA")
146 self.verticalLayout_11 = QtGui.QVBoxLayout(self.grpDevA) No newline at end of file
146 self.verticalLayout_11 = QtGui.QVBoxLayout(self.grpDevA)
147 self.verticalLayout_11.setObjectName("verticalLayout_11") No newline at end of file
147 self.verticalLayout_11.setObjectName("verticalLayout_11")
148 self.txtDeviceA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
148 self.txtDeviceA = QtGui.QLineEdit(self.grpDevA)
149 self.txtDeviceA.setObjectName("txtDeviceA") No newline at end of file
149 self.txtDeviceA.setObjectName("txtDeviceA")
150 self.verticalLayout_11.addWidget(self.txtDeviceA) No newline at end of file
150 self.verticalLayout_11.addWidget(self.txtDeviceA)
151 self.txtBspeedA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
151 self.txtBspeedA = QtGui.QLineEdit(self.grpDevA)
152 self.txtBspeedA.setObjectName("txtBspeedA") No newline at end of file
152 self.txtBspeedA.setObjectName("txtBspeedA")
153 self.verticalLayout_11.addWidget(self.txtBspeedA) No newline at end of file
153 self.verticalLayout_11.addWidget(self.txtBspeedA)
154 self.txtBmodeA = QtGui.QLineEdit(self.grpDevA) No newline at end of file
154 self.txtBmodeA = QtGui.QLineEdit(self.grpDevA)
155 self.txtBmodeA.setObjectName("txtBmodeA") No newline at end of file
155 self.txtBmodeA.setObjectName("txtBmodeA")
156 self.verticalLayout_11.addWidget(self.txtBmodeA) No newline at end of file
156 self.verticalLayout_11.addWidget(self.txtBmodeA)
157 self.btnTdevA = QtGui.QPushButton(self.grpDevA) No newline at end of file
157 self.btnTdevA = QtGui.QPushButton(self.grpDevA)
158 self.btnTdevA.setObjectName("btnTdevA") No newline at end of file
158 self.btnTdevA.setObjectName("btnTdevA")
159 self.verticalLayout_11.addWidget(self.btnTdevA) No newline at end of file
159 self.verticalLayout_11.addWidget(self.btnTdevA)
160 self.verticalLayout_15.addWidget(self.grpDevA) No newline at end of file
160 self.verticalLayout_15.addWidget(self.grpDevA)
161 self.gridLayout.addLayout(self.verticalLayout_15, 0, 0, 1, 1) No newline at end of file
161 self.gridLayout.addLayout(self.verticalLayout_15, 0, 0, 1, 1)
162 self.verticalLayout_16 = QtGui.QVBoxLayout() No newline at end of file
162 self.verticalLayout_16 = QtGui.QVBoxLayout()
163 self.verticalLayout_16.setObjectName("verticalLayout_16") No newline at end of file
163 self.verticalLayout_16.setObjectName("verticalLayout_16")
164 self.chkDevB = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
164 self.chkDevB = QtGui.QCheckBox(self.tabDconfig)
165 self.chkDevB.setChecked(True) No newline at end of file
165 self.chkDevB.setChecked(True)
166 self.chkDevB.setObjectName("chkDevB") No newline at end of file
166 self.chkDevB.setObjectName("chkDevB")
167 self.verticalLayout_16.addWidget(self.chkDevB) No newline at end of file
167 self.verticalLayout_16.addWidget(self.chkDevB)
168 self.grpDevB = QtGui.QWidget(self.tabDconfig) No newline at end of file
168 self.grpDevB = QtGui.QWidget(self.tabDconfig)
169 self.grpDevB.setObjectName("grpDevB") No newline at end of file
169 self.grpDevB.setObjectName("grpDevB")
170 self.verticalLayout_12 = QtGui.QVBoxLayout(self.grpDevB) No newline at end of file
170 self.verticalLayout_12 = QtGui.QVBoxLayout(self.grpDevB)
171 self.verticalLayout_12.setObjectName("verticalLayout_12") No newline at end of file
171 self.verticalLayout_12.setObjectName("verticalLayout_12")
172 self.txtDeviceB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
172 self.txtDeviceB = QtGui.QLineEdit(self.grpDevB)
173 self.txtDeviceB.setObjectName("txtDeviceB") No newline at end of file
173 self.txtDeviceB.setObjectName("txtDeviceB")
174 self.verticalLayout_12.addWidget(self.txtDeviceB) No newline at end of file
174 self.verticalLayout_12.addWidget(self.txtDeviceB)
175 self.txtBspeedB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
175 self.txtBspeedB = QtGui.QLineEdit(self.grpDevB)
176 self.txtBspeedB.setObjectName("txtBspeedB") No newline at end of file
176 self.txtBspeedB.setObjectName("txtBspeedB")
177 self.verticalLayout_12.addWidget(self.txtBspeedB) No newline at end of file
177 self.verticalLayout_12.addWidget(self.txtBspeedB)
178 self.txtBmodeB = QtGui.QLineEdit(self.grpDevB) No newline at end of file
178 self.txtBmodeB = QtGui.QLineEdit(self.grpDevB)
179 self.txtBmodeB.setObjectName("txtBmodeB") No newline at end of file
179 self.txtBmodeB.setObjectName("txtBmodeB")
180 self.verticalLayout_12.addWidget(self.txtBmodeB) No newline at end of file
180 self.verticalLayout_12.addWidget(self.txtBmodeB)
181 self.btnTdevB = QtGui.QPushButton(self.grpDevB) No newline at end of file
181 self.btnTdevB = QtGui.QPushButton(self.grpDevB)
182 self.btnTdevB.setObjectName("btnTdevB") No newline at end of file
182 self.btnTdevB.setObjectName("btnTdevB")
183 self.verticalLayout_12.addWidget(self.btnTdevB) No newline at end of file
183 self.verticalLayout_12.addWidget(self.btnTdevB)
184 self.verticalLayout_16.addWidget(self.grpDevB) No newline at end of file
184 self.verticalLayout_16.addWidget(self.grpDevB)
185 self.gridLayout.addLayout(self.verticalLayout_16, 0, 1, 1, 1) No newline at end of file
185 self.gridLayout.addLayout(self.verticalLayout_16, 0, 1, 1, 1)
186 self.verticalLayout_17 = QtGui.QVBoxLayout() No newline at end of file
186 self.verticalLayout_17 = QtGui.QVBoxLayout()
187 self.verticalLayout_17.setObjectName("verticalLayout_17") No newline at end of file
187 self.verticalLayout_17.setObjectName("verticalLayout_17")
188 self.chkDevC = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
188 self.chkDevC = QtGui.QCheckBox(self.tabDconfig)
189 self.chkDevC.setChecked(True) No newline at end of file
189 self.chkDevC.setChecked(True)
190 self.chkDevC.setObjectName("chkDevC") No newline at end of file
190 self.chkDevC.setObjectName("chkDevC")
191 self.verticalLayout_17.addWidget(self.chkDevC) No newline at end of file
191 self.verticalLayout_17.addWidget(self.chkDevC)
192 self.grpDevC = QtGui.QWidget(self.tabDconfig) No newline at end of file
192 self.grpDevC = QtGui.QWidget(self.tabDconfig)
193 self.grpDevC.setObjectName("grpDevC") No newline at end of file
193 self.grpDevC.setObjectName("grpDevC")
194 self.verticalLayout_13 = QtGui.QVBoxLayout(self.grpDevC) No newline at end of file
194 self.verticalLayout_13 = QtGui.QVBoxLayout(self.grpDevC)
195 self.verticalLayout_13.setObjectName("verticalLayout_13") No newline at end of file
195 self.verticalLayout_13.setObjectName("verticalLayout_13")
196 self.txtDeviceC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
196 self.txtDeviceC = QtGui.QLineEdit(self.grpDevC)
197 self.txtDeviceC.setObjectName("txtDeviceC") No newline at end of file
197 self.txtDeviceC.setObjectName("txtDeviceC")
198 self.verticalLayout_13.addWidget(self.txtDeviceC) No newline at end of file
198 self.verticalLayout_13.addWidget(self.txtDeviceC)
199 self.txtBspeedC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
199 self.txtBspeedC = QtGui.QLineEdit(self.grpDevC)
200 self.txtBspeedC.setObjectName("txtBspeedC") No newline at end of file
200 self.txtBspeedC.setObjectName("txtBspeedC")
201 self.verticalLayout_13.addWidget(self.txtBspeedC) No newline at end of file
201 self.verticalLayout_13.addWidget(self.txtBspeedC)
202 self.txtBmodeC = QtGui.QLineEdit(self.grpDevC) No newline at end of file
202 self.txtBmodeC = QtGui.QLineEdit(self.grpDevC)
203 self.txtBmodeC.setObjectName("txtBmodeC") No newline at end of file
203 self.txtBmodeC.setObjectName("txtBmodeC")
204 self.verticalLayout_13.addWidget(self.txtBmodeC) No newline at end of file
204 self.verticalLayout_13.addWidget(self.txtBmodeC)
205 self.btnTdevC = QtGui.QPushButton(self.grpDevC) No newline at end of file
205 self.btnTdevC = QtGui.QPushButton(self.grpDevC)
206 self.btnTdevC.setObjectName("btnTdevC") No newline at end of file
206 self.btnTdevC.setObjectName("btnTdevC")
207 self.verticalLayout_13.addWidget(self.btnTdevC) No newline at end of file
207 self.verticalLayout_13.addWidget(self.btnTdevC)
208 self.verticalLayout_17.addWidget(self.grpDevC) No newline at end of file
208 self.verticalLayout_17.addWidget(self.grpDevC)
209 self.gridLayout.addLayout(self.verticalLayout_17, 0, 2, 1, 1) No newline at end of file
209 self.gridLayout.addLayout(self.verticalLayout_17, 0, 2, 1, 1)
210 self.verticalLayout_18 = QtGui.QVBoxLayout() No newline at end of file
210 self.verticalLayout_18 = QtGui.QVBoxLayout()
211 self.verticalLayout_18.setObjectName("verticalLayout_18") No newline at end of file
211 self.verticalLayout_18.setObjectName("verticalLayout_18")
212 self.chkDevD = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
212 self.chkDevD = QtGui.QCheckBox(self.tabDconfig)
213 self.chkDevD.setChecked(True) No newline at end of file
213 self.chkDevD.setChecked(True)
214 self.chkDevD.setObjectName("chkDevD") No newline at end of file
214 self.chkDevD.setObjectName("chkDevD")
215 self.verticalLayout_18.addWidget(self.chkDevD) No newline at end of file
215 self.verticalLayout_18.addWidget(self.chkDevD)
216 self.grpDevD = QtGui.QWidget(self.tabDconfig) No newline at end of file
216 self.grpDevD = QtGui.QWidget(self.tabDconfig)
217 self.grpDevD.setObjectName("grpDevD") No newline at end of file
217 self.grpDevD.setObjectName("grpDevD")
218 self.verticalLayout_14 = QtGui.QVBoxLayout(self.grpDevD) No newline at end of file
218 self.verticalLayout_14 = QtGui.QVBoxLayout(self.grpDevD)
219 self.verticalLayout_14.setObjectName("verticalLayout_14") No newline at end of file
219 self.verticalLayout_14.setObjectName("verticalLayout_14")
220 self.txtDeviceD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
220 self.txtDeviceD = QtGui.QLineEdit(self.grpDevD)
221 self.txtDeviceD.setObjectName("txtDeviceD") No newline at end of file
221 self.txtDeviceD.setObjectName("txtDeviceD")
222 self.verticalLayout_14.addWidget(self.txtDeviceD) No newline at end of file
222 self.verticalLayout_14.addWidget(self.txtDeviceD)
223 self.txtBspeedD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
223 self.txtBspeedD = QtGui.QLineEdit(self.grpDevD)
224 self.txtBspeedD.setObjectName("txtBspeedD") No newline at end of file
224 self.txtBspeedD.setObjectName("txtBspeedD")
225 self.verticalLayout_14.addWidget(self.txtBspeedD) No newline at end of file
225 self.verticalLayout_14.addWidget(self.txtBspeedD)
226 self.txtBmodeD = QtGui.QLineEdit(self.grpDevD) No newline at end of file
226 self.txtBmodeD = QtGui.QLineEdit(self.grpDevD)
227 self.txtBmodeD.setObjectName("txtBmodeD") No newline at end of file
227 self.txtBmodeD.setObjectName("txtBmodeD")
228 self.verticalLayout_14.addWidget(self.txtBmodeD) No newline at end of file
228 self.verticalLayout_14.addWidget(self.txtBmodeD)
229 self.btnTdevD = QtGui.QPushButton(self.grpDevD) No newline at end of file
229 self.btnTdevD = QtGui.QPushButton(self.grpDevD)
230 self.btnTdevD.setObjectName("btnTdevD") No newline at end of file
230 self.btnTdevD.setObjectName("btnTdevD")
231 self.verticalLayout_14.addWidget(self.btnTdevD) No newline at end of file
231 self.verticalLayout_14.addWidget(self.btnTdevD)
232 self.verticalLayout_18.addWidget(self.grpDevD) No newline at end of file
232 self.verticalLayout_18.addWidget(self.grpDevD)
233 self.gridLayout.addLayout(self.verticalLayout_18, 0, 3, 1, 1) No newline at end of file
233 self.gridLayout.addLayout(self.verticalLayout_18, 0, 3, 1, 1)
234 self.verticalLayout_19 = QtGui.QVBoxLayout() No newline at end of file
234 self.verticalLayout_19 = QtGui.QVBoxLayout()
235 self.verticalLayout_19.setObjectName("verticalLayout_19") No newline at end of file
235 self.verticalLayout_19.setObjectName("verticalLayout_19")
236 self.label_2 = QtGui.QLabel(self.tabDconfig)
236 self.label_2 = QtGui.QLabel(self.tabDconfig)
No newline at end of file
237 self.label_2.setText("") No newline at end of file
238 self.label_2.setObjectName("label_2") No newline at end of file
237 self.label_2.setObjectName("label_2")
239 self.verticalLayout_19.addWidget(self.label_2) No newline at end of file
238 self.verticalLayout_19.addWidget(self.label_2)
240 self.lblDevice = QtGui.QLabel(self.tabDconfig) No newline at end of file
239 self.lblDevice = QtGui.QLabel(self.tabDconfig)
241 self.lblDevice.setObjectName("lblDevice") No newline at end of file
240 self.lblDevice.setObjectName("lblDevice")
242 self.verticalLayout_19.addWidget(self.lblDevice) No newline at end of file
241 self.verticalLayout_19.addWidget(self.lblDevice)
243 self.lblBspeed = QtGui.QLabel(self.tabDconfig) No newline at end of file
242 self.lblBspeed = QtGui.QLabel(self.tabDconfig)
244 self.lblBspeed.setObjectName("lblBspeed") No newline at end of file
243 self.lblBspeed.setObjectName("lblBspeed")
245 self.verticalLayout_19.addWidget(self.lblBspeed) No newline at end of file
244 self.verticalLayout_19.addWidget(self.lblBspeed)
246 self.lblBmode = QtGui.QLabel(self.tabDconfig) No newline at end of file
245 self.lblBmode = QtGui.QLabel(self.tabDconfig)
247 self.lblBmode.setObjectName("lblBmode") No newline at end of file
246 self.lblBmode.setObjectName("lblBmode")
248 self.verticalLayout_19.addWidget(self.lblBmode) No newline at end of file
247 self.verticalLayout_19.addWidget(self.lblBmode)
249 self.label = QtGui.QLabel(self.tabDconfig)
248 self.label = QtGui.QLabel(self.tabDconfig)
No newline at end of file
250 self.label.setText("") No newline at end of file
251 self.label.setObjectName("label") No newline at end of file
249 self.label.setObjectName("label")
252 self.verticalLayout_19.addWidget(self.label) No newline at end of file
250 self.verticalLayout_19.addWidget(self.label)
253 self.gridLayout.addLayout(self.verticalLayout_19, 0, 4, 1, 1) No newline at end of file
251 self.gridLayout.addLayout(self.verticalLayout_19, 0, 4, 1, 1)
254 self.verticalLayout_3.addLayout(self.gridLayout) No newline at end of file
252 self.verticalLayout_3.addLayout(self.gridLayout)
255 self.horizontalLayout_9 = QtGui.QHBoxLayout() No newline at end of file
253 self.horizontalLayout_9 = QtGui.QHBoxLayout()
256 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
254 self.horizontalLayout_9.setSizeConstraint(QtGui.QLayout.SetFixedSize)
257 self.horizontalLayout_9.setObjectName("horizontalLayout_9") No newline at end of file
255 self.horizontalLayout_9.setObjectName("horizontalLayout_9")
258 self.lblBprocess = QtGui.QLabel(self.tabDconfig) No newline at end of file
256 self.lblBprocess = QtGui.QLabel(self.tabDconfig)
259 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
257 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
260 sizePolicy.setHorizontalStretch(0) No newline at end of file
258 sizePolicy.setHorizontalStretch(0)
261 sizePolicy.setVerticalStretch(0) No newline at end of file
259 sizePolicy.setVerticalStretch(0)
262 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth()) No newline at end of file
260 sizePolicy.setHeightForWidth(self.lblBprocess.sizePolicy().hasHeightForWidth())
263 self.lblBprocess.setSizePolicy(sizePolicy) No newline at end of file
261 self.lblBprocess.setSizePolicy(sizePolicy)
264 self.lblBprocess.setObjectName("lblBprocess") No newline at end of file
262 self.lblBprocess.setObjectName("lblBprocess")
265 self.horizontalLayout_9.addWidget(self.lblBprocess) No newline at end of file
263 self.horizontalLayout_9.addWidget(self.lblBprocess)
266 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
264 self.chkSimultaneously = QtGui.QCheckBox(self.tabDconfig)
267 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
265 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
268 sizePolicy.setHorizontalStretch(0) No newline at end of file
266 sizePolicy.setHorizontalStretch(0)
269 sizePolicy.setVerticalStretch(0) No newline at end of file
267 sizePolicy.setVerticalStretch(0)
270 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth()) No newline at end of file
268 sizePolicy.setHeightForWidth(self.chkSimultaneously.sizePolicy().hasHeightForWidth())
271 self.chkSimultaneously.setSizePolicy(sizePolicy) No newline at end of file
269 self.chkSimultaneously.setSizePolicy(sizePolicy)
272 self.chkSimultaneously.setObjectName("chkSimultaneously") No newline at end of file
270 self.chkSimultaneously.setObjectName("chkSimultaneously")
273 self.horizontalLayout_9.addWidget(self.chkSimultaneously) No newline at end of file
271 self.horizontalLayout_9.addWidget(self.chkSimultaneously)
274 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
272 self.chkSequentially = QtGui.QCheckBox(self.tabDconfig)
275 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
273 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
276 sizePolicy.setHorizontalStretch(0) No newline at end of file
274 sizePolicy.setHorizontalStretch(0)
277 sizePolicy.setVerticalStretch(0) No newline at end of file
275 sizePolicy.setVerticalStretch(0)
278 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth()) No newline at end of file
276 sizePolicy.setHeightForWidth(self.chkSequentially.sizePolicy().hasHeightForWidth())
279 self.chkSequentially.setSizePolicy(sizePolicy) No newline at end of file
277 self.chkSequentially.setSizePolicy(sizePolicy)
280 self.chkSequentially.setChecked(True) No newline at end of file
278 self.chkSequentially.setChecked(True)
281 self.chkSequentially.setObjectName("chkSequentially") No newline at end of file
279 self.chkSequentially.setObjectName("chkSequentially")
282 self.horizontalLayout_9.addWidget(self.chkSequentially) No newline at end of file
280 self.horizontalLayout_9.addWidget(self.chkSequentially)
283 self.verticalLayout_3.addLayout(self.horizontalLayout_9) No newline at end of file
281 self.verticalLayout_3.addLayout(self.horizontalLayout_9)
284 self.horizontalLayout_11 = QtGui.QHBoxLayout() No newline at end of file
282 self.horizontalLayout_11 = QtGui.QHBoxLayout()
285 self.horizontalLayout_11.setSpacing(6) No newline at end of file
283 self.horizontalLayout_11.setSpacing(6)
286 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
284 self.horizontalLayout_11.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
287 self.horizontalLayout_11.setObjectName("horizontalLayout_11") No newline at end of file
285 self.horizontalLayout_11.setObjectName("horizontalLayout_11")
288 self.lblDcapacity = QtGui.QLabel(self.tabDconfig) No newline at end of file
286 self.lblDcapacity = QtGui.QLabel(self.tabDconfig)
289 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)
290 sizePolicy.setHorizontalStretch(0) No newline at end of file
288 sizePolicy.setHorizontalStretch(0)
291 sizePolicy.setVerticalStretch(0) No newline at end of file
289 sizePolicy.setVerticalStretch(0)
292 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
290 sizePolicy.setHeightForWidth(self.lblDcapacity.sizePolicy().hasHeightForWidth())
293 self.lblDcapacity.setSizePolicy(sizePolicy) No newline at end of file
291 self.lblDcapacity.setSizePolicy(sizePolicy)
294 self.lblDcapacity.setObjectName("lblDcapacity") No newline at end of file
292 self.lblDcapacity.setObjectName("lblDcapacity")
295 self.horizontalLayout_11.addWidget(self.lblDcapacity) No newline at end of file
293 self.horizontalLayout_11.addWidget(self.lblDcapacity)
296 self.chkSalert = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
294 self.chkSalert = QtGui.QCheckBox(self.tabDconfig)
297 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed) No newline at end of file
295 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Fixed, QtGui.QSizePolicy.Fixed)
298 sizePolicy.setHorizontalStretch(0) No newline at end of file
296 sizePolicy.setHorizontalStretch(0)
299 sizePolicy.setVerticalStretch(0) No newline at end of file
297 sizePolicy.setVerticalStretch(0)
300 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth()) No newline at end of file
298 sizePolicy.setHeightForWidth(self.chkSalert.sizePolicy().hasHeightForWidth())
301 self.chkSalert.setSizePolicy(sizePolicy) No newline at end of file
299 self.chkSalert.setSizePolicy(sizePolicy)
302 self.chkSalert.setObjectName("chkSalert") No newline at end of file
300 self.chkSalert.setObjectName("chkSalert")
303 self.horizontalLayout_11.addWidget(self.chkSalert) No newline at end of file
301 self.horizontalLayout_11.addWidget(self.chkSalert)
304 self.verticalLayout_3.addLayout(self.horizontalLayout_11) No newline at end of file
302 self.verticalLayout_3.addLayout(self.horizontalLayout_11)
305 self.horizontalLayout_10 = QtGui.QHBoxLayout() No newline at end of file
303 self.horizontalLayout_10 = QtGui.QHBoxLayout()
306 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize) No newline at end of file
304 self.horizontalLayout_10.setSizeConstraint(QtGui.QLayout.SetFixedSize)
307 self.horizontalLayout_10.setObjectName("horizontalLayout_10") No newline at end of file
305 self.horizontalLayout_10.setObjectName("horizontalLayout_10")
308 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig) No newline at end of file
306 self.lstDcapacity = QtGui.QComboBox(self.tabDconfig)
309 self.lstDcapacity.setObjectName("lstDcapacity") No newline at end of file
307 self.lstDcapacity.setObjectName("lstDcapacity")
310 self.lstDcapacity.addItem("") No newline at end of file
308 self.lstDcapacity.addItem("")
311 self.lstDcapacity.addItem("") No newline at end of file
309 self.lstDcapacity.addItem("")
312 self.lstDcapacity.addItem("") No newline at end of file
310 self.lstDcapacity.addItem("")
313 self.lstDcapacity.addItem("") No newline at end of file
311 self.lstDcapacity.addItem("")
314 self.lstDcapacity.addItem("") No newline at end of file
312 self.lstDcapacity.addItem("")
315 self.horizontalLayout_10.addWidget(self.lstDcapacity) No newline at end of file
313 self.horizontalLayout_10.addWidget(self.lstDcapacity)
316 self.txtDcapacity = QtGui.QDoubleSpinBox(self.tabDconfig) No newline at end of file
314 self.txtDcapacity = QtGui.QDoubleSpinBox(self.tabDconfig)
317 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed) No newline at end of file
315 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Fixed)
318 sizePolicy.setHorizontalStretch(0) No newline at end of file
316 sizePolicy.setHorizontalStretch(0)
319 sizePolicy.setVerticalStretch(0) No newline at end of file
317 sizePolicy.setVerticalStretch(0)
320 sizePolicy.setHeightForWidth(self.txtDcapacity.sizePolicy().hasHeightForWidth()) No newline at end of file
318 sizePolicy.setHeightForWidth(self.txtDcapacity.sizePolicy().hasHeightForWidth())
321 self.txtDcapacity.setSizePolicy(sizePolicy) No newline at end of file
319 self.txtDcapacity.setSizePolicy(sizePolicy)
322 self.txtDcapacity.setReadOnly(True) No newline at end of file
320 self.txtDcapacity.setReadOnly(True)
323 self.txtDcapacity.setMinimum(100.0) No newline at end of file
321 self.txtDcapacity.setMinimum(100.0)
324 self.txtDcapacity.setMaximum(99999.99) No newline at end of file
322 self.txtDcapacity.setMaximum(99999.99)
325 self.txtDcapacity.setProperty("value", 4482.27) No newline at end of file
323 self.txtDcapacity.setProperty("value", 4482.27)
326 self.txtDcapacity.setObjectName("txtDcapacity") No newline at end of file
324 self.txtDcapacity.setObjectName("txtDcapacity")
327 self.horizontalLayout_10.addWidget(self.txtDcapacity) No newline at end of file
325 self.horizontalLayout_10.addWidget(self.txtDcapacity)
328 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig) No newline at end of file
326 self.chkPSgraphic = QtGui.QCheckBox(self.tabDconfig)
329 self.chkPSgraphic.setObjectName("chkPSgraphic") No newline at end of file
327 self.chkPSgraphic.setObjectName("chkPSgraphic")
330 self.horizontalLayout_10.addWidget(self.chkPSgraphic) No newline at end of file
328 self.horizontalLayout_10.addWidget(self.chkPSgraphic)
331 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig) No newline at end of file
329 self.lineEdit_17 = QtGui.QLineEdit(self.tabDconfig)
332 self.lineEdit_17.setObjectName("lineEdit_17") No newline at end of file
330 self.lineEdit_17.setObjectName("lineEdit_17")
333 self.horizontalLayout_10.addWidget(self.lineEdit_17) No newline at end of file
331 self.horizontalLayout_10.addWidget(self.lineEdit_17)
334 self.verticalLayout_3.addLayout(self.horizontalLayout_10) No newline at end of file
332 self.verticalLayout_3.addLayout(self.horizontalLayout_10)
335 self.tabWidget.addTab(self.tabDconfig, "") No newline at end of file
333 self.tabWidget.addTab(self.tabDconfig, "")
336 self.tabSburn = QtGui.QWidget() No newline at end of file
334 self.tabSburn = QtGui.QWidget()
337 self.tabSburn.setObjectName("tabSburn") No newline at end of file
335 self.tabSburn.setObjectName("tabSburn")
338 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn) No newline at end of file
336 self.verticalLayout_4 = QtGui.QVBoxLayout(self.tabSburn)
339 self.verticalLayout_4.setObjectName("verticalLayout_4") No newline at end of file
337 self.verticalLayout_4.setObjectName("verticalLayout_4")
340 self.widget_2 = QtGui.QWidget(self.tabSburn) No newline at end of file
338 self.widget_2 = QtGui.QWidget(self.tabSburn)
341 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum) No newline at end of file
339 sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Minimum, QtGui.QSizePolicy.Minimum)
342 sizePolicy.setHorizontalStretch(0) No newline at end of file
340 sizePolicy.setHorizontalStretch(0)
343 sizePolicy.setVerticalStretch(0) No newline at end of file
341 sizePolicy.setVerticalStretch(0)
344 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth()) No newline at end of file
342 sizePolicy.setHeightForWidth(self.widget_2.sizePolicy().hasHeightForWidth())
345 self.widget_2.setSizePolicy(sizePolicy) No newline at end of file
343 self.widget_2.setSizePolicy(sizePolicy)
346 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215)) No newline at end of file
344 self.widget_2.setMaximumSize(QtCore.QSize(500, 16777215))
347 self.widget_2.setObjectName("widget_2") No newline at end of file
345 self.widget_2.setObjectName("widget_2")
348 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2) No newline at end of file
346 self.gridLayout_2 = QtGui.QGridLayout(self.widget_2)
349 self.gridLayout_2.setObjectName("gridLayout_2") No newline at end of file
347 self.gridLayout_2.setObjectName("gridLayout_2")
350 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2) No newline at end of file
348 self.txtSTATUSb = QtGui.QLineEdit(self.widget_2)
351 self.txtSTATUSb.setReadOnly(True) No newline at end of file
349 self.txtSTATUSb.setReadOnly(True)
352 self.txtSTATUSb.setObjectName("txtSTATUSb") No newline at end of file
350 self.txtSTATUSb.setObjectName("txtSTATUSb")
353 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1) No newline at end of file
351 self.gridLayout_2.addWidget(self.txtSTATUSb, 3, 2, 1, 1)
354 self.txtINFOa = QtGui.QLineEdit(self.widget_2) No newline at end of file
352 self.txtINFOa = QtGui.QLineEdit(self.widget_2)
355 self.txtINFOa.setReadOnly(True) No newline at end of file
353 self.txtINFOa.setReadOnly(True)
356 self.txtINFOa.setObjectName("txtINFOa") No newline at end of file
354 self.txtINFOa.setObjectName("txtINFOa")
357 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1) No newline at end of file
355 self.gridLayout_2.addWidget(self.txtINFOa, 5, 1, 1, 1)
358 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2) No newline at end of file
356 self.txtSTATUSa = QtGui.QLineEdit(self.widget_2)
359 self.txtSTATUSa.setReadOnly(True) No newline at end of file
357 self.txtSTATUSa.setReadOnly(True)
360 self.txtSTATUSa.setObjectName("txtSTATUSa") No newline at end of file
358 self.txtSTATUSa.setObjectName("txtSTATUSa")
361 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1) No newline at end of file
359 self.gridLayout_2.addWidget(self.txtSTATUSa, 3, 1, 1, 1)
362 self.txtINFOb = QtGui.QLineEdit(self.widget_2) No newline at end of file
360 self.txtINFOb = QtGui.QLineEdit(self.widget_2)
363 self.txtINFOb.setReadOnly(True) No newline at end of file
361 self.txtINFOb.setReadOnly(True)
364 self.txtINFOb.setObjectName("txtINFOb") No newline at end of file
362 self.txtINFOb.setObjectName("txtINFOb")
365 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1) No newline at end of file
363 self.gridLayout_2.addWidget(self.txtINFOb, 5, 2, 1, 1)
366 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2) No newline at end of file
364 self.txtSTATUSc = QtGui.QLineEdit(self.widget_2)
367 self.txtSTATUSc.setReadOnly(True) No newline at end of file
365 self.txtSTATUSc.setReadOnly(True)
368 self.txtSTATUSc.setObjectName("txtSTATUSc") No newline at end of file
366 self.txtSTATUSc.setObjectName("txtSTATUSc")
369 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1) No newline at end of file
367 self.gridLayout_2.addWidget(self.txtSTATUSc, 3, 3, 1, 1)
370 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2) No newline at end of file
368 self.txtSTATUSd = QtGui.QLineEdit(self.widget_2)
371 self.txtSTATUSd.setReadOnly(True) No newline at end of file
369 self.txtSTATUSd.setReadOnly(True)
372 self.txtSTATUSd.setObjectName("txtSTATUSd") No newline at end of file
370 self.txtSTATUSd.setObjectName("txtSTATUSd")
373 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1) No newline at end of file
371 self.gridLayout_2.addWidget(self.txtSTATUSd, 3, 4, 1, 1)
374 self.txtINFOd = QtGui.QLineEdit(self.widget_2) No newline at end of file
372 self.txtINFOd = QtGui.QLineEdit(self.widget_2)
375 self.txtINFOd.setReadOnly(True) No newline at end of file
373 self.txtINFOd.setReadOnly(True)
376 self.txtINFOd.setObjectName("txtINFOd") No newline at end of file
374 self.txtINFOd.setObjectName("txtINFOd")
377 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1) No newline at end of file
375 self.gridLayout_2.addWidget(self.txtINFOd, 5, 4, 1, 1)
378 self.txtSETa = QtGui.QLineEdit(self.widget_2) No newline at end of file
376 self.txtSETa = QtGui.QLineEdit(self.widget_2)
379 self.txtSETa.setReadOnly(True) No newline at end of file
377 self.txtSETa.setReadOnly(True)
380 self.txtSETa.setObjectName("txtSETa") No newline at end of file
378 self.txtSETa.setObjectName("txtSETa")
381 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1) No newline at end of file
379 self.gridLayout_2.addWidget(self.txtSETa, 6, 1, 1, 1)
382 self.txtSETb = QtGui.QLineEdit(self.widget_2) No newline at end of file
380 self.txtSETb = QtGui.QLineEdit(self.widget_2)
383 self.txtSETb.setReadOnly(True) No newline at end of file
381 self.txtSETb.setReadOnly(True)
384 self.txtSETb.setObjectName("txtSETb") No newline at end of file
382 self.txtSETb.setObjectName("txtSETb")
385 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1) No newline at end of file
383 self.gridLayout_2.addWidget(self.txtSETb, 6, 2, 1, 1)
386 self.txtSETc = QtGui.QLineEdit(self.widget_2) No newline at end of file
384 self.txtSETc = QtGui.QLineEdit(self.widget_2)
387 self.txtSETc.setReadOnly(True) No newline at end of file
385 self.txtSETc.setReadOnly(True)
388 self.txtSETc.setObjectName("txtSETc") No newline at end of file
386 self.txtSETc.setObjectName("txtSETc")
389 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1) No newline at end of file
387 self.gridLayout_2.addWidget(self.txtSETc, 6, 3, 1, 1)
390 self.txtSETd = QtGui.QLineEdit(self.widget_2) No newline at end of file
388 self.txtSETd = QtGui.QLineEdit(self.widget_2)
391 self.txtSETd.setReadOnly(True) No newline at end of file
389 self.txtSETd.setReadOnly(True)
392 self.txtSETd.setObjectName("txtSETd") No newline at end of file
390 self.txtSETd.setObjectName("txtSETd")
393 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1) No newline at end of file
391 self.gridLayout_2.addWidget(self.txtSETd, 6, 4, 1, 1)
394 self.lblSTATUS = QtGui.QLabel(self.widget_2) No newline at end of file
392 self.lblSTATUS = QtGui.QLabel(self.widget_2)
395 self.lblSTATUS.setObjectName("lblSTATUS") No newline at end of file
393 self.lblSTATUS.setObjectName("lblSTATUS")
396 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1) No newline at end of file
394 self.gridLayout_2.addWidget(self.lblSTATUS, 3, 0, 1, 1)
397 self.lblINFO = QtGui.QLabel(self.widget_2) No newline at end of file
395 self.lblINFO = QtGui.QLabel(self.widget_2)
398 self.lblINFO.setObjectName("lblINFO") No newline at end of file
396 self.lblINFO.setObjectName("lblINFO")
399 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1) No newline at end of file
397 self.gridLayout_2.addWidget(self.lblINFO, 5, 0, 1, 1)
400 self.lblSET = QtGui.QLabel(self.widget_2) No newline at end of file
398 self.lblSET = QtGui.QLabel(self.widget_2)
401 self.lblSET.setObjectName("lblSET") No newline at end of file
399 self.lblSET.setObjectName("lblSET")
402 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1) No newline at end of file
400 self.gridLayout_2.addWidget(self.lblSET, 6, 0, 1, 1)
403 self.lblDevA = QtGui.QLabel(self.widget_2) No newline at end of file
401 self.lblDevA = QtGui.QLabel(self.widget_2)
404 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
402 self.lblDevA.setAlignment(QtCore.Qt.AlignCenter)
405 self.lblDevA.setObjectName("lblDevA") No newline at end of file
403 self.lblDevA.setObjectName("lblDevA")
406 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1) No newline at end of file
404 self.gridLayout_2.addWidget(self.lblDevA, 0, 1, 1, 1)
407 self.lblDevB = QtGui.QLabel(self.widget_2) No newline at end of file
405 self.lblDevB = QtGui.QLabel(self.widget_2)
408 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
406 self.lblDevB.setAlignment(QtCore.Qt.AlignCenter)
409 self.lblDevB.setObjectName("lblDevB") No newline at end of file
407 self.lblDevB.setObjectName("lblDevB")
410 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1) No newline at end of file
408 self.gridLayout_2.addWidget(self.lblDevB, 0, 2, 1, 1)
411 self.lblDevC = QtGui.QLabel(self.widget_2) No newline at end of file
409 self.lblDevC = QtGui.QLabel(self.widget_2)
412 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
410 self.lblDevC.setAlignment(QtCore.Qt.AlignCenter)
413 self.lblDevC.setObjectName("lblDevC") No newline at end of file
411 self.lblDevC.setObjectName("lblDevC")
414 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1) No newline at end of file
412 self.gridLayout_2.addWidget(self.lblDevC, 0, 3, 1, 1)
415 self.lblDevD = QtGui.QLabel(self.widget_2) No newline at end of file
413 self.lblDevD = QtGui.QLabel(self.widget_2)
416 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter) No newline at end of file
414 self.lblDevD.setAlignment(QtCore.Qt.AlignCenter)
417 self.lblDevD.setObjectName("lblDevD") No newline at end of file
415 self.lblDevD.setObjectName("lblDevD")
418 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1) No newline at end of file
416 self.gridLayout_2.addWidget(self.lblDevD, 0, 4, 1, 1)
419 self.txtINFOc = QtGui.QLineEdit(self.widget_2) No newline at end of file
417 self.txtINFOc = QtGui.QLineEdit(self.widget_2)
420 self.txtINFOc.setReadOnly(True) No newline at end of file
418 self.txtINFOc.setReadOnly(True)
421 self.txtINFOc.setObjectName("txtINFOc") No newline at end of file
419 self.txtINFOc.setObjectName("txtINFOc")
422 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1) No newline at end of file
420 self.gridLayout_2.addWidget(self.txtINFOc, 5, 3, 1, 1)
423 self.verticalLayout_4.addWidget(self.widget_2) No newline at end of file
421 self.verticalLayout_4.addWidget(self.widget_2)
424 self.txtSburn = QtGui.QTextEdit(self.tabSburn) No newline at end of file
422 self.txtSburn = QtGui.QTextEdit(self.tabSburn)
425 self.txtSburn.setReadOnly(True) No newline at end of file
423 self.txtSburn.setReadOnly(True)
426 self.txtSburn.setObjectName("txtSburn") No newline at end of file
424 self.txtSburn.setObjectName("txtSburn")
427 self.verticalLayout_4.addWidget(self.txtSburn) No newline at end of file
425 self.verticalLayout_4.addWidget(self.txtSburn)
428 self.tabWidget.addTab(self.tabSburn, "") No newline at end of file
426 self.tabWidget.addTab(self.tabSburn, "")
429 self.verticalLayout.addWidget(self.tabWidget) No newline at end of file
427 self.verticalLayout.addWidget(self.tabWidget)
430 self.txtInfo = QtGui.QTextEdit(self.centralwidget) No newline at end of file
428 self.txtInfo = QtGui.QTextEdit(self.centralwidget)
431 self.txtInfo.setReadOnly(True) No newline at end of file
429 self.txtInfo.setReadOnly(True)
432 self.txtInfo.setObjectName("txtInfo") No newline at end of file
430 self.txtInfo.setObjectName("txtInfo")
433 self.verticalLayout.addWidget(self.txtInfo) No newline at end of file
431 self.verticalLayout.addWidget(self.txtInfo)
434 self.horizontalLayout_2 = QtGui.QHBoxLayout() No newline at end of file
432 self.horizontalLayout_2 = QtGui.QHBoxLayout()
435 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint) No newline at end of file
433 self.horizontalLayout_2.setSizeConstraint(QtGui.QLayout.SetDefaultConstraint)
436 self.horizontalLayout_2.setObjectName("horizontalLayout_2") No newline at end of file
434 self.horizontalLayout_2.setObjectName("horizontalLayout_2")
437 self.btnGbkp = QtGui.QPushButton(self.centralwidget) No newline at end of file
435 self.btnGbkp = QtGui.QPushButton(self.centralwidget)
438 self.btnGbkp.setEnabled(False) No newline at end of file
436 self.btnGbkp.setEnabled(False)
439 self.btnGbkp.setObjectName("btnGbkp") No newline at end of file
437 self.btnGbkp.setObjectName("btnGbkp")
440 self.horizontalLayout_2.addWidget(self.btnGbkp) No newline at end of file
438 self.horizontalLayout_2.addWidget(self.btnGbkp)
441 self.btnRestart = QtGui.QPushButton(self.centralwidget) No newline at end of file
439 self.btnRestart = QtGui.QPushButton(self.centralwidget)
442 self.btnRestart.setEnabled(False) No newline at end of file
440 self.btnRestart.setEnabled(False)
443 self.btnRestart.setObjectName("btnRestart") No newline at end of file
441 self.btnRestart.setObjectName("btnRestart")
444 self.horizontalLayout_2.addWidget(self.btnRestart) No newline at end of file
442 self.horizontalLayout_2.addWidget(self.btnRestart)
445 self.btnStartburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
443 self.btnStartburn = QtGui.QPushButton(self.centralwidget)
446 self.btnStartburn.setEnabled(False) No newline at end of file
444 self.btnStartburn.setEnabled(False)
447 self.btnStartburn.setObjectName("btnStartburn") No newline at end of file
445 self.btnStartburn.setObjectName("btnStartburn")
448 self.horizontalLayout_2.addWidget(self.btnStartburn) No newline at end of file
446 self.horizontalLayout_2.addWidget(self.btnStartburn)
449 self.btnStopburn = QtGui.QPushButton(self.centralwidget) No newline at end of file
447 self.btnStopburn = QtGui.QPushButton(self.centralwidget)
450 self.btnStopburn.setEnabled(False) No newline at end of file
448 self.btnStopburn.setEnabled(False)
451 self.btnStopburn.setObjectName("btnStopburn") No newline at end of file
449 self.btnStopburn.setObjectName("btnStopburn")
452 self.horizontalLayout_2.addWidget(self.btnStopburn) No newline at end of file
450 self.horizontalLayout_2.addWidget(self.btnStopburn)
453 self.verticalLayout.addLayout(self.horizontalLayout_2) No newline at end of file
451 self.verticalLayout.addLayout(self.horizontalLayout_2)
454 MainWindow.setCentralWidget(self.centralwidget) No newline at end of file
452 MainWindow.setCentralWidget(self.centralwidget)
455 self.menubar = QtGui.QMenuBar(MainWindow)
453 self.menubar = QtGui.QMenuBar(MainWindow)
No newline at end of file
454 self.menubar.setGeometry(QtCore.QRect(0, 0, 809, 25)) No newline at end of file
456 self.menubar.setGeometry(QtCore.QRect(0, 0, 809, 21)) No newline at end of file
457 self.menubar.setObjectName("menubar") No newline at end of file
455 self.menubar.setObjectName("menubar")
458 self.menuParameters = QtGui.QMenu(self.menubar) No newline at end of file
456 self.menuParameters = QtGui.QMenu(self.menubar)
459 self.menuParameters.setObjectName("menuParameters") No newline at end of file
457 self.menuParameters.setObjectName("menuParameters")
460 self.menuHelp = QtGui.QMenu(self.menubar) No newline at end of file
458 self.menuHelp = QtGui.QMenu(self.menubar)
461 self.menuHelp.setObjectName("menuHelp") No newline at end of file
459 self.menuHelp.setObjectName("menuHelp")
462 self.menuFile = QtGui.QMenu(self.menubar) No newline at end of file
460 self.menuFile = QtGui.QMenu(self.menubar)
463 self.menuFile.setObjectName("menuFile") No newline at end of file
461 self.menuFile.setObjectName("menuFile")
464 MainWindow.setMenuBar(self.menubar) No newline at end of file
462 MainWindow.setMenuBar(self.menubar)
465 self.statusbar = QtGui.QStatusBar(MainWindow) No newline at end of file
463 self.statusbar = QtGui.QStatusBar(MainWindow)
466 self.statusbar.setObjectName("statusbar") No newline at end of file
464 self.statusbar.setObjectName("statusbar")
467 MainWindow.setStatusBar(self.statusbar) No newline at end of file
465 MainWindow.setStatusBar(self.statusbar)
468 self.actionChange_Parameters = QtGui.QAction(MainWindow) No newline at end of file
466 self.actionChange_Parameters = QtGui.QAction(MainWindow)
469 self.actionChange_Parameters.setObjectName("actionChange_Parameters") No newline at end of file
467 self.actionChange_Parameters.setObjectName("actionChange_Parameters")
470 self.actionSave_Config = QtGui.QAction(MainWindow) No newline at end of file
468 self.actionSave_Config = QtGui.QAction(MainWindow)
471 self.actionSave_Config.setObjectName("actionSave_Config") No newline at end of file
469 self.actionSave_Config.setObjectName("actionSave_Config")
472 self.actionQuit = QtGui.QAction(MainWindow) No newline at end of file
470 self.actionQuit = QtGui.QAction(MainWindow)
473 self.actionQuit.setObjectName("actionQuit") No newline at end of file
471 self.actionQuit.setObjectName("actionQuit")
474 self.actionAbout = QtGui.QAction(MainWindow) No newline at end of file
472 self.actionAbout = QtGui.QAction(MainWindow)
475 self.actionAbout.setObjectName("actionAbout") No newline at end of file
473 self.actionAbout.setObjectName("actionAbout")
476 self.menuParameters.addAction(self.actionChange_Parameters) No newline at end of file
474 self.menuParameters.addAction(self.actionChange_Parameters)
477 self.menuHelp.addAction(self.actionAbout) No newline at end of file
475 self.menuHelp.addAction(self.actionAbout)
478 self.menuFile.addAction(self.actionSave_Config) No newline at end of file
476 self.menuFile.addAction(self.actionSave_Config)
479 self.menuFile.addAction(self.actionQuit) No newline at end of file
477 self.menuFile.addAction(self.actionQuit)
480 self.menubar.addAction(self.menuFile.menuAction()) No newline at end of file
478 self.menubar.addAction(self.menuFile.menuAction())
481 self.menubar.addAction(self.menuParameters.menuAction()) No newline at end of file
479 self.menubar.addAction(self.menuParameters.menuAction())
482 self.menubar.addAction(self.menuHelp.menuAction()) No newline at end of file
480 self.menubar.addAction(self.menuHelp.menuAction())
483 No newline at end of file
481
484 self.retranslateUi(MainWindow) No newline at end of file
482 self.retranslateUi(MainWindow)
485 self.tabWidget.setCurrentIndex(0) No newline at end of file
483 self.tabWidget.setCurrentIndex(0)
486 self.lstDcapacity.setCurrentIndex(2) No newline at end of file
484 self.lstDcapacity.setCurrentIndex(2)
487 QtCore.QObject.connect(self.chkSequentially, QtCore.SIGNAL("clicked()"), self.chkSimultaneously.toggle) No newline at end of file
485 QtCore.QObject.connect(self.chkSequentially, QtCore.SIGNAL("clicked()"), self.chkSimultaneously.toggle)
488 QtCore.QObject.connect(self.chkSimultaneously, QtCore.SIGNAL("clicked()"), self.chkSequentially.toggle) No newline at end of file
486 QtCore.QObject.connect(self.chkSimultaneously, QtCore.SIGNAL("clicked()"), self.chkSequentially.toggle)
489 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.grpDevA.setEnabled) No newline at end of file
487 QtCore.QObject.connect(self.chkDevA, QtCore.SIGNAL("toggled(bool)"), self.grpDevA.setEnabled)
490 QtCore.QObject.connect(self.chkDevB, QtCore.SIGNAL("toggled(bool)"), self.grpDevB.setEnabled) No newline at end of file
488 QtCore.QObject.connect(self.chkDevB, QtCore.SIGNAL("toggled(bool)"), self.grpDevB.setEnabled)
491 QtCore.QObject.connect(self.chkDevC, QtCore.SIGNAL("toggled(bool)"), self.grpDevC.setEnabled) No newline at end of file
489 QtCore.QObject.connect(self.chkDevC, QtCore.SIGNAL("toggled(bool)"), self.grpDevC.setEnabled)
492 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled) No newline at end of file
490 QtCore.QObject.connect(self.chkDevD, QtCore.SIGNAL("toggled(bool)"), self.grpDevD.setEnabled)
493 QtCore.QMetaObject.connectSlotsByName(MainWindow) No newline at end of file
491 QtCore.QMetaObject.connectSlotsByName(MainWindow)
494 MainWindow.setTabOrder(self.txtDpath, self.btnDpath) No newline at end of file
492 MainWindow.setTabOrder(self.txtDpath, self.btnDpath)
495 MainWindow.setTabOrder(self.btnDpath, self.txtRpath) No newline at end of file
493 MainWindow.setTabOrder(self.btnDpath, self.txtRpath)
496 MainWindow.setTabOrder(self.txtRpath, self.btnRpath) No newline at end of file
494 MainWindow.setTabOrder(self.txtRpath, self.btnRpath)
497 MainWindow.setTabOrder(self.btnRpath, self.lstDtype) No newline at end of file
495 MainWindow.setTabOrder(self.btnRpath, self.lstDtype)
498 MainWindow.setTabOrder(self.lstDtype, self.txtDtype) No newline at end of file
496 MainWindow.setTabOrder(self.lstDtype, self.txtDtype)
499 MainWindow.setTabOrder(self.txtDtype, self.chkMST) No newline at end of file
497 MainWindow.setTabOrder(self.txtDtype, self.chkMST)
500 MainWindow.setTabOrder(self.chkMST, self.txtElabel) No newline at end of file
498 MainWindow.setTabOrder(self.chkMST, self.txtElabel)
501 MainWindow.setTabOrder(self.txtElabel, self.lstStartDay) No newline at end of file
499 MainWindow.setTabOrder(self.txtElabel, self.lstStartDay)
502 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay) No newline at end of file
500 MainWindow.setTabOrder(self.lstStartDay, self.lstStopDay)
503 MainWindow.setTabOrder(self.lstStopDay, self.chkSimultaneously) No newline at end of file
501 MainWindow.setTabOrder(self.lstStopDay, self.chkSimultaneously)
504 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially) No newline at end of file
502 MainWindow.setTabOrder(self.chkSimultaneously, self.chkSequentially)
505 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert) No newline at end of file
503 MainWindow.setTabOrder(self.chkSequentially, self.chkSalert)
506 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity) No newline at end of file
504 MainWindow.setTabOrder(self.chkSalert, self.lstDcapacity)
507 MainWindow.setTabOrder(self.lstDcapacity, self.chkPSgraphic) No newline at end of file
505 MainWindow.setTabOrder(self.lstDcapacity, self.chkPSgraphic)
508 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17) No newline at end of file
506 MainWindow.setTabOrder(self.chkPSgraphic, self.lineEdit_17)
509 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa) No newline at end of file
507 MainWindow.setTabOrder(self.lineEdit_17, self.txtSTATUSa)
510 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb) No newline at end of file
508 MainWindow.setTabOrder(self.txtSTATUSa, self.txtSTATUSb)
511 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc) No newline at end of file
509 MainWindow.setTabOrder(self.txtSTATUSb, self.txtSTATUSc)
512 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd) No newline at end of file
510 MainWindow.setTabOrder(self.txtSTATUSc, self.txtSTATUSd)
513 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa) No newline at end of file
511 MainWindow.setTabOrder(self.txtSTATUSd, self.txtINFOa)
514 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb) No newline at end of file
512 MainWindow.setTabOrder(self.txtINFOa, self.txtINFOb)
515 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc) No newline at end of file
513 MainWindow.setTabOrder(self.txtINFOb, self.txtINFOc)
516 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd) No newline at end of file
514 MainWindow.setTabOrder(self.txtINFOc, self.txtINFOd)
517 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa) No newline at end of file
515 MainWindow.setTabOrder(self.txtINFOd, self.txtSETa)
518 MainWindow.setTabOrder(self.txtSETa, self.txtSETb) No newline at end of file
516 MainWindow.setTabOrder(self.txtSETa, self.txtSETb)
519 MainWindow.setTabOrder(self.txtSETb, self.txtSETc) No newline at end of file
517 MainWindow.setTabOrder(self.txtSETb, self.txtSETc)
520 MainWindow.setTabOrder(self.txtSETc, self.txtSETd) No newline at end of file
518 MainWindow.setTabOrder(self.txtSETc, self.txtSETd)
521 MainWindow.setTabOrder(self.txtSETd, self.tabWidget) No newline at end of file
519 MainWindow.setTabOrder(self.txtSETd, self.tabWidget)
522 MainWindow.setTabOrder(self.tabWidget, self.txtSburn) No newline at end of file
520 MainWindow.setTabOrder(self.tabWidget, self.txtSburn)
523 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp) No newline at end of file
521 MainWindow.setTabOrder(self.txtSburn, self.btnGbkp)
524 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart) No newline at end of file
522 MainWindow.setTabOrder(self.btnGbkp, self.btnRestart)
525 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn) No newline at end of file
523 MainWindow.setTabOrder(self.btnRestart, self.btnStartburn)
526 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn) No newline at end of file
524 MainWindow.setTabOrder(self.btnStartburn, self.btnStopburn)
527 No newline at end of file
525
528 def retranslateUi(self, MainWindow): No newline at end of file
526 def retranslateUi(self, MainWindow):
529 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
527 MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "JRO BACKUP MANAGER", None, QtGui.QApplication.UnicodeUTF8))
530 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
528 self.btnDpath.setText(QtGui.QApplication.translate("MainWindow", "Data Path", None, QtGui.QApplication.UnicodeUTF8))
531 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
529 self.btnRpath.setText(QtGui.QApplication.translate("MainWindow", "Resource Path", None, QtGui.QApplication.UnicodeUTF8))
532 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
530 self.lblDtype.setText(QtGui.QApplication.translate("MainWindow", "Data Type", None, QtGui.QApplication.UnicodeUTF8))
533 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
531 self.lstDtype.setItemText(0, QtGui.QApplication.translate("MainWindow", "Raw Data", None, QtGui.QApplication.UnicodeUTF8))
534 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
532 self.lstDtype.setItemText(1, QtGui.QApplication.translate("MainWindow", "Process Data", None, QtGui.QApplication.UnicodeUTF8))
535 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
533 self.lstDtype.setItemText(2, QtGui.QApplication.translate("MainWindow", "BLTR Data", None, QtGui.QApplication.UnicodeUTF8))
536 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
534 self.lstDtype.setItemText(3, QtGui.QApplication.translate("MainWindow", "Other", None, QtGui.QApplication.UnicodeUTF8))
537 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
535 self.txtDtype.setText(QtGui.QApplication.translate("MainWindow", "r", None, QtGui.QApplication.UnicodeUTF8))
538 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
536 self.chkMST.setText(QtGui.QApplication.translate("MainWindow", "MST-ISR Data", None, QtGui.QApplication.UnicodeUTF8))
539 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
537 self.lblElabel.setText(QtGui.QApplication.translate("MainWindow", "Exp. Label at device", None, QtGui.QApplication.UnicodeUTF8))
540 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
538 self.lblCopys.setText(QtGui.QApplication.translate("MainWindow", "Copys", None, QtGui.QApplication.UnicodeUTF8))
541 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
539 self.lblStartDay.setText(QtGui.QApplication.translate("MainWindow", "Start Day:", None, QtGui.QApplication.UnicodeUTF8))
542 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
540 self.lblStopDay.setText(QtGui.QApplication.translate("MainWindow", "Stop Day:", None, QtGui.QApplication.UnicodeUTF8))
543 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
541 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabParameters), QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
544 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
542 self.chkDevA.setText(QtGui.QApplication.translate("MainWindow", "Dev A", None, QtGui.QApplication.UnicodeUTF8))
545 self.txtBspeedA.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
543 self.txtBspeedA.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8))
546 self.txtBmodeA.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
544 self.txtBmodeA.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8))
547 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
545 self.btnTdevA.setText(QtGui.QApplication.translate("MainWindow", "Test DevA", None, QtGui.QApplication.UnicodeUTF8))
548 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
546 self.chkDevB.setText(QtGui.QApplication.translate("MainWindow", "Dev B", None, QtGui.QApplication.UnicodeUTF8))
549 self.txtBspeedB.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
547 self.txtBspeedB.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8))
550 self.txtBmodeB.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
548 self.txtBmodeB.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8))
551 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
549 self.btnTdevB.setText(QtGui.QApplication.translate("MainWindow", "Test DevB", None, QtGui.QApplication.UnicodeUTF8))
552 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
550 self.chkDevC.setText(QtGui.QApplication.translate("MainWindow", "Dev C", None, QtGui.QApplication.UnicodeUTF8))
553 self.txtBspeedC.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
551 self.txtBspeedC.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8))
554 self.txtBmodeC.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
552 self.txtBmodeC.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8))
555 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
553 self.btnTdevC.setText(QtGui.QApplication.translate("MainWindow", "Test DevC", None, QtGui.QApplication.UnicodeUTF8))
556 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
554 self.chkDevD.setText(QtGui.QApplication.translate("MainWindow", "Dev D", None, QtGui.QApplication.UnicodeUTF8))
557 self.txtBspeedD.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
555 self.txtBspeedD.setText(QtGui.QApplication.translate("MainWindow", "16", None, QtGui.QApplication.UnicodeUTF8))
558 self.txtBmodeD.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
556 self.txtBmodeD.setText(QtGui.QApplication.translate("MainWindow", "-sao", None, QtGui.QApplication.UnicodeUTF8))
559 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
557 self.btnTdevD.setText(QtGui.QApplication.translate("MainWindow", "Test DevD", None, QtGui.QApplication.UnicodeUTF8))
560 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
558 self.lblDevice.setText(QtGui.QApplication.translate("MainWindow", "Device", None, QtGui.QApplication.UnicodeUTF8))
561 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
559 self.lblBspeed.setText(QtGui.QApplication.translate("MainWindow", "Burn Speed", None, QtGui.QApplication.UnicodeUTF8))
562 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
560 self.lblBmode.setText(QtGui.QApplication.translate("MainWindow", "Burn Mode", None, QtGui.QApplication.UnicodeUTF8))
563 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
561 self.lblBprocess.setText(QtGui.QApplication.translate("MainWindow", "Burning process", None, QtGui.QApplication.UnicodeUTF8))
564 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
562 self.chkSimultaneously.setText(QtGui.QApplication.translate("MainWindow", "Simultaneously", None, QtGui.QApplication.UnicodeUTF8))
565 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
563 self.chkSequentially.setText(QtGui.QApplication.translate("MainWindow", "Sequentially", None, QtGui.QApplication.UnicodeUTF8))
566 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity (MB)", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
564 self.lblDcapacity.setText(QtGui.QApplication.translate("MainWindow", "Device Capacity (MB)", None, QtGui.QApplication.UnicodeUTF8))
567 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
565 self.chkSalert.setText(QtGui.QApplication.translate("MainWindow", "Sound Alert", None, QtGui.QApplication.UnicodeUTF8))
568 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
566 self.lstDcapacity.setItemText(0, QtGui.QApplication.translate("MainWindow", "BluRay [25.0 GB]", None, QtGui.QApplication.UnicodeUTF8))
569 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
567 self.lstDcapacity.setItemText(1, QtGui.QApplication.translate("MainWindow", "DVD2 [8.5 GB]", None, QtGui.QApplication.UnicodeUTF8))
570 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
568 self.lstDcapacity.setItemText(2, QtGui.QApplication.translate("MainWindow", "DVD1 [4.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
571 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
569 self.lstDcapacity.setItemText(3, QtGui.QApplication.translate("MainWindow", "CD [0.7 GB]", None, QtGui.QApplication.UnicodeUTF8))
572 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
570 self.lstDcapacity.setItemText(4, QtGui.QApplication.translate("MainWindow", "Other [? GB]", None, QtGui.QApplication.UnicodeUTF8))
573 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
571 self.chkPSgraphic.setText(QtGui.QApplication.translate("MainWindow", "PS Graphic", None, QtGui.QApplication.UnicodeUTF8))
574 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
572 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabDconfig), QtGui.QApplication.translate("MainWindow", "Device Config.", None, QtGui.QApplication.UnicodeUTF8))
575 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
573 self.lblSTATUS.setText(QtGui.QApplication.translate("MainWindow", "STATUS", None, QtGui.QApplication.UnicodeUTF8))
576 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
574 self.lblINFO.setText(QtGui.QApplication.translate("MainWindow", "INFO", None, QtGui.QApplication.UnicodeUTF8))
577 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
575 self.lblSET.setText(QtGui.QApplication.translate("MainWindow", "SET", None, QtGui.QApplication.UnicodeUTF8))
578 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
576 self.lblDevA.setText(QtGui.QApplication.translate("MainWindow", "DEV A", None, QtGui.QApplication.UnicodeUTF8))
579 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
577 self.lblDevB.setText(QtGui.QApplication.translate("MainWindow", "DEV B", None, QtGui.QApplication.UnicodeUTF8))
580 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
578 self.lblDevC.setText(QtGui.QApplication.translate("MainWindow", "DEV C", None, QtGui.QApplication.UnicodeUTF8))
581 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
579 self.lblDevD.setText(QtGui.QApplication.translate("MainWindow", "DEV D", None, QtGui.QApplication.UnicodeUTF8))
582 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
580 self.tabWidget.setTabText(self.tabWidget.indexOf(self.tabSburn), QtGui.QApplication.translate("MainWindow", "Status Burn", None, QtGui.QApplication.UnicodeUTF8))
583 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
581 self.btnGbkp.setText(QtGui.QApplication.translate("MainWindow", "Generate Bkp", None, QtGui.QApplication.UnicodeUTF8))
584 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
582 self.btnRestart.setText(QtGui.QApplication.translate("MainWindow", "Restart", None, QtGui.QApplication.UnicodeUTF8))
585 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
583 self.btnStartburn.setText(QtGui.QApplication.translate("MainWindow", "Start Burn", None, QtGui.QApplication.UnicodeUTF8))
586 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
584 self.btnStopburn.setText(QtGui.QApplication.translate("MainWindow", "Stop Burn", None, QtGui.QApplication.UnicodeUTF8))
587 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
585 self.menuParameters.setTitle(QtGui.QApplication.translate("MainWindow", "Parameters", None, QtGui.QApplication.UnicodeUTF8))
588 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
586 self.menuHelp.setTitle(QtGui.QApplication.translate("MainWindow", "Help", None, QtGui.QApplication.UnicodeUTF8))
589 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
587 self.menuFile.setTitle(QtGui.QApplication.translate("MainWindow", "File", None, QtGui.QApplication.UnicodeUTF8))
590 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
588 self.actionChange_Parameters.setText(QtGui.QApplication.translate("MainWindow", "Change Parameters", None, QtGui.QApplication.UnicodeUTF8))
591 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
589 self.actionSave_Config.setText(QtGui.QApplication.translate("MainWindow", "Save Config", None, QtGui.QApplication.UnicodeUTF8))
592 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
590 self.actionQuit.setText(QtGui.QApplication.translate("MainWindow", "Quit", None, QtGui.QApplication.UnicodeUTF8))
593 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8)) No newline at end of file
591 self.actionAbout.setText(QtGui.QApplication.translate("MainWindow", "About", None, QtGui.QApplication.UnicodeUTF8))
594 No newline at end of file
592
595 No newline at end of file
593
596 if __name__ == "__main__": No newline at end of file
594 if __name__ == "__main__":
597 import sys No newline at end of file
595 import sys
598 app = QtGui.QApplication(sys.argv) No newline at end of file
596 app = QtGui.QApplication(sys.argv)
599 MainWindow = QtGui.QMainWindow() No newline at end of file
597 MainWindow = QtGui.QMainWindow()
600 ui = Ui_MainWindow() No newline at end of file
598 ui = Ui_MainWindow()
601 ui.setupUi(MainWindow) No newline at end of file
599 ui.setupUi(MainWindow)
602 MainWindow.show() No newline at end of file
600 MainWindow.show()
603 sys.exit(app.exec_()) No newline at end of file
601 sys.exit(app.exec_())
604 No newline at end of file
602
General Comments 0
You need to be logged in to leave comments. Login now