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