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