author | benmeyer <benmeyer> | 2002-12-11 19:39:18 (UTC) |
---|---|---|
committer | benmeyer <benmeyer> | 2002-12-11 19:39:18 (UTC) |
commit | f55158aac4a23cbdca20145634886b2b757d4465 (patch) (unidiff) | |
tree | a1cdcc5365f7ebdbeacc955c87b3a03be3e46f60 | |
parent | b3373b77e12e4b138848110884aedc37b56384e1 (diff) | |
download | opie-f55158aac4a23cbdca20145634886b2b757d4465.zip opie-f55158aac4a23cbdca20145634886b2b757d4465.tar.gz opie-f55158aac4a23cbdca20145634886b2b757d4465.tar.bz2 |
Cleaned up ui files so tab is in correct order
-rw-r--r-- | noncore/net/networksetup/TODO | 58 | ||||
-rw-r--r-- | noncore/net/networksetup/addconnection.ui | 7 | ||||
-rw-r--r-- | noncore/net/networksetup/ppp/ppp.ui | 4 | ||||
-rw-r--r-- | noncore/net/networksetup/systemadvanced.ui | 396 | ||||
-rw-r--r-- | noncore/net/networksetup/wlan/wlan.ui | 5 | ||||
-rw-r--r-- | noncore/settings/networksettings/TODO | 58 | ||||
-rw-r--r-- | noncore/settings/networksettings/addconnection.ui | 7 | ||||
-rw-r--r-- | noncore/settings/networksettings/ppp/ppp.ui | 4 | ||||
-rw-r--r-- | noncore/settings/networksettings/systemadvanced.ui | 396 | ||||
-rw-r--r-- | noncore/settings/networksettings/wlan/wlan.ui | 5 |
10 files changed, 140 insertions, 800 deletions
diff --git a/noncore/net/networksetup/TODO b/noncore/net/networksetup/TODO index 020339f..862d681 100644 --- a/noncore/net/networksetup/TODO +++ b/noncore/net/networksetup/TODO | |||
@@ -1,14 +1,72 @@ | |||
1 | test WEP | 1 | test WEP |
2 | WEP key in file wireless.conf is not encrypted !, therefore it is very easy to get the key out of the zaurus.. | 2 | WEP key in file wireless.conf is not encrypted !, therefore it is very easy to get the key out of the zaurus.. |
3 | 3 | ||
4 | udchcp needs to output the dhcp information so interfaces can read it | 4 | udchcp needs to output the dhcp information so interfaces can read it |
5 | 5 | ||
6 | interfacesetupimp really doesn't need a interface* pointer | 6 | interfacesetupimp really doesn't need a interface* pointer |
7 | 7 | ||
8 | Possible other modules to write: ppp, ipsec, bluetooth, ipchains | 8 | Possible other modules to write: ppp, ipsec, bluetooth, ipchains |
9 | 9 | ||
10 | PPP module needs to scan pppd.tdb to see what is currently active | 10 | PPP module needs to scan pppd.tdb to see what is currently active |
11 | 11 | ||
12 | WLAN - add possiblity to input text or hex without knowing "s:" | 12 | WLAN - add possiblity to input text or hex without knowing "s:" |
13 | 13 | ||
14 | Interface setupimp needs to use kernel calls. | 14 | Interface setupimp needs to use kernel calls. |
15 | |||
16 | Automaticly update the main list of interfaces: | ||
17 | > That would be me. :-D netlink, can you point me in the right | ||
18 | > direction where I can get more info on it? (I figured there was some | ||
19 | > kenel call) | ||
20 | |||
21 | You can look up the meaning of the packets you receive, or you can just go | ||
22 | poll for changes you might be interested in each time you receive _any_ | ||
23 | packet. Anything's better than periodic polling. | ||
24 | |||
25 | Note that you can't do this as non-root on some kernels. There's a patch | ||
26 | which can go into the hh.org kernel if it's not already there. | ||
27 | cf. http://marc.theaimsgroup.com/?l=linux-kernel&m=103520821605353&w=2 | ||
28 | |||
29 | |||
30 | #include <asm/types.h> | ||
31 | #include <sys/socket.h> | ||
32 | #include <linux/netlink.h> | ||
33 | #include <linux/rtnetlink.h> | ||
34 | |||
35 | int main(int argc, char **argv) | ||
36 | { | ||
37 | int fd; | ||
38 | unsigned char buf[4096]; | ||
39 | int ret; | ||
40 | int i, j; | ||
41 | struct sockaddr_nl snl; | ||
42 | |||
43 | fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE); | ||
44 | if (fd < 0) { | ||
45 | perror("socket"); | ||
46 | exit(1); | ||
47 | } | ||
48 | |||
49 | snl.nl_family = AF_NETLINK; | ||
50 | snl.nl_pad = 0; | ||
51 | snl.nl_pid = getpid(); | ||
52 | snl.nl_groups = RTM_NEWLINK|RTM_DELLINK; | ||
53 | |||
54 | if (bind(fd, &snl, sizeof(snl)) < 0) { | ||
55 | perror("bind"); | ||
56 | exit(1); | ||
57 | } | ||
58 | while (1) { | ||
59 | ret = recv(fd, buf, 4096, 0); | ||
60 | if (ret < 0) { | ||
61 | perror("recv"); | ||
62 | exit(1); | ||
63 | } | ||
64 | for (i=0; i<ret; i++) { | ||
65 | printf("%02x ", buf[i]); | ||
66 | } | ||
67 | printf("\n"); | ||
68 | } | ||
69 | |||
70 | } | ||
71 | -- | ||
72 | |||
diff --git a/noncore/net/networksetup/addconnection.ui b/noncore/net/networksetup/addconnection.ui index a349804..da6cf06 100644 --- a/noncore/net/networksetup/addconnection.ui +++ b/noncore/net/networksetup/addconnection.ui | |||
@@ -1,153 +1,158 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>AddConnection</class> | 2 | <class>AddConnection</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QDialog</class> | 4 | <class>QDialog</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>AddConnection</cstring> | 7 | <cstring>AddConnection</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>233</width> | 14 | <width>229</width> |
15 | <height>268</height> | 15 | <height>268</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Add Network Connection</string> | 20 | <string>Add Network Connection</string> |
21 | </property> | 21 | </property> |
22 | <grid> | 22 | <grid> |
23 | <property stdset="1"> | 23 | <property stdset="1"> |
24 | <name>margin</name> | 24 | <name>margin</name> |
25 | <number>11</number> | 25 | <number>11</number> |
26 | </property> | 26 | </property> |
27 | <property stdset="1"> | 27 | <property stdset="1"> |
28 | <name>spacing</name> | 28 | <name>spacing</name> |
29 | <number>6</number> | 29 | <number>6</number> |
30 | </property> | 30 | </property> |
31 | <widget row="3" column="1" > | 31 | <widget row="3" column="1" > |
32 | <class>QPushButton</class> | 32 | <class>QPushButton</class> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>name</name> | 34 | <name>name</name> |
35 | <cstring>cancelButton</cstring> | 35 | <cstring>cancelButton</cstring> |
36 | </property> | 36 | </property> |
37 | <property stdset="1"> | 37 | <property stdset="1"> |
38 | <name>text</name> | 38 | <name>text</name> |
39 | <string>&Cancel</string> | 39 | <string>&Cancel</string> |
40 | </property> | 40 | </property> |
41 | </widget> | 41 | </widget> |
42 | <widget row="3" column="0" > | 42 | <widget row="3" column="0" > |
43 | <class>QPushButton</class> | 43 | <class>QPushButton</class> |
44 | <property stdset="1"> | 44 | <property stdset="1"> |
45 | <name>name</name> | 45 | <name>name</name> |
46 | <cstring>addButton</cstring> | 46 | <cstring>addButton</cstring> |
47 | </property> | 47 | </property> |
48 | <property stdset="1"> | 48 | <property stdset="1"> |
49 | <name>text</name> | 49 | <name>text</name> |
50 | <string>&Add</string> | 50 | <string>&Add</string> |
51 | </property> | 51 | </property> |
52 | </widget> | 52 | </widget> |
53 | <widget row="0" column="0" rowspan="1" colspan="2" > | 53 | <widget row="0" column="0" rowspan="1" colspan="2" > |
54 | <class>QListView</class> | 54 | <class>QListView</class> |
55 | <column> | 55 | <column> |
56 | <property> | 56 | <property> |
57 | <name>text</name> | 57 | <name>text</name> |
58 | <string>Services</string> | 58 | <string>Services</string> |
59 | </property> | 59 | </property> |
60 | <property> | 60 | <property> |
61 | <name>clickable</name> | 61 | <name>clickable</name> |
62 | <bool>true</bool> | 62 | <bool>true</bool> |
63 | </property> | 63 | </property> |
64 | <property> | 64 | <property> |
65 | <name>resizeable</name> | 65 | <name>resizeable</name> |
66 | <bool>true</bool> | 66 | <bool>true</bool> |
67 | </property> | 67 | </property> |
68 | </column> | 68 | </column> |
69 | <property stdset="1"> | 69 | <property stdset="1"> |
70 | <name>name</name> | 70 | <name>name</name> |
71 | <cstring>registeredServicesList</cstring> | 71 | <cstring>registeredServicesList</cstring> |
72 | </property> | 72 | </property> |
73 | <property stdset="1"> | 73 | <property stdset="1"> |
74 | <name>sizePolicy</name> | 74 | <name>sizePolicy</name> |
75 | <sizepolicy> | 75 | <sizepolicy> |
76 | <hsizetype>7</hsizetype> | 76 | <hsizetype>7</hsizetype> |
77 | <vsizetype>3</vsizetype> | 77 | <vsizetype>3</vsizetype> |
78 | </sizepolicy> | 78 | </sizepolicy> |
79 | </property> | 79 | </property> |
80 | <property stdset="1"> | 80 | <property stdset="1"> |
81 | <name>minimumSize</name> | 81 | <name>minimumSize</name> |
82 | <size> | 82 | <size> |
83 | <width>0</width> | 83 | <width>0</width> |
84 | <height>75</height> | 84 | <height>75</height> |
85 | </size> | 85 | </size> |
86 | </property> | 86 | </property> |
87 | </widget> | 87 | </widget> |
88 | <spacer row="2" column="1" > | 88 | <spacer row="2" column="1" > |
89 | <property> | 89 | <property> |
90 | <name>name</name> | 90 | <name>name</name> |
91 | <cstring>Spacer12</cstring> | 91 | <cstring>Spacer12</cstring> |
92 | </property> | 92 | </property> |
93 | <property stdset="1"> | 93 | <property stdset="1"> |
94 | <name>orientation</name> | 94 | <name>orientation</name> |
95 | <enum>Vertical</enum> | 95 | <enum>Vertical</enum> |
96 | </property> | 96 | </property> |
97 | <property stdset="1"> | 97 | <property stdset="1"> |
98 | <name>sizeType</name> | 98 | <name>sizeType</name> |
99 | <enum>Expanding</enum> | 99 | <enum>Expanding</enum> |
100 | </property> | 100 | </property> |
101 | <property> | 101 | <property> |
102 | <name>sizeHint</name> | 102 | <name>sizeHint</name> |
103 | <size> | 103 | <size> |
104 | <width>20</width> | 104 | <width>20</width> |
105 | <height>20</height> | 105 | <height>20</height> |
106 | </size> | 106 | </size> |
107 | </property> | 107 | </property> |
108 | </spacer> | 108 | </spacer> |
109 | <widget row="1" column="0" rowspan="1" colspan="2" > | 109 | <widget row="1" column="0" rowspan="1" colspan="2" > |
110 | <class>QLabel</class> | 110 | <class>QLabel</class> |
111 | <property stdset="1"> | 111 | <property stdset="1"> |
112 | <name>name</name> | 112 | <name>name</name> |
113 | <cstring>help</cstring> | 113 | <cstring>help</cstring> |
114 | </property> | 114 | </property> |
115 | <property stdset="1"> | 115 | <property stdset="1"> |
116 | <name>sizePolicy</name> | 116 | <name>sizePolicy</name> |
117 | <sizepolicy> | 117 | <sizepolicy> |
118 | <hsizetype>5</hsizetype> | 118 | <hsizetype>5</hsizetype> |
119 | <vsizetype>4</vsizetype> | 119 | <vsizetype>4</vsizetype> |
120 | </sizepolicy> | 120 | </sizepolicy> |
121 | </property> | 121 | </property> |
122 | <property stdset="1"> | 122 | <property stdset="1"> |
123 | <name>text</name> | 123 | <name>text</name> |
124 | <string></string> | 124 | <string></string> |
125 | </property> | 125 | </property> |
126 | <property stdset="1"> | 126 | <property stdset="1"> |
127 | <name>alignment</name> | 127 | <name>alignment</name> |
128 | <set>WordBreak|AlignTop|AlignLeft</set> | 128 | <set>WordBreak|AlignTop|AlignLeft</set> |
129 | </property> | 129 | </property> |
130 | <property> | 130 | <property> |
131 | <name>vAlign</name> | 131 | <name>vAlign</name> |
132 | </property> | 132 | </property> |
133 | <property> | 133 | <property> |
134 | <name>wordwrap</name> | 134 | <name>wordwrap</name> |
135 | </property> | 135 | </property> |
136 | </widget> | 136 | </widget> |
137 | </grid> | 137 | </grid> |
138 | </widget> | 138 | </widget> |
139 | <connections> | 139 | <connections> |
140 | <connection> | 140 | <connection> |
141 | <sender>cancelButton</sender> | 141 | <sender>cancelButton</sender> |
142 | <signal>clicked()</signal> | 142 | <signal>clicked()</signal> |
143 | <receiver>AddConnection</receiver> | 143 | <receiver>AddConnection</receiver> |
144 | <slot>reject()</slot> | 144 | <slot>reject()</slot> |
145 | </connection> | 145 | </connection> |
146 | <connection> | 146 | <connection> |
147 | <sender>addButton</sender> | 147 | <sender>addButton</sender> |
148 | <signal>clicked()</signal> | 148 | <signal>clicked()</signal> |
149 | <receiver>AddConnection</receiver> | 149 | <receiver>AddConnection</receiver> |
150 | <slot>accept()</slot> | 150 | <slot>accept()</slot> |
151 | </connection> | 151 | </connection> |
152 | </connections> | 152 | </connections> |
153 | <tabstops> | ||
154 | <tabstop>registeredServicesList</tabstop> | ||
155 | <tabstop>addButton</tabstop> | ||
156 | <tabstop>cancelButton</tabstop> | ||
157 | </tabstops> | ||
153 | </UI> | 158 | </UI> |
diff --git a/noncore/net/networksetup/ppp/ppp.ui b/noncore/net/networksetup/ppp/ppp.ui index 67d6735..56e1621 100644 --- a/noncore/net/networksetup/ppp/ppp.ui +++ b/noncore/net/networksetup/ppp/ppp.ui | |||
@@ -1,770 +1,770 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>PPP</class> | 2 | <class>PPP</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QDialog</class> | 4 | <class>QDialog</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>PPP</cstring> | 7 | <cstring>PPP</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>277</width> | 14 | <width>277</width> |
15 | <height>340</height> | 15 | <height>340</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Dial-up </string> | 20 | <string>Dial-up </string> |
21 | </property> | 21 | </property> |
22 | <property> | 22 | <property> |
23 | <name>layoutMargin</name> | 23 | <name>layoutMargin</name> |
24 | </property> | 24 | </property> |
25 | <property> | 25 | <property> |
26 | <name>layoutSpacing</name> | 26 | <name>layoutSpacing</name> |
27 | </property> | 27 | </property> |
28 | <vbox> | 28 | <vbox> |
29 | <property stdset="1"> | 29 | <property stdset="1"> |
30 | <name>margin</name> | 30 | <name>margin</name> |
31 | <number>1</number> | 31 | <number>1</number> |
32 | </property> | 32 | </property> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>spacing</name> | 34 | <name>spacing</name> |
35 | <number>0</number> | 35 | <number>0</number> |
36 | </property> | 36 | </property> |
37 | <widget> | 37 | <widget> |
38 | <class>QTabWidget</class> | 38 | <class>QTabWidget</class> |
39 | <property stdset="1"> | 39 | <property stdset="1"> |
40 | <name>name</name> | 40 | <name>name</name> |
41 | <cstring>TabWidget2</cstring> | 41 | <cstring>TabWidget2</cstring> |
42 | </property> | 42 | </property> |
43 | <property> | 43 | <property> |
44 | <name>layoutMargin</name> | 44 | <name>layoutMargin</name> |
45 | </property> | 45 | </property> |
46 | <property> | 46 | <property> |
47 | <name>layoutSpacing</name> | 47 | <name>layoutSpacing</name> |
48 | </property> | 48 | </property> |
49 | <widget> | 49 | <widget> |
50 | <class>QWidget</class> | 50 | <class>QWidget</class> |
51 | <property stdset="1"> | 51 | <property stdset="1"> |
52 | <name>name</name> | 52 | <name>name</name> |
53 | <cstring>tab</cstring> | 53 | <cstring>tab</cstring> |
54 | </property> | 54 | </property> |
55 | <attribute> | 55 | <attribute> |
56 | <name>title</name> | 56 | <name>title</name> |
57 | <string>Account</string> | 57 | <string>Account</string> |
58 | </attribute> | 58 | </attribute> |
59 | <grid> | 59 | <grid> |
60 | <property stdset="1"> | 60 | <property stdset="1"> |
61 | <name>margin</name> | 61 | <name>margin</name> |
62 | <number>6</number> | 62 | <number>6</number> |
63 | </property> | 63 | </property> |
64 | <property stdset="1"> | 64 | <property stdset="1"> |
65 | <name>spacing</name> | 65 | <name>spacing</name> |
66 | <number>4</number> | 66 | <number>4</number> |
67 | </property> | 67 | </property> |
68 | <widget row="3" column="1" > | 68 | <widget row="3" column="1" > |
69 | <class>QLineEdit</class> | 69 | <class>QLineEdit</class> |
70 | <property stdset="1"> | 70 | <property stdset="1"> |
71 | <name>name</name> | 71 | <name>name</name> |
72 | <cstring>password</cstring> | 72 | <cstring>password</cstring> |
73 | </property> | 73 | </property> |
74 | <property stdset="1"> | 74 | <property stdset="1"> |
75 | <name>echoMode</name> | 75 | <name>echoMode</name> |
76 | <enum>Password</enum> | 76 | <enum>Password</enum> |
77 | </property> | 77 | </property> |
78 | </widget> | 78 | </widget> |
79 | <widget row="2" column="1" > | 79 | <widget row="2" column="1" > |
80 | <class>QLineEdit</class> | 80 | <class>QLineEdit</class> |
81 | <property stdset="1"> | 81 | <property stdset="1"> |
82 | <name>name</name> | 82 | <name>name</name> |
83 | <cstring>username</cstring> | 83 | <cstring>username</cstring> |
84 | </property> | 84 | </property> |
85 | </widget> | 85 | </widget> |
86 | <widget row="2" column="0" > | 86 | <widget row="2" column="0" > |
87 | <class>QLabel</class> | 87 | <class>QLabel</class> |
88 | <property stdset="1"> | 88 | <property stdset="1"> |
89 | <name>name</name> | 89 | <name>name</name> |
90 | <cstring>TextLabel1</cstring> | 90 | <cstring>TextLabel1</cstring> |
91 | </property> | 91 | </property> |
92 | <property stdset="1"> | 92 | <property stdset="1"> |
93 | <name>text</name> | 93 | <name>text</name> |
94 | <string>Username</string> | 94 | <string>Username</string> |
95 | </property> | 95 | </property> |
96 | </widget> | 96 | </widget> |
97 | <widget row="3" column="0" > | 97 | <widget row="3" column="0" > |
98 | <class>QLabel</class> | 98 | <class>QLabel</class> |
99 | <property stdset="1"> | 99 | <property stdset="1"> |
100 | <name>name</name> | 100 | <name>name</name> |
101 | <cstring>TextLabel2</cstring> | 101 | <cstring>TextLabel2</cstring> |
102 | </property> | 102 | </property> |
103 | <property stdset="1"> | 103 | <property stdset="1"> |
104 | <name>text</name> | 104 | <name>text</name> |
105 | <string>Password</string> | 105 | <string>Password</string> |
106 | </property> | 106 | </property> |
107 | </widget> | 107 | </widget> |
108 | <widget row="5" column="0" > | 108 | <widget row="5" column="0" > |
109 | <class>QLabel</class> | 109 | <class>QLabel</class> |
110 | <property stdset="1"> | 110 | <property stdset="1"> |
111 | <name>name</name> | 111 | <name>name</name> |
112 | <cstring>TextLabel1_2_2</cstring> | 112 | <cstring>TextLabel1_2_2</cstring> |
113 | </property> | 113 | </property> |
114 | <property stdset="1"> | 114 | <property stdset="1"> |
115 | <name>text</name> | 115 | <name>text</name> |
116 | <string>Phone #</string> | 116 | <string>Phone #</string> |
117 | </property> | 117 | </property> |
118 | </widget> | 118 | </widget> |
119 | <widget row="5" column="1" > | 119 | <widget row="5" column="1" > |
120 | <class>QLineEdit</class> | 120 | <class>QLineEdit</class> |
121 | <property stdset="1"> | 121 | <property stdset="1"> |
122 | <name>name</name> | 122 | <name>name</name> |
123 | <cstring>phone</cstring> | 123 | <cstring>phone</cstring> |
124 | </property> | 124 | </property> |
125 | </widget> | 125 | </widget> |
126 | <widget row="4" column="0" rowspan="1" colspan="2" > | 126 | <widget row="4" column="0" rowspan="1" colspan="2" > |
127 | <class>Line</class> | 127 | <class>Line</class> |
128 | <property stdset="1"> | 128 | <property stdset="1"> |
129 | <name>name</name> | 129 | <name>name</name> |
130 | <cstring>Line3</cstring> | 130 | <cstring>Line3</cstring> |
131 | </property> | 131 | </property> |
132 | <property stdset="1"> | 132 | <property stdset="1"> |
133 | <name>orientation</name> | 133 | <name>orientation</name> |
134 | <enum>Horizontal</enum> | 134 | <enum>Horizontal</enum> |
135 | </property> | 135 | </property> |
136 | </widget> | 136 | </widget> |
137 | <widget row="0" column="1" > | 137 | <widget row="0" column="1" > |
138 | <class>QLineEdit</class> | 138 | <class>QLineEdit</class> |
139 | <property stdset="1"> | 139 | <property stdset="1"> |
140 | <name>name</name> | 140 | <name>name</name> |
141 | <cstring>acname</cstring> | 141 | <cstring>acname</cstring> |
142 | </property> | 142 | </property> |
143 | </widget> | 143 | </widget> |
144 | <widget row="0" column="0" > | 144 | <widget row="0" column="0" > |
145 | <class>QLabel</class> | 145 | <class>QLabel</class> |
146 | <property stdset="1"> | 146 | <property stdset="1"> |
147 | <name>name</name> | 147 | <name>name</name> |
148 | <cstring>TextLabel1_2</cstring> | 148 | <cstring>TextLabel1_2</cstring> |
149 | </property> | 149 | </property> |
150 | <property stdset="1"> | 150 | <property stdset="1"> |
151 | <name>text</name> | 151 | <name>text</name> |
152 | <string>Name</string> | 152 | <string>Name</string> |
153 | </property> | 153 | </property> |
154 | </widget> | 154 | </widget> |
155 | <widget row="1" column="0" rowspan="1" colspan="2" > | 155 | <widget row="1" column="0" rowspan="1" colspan="2" > |
156 | <class>Line</class> | 156 | <class>Line</class> |
157 | <property stdset="1"> | 157 | <property stdset="1"> |
158 | <name>name</name> | 158 | <name>name</name> |
159 | <cstring>Line4</cstring> | 159 | <cstring>Line4</cstring> |
160 | </property> | 160 | </property> |
161 | <property stdset="1"> | 161 | <property stdset="1"> |
162 | <name>orientation</name> | 162 | <name>orientation</name> |
163 | <enum>Horizontal</enum> | 163 | <enum>Horizontal</enum> |
164 | </property> | 164 | </property> |
165 | </widget> | 165 | </widget> |
166 | <spacer row="9" column="1" > | 166 | <spacer row="9" column="1" > |
167 | <property> | 167 | <property> |
168 | <name>name</name> | 168 | <name>name</name> |
169 | <cstring>Spacer4</cstring> | 169 | <cstring>Spacer4</cstring> |
170 | </property> | 170 | </property> |
171 | <property stdset="1"> | 171 | <property stdset="1"> |
172 | <name>orientation</name> | 172 | <name>orientation</name> |
173 | <enum>Vertical</enum> | 173 | <enum>Vertical</enum> |
174 | </property> | 174 | </property> |
175 | <property stdset="1"> | 175 | <property stdset="1"> |
176 | <name>sizeType</name> | 176 | <name>sizeType</name> |
177 | <enum>Expanding</enum> | 177 | <enum>Expanding</enum> |
178 | </property> | 178 | </property> |
179 | <property> | 179 | <property> |
180 | <name>sizeHint</name> | 180 | <name>sizeHint</name> |
181 | <size> | 181 | <size> |
182 | <width>20</width> | 182 | <width>20</width> |
183 | <height>20</height> | 183 | <height>20</height> |
184 | </size> | 184 | </size> |
185 | </property> | 185 | </property> |
186 | </spacer> | 186 | </spacer> |
187 | </grid> | 187 | </grid> |
188 | </widget> | 188 | </widget> |
189 | <widget> | 189 | <widget> |
190 | <class>QWidget</class> | 190 | <class>QWidget</class> |
191 | <property stdset="1"> | 191 | <property stdset="1"> |
192 | <name>name</name> | 192 | <name>name</name> |
193 | <cstring>tab</cstring> | 193 | <cstring>tab</cstring> |
194 | </property> | 194 | </property> |
195 | <attribute> | 195 | <attribute> |
196 | <name>title</name> | 196 | <name>title</name> |
197 | <string>Modem</string> | 197 | <string>Modem</string> |
198 | </attribute> | 198 | </attribute> |
199 | <grid> | 199 | <grid> |
200 | <property stdset="1"> | 200 | <property stdset="1"> |
201 | <name>margin</name> | 201 | <name>margin</name> |
202 | <number>6</number> | 202 | <number>6</number> |
203 | </property> | 203 | </property> |
204 | <property stdset="1"> | 204 | <property stdset="1"> |
205 | <name>spacing</name> | 205 | <name>spacing</name> |
206 | <number>4</number> | 206 | <number>4</number> |
207 | </property> | 207 | </property> |
208 | <widget row="0" column="0" > | 208 | <widget row="0" column="0" > |
209 | <class>QLabel</class> | 209 | <class>QLabel</class> |
210 | <property stdset="1"> | 210 | <property stdset="1"> |
211 | <name>name</name> | 211 | <name>name</name> |
212 | <cstring>TextLabel3_2_2</cstring> | 212 | <cstring>TextLabel3_2_2</cstring> |
213 | </property> | 213 | </property> |
214 | <property stdset="1"> | 214 | <property stdset="1"> |
215 | <name>text</name> | 215 | <name>text</name> |
216 | <string>AT-dial</string> | 216 | <string>AT-dial</string> |
217 | </property> | 217 | </property> |
218 | </widget> | 218 | </widget> |
219 | <widget row="0" column="1" rowspan="1" colspan="3" > | 219 | <widget row="0" column="1" rowspan="1" colspan="3" > |
220 | <class>QComboBox</class> | 220 | <class>QComboBox</class> |
221 | <item> | 221 | <item> |
222 | <property> | 222 | <property> |
223 | <name>text</name> | 223 | <name>text</name> |
224 | <string>ATDT</string> | 224 | <string>ATDT</string> |
225 | </property> | 225 | </property> |
226 | </item> | 226 | </item> |
227 | <item> | 227 | <item> |
228 | <property> | 228 | <property> |
229 | <name>text</name> | 229 | <name>text</name> |
230 | <string>ATDP</string> | 230 | <string>ATDP</string> |
231 | </property> | 231 | </property> |
232 | </item> | 232 | </item> |
233 | <property stdset="1"> | 233 | <property stdset="1"> |
234 | <name>name</name> | 234 | <name>name</name> |
235 | <cstring>atdial</cstring> | 235 | <cstring>atdial</cstring> |
236 | </property> | 236 | </property> |
237 | <property stdset="1"> | 237 | <property stdset="1"> |
238 | <name>editable</name> | 238 | <name>editable</name> |
239 | <bool>true</bool> | 239 | <bool>true</bool> |
240 | </property> | 240 | </property> |
241 | </widget> | 241 | </widget> |
242 | <widget row="1" column="0" > | 242 | <widget row="1" column="0" > |
243 | <class>QLabel</class> | 243 | <class>QLabel</class> |
244 | <property stdset="1"> | 244 | <property stdset="1"> |
245 | <name>name</name> | 245 | <name>name</name> |
246 | <cstring>TextLabel1_4</cstring> | 246 | <cstring>TextLabel1_4</cstring> |
247 | </property> | 247 | </property> |
248 | <property stdset="1"> | 248 | <property stdset="1"> |
249 | <name>text</name> | 249 | <name>text</name> |
250 | <string>Speed</string> | 250 | <string>Speed</string> |
251 | </property> | 251 | </property> |
252 | </widget> | 252 | </widget> |
253 | <widget row="1" column="1" rowspan="1" colspan="3" > | 253 | <widget row="1" column="1" rowspan="1" colspan="3" > |
254 | <class>QComboBox</class> | 254 | <class>QComboBox</class> |
255 | <item> | 255 | <item> |
256 | <property> | 256 | <property> |
257 | <name>text</name> | 257 | <name>text</name> |
258 | <string>4800</string> | 258 | <string>4800</string> |
259 | </property> | 259 | </property> |
260 | </item> | 260 | </item> |
261 | <item> | 261 | <item> |
262 | <property> | 262 | <property> |
263 | <name>text</name> | 263 | <name>text</name> |
264 | <string>9600</string> | 264 | <string>9600</string> |
265 | </property> | 265 | </property> |
266 | </item> | 266 | </item> |
267 | <item> | 267 | <item> |
268 | <property> | 268 | <property> |
269 | <name>text</name> | 269 | <name>text</name> |
270 | <string>19200</string> | 270 | <string>19200</string> |
271 | </property> | 271 | </property> |
272 | </item> | 272 | </item> |
273 | <item> | 273 | <item> |
274 | <property> | 274 | <property> |
275 | <name>text</name> | 275 | <name>text</name> |
276 | <string>38400</string> | 276 | <string>38400</string> |
277 | </property> | 277 | </property> |
278 | </item> | 278 | </item> |
279 | <item> | 279 | <item> |
280 | <property> | 280 | <property> |
281 | <name>text</name> | 281 | <name>text</name> |
282 | <string>57600</string> | 282 | <string>57600</string> |
283 | </property> | 283 | </property> |
284 | </item> | 284 | </item> |
285 | <item> | 285 | <item> |
286 | <property> | 286 | <property> |
287 | <name>text</name> | 287 | <name>text</name> |
288 | <string>115200</string> | 288 | <string>115200</string> |
289 | </property> | 289 | </property> |
290 | </item> | 290 | </item> |
291 | <property stdset="1"> | 291 | <property stdset="1"> |
292 | <name>name</name> | 292 | <name>name</name> |
293 | <cstring>speed</cstring> | 293 | <cstring>speed</cstring> |
294 | </property> | 294 | </property> |
295 | <property stdset="1"> | 295 | <property stdset="1"> |
296 | <name>currentItem</name> | 296 | <name>currentItem</name> |
297 | <number>5</number> | 297 | <number>5</number> |
298 | </property> | 298 | </property> |
299 | </widget> | 299 | </widget> |
300 | <widget row="3" column="1" > | 300 | <widget row="3" column="1" > |
301 | <class>QSlider</class> | 301 | <class>QSlider</class> |
302 | <property stdset="1"> | 302 | <property stdset="1"> |
303 | <name>name</name> | 303 | <name>name</name> |
304 | <cstring>connectdelay</cstring> | 304 | <cstring>connectdelay</cstring> |
305 | </property> | 305 | </property> |
306 | <property stdset="1"> | 306 | <property stdset="1"> |
307 | <name>minValue</name> | 307 | <name>minValue</name> |
308 | <number>1</number> | 308 | <number>1</number> |
309 | </property> | 309 | </property> |
310 | <property stdset="1"> | 310 | <property stdset="1"> |
311 | <name>maxValue</name> | 311 | <name>maxValue</name> |
312 | <number>180</number> | 312 | <number>180</number> |
313 | </property> | 313 | </property> |
314 | <property stdset="1"> | 314 | <property stdset="1"> |
315 | <name>value</name> | 315 | <name>value</name> |
316 | <number>6</number> | 316 | <number>6</number> |
317 | </property> | 317 | </property> |
318 | <property stdset="1"> | 318 | <property stdset="1"> |
319 | <name>orientation</name> | 319 | <name>orientation</name> |
320 | <enum>Horizontal</enum> | 320 | <enum>Horizontal</enum> |
321 | </property> | 321 | </property> |
322 | </widget> | 322 | </widget> |
323 | <widget row="3" column="0" > | 323 | <widget row="3" column="0" > |
324 | <class>QLabel</class> | 324 | <class>QLabel</class> |
325 | <property stdset="1"> | 325 | <property stdset="1"> |
326 | <name>name</name> | 326 | <name>name</name> |
327 | <cstring>TextLabel1_3</cstring> | 327 | <cstring>TextLabel1_3</cstring> |
328 | </property> | 328 | </property> |
329 | <property stdset="1"> | 329 | <property stdset="1"> |
330 | <name>text</name> | 330 | <name>text</name> |
331 | <string>Wait time</string> | 331 | <string>Wait time</string> |
332 | </property> | 332 | </property> |
333 | </widget> | 333 | </widget> |
334 | <widget row="3" column="2" > | 334 | <widget row="3" column="2" > |
335 | <class>QLabel</class> | 335 | <class>QLabel</class> |
336 | <property stdset="1"> | 336 | <property stdset="1"> |
337 | <name>name</name> | 337 | <name>name</name> |
338 | <cstring>connectdelay_text</cstring> | 338 | <cstring>connectdelay_text</cstring> |
339 | </property> | 339 | </property> |
340 | <property stdset="1"> | 340 | <property stdset="1"> |
341 | <name>minimumSize</name> | 341 | <name>minimumSize</name> |
342 | <size> | 342 | <size> |
343 | <width>15</width> | 343 | <width>15</width> |
344 | <height>0</height> | 344 | <height>0</height> |
345 | </size> | 345 | </size> |
346 | </property> | 346 | </property> |
347 | <property stdset="1"> | 347 | <property stdset="1"> |
348 | <name>text</name> | 348 | <name>text</name> |
349 | <string>6</string> | 349 | <string>6</string> |
350 | </property> | 350 | </property> |
351 | <property stdset="1"> | 351 | <property stdset="1"> |
352 | <name>alignment</name> | 352 | <name>alignment</name> |
353 | <set>AlignVCenter|AlignRight</set> | 353 | <set>AlignVCenter|AlignRight</set> |
354 | </property> | 354 | </property> |
355 | <property> | 355 | <property> |
356 | <name>hAlign</name> | 356 | <name>hAlign</name> |
357 | </property> | 357 | </property> |
358 | </widget> | 358 | </widget> |
359 | <widget row="3" column="3" > | 359 | <widget row="3" column="3" > |
360 | <class>QLabel</class> | 360 | <class>QLabel</class> |
361 | <property stdset="1"> | 361 | <property stdset="1"> |
362 | <name>name</name> | 362 | <name>name</name> |
363 | <cstring>TextLabel5</cstring> | 363 | <cstring>TextLabel5</cstring> |
364 | </property> | 364 | </property> |
365 | <property stdset="1"> | 365 | <property stdset="1"> |
366 | <name>text</name> | 366 | <name>text</name> |
367 | <string>sec</string> | 367 | <string>sec</string> |
368 | </property> | 368 | </property> |
369 | </widget> | 369 | </widget> |
370 | <widget row="2" column="0" > | 370 | <widget row="2" column="0" > |
371 | <class>QLabel</class> | 371 | <class>QLabel</class> |
372 | <property stdset="1"> | 372 | <property stdset="1"> |
373 | <name>name</name> | 373 | <name>name</name> |
374 | <cstring>TextLabel3</cstring> | 374 | <cstring>TextLabel3</cstring> |
375 | </property> | 375 | </property> |
376 | <property stdset="1"> | 376 | <property stdset="1"> |
377 | <name>text</name> | 377 | <name>text</name> |
378 | <string>Flow control</string> | 378 | <string>Flow control</string> |
379 | </property> | 379 | </property> |
380 | </widget> | 380 | </widget> |
381 | <widget row="2" column="1" rowspan="1" colspan="3" > | 381 | <widget row="2" column="1" rowspan="1" colspan="3" > |
382 | <class>QCheckBox</class> | 382 | <class>QCheckBox</class> |
383 | <property stdset="1"> | 383 | <property stdset="1"> |
384 | <name>name</name> | 384 | <name>name</name> |
385 | <cstring>crtscts</cstring> | 385 | <cstring>crtscts</cstring> |
386 | </property> | 386 | </property> |
387 | <property stdset="1"> | 387 | <property stdset="1"> |
388 | <name>text</name> | 388 | <name>text</name> |
389 | <string>Hardware flow control</string> | 389 | <string>Hardware flow control</string> |
390 | </property> | 390 | </property> |
391 | <property stdset="1"> | 391 | <property stdset="1"> |
392 | <name>checked</name> | 392 | <name>checked</name> |
393 | <bool>true</bool> | 393 | <bool>true</bool> |
394 | </property> | 394 | </property> |
395 | </widget> | 395 | </widget> |
396 | <spacer row="4" column="1" > | 396 | <spacer row="4" column="1" > |
397 | <property> | 397 | <property> |
398 | <name>name</name> | 398 | <name>name</name> |
399 | <cstring>Spacer5</cstring> | 399 | <cstring>Spacer5</cstring> |
400 | </property> | 400 | </property> |
401 | <property stdset="1"> | 401 | <property stdset="1"> |
402 | <name>orientation</name> | 402 | <name>orientation</name> |
403 | <enum>Vertical</enum> | 403 | <enum>Vertical</enum> |
404 | </property> | 404 | </property> |
405 | <property stdset="1"> | 405 | <property stdset="1"> |
406 | <name>sizeType</name> | 406 | <name>sizeType</name> |
407 | <enum>Expanding</enum> | 407 | <enum>Expanding</enum> |
408 | </property> | 408 | </property> |
409 | <property> | 409 | <property> |
410 | <name>sizeHint</name> | 410 | <name>sizeHint</name> |
411 | <size> | 411 | <size> |
412 | <width>20</width> | 412 | <width>20</width> |
413 | <height>20</height> | 413 | <height>20</height> |
414 | </size> | 414 | </size> |
415 | </property> | 415 | </property> |
416 | </spacer> | 416 | </spacer> |
417 | <widget row="5" column="0" rowspan="1" colspan="4" > | 417 | <widget row="5" column="0" rowspan="1" colspan="4" > |
418 | <class>QButtonGroup</class> | 418 | <class>QButtonGroup</class> |
419 | <property stdset="1"> | 419 | <property stdset="1"> |
420 | <name>name</name> | 420 | <name>name</name> |
421 | <cstring>dialmode</cstring> | 421 | <cstring>dialmode</cstring> |
422 | </property> | 422 | </property> |
423 | <property stdset="1"> | 423 | <property stdset="1"> |
424 | <name>title</name> | 424 | <name>title</name> |
425 | <string>Demand Dialing</string> | 425 | <string>Demand Dialing</string> |
426 | </property> | 426 | </property> |
427 | <grid> | 427 | <grid> |
428 | <property stdset="1"> | 428 | <property stdset="1"> |
429 | <name>margin</name> | 429 | <name>margin</name> |
430 | <number>11</number> | 430 | <number>11</number> |
431 | </property> | 431 | </property> |
432 | <property stdset="1"> | 432 | <property stdset="1"> |
433 | <name>spacing</name> | 433 | <name>spacing</name> |
434 | <number>6</number> | 434 | <number>6</number> |
435 | </property> | 435 | </property> |
436 | <widget row="0" column="0" rowspan="1" colspan="2" > | 436 | <widget row="0" column="0" rowspan="1" colspan="2" > |
437 | <class>QRadioButton</class> | 437 | <class>QRadioButton</class> |
438 | <property stdset="1"> | 438 | <property stdset="1"> |
439 | <name>name</name> | 439 | <name>name</name> |
440 | <cstring>dial_manual</cstring> | 440 | <cstring>dial_manual</cstring> |
441 | </property> | 441 | </property> |
442 | <property stdset="1"> | 442 | <property stdset="1"> |
443 | <name>text</name> | 443 | <name>text</name> |
444 | <string>Manual connect and disconnect</string> | 444 | <string>Manual connect and disconnect</string> |
445 | </property> | 445 | </property> |
446 | </widget> | 446 | </widget> |
447 | <widget row="3" column="1" > | 447 | <widget row="3" column="1" > |
448 | <class>QSpinBox</class> | 448 | <class>QSpinBox</class> |
449 | <property stdset="1"> | 449 | <property stdset="1"> |
450 | <name>name</name> | 450 | <name>name</name> |
451 | <cstring>idletime</cstring> | 451 | <cstring>idletime</cstring> |
452 | </property> | 452 | </property> |
453 | <property stdset="1"> | 453 | <property stdset="1"> |
454 | <name>suffix</name> | 454 | <name>suffix</name> |
455 | <string> seconds</string> | 455 | <string> seconds</string> |
456 | </property> | 456 | </property> |
457 | <property stdset="1"> | 457 | <property stdset="1"> |
458 | <name>maxValue</name> | 458 | <name>maxValue</name> |
459 | <number>3600</number> | 459 | <number>3600</number> |
460 | </property> | 460 | </property> |
461 | <property stdset="1"> | 461 | <property stdset="1"> |
462 | <name>lineStep</name> | 462 | <name>lineStep</name> |
463 | <number>30</number> | 463 | <number>30</number> |
464 | </property> | 464 | </property> |
465 | <property stdset="1"> | 465 | <property stdset="1"> |
466 | <name>value</name> | 466 | <name>value</name> |
467 | <number>120</number> | 467 | <number>120</number> |
468 | </property> | 468 | </property> |
469 | </widget> | 469 | </widget> |
470 | <widget row="3" column="0" > | 470 | <widget row="3" column="0" > |
471 | <class>QLabel</class> | 471 | <class>QLabel</class> |
472 | <property stdset="1"> | 472 | <property stdset="1"> |
473 | <name>name</name> | 473 | <name>name</name> |
474 | <cstring>TextLabel1_5</cstring> | 474 | <cstring>TextLabel1_5</cstring> |
475 | </property> | 475 | </property> |
476 | <property stdset="1"> | 476 | <property stdset="1"> |
477 | <name>sizePolicy</name> | 477 | <name>sizePolicy</name> |
478 | <sizepolicy> | 478 | <sizepolicy> |
479 | <hsizetype>7</hsizetype> | 479 | <hsizetype>7</hsizetype> |
480 | <vsizetype>1</vsizetype> | 480 | <vsizetype>1</vsizetype> |
481 | </sizepolicy> | 481 | </sizepolicy> |
482 | </property> | 482 | </property> |
483 | <property stdset="1"> | 483 | <property stdset="1"> |
484 | <name>text</name> | 484 | <name>text</name> |
485 | <string>Idle timeout:</string> | 485 | <string>Idle timeout:</string> |
486 | </property> | 486 | </property> |
487 | <property stdset="1"> | 487 | <property stdset="1"> |
488 | <name>alignment</name> | 488 | <name>alignment</name> |
489 | <set>AlignVCenter|AlignRight</set> | 489 | <set>AlignVCenter|AlignRight</set> |
490 | </property> | 490 | </property> |
491 | <property> | 491 | <property> |
492 | <name>hAlign</name> | 492 | <name>hAlign</name> |
493 | </property> | 493 | </property> |
494 | </widget> | 494 | </widget> |
495 | <widget row="2" column="0" rowspan="1" colspan="2" > | 495 | <widget row="2" column="0" rowspan="1" colspan="2" > |
496 | <class>QRadioButton</class> | 496 | <class>QRadioButton</class> |
497 | <property stdset="1"> | 497 | <property stdset="1"> |
498 | <name>name</name> | 498 | <name>name</name> |
499 | <cstring>dial_demand</cstring> | 499 | <cstring>dial_demand</cstring> |
500 | </property> | 500 | </property> |
501 | <property stdset="1"> | 501 | <property stdset="1"> |
502 | <name>text</name> | 502 | <name>text</name> |
503 | <string>Automatic connect and disconnect</string> | 503 | <string>Automatic connect and disconnect</string> |
504 | </property> | 504 | </property> |
505 | <property stdset="1"> | 505 | <property stdset="1"> |
506 | <name>checked</name> | 506 | <name>checked</name> |
507 | <bool>true</bool> | 507 | <bool>true</bool> |
508 | </property> | 508 | </property> |
509 | <property stdset="1"> | 509 | <property stdset="1"> |
510 | <name>buttonGroupId</name> | 510 | <name>buttonGroupId</name> |
511 | <number>2</number> | 511 | <number>2</number> |
512 | </property> | 512 | </property> |
513 | </widget> | 513 | </widget> |
514 | <widget row="1" column="0" rowspan="1" colspan="2" > | 514 | <widget row="1" column="0" rowspan="1" colspan="2" > |
515 | <class>QRadioButton</class> | 515 | <class>QRadioButton</class> |
516 | <property stdset="1"> | 516 | <property stdset="1"> |
517 | <name>name</name> | 517 | <name>name</name> |
518 | <cstring>dial_idle</cstring> | 518 | <cstring>dial_idle</cstring> |
519 | </property> | 519 | </property> |
520 | <property stdset="1"> | 520 | <property stdset="1"> |
521 | <name>text</name> | 521 | <name>text</name> |
522 | <string>Manual connect, automatic disconnect</string> | 522 | <string>Manual connect, automatic disconnect</string> |
523 | </property> | 523 | </property> |
524 | <property stdset="1"> | 524 | <property stdset="1"> |
525 | <name>buttonGroupId</name> | 525 | <name>buttonGroupId</name> |
526 | <number>1</number> | 526 | <number>1</number> |
527 | </property> | 527 | </property> |
528 | </widget> | 528 | </widget> |
529 | </grid> | 529 | </grid> |
530 | </widget> | 530 | </widget> |
531 | </grid> | 531 | </grid> |
532 | </widget> | 532 | </widget> |
533 | <widget> | 533 | <widget> |
534 | <class>QWidget</class> | 534 | <class>QWidget</class> |
535 | <property stdset="1"> | 535 | <property stdset="1"> |
536 | <name>name</name> | 536 | <name>name</name> |
537 | <cstring>tab</cstring> | 537 | <cstring>tab</cstring> |
538 | </property> | 538 | </property> |
539 | <attribute> | 539 | <attribute> |
540 | <name>title</name> | 540 | <name>title</name> |
541 | <string>Network</string> | 541 | <string>Network</string> |
542 | </attribute> | 542 | </attribute> |
543 | <grid> | 543 | <grid> |
544 | <property stdset="1"> | 544 | <property stdset="1"> |
545 | <name>margin</name> | 545 | <name>margin</name> |
546 | <number>6</number> | 546 | <number>6</number> |
547 | </property> | 547 | </property> |
548 | <property stdset="1"> | 548 | <property stdset="1"> |
549 | <name>spacing</name> | 549 | <name>spacing</name> |
550 | <number>4</number> | 550 | <number>4</number> |
551 | </property> | 551 | </property> |
552 | <spacer row="4" column="1" > | 552 | <spacer row="4" column="1" > |
553 | <property> | 553 | <property> |
554 | <name>name</name> | 554 | <name>name</name> |
555 | <cstring>Spacer8</cstring> | 555 | <cstring>Spacer8</cstring> |
556 | </property> | 556 | </property> |
557 | <property stdset="1"> | 557 | <property stdset="1"> |
558 | <name>orientation</name> | 558 | <name>orientation</name> |
559 | <enum>Vertical</enum> | 559 | <enum>Vertical</enum> |
560 | </property> | 560 | </property> |
561 | <property stdset="1"> | 561 | <property stdset="1"> |
562 | <name>sizeType</name> | 562 | <name>sizeType</name> |
563 | <enum>Expanding</enum> | 563 | <enum>Expanding</enum> |
564 | </property> | 564 | </property> |
565 | <property> | 565 | <property> |
566 | <name>sizeHint</name> | 566 | <name>sizeHint</name> |
567 | <size> | 567 | <size> |
568 | <width>20</width> | 568 | <width>20</width> |
569 | <height>20</height> | 569 | <height>20</height> |
570 | </size> | 570 | </size> |
571 | </property> | 571 | </property> |
572 | </spacer> | 572 | </spacer> |
573 | <widget row="2" column="0" > | 573 | <widget row="2" column="0" > |
574 | <class>QCheckBox</class> | 574 | <class>QCheckBox</class> |
575 | <property stdset="1"> | 575 | <property stdset="1"> |
576 | <name>name</name> | 576 | <name>name</name> |
577 | <cstring>usepeerdns</cstring> | 577 | <cstring>usepeerdns</cstring> |
578 | </property> | 578 | </property> |
579 | <property stdset="1"> | 579 | <property stdset="1"> |
580 | <name>text</name> | 580 | <name>text</name> |
581 | <string>Auto-detect name servers</string> | 581 | <string>Auto-detect name servers</string> |
582 | </property> | 582 | </property> |
583 | <property stdset="1"> | 583 | <property stdset="1"> |
584 | <name>checked</name> | 584 | <name>checked</name> |
585 | <bool>true</bool> | 585 | <bool>true</bool> |
586 | </property> | 586 | </property> |
587 | </widget> | 587 | </widget> |
588 | <widget row="1" column="0" rowspan="1" colspan="2" > | 588 | <widget row="1" column="0" rowspan="1" colspan="2" > |
589 | <class>QGroupBox</class> | 589 | <class>QGroupBox</class> |
590 | <property stdset="1"> | 590 | <property stdset="1"> |
591 | <name>name</name> | 591 | <name>name</name> |
592 | <cstring>gatewaybox</cstring> | 592 | <cstring>gatewaybox</cstring> |
593 | </property> | 593 | </property> |
594 | <property stdset="1"> | 594 | <property stdset="1"> |
595 | <name>enabled</name> | 595 | <name>enabled</name> |
596 | <bool>false</bool> | 596 | <bool>false</bool> |
597 | </property> | 597 | </property> |
598 | <property stdset="1"> | 598 | <property stdset="1"> |
599 | <name>title</name> | 599 | <name>title</name> |
600 | <string></string> | 600 | <string></string> |
601 | </property> | 601 | </property> |
602 | <hbox> | 602 | <hbox> |
603 | <property stdset="1"> | 603 | <property stdset="1"> |
604 | <name>margin</name> | 604 | <name>margin</name> |
605 | <number>11</number> | 605 | <number>11</number> |
606 | </property> | 606 | </property> |
607 | <property stdset="1"> | 607 | <property stdset="1"> |
608 | <name>spacing</name> | 608 | <name>spacing</name> |
609 | <number>6</number> | 609 | <number>6</number> |
610 | </property> | 610 | </property> |
611 | <widget> | 611 | <widget> |
612 | <class>QLabel</class> | 612 | <class>QLabel</class> |
613 | <property stdset="1"> | 613 | <property stdset="1"> |
614 | <name>name</name> | 614 | <name>name</name> |
615 | <cstring>TextLabel4_2</cstring> | 615 | <cstring>TextLabel4_2</cstring> |
616 | </property> | 616 | </property> |
617 | <property stdset="1"> | 617 | <property stdset="1"> |
618 | <name>text</name> | 618 | <name>text</name> |
619 | <string>Gateway</string> | 619 | <string>Gateway</string> |
620 | </property> | 620 | </property> |
621 | </widget> | 621 | </widget> |
622 | <widget> | 622 | <widget> |
623 | <class>QLineEdit</class> | 623 | <class>QLineEdit</class> |
624 | <property stdset="1"> | 624 | <property stdset="1"> |
625 | <name>name</name> | 625 | <name>name</name> |
626 | <cstring>gateway</cstring> | 626 | <cstring>gateway</cstring> |
627 | </property> | 627 | </property> |
628 | <property stdset="1"> | 628 | <property stdset="1"> |
629 | <name>text</name> | 629 | <name>text</name> |
630 | <string></string> | 630 | <string></string> |
631 | </property> | 631 | </property> |
632 | </widget> | 632 | </widget> |
633 | </hbox> | 633 | </hbox> |
634 | </widget> | 634 | </widget> |
635 | <widget row="0" column="0" rowspan="1" colspan="2" > | 635 | <widget row="0" column="0" rowspan="1" colspan="2" > |
636 | <class>QCheckBox</class> | 636 | <class>QCheckBox</class> |
637 | <property stdset="1"> | 637 | <property stdset="1"> |
638 | <name>name</name> | 638 | <name>name</name> |
639 | <cstring>defaultroute</cstring> | 639 | <cstring>defaultroute</cstring> |
640 | </property> | 640 | </property> |
641 | <property stdset="1"> | 641 | <property stdset="1"> |
642 | <name>text</name> | 642 | <name>text</name> |
643 | <string>Auto-detect routing</string> | 643 | <string>Auto-detect routing</string> |
644 | </property> | 644 | </property> |
645 | <property stdset="1"> | 645 | <property stdset="1"> |
646 | <name>checked</name> | 646 | <name>checked</name> |
647 | <bool>true</bool> | 647 | <bool>true</bool> |
648 | </property> | 648 | </property> |
649 | </widget> | 649 | </widget> |
650 | <widget row="3" column="0" rowspan="1" colspan="2" > | 650 | <widget row="3" column="0" rowspan="1" colspan="2" > |
651 | <class>QGroupBox</class> | 651 | <class>QGroupBox</class> |
652 | <property stdset="1"> | 652 | <property stdset="1"> |
653 | <name>name</name> | 653 | <name>name</name> |
654 | <cstring>dnsbox</cstring> | 654 | <cstring>dnsbox</cstring> |
655 | </property> | 655 | </property> |
656 | <property stdset="1"> | 656 | <property stdset="1"> |
657 | <name>enabled</name> | 657 | <name>enabled</name> |
658 | <bool>false</bool> | 658 | <bool>false</bool> |
659 | </property> | 659 | </property> |
660 | <property stdset="1"> | 660 | <property stdset="1"> |
661 | <name>title</name> | 661 | <name>title</name> |
662 | <string></string> | 662 | <string></string> |
663 | </property> | 663 | </property> |
664 | <grid> | 664 | <grid> |
665 | <property stdset="1"> | 665 | <property stdset="1"> |
666 | <name>margin</name> | 666 | <name>margin</name> |
667 | <number>11</number> | 667 | <number>11</number> |
668 | </property> | 668 | </property> |
669 | <property stdset="1"> | 669 | <property stdset="1"> |
670 | <name>spacing</name> | 670 | <name>spacing</name> |
671 | <number>6</number> | 671 | <number>6</number> |
672 | </property> | 672 | </property> |
673 | <widget row="0" column="1" > | 673 | <widget row="0" column="1" > |
674 | <class>QLineEdit</class> | 674 | <class>QLineEdit</class> |
675 | <property stdset="1"> | 675 | <property stdset="1"> |
676 | <name>name</name> | 676 | <name>name</name> |
677 | <cstring>dns1</cstring> | 677 | <cstring>dns1</cstring> |
678 | </property> | 678 | </property> |
679 | <property stdset="1"> | 679 | <property stdset="1"> |
680 | <name>text</name> | 680 | <name>text</name> |
681 | <string></string> | 681 | <string></string> |
682 | </property> | 682 | </property> |
683 | </widget> | 683 | </widget> |
684 | <widget row="1" column="1" > | 684 | <widget row="1" column="1" > |
685 | <class>QLineEdit</class> | 685 | <class>QLineEdit</class> |
686 | <property stdset="1"> | 686 | <property stdset="1"> |
687 | <name>name</name> | 687 | <name>name</name> |
688 | <cstring>dns2</cstring> | 688 | <cstring>dns2</cstring> |
689 | </property> | 689 | </property> |
690 | <property stdset="1"> | 690 | <property stdset="1"> |
691 | <name>text</name> | 691 | <name>text</name> |
692 | <string></string> | 692 | <string></string> |
693 | </property> | 693 | </property> |
694 | </widget> | 694 | </widget> |
695 | <widget row="0" column="0" > | 695 | <widget row="0" column="0" > |
696 | <class>QLabel</class> | 696 | <class>QLabel</class> |
697 | <property stdset="1"> | 697 | <property stdset="1"> |
698 | <name>name</name> | 698 | <name>name</name> |
699 | <cstring>TextLabel1_2_3</cstring> | 699 | <cstring>TextLabel1_2_3</cstring> |
700 | </property> | 700 | </property> |
701 | <property stdset="1"> | 701 | <property stdset="1"> |
702 | <name>text</name> | 702 | <name>text</name> |
703 | <string>First DNS</string> | 703 | <string>First DNS</string> |
704 | </property> | 704 | </property> |
705 | </widget> | 705 | </widget> |
706 | <widget row="1" column="0" > | 706 | <widget row="1" column="0" > |
707 | <class>QLabel</class> | 707 | <class>QLabel</class> |
708 | <property stdset="1"> | 708 | <property stdset="1"> |
709 | <name>name</name> | 709 | <name>name</name> |
710 | <cstring>TextLabel1_2_2_2</cstring> | 710 | <cstring>TextLabel1_2_2_2</cstring> |
711 | </property> | 711 | </property> |
712 | <property stdset="1"> | 712 | <property stdset="1"> |
713 | <name>text</name> | 713 | <name>text</name> |
714 | <string>Second DNS</string> | 714 | <string>Second DNS</string> |
715 | </property> | 715 | </property> |
716 | </widget> | 716 | </widget> |
717 | </grid> | 717 | </grid> |
718 | </widget> | 718 | </widget> |
719 | </grid> | 719 | </grid> |
720 | </widget> | 720 | </widget> |
721 | </widget> | 721 | </widget> |
722 | </vbox> | 722 | </vbox> |
723 | </widget> | 723 | </widget> |
724 | <connections> | 724 | <connections> |
725 | <connection> | 725 | <connection> |
726 | <sender>defaultroute</sender> | 726 | <sender>defaultroute</sender> |
727 | <signal>toggled(bool)</signal> | 727 | <signal>toggled(bool)</signal> |
728 | <receiver>gatewaybox</receiver> | 728 | <receiver>gatewaybox</receiver> |
729 | <slot>setDisabled(bool)</slot> | 729 | <slot>setDisabled(bool)</slot> |
730 | </connection> | 730 | </connection> |
731 | <connection> | 731 | <connection> |
732 | <sender>usepeerdns</sender> | 732 | <sender>usepeerdns</sender> |
733 | <signal>toggled(bool)</signal> | 733 | <signal>toggled(bool)</signal> |
734 | <receiver>dnsbox</receiver> | 734 | <receiver>dnsbox</receiver> |
735 | <slot>setDisabled(bool)</slot> | 735 | <slot>setDisabled(bool)</slot> |
736 | </connection> | 736 | </connection> |
737 | <connection> | 737 | <connection> |
738 | <sender>dial_manual</sender> | 738 | <sender>dial_manual</sender> |
739 | <signal>toggled(bool)</signal> | 739 | <signal>toggled(bool)</signal> |
740 | <receiver>idletime</receiver> | 740 | <receiver>idletime</receiver> |
741 | <slot>setDisabled(bool)</slot> | 741 | <slot>setDisabled(bool)</slot> |
742 | </connection> | 742 | </connection> |
743 | <connection> | 743 | <connection> |
744 | <sender>connectdelay</sender> | 744 | <sender>connectdelay</sender> |
745 | <signal>valueChanged(int)</signal> | 745 | <signal>valueChanged(int)</signal> |
746 | <receiver>connectdelay_text</receiver> | 746 | <receiver>connectdelay_text</receiver> |
747 | <slot>setNum(int)</slot> | 747 | <slot>setNum(int)</slot> |
748 | </connection> | 748 | </connection> |
749 | </connections> | 749 | </connections> |
750 | <tabstops> | 750 | <tabstops> |
751 | <tabstop>TabWidget2</tabstop> | 751 | <tabstop>TabWidget2</tabstop> |
752 | <tabstop>acname</tabstop> | 752 | <tabstop>acname</tabstop> |
753 | <tabstop>username</tabstop> | 753 | <tabstop>username</tabstop> |
754 | <tabstop>password</tabstop> | 754 | <tabstop>password</tabstop> |
755 | <tabstop>phone</tabstop> | 755 | <tabstop>phone</tabstop> |
756 | <tabstop>atdial</tabstop> | 756 | <tabstop>atdial</tabstop> |
757 | <tabstop>speed</tabstop> | 757 | <tabstop>speed</tabstop> |
758 | <tabstop>crtscts</tabstop> | 758 | <tabstop>crtscts</tabstop> |
759 | <tabstop>connectdelay</tabstop> | 759 | <tabstop>connectdelay</tabstop> |
760 | <tabstop>dial_manual</tabstop> | ||
761 | <tabstop>dial_idle</tabstop> | ||
762 | <tabstop>dial_demand</tabstop> | 760 | <tabstop>dial_demand</tabstop> |
763 | <tabstop>idletime</tabstop> | 761 | <tabstop>idletime</tabstop> |
764 | <tabstop>defaultroute</tabstop> | 762 | <tabstop>defaultroute</tabstop> |
765 | <tabstop>gateway</tabstop> | 763 | <tabstop>gateway</tabstop> |
766 | <tabstop>usepeerdns</tabstop> | 764 | <tabstop>usepeerdns</tabstop> |
767 | <tabstop>dns1</tabstop> | 765 | <tabstop>dns1</tabstop> |
768 | <tabstop>dns2</tabstop> | 766 | <tabstop>dns2</tabstop> |
767 | <tabstop>dial_manual</tabstop> | ||
768 | <tabstop>dial_idle</tabstop> | ||
769 | </tabstops> | 769 | </tabstops> |
770 | </UI> | 770 | </UI> |
diff --git a/noncore/net/networksetup/systemadvanced.ui b/noncore/net/networksetup/systemadvanced.ui deleted file mode 100644 index cd7ac61..0000000 --- a/noncore/net/networksetup/systemadvanced.ui +++ b/dev/null | |||
@@ -1,396 +0,0 @@ | |||
1 | <!DOCTYPE UI><UI> | ||
2 | <class>SystemNetworking</class> | ||
3 | <widget> | ||
4 | <class>QWidget</class> | ||
5 | <property stdset="1"> | ||
6 | <name>name</name> | ||
7 | <cstring>SystemNetworking</cstring> | ||
8 | </property> | ||
9 | <property stdset="1"> | ||
10 | <name>geometry</name> | ||
11 | <rect> | ||
12 | <x>0</x> | ||
13 | <y>0</y> | ||
14 | <width>218</width> | ||
15 | <height>289</height> | ||
16 | </rect> | ||
17 | </property> | ||
18 | <property stdset="1"> | ||
19 | <name>caption</name> | ||
20 | <string>System Networking</string> | ||
21 | </property> | ||
22 | <vbox> | ||
23 | <property stdset="1"> | ||
24 | <name>margin</name> | ||
25 | <number>0</number> | ||
26 | </property> | ||
27 | <property stdset="1"> | ||
28 | <name>spacing</name> | ||
29 | <number>6</number> | ||
30 | </property> | ||
31 | <widget> | ||
32 | <class>QTabWidget</class> | ||
33 | <property stdset="1"> | ||
34 | <name>name</name> | ||
35 | <cstring>tabWidget</cstring> | ||
36 | </property> | ||
37 | <property> | ||
38 | <name>layoutMargin</name> | ||
39 | </property> | ||
40 | <widget> | ||
41 | <class>QWidget</class> | ||
42 | <property stdset="1"> | ||
43 | <name>name</name> | ||
44 | <cstring>tab</cstring> | ||
45 | </property> | ||
46 | <attribute> | ||
47 | <name>title</name> | ||
48 | <string>DNS</string> | ||
49 | </attribute> | ||
50 | <grid> | ||
51 | <property stdset="1"> | ||
52 | <name>margin</name> | ||
53 | <number>11</number> | ||
54 | </property> | ||
55 | <property stdset="1"> | ||
56 | <name>spacing</name> | ||
57 | <number>6</number> | ||
58 | </property> | ||
59 | <widget row="0" column="0" > | ||
60 | <class>QLabel</class> | ||
61 | <property stdset="1"> | ||
62 | <name>name</name> | ||
63 | <cstring>TextLabel6</cstring> | ||
64 | </property> | ||
65 | <property stdset="1"> | ||
66 | <name>text</name> | ||
67 | <string>Hostname</string> | ||
68 | </property> | ||
69 | </widget> | ||
70 | <widget row="1" column="0" > | ||
71 | <class>QLabel</class> | ||
72 | <property stdset="1"> | ||
73 | <name>name</name> | ||
74 | <cstring>TextLabel5</cstring> | ||
75 | </property> | ||
76 | <property stdset="1"> | ||
77 | <name>text</name> | ||
78 | <string>DNS</string> | ||
79 | </property> | ||
80 | <property stdset="1"> | ||
81 | <name>alignment</name> | ||
82 | <set>AlignTop|AlignLeft</set> | ||
83 | </property> | ||
84 | <property> | ||
85 | <name>vAlign</name> | ||
86 | </property> | ||
87 | </widget> | ||
88 | <widget row="1" column="1" > | ||
89 | <class>QListBox</class> | ||
90 | <property stdset="1"> | ||
91 | <name>name</name> | ||
92 | <cstring>ListBox5</cstring> | ||
93 | </property> | ||
94 | </widget> | ||
95 | <widget row="0" column="1" > | ||
96 | <class>QLineEdit</class> | ||
97 | <property stdset="1"> | ||
98 | <name>name</name> | ||
99 | <cstring>LineEdit7</cstring> | ||
100 | </property> | ||
101 | </widget> | ||
102 | <widget row="3" column="0" > | ||
103 | <class>QLabel</class> | ||
104 | <property stdset="1"> | ||
105 | <name>name</name> | ||
106 | <cstring>TextLabel7</cstring> | ||
107 | </property> | ||
108 | <property stdset="1"> | ||
109 | <name>text</name> | ||
110 | <string>Hosts</string> | ||
111 | </property> | ||
112 | </widget> | ||
113 | <widget row="3" column="1" > | ||
114 | <class>QLabel</class> | ||
115 | <property stdset="1"> | ||
116 | <name>name</name> | ||
117 | <cstring>TextLabel9</cstring> | ||
118 | </property> | ||
119 | <property stdset="1"> | ||
120 | <name>text</name> | ||
121 | <string>List here....</string> | ||
122 | </property> | ||
123 | </widget> | ||
124 | <widget row="2" column="0" > | ||
125 | <class>QPushButton</class> | ||
126 | <property stdset="1"> | ||
127 | <name>name</name> | ||
128 | <cstring>PushButton15</cstring> | ||
129 | </property> | ||
130 | <property stdset="1"> | ||
131 | <name>text</name> | ||
132 | <string>&Add</string> | ||
133 | </property> | ||
134 | </widget> | ||
135 | <widget row="2" column="1" > | ||
136 | <class>QPushButton</class> | ||
137 | <property stdset="1"> | ||
138 | <name>name</name> | ||
139 | <cstring>PushButton16</cstring> | ||
140 | </property> | ||
141 | <property stdset="1"> | ||
142 | <name>text</name> | ||
143 | <string>&Delete</string> | ||
144 | </property> | ||
145 | </widget> | ||
146 | <spacer row="4" column="1" > | ||
147 | <property> | ||
148 | <name>name</name> | ||
149 | <cstring>Spacer14</cstring> | ||
150 | </property> | ||
151 | <property stdset="1"> | ||
152 | <name>orientation</name> | ||
153 | <enum>Vertical</enum> | ||
154 | </property> | ||
155 | <property stdset="1"> | ||
156 | <name>sizeType</name> | ||
157 | <enum>Expanding</enum> | ||
158 | </property> | ||
159 | <property> | ||
160 | <name>sizeHint</name> | ||
161 | <size> | ||
162 | <width>20</width> | ||
163 | <height>20</height> | ||
164 | </size> | ||
165 | </property> | ||
166 | </spacer> | ||
167 | </grid> | ||
168 | </widget> | ||
169 | <widget> | ||
170 | <class>QWidget</class> | ||
171 | <property stdset="1"> | ||
172 | <name>name</name> | ||
173 | <cstring>tab</cstring> | ||
174 | </property> | ||
175 | <attribute> | ||
176 | <name>title</name> | ||
177 | <string>Routing</string> | ||
178 | </attribute> | ||
179 | <grid> | ||
180 | <property stdset="1"> | ||
181 | <name>margin</name> | ||
182 | <number>11</number> | ||
183 | </property> | ||
184 | <property stdset="1"> | ||
185 | <name>spacing</name> | ||
186 | <number>6</number> | ||
187 | </property> | ||
188 | <widget row="0" column="0" rowspan="1" colspan="2" > | ||
189 | <class>QListView</class> | ||
190 | <column> | ||
191 | <property> | ||
192 | <name>text</name> | ||
193 | <string>Destination</string> | ||
194 | </property> | ||
195 | <property> | ||
196 | <name>clickable</name> | ||
197 | <bool>true</bool> | ||
198 | </property> | ||
199 | <property> | ||
200 | <name>resizeable</name> | ||
201 | <bool>true</bool> | ||
202 | </property> | ||
203 | </column> | ||
204 | <column> | ||
205 | <property> | ||
206 | <name>text</name> | ||
207 | <string>Gateway</string> | ||
208 | </property> | ||
209 | <property> | ||
210 | <name>clickable</name> | ||
211 | <bool>true</bool> | ||
212 | </property> | ||
213 | <property> | ||
214 | <name>resizeable</name> | ||
215 | <bool>true</bool> | ||
216 | </property> | ||
217 | </column> | ||
218 | <column> | ||
219 | <property> | ||
220 | <name>text</name> | ||
221 | <string>Genmask</string> | ||
222 | </property> | ||
223 | <property> | ||
224 | <name>clickable</name> | ||
225 | <bool>true</bool> | ||
226 | </property> | ||
227 | <property> | ||
228 | <name>resizeable</name> | ||
229 | <bool>true</bool> | ||
230 | </property> | ||
231 | </column> | ||
232 | <column> | ||
233 | <property> | ||
234 | <name>text</name> | ||
235 | <string>Flags</string> | ||
236 | </property> | ||
237 | <property> | ||
238 | <name>clickable</name> | ||
239 | <bool>true</bool> | ||
240 | </property> | ||
241 | <property> | ||
242 | <name>resizeable</name> | ||
243 | <bool>true</bool> | ||
244 | </property> | ||
245 | </column> | ||
246 | <column> | ||
247 | <property> | ||
248 | <name>text</name> | ||
249 | <string>Metric</string> | ||
250 | </property> | ||
251 | <property> | ||
252 | <name>clickable</name> | ||
253 | <bool>true</bool> | ||
254 | </property> | ||
255 | <property> | ||
256 | <name>resizeable</name> | ||
257 | <bool>true</bool> | ||
258 | </property> | ||
259 | </column> | ||
260 | <column> | ||
261 | <property> | ||
262 | <name>text</name> | ||
263 | <string>Ref</string> | ||
264 | </property> | ||
265 | <property> | ||
266 | <name>clickable</name> | ||
267 | <bool>true</bool> | ||
268 | </property> | ||
269 | <property> | ||
270 | <name>resizeable</name> | ||
271 | <bool>true</bool> | ||
272 | </property> | ||
273 | </column> | ||
274 | <column> | ||
275 | <property> | ||
276 | <name>text</name> | ||
277 | <string>Use</string> | ||
278 | </property> | ||
279 | <property> | ||
280 | <name>clickable</name> | ||
281 | <bool>true</bool> | ||
282 | </property> | ||
283 | <property> | ||
284 | <name>resizeable</name> | ||
285 | <bool>true</bool> | ||
286 | </property> | ||
287 | </column> | ||
288 | <column> | ||
289 | <property> | ||
290 | <name>text</name> | ||
291 | <string>Iface</string> | ||
292 | </property> | ||
293 | <property> | ||
294 | <name>clickable</name> | ||
295 | <bool>true</bool> | ||
296 | </property> | ||
297 | <property> | ||
298 | <name>resizeable</name> | ||
299 | <bool>true</bool> | ||
300 | </property> | ||
301 | </column> | ||
302 | <item> | ||
303 | <property> | ||
304 | <name>text</name> | ||
305 | <string>192.168.1.0</string> | ||
306 | </property> | ||
307 | <property> | ||
308 | <name>text</name> | ||
309 | <string>*</string> | ||
310 | </property> | ||
311 | <property> | ||
312 | <name>text</name> | ||
313 | <string>255.255.255.0</string> | ||
314 | </property> | ||
315 | <property> | ||
316 | <name>text</name> | ||
317 | <string>U</string> | ||
318 | </property> | ||
319 | <property> | ||
320 | <name>text</name> | ||
321 | <string>0</string> | ||
322 | </property> | ||
323 | <property> | ||
324 | <name>text</name> | ||
325 | <string>0</string> | ||
326 | </property> | ||
327 | <property> | ||
328 | <name>text</name> | ||
329 | <string>0</string> | ||
330 | </property> | ||
331 | <property> | ||
332 | <name>text</name> | ||
333 | <string>eth0</string> | ||
334 | </property> | ||
335 | <property> | ||
336 | <name>pixmap</name> | ||
337 | <pixmap></pixmap> | ||
338 | </property> | ||
339 | <property> | ||
340 | <name>pixmap</name> | ||
341 | <pixmap></pixmap> | ||
342 | </property> | ||
343 | <property> | ||
344 | <name>pixmap</name> | ||
345 | <pixmap></pixmap> | ||
346 | </property> | ||
347 | <property> | ||
348 | <name>pixmap</name> | ||
349 | <pixmap></pixmap> | ||
350 | </property> | ||
351 | <property> | ||
352 | <name>pixmap</name> | ||
353 | <pixmap></pixmap> | ||
354 | </property> | ||
355 | <property> | ||
356 | <name>pixmap</name> | ||
357 | <pixmap></pixmap> | ||
358 | </property> | ||
359 | <property> | ||
360 | <name>pixmap</name> | ||
361 | <pixmap></pixmap> | ||
362 | </property> | ||
363 | <property> | ||
364 | <name>pixmap</name> | ||
365 | <pixmap></pixmap> | ||
366 | </property> | ||
367 | </item> | ||
368 | <property stdset="1"> | ||
369 | <name>name</name> | ||
370 | <cstring>ListView4</cstring> | ||
371 | </property> | ||
372 | </widget> | ||
373 | <widget row="1" column="0" > | ||
374 | <class>QPushButton</class> | ||
375 | <property stdset="1"> | ||
376 | <name>name</name> | ||
377 | <cstring>PushButton17</cstring> | ||
378 | </property> | ||
379 | <property stdset="1"> | ||
380 | <name>text</name> | ||
381 | <string>&Add</string> | ||
382 | </property> | ||
383 | </widget> | ||
384 | <widget row="1" column="1" > | ||
385 | <class>QPushButton</class> | ||
386 | <property stdset="1"> | ||
387 | <name>name</name> | ||
388 | <cstring>PushButton18</cstring> | ||
389 | </property> | ||
390 | <property stdset="1"> | ||
391 | <name>text</name> | ||
392 | <string>Remove</string> | ||
393 | </property> | ||
394 | </widget> | ||
395 | <spacer row="2" column="1" > | ||
396 | \ No newline at end of file | ||
diff --git a/noncore/net/networksetup/wlan/wlan.ui b/noncore/net/networksetup/wlan/wlan.ui index 1b29a3e..47d6db6 100644 --- a/noncore/net/networksetup/wlan/wlan.ui +++ b/noncore/net/networksetup/wlan/wlan.ui | |||
@@ -1,517 +1,520 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>WLAN</class> | 2 | <class>WLAN</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QDialog</class> | 4 | <class>QDialog</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>WLAN</cstring> | 7 | <cstring>WLAN</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>238</width> | 14 | <width>237</width> |
15 | <height>286</height> | 15 | <height>286</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Wireless LAN Setting</string> | 20 | <string>Wireless LAN Setting</string> |
21 | </property> | 21 | </property> |
22 | <property stdset="1"> | 22 | <property stdset="1"> |
23 | <name>sizeGripEnabled</name> | 23 | <name>sizeGripEnabled</name> |
24 | <bool>true</bool> | 24 | <bool>true</bool> |
25 | </property> | 25 | </property> |
26 | <property> | 26 | <property> |
27 | <name>layoutMargin</name> | 27 | <name>layoutMargin</name> |
28 | </property> | 28 | </property> |
29 | <vbox> | 29 | <vbox> |
30 | <property stdset="1"> | 30 | <property stdset="1"> |
31 | <name>margin</name> | 31 | <name>margin</name> |
32 | <number>0</number> | 32 | <number>0</number> |
33 | </property> | 33 | </property> |
34 | <property stdset="1"> | 34 | <property stdset="1"> |
35 | <name>spacing</name> | 35 | <name>spacing</name> |
36 | <number>6</number> | 36 | <number>6</number> |
37 | </property> | 37 | </property> |
38 | <widget> | 38 | <widget> |
39 | <class>QTabWidget</class> | 39 | <class>QTabWidget</class> |
40 | <property stdset="1"> | 40 | <property stdset="1"> |
41 | <name>name</name> | 41 | <name>name</name> |
42 | <cstring>tabWidget</cstring> | 42 | <cstring>tabWidget</cstring> |
43 | </property> | 43 | </property> |
44 | <property stdset="1"> | 44 | <property stdset="1"> |
45 | <name>enabled</name> | 45 | <name>enabled</name> |
46 | <bool>true</bool> | 46 | <bool>true</bool> |
47 | </property> | 47 | </property> |
48 | <widget> | 48 | <widget> |
49 | <class>QWidget</class> | 49 | <class>QWidget</class> |
50 | <property stdset="1"> | 50 | <property stdset="1"> |
51 | <name>name</name> | 51 | <name>name</name> |
52 | <cstring>ConfigPage</cstring> | 52 | <cstring>ConfigPage</cstring> |
53 | </property> | 53 | </property> |
54 | <attribute> | 54 | <attribute> |
55 | <name>title</name> | 55 | <name>title</name> |
56 | <string>WLAN General</string> | 56 | <string>WLAN General</string> |
57 | </attribute> | 57 | </attribute> |
58 | <vbox> | 58 | <vbox> |
59 | <property stdset="1"> | 59 | <property stdset="1"> |
60 | <name>margin</name> | 60 | <name>margin</name> |
61 | <number>11</number> | 61 | <number>11</number> |
62 | </property> | 62 | </property> |
63 | <property stdset="1"> | 63 | <property stdset="1"> |
64 | <name>spacing</name> | 64 | <name>spacing</name> |
65 | <number>6</number> | 65 | <number>6</number> |
66 | </property> | 66 | </property> |
67 | <widget> | 67 | <widget> |
68 | <class>QButtonGroup</class> | 68 | <class>QButtonGroup</class> |
69 | <property stdset="1"> | 69 | <property stdset="1"> |
70 | <name>name</name> | 70 | <name>name</name> |
71 | <cstring>ButtonGroup45</cstring> | 71 | <cstring>ButtonGroup45</cstring> |
72 | </property> | 72 | </property> |
73 | <property stdset="1"> | 73 | <property stdset="1"> |
74 | <name>title</name> | 74 | <name>title</name> |
75 | <string>ESS ID</string> | 75 | <string>ESS ID</string> |
76 | </property> | 76 | </property> |
77 | <vbox> | 77 | <vbox> |
78 | <property stdset="1"> | 78 | <property stdset="1"> |
79 | <name>margin</name> | 79 | <name>margin</name> |
80 | <number>11</number> | 80 | <number>11</number> |
81 | </property> | 81 | </property> |
82 | <property stdset="1"> | 82 | <property stdset="1"> |
83 | <name>spacing</name> | 83 | <name>spacing</name> |
84 | <number>6</number> | 84 | <number>6</number> |
85 | </property> | 85 | </property> |
86 | <widget> | 86 | <widget> |
87 | <class>QRadioButton</class> | 87 | <class>QRadioButton</class> |
88 | <property stdset="1"> | 88 | <property stdset="1"> |
89 | <name>name</name> | 89 | <name>name</name> |
90 | <cstring>essNon</cstring> | 90 | <cstring>essNon</cstring> |
91 | </property> | 91 | </property> |
92 | <property stdset="1"> | 92 | <property stdset="1"> |
93 | <name>text</name> | 93 | <name>text</name> |
94 | <string>Non-Spec ESSID: "ANY"</string> | 94 | <string>Non-Spec ESSID: "ANY"</string> |
95 | </property> | 95 | </property> |
96 | <property stdset="1"> | 96 | <property stdset="1"> |
97 | <name>checked</name> | 97 | <name>checked</name> |
98 | <bool>true</bool> | 98 | <bool>true</bool> |
99 | </property> | 99 | </property> |
100 | </widget> | 100 | </widget> |
101 | <widget> | 101 | <widget> |
102 | <class>QRadioButton</class> | 102 | <class>QRadioButton</class> |
103 | <property stdset="1"> | 103 | <property stdset="1"> |
104 | <name>name</name> | 104 | <name>name</name> |
105 | <cstring>essSpecific</cstring> | 105 | <cstring>essSpecific</cstring> |
106 | </property> | 106 | </property> |
107 | <property stdset="1"> | 107 | <property stdset="1"> |
108 | <name>text</name> | 108 | <name>text</name> |
109 | <string>Specific ESSID</string> | 109 | <string>Specific ESSID</string> |
110 | </property> | 110 | </property> |
111 | </widget> | 111 | </widget> |
112 | <widget> | 112 | <widget> |
113 | <class>QLineEdit</class> | 113 | <class>QLineEdit</class> |
114 | <property stdset="1"> | 114 | <property stdset="1"> |
115 | <name>name</name> | 115 | <name>name</name> |
116 | <cstring>essSpecificLineEdit</cstring> | 116 | <cstring>essSpecificLineEdit</cstring> |
117 | </property> | 117 | </property> |
118 | <property stdset="1"> | 118 | <property stdset="1"> |
119 | <name>enabled</name> | 119 | <name>enabled</name> |
120 | <bool>false</bool> | 120 | <bool>false</bool> |
121 | </property> | 121 | </property> |
122 | </widget> | 122 | </widget> |
123 | </vbox> | 123 | </vbox> |
124 | </widget> | 124 | </widget> |
125 | <widget> | 125 | <widget> |
126 | <class>QButtonGroup</class> | 126 | <class>QButtonGroup</class> |
127 | <property stdset="1"> | 127 | <property stdset="1"> |
128 | <name>name</name> | 128 | <name>name</name> |
129 | <cstring>ButtonGroup46</cstring> | 129 | <cstring>ButtonGroup46</cstring> |
130 | </property> | 130 | </property> |
131 | <property stdset="1"> | 131 | <property stdset="1"> |
132 | <name>title</name> | 132 | <name>title</name> |
133 | <string>Network Type</string> | 133 | <string>Network Type</string> |
134 | </property> | 134 | </property> |
135 | <grid> | 135 | <grid> |
136 | <property stdset="1"> | 136 | <property stdset="1"> |
137 | <name>margin</name> | 137 | <name>margin</name> |
138 | <number>11</number> | 138 | <number>11</number> |
139 | </property> | 139 | </property> |
140 | <property stdset="1"> | 140 | <property stdset="1"> |
141 | <name>spacing</name> | 141 | <name>spacing</name> |
142 | <number>6</number> | 142 | <number>6</number> |
143 | </property> | 143 | </property> |
144 | <widget row="0" column="0" rowspan="1" colspan="3" > | 144 | <widget row="0" column="0" rowspan="1" colspan="3" > |
145 | <class>QRadioButton</class> | 145 | <class>QRadioButton</class> |
146 | <property stdset="1"> | 146 | <property stdset="1"> |
147 | <name>name</name> | 147 | <name>name</name> |
148 | <cstring>networkInfrastructure</cstring> | 148 | <cstring>networkInfrastructure</cstring> |
149 | </property> | 149 | </property> |
150 | <property stdset="1"> | 150 | <property stdset="1"> |
151 | <name>text</name> | 151 | <name>text</name> |
152 | <string>Infrastructure</string> | 152 | <string>Infrastructure</string> |
153 | </property> | 153 | </property> |
154 | <property stdset="1"> | 154 | <property stdset="1"> |
155 | <name>checked</name> | 155 | <name>checked</name> |
156 | <bool>true</bool> | 156 | <bool>true</bool> |
157 | </property> | 157 | </property> |
158 | </widget> | 158 | </widget> |
159 | <widget row="2" column="0" > | 159 | <widget row="2" column="0" > |
160 | <class>QLabel</class> | 160 | <class>QLabel</class> |
161 | <property stdset="1"> | 161 | <property stdset="1"> |
162 | <name>name</name> | 162 | <name>name</name> |
163 | <cstring>TextLabel2</cstring> | 163 | <cstring>TextLabel2</cstring> |
164 | </property> | 164 | </property> |
165 | <property stdset="1"> | 165 | <property stdset="1"> |
166 | <name>enabled</name> | 166 | <name>enabled</name> |
167 | <bool>false</bool> | 167 | <bool>false</bool> |
168 | </property> | 168 | </property> |
169 | <property stdset="1"> | 169 | <property stdset="1"> |
170 | <name>text</name> | 170 | <name>text</name> |
171 | <string>Channel</string> | 171 | <string>Channel</string> |
172 | </property> | 172 | </property> |
173 | </widget> | 173 | </widget> |
174 | <widget row="1" column="0" rowspan="1" colspan="2" > | 174 | <widget row="1" column="0" rowspan="1" colspan="2" > |
175 | <class>QRadioButton</class> | 175 | <class>QRadioButton</class> |
176 | <property stdset="1"> | 176 | <property stdset="1"> |
177 | <name>name</name> | 177 | <name>name</name> |
178 | <cstring>network802</cstring> | 178 | <cstring>network802</cstring> |
179 | </property> | 179 | </property> |
180 | <property stdset="1"> | 180 | <property stdset="1"> |
181 | <name>text</name> | 181 | <name>text</name> |
182 | <string>Ad-Hoc</string> | 182 | <string>Ad-Hoc</string> |
183 | </property> | 183 | </property> |
184 | </widget> | 184 | </widget> |
185 | <widget row="2" column="1" > | 185 | <widget row="2" column="1" > |
186 | <class>QSpinBox</class> | 186 | <class>QSpinBox</class> |
187 | <property stdset="1"> | 187 | <property stdset="1"> |
188 | <name>name</name> | 188 | <name>name</name> |
189 | <cstring>networkChannel</cstring> | 189 | <cstring>networkChannel</cstring> |
190 | </property> | 190 | </property> |
191 | <property stdset="1"> | 191 | <property stdset="1"> |
192 | <name>enabled</name> | 192 | <name>enabled</name> |
193 | <bool>false</bool> | 193 | <bool>false</bool> |
194 | </property> | 194 | </property> |
195 | <property stdset="1"> | 195 | <property stdset="1"> |
196 | <name>maxValue</name> | 196 | <name>maxValue</name> |
197 | <number>11</number> | 197 | <number>11</number> |
198 | </property> | 198 | </property> |
199 | <property stdset="1"> | 199 | <property stdset="1"> |
200 | <name>minValue</name> | 200 | <name>minValue</name> |
201 | <number>1</number> | 201 | <number>1</number> |
202 | </property> | 202 | </property> |
203 | <property stdset="1"> | 203 | <property stdset="1"> |
204 | <name>value</name> | 204 | <name>value</name> |
205 | <number>6</number> | 205 | <number>6</number> |
206 | </property> | 206 | </property> |
207 | </widget> | 207 | </widget> |
208 | <spacer row="2" column="2" > | 208 | <spacer row="2" column="2" > |
209 | <property> | 209 | <property> |
210 | <name>name</name> | 210 | <name>name</name> |
211 | <cstring>Spacer32</cstring> | 211 | <cstring>Spacer32</cstring> |
212 | </property> | 212 | </property> |
213 | <property stdset="1"> | 213 | <property stdset="1"> |
214 | <name>orientation</name> | 214 | <name>orientation</name> |
215 | <enum>Horizontal</enum> | 215 | <enum>Horizontal</enum> |
216 | </property> | 216 | </property> |
217 | <property stdset="1"> | 217 | <property stdset="1"> |
218 | <name>sizeType</name> | 218 | <name>sizeType</name> |
219 | <enum>Expanding</enum> | 219 | <enum>Expanding</enum> |
220 | </property> | 220 | </property> |
221 | <property> | 221 | <property> |
222 | <name>sizeHint</name> | 222 | <name>sizeHint</name> |
223 | <size> | 223 | <size> |
224 | <width>20</width> | 224 | <width>20</width> |
225 | <height>20</height> | 225 | <height>20</height> |
226 | </size> | 226 | </size> |
227 | </property> | 227 | </property> |
228 | </spacer> | 228 | </spacer> |
229 | </grid> | 229 | </grid> |
230 | </widget> | 230 | </widget> |
231 | <spacer> | 231 | <spacer> |
232 | <property> | 232 | <property> |
233 | <name>name</name> | 233 | <name>name</name> |
234 | <cstring>Spacer31</cstring> | 234 | <cstring>Spacer31</cstring> |
235 | </property> | 235 | </property> |
236 | <property stdset="1"> | 236 | <property stdset="1"> |
237 | <name>orientation</name> | 237 | <name>orientation</name> |
238 | <enum>Vertical</enum> | 238 | <enum>Vertical</enum> |
239 | </property> | 239 | </property> |
240 | <property stdset="1"> | 240 | <property stdset="1"> |
241 | <name>sizeType</name> | 241 | <name>sizeType</name> |
242 | <enum>Expanding</enum> | 242 | <enum>Expanding</enum> |
243 | </property> | 243 | </property> |
244 | <property> | 244 | <property> |
245 | <name>sizeHint</name> | 245 | <name>sizeHint</name> |
246 | <size> | 246 | <size> |
247 | <width>20</width> | 247 | <width>20</width> |
248 | <height>20</height> | 248 | <height>20</height> |
249 | </size> | 249 | </size> |
250 | </property> | 250 | </property> |
251 | </spacer> | 251 | </spacer> |
252 | </vbox> | 252 | </vbox> |
253 | </widget> | 253 | </widget> |
254 | <widget> | 254 | <widget> |
255 | <class>QWidget</class> | 255 | <class>QWidget</class> |
256 | <property stdset="1"> | 256 | <property stdset="1"> |
257 | <name>name</name> | 257 | <name>name</name> |
258 | <cstring>WepPage</cstring> | 258 | <cstring>WepPage</cstring> |
259 | </property> | 259 | </property> |
260 | <attribute> | 260 | <attribute> |
261 | <name>title</name> | 261 | <name>title</name> |
262 | <string>Wep</string> | 262 | <string>Wep</string> |
263 | </attribute> | 263 | </attribute> |
264 | <vbox> | 264 | <vbox> |
265 | <property stdset="1"> | 265 | <property stdset="1"> |
266 | <name>margin</name> | 266 | <name>margin</name> |
267 | <number>11</number> | 267 | <number>11</number> |
268 | </property> | 268 | </property> |
269 | <property stdset="1"> | 269 | <property stdset="1"> |
270 | <name>spacing</name> | 270 | <name>spacing</name> |
271 | <number>6</number> | 271 | <number>6</number> |
272 | </property> | 272 | </property> |
273 | <widget> | 273 | <widget> |
274 | <class>QCheckBox</class> | 274 | <class>QCheckBox</class> |
275 | <property stdset="1"> | 275 | <property stdset="1"> |
276 | <name>name</name> | 276 | <name>name</name> |
277 | <cstring>wepEnabled</cstring> | 277 | <cstring>wepEnabled</cstring> |
278 | </property> | 278 | </property> |
279 | <property stdset="1"> | 279 | <property stdset="1"> |
280 | <name>text</name> | 280 | <name>text</name> |
281 | <string>Enable Wep</string> | 281 | <string>Enable Wep</string> |
282 | </property> | 282 | </property> |
283 | </widget> | 283 | </widget> |
284 | <widget> | 284 | <widget> |
285 | <class>QButtonGroup</class> | 285 | <class>QButtonGroup</class> |
286 | <property stdset="1"> | 286 | <property stdset="1"> |
287 | <name>name</name> | 287 | <name>name</name> |
288 | <cstring>ButtonGroup43</cstring> | 288 | <cstring>ButtonGroup43</cstring> |
289 | </property> | 289 | </property> |
290 | <property stdset="1"> | 290 | <property stdset="1"> |
291 | <name>enabled</name> | 291 | <name>enabled</name> |
292 | <bool>false</bool> | 292 | <bool>false</bool> |
293 | </property> | 293 | </property> |
294 | <property stdset="1"> | 294 | <property stdset="1"> |
295 | <name>title</name> | 295 | <name>title</name> |
296 | <string>Authentication Type</string> | 296 | <string>Authentication Type</string> |
297 | </property> | 297 | </property> |
298 | <hbox> | 298 | <hbox> |
299 | <property stdset="1"> | 299 | <property stdset="1"> |
300 | <name>margin</name> | 300 | <name>margin</name> |
301 | <number>11</number> | 301 | <number>11</number> |
302 | </property> | 302 | </property> |
303 | <property stdset="1"> | 303 | <property stdset="1"> |
304 | <name>spacing</name> | 304 | <name>spacing</name> |
305 | <number>6</number> | 305 | <number>6</number> |
306 | </property> | 306 | </property> |
307 | <widget> | 307 | <widget> |
308 | <class>QRadioButton</class> | 308 | <class>QRadioButton</class> |
309 | <property stdset="1"> | 309 | <property stdset="1"> |
310 | <name>name</name> | 310 | <name>name</name> |
311 | <cstring>authOpen</cstring> | 311 | <cstring>authOpen</cstring> |
312 | </property> | 312 | </property> |
313 | <property stdset="1"> | 313 | <property stdset="1"> |
314 | <name>text</name> | 314 | <name>text</name> |
315 | <string>Open System</string> | 315 | <string>Open System</string> |
316 | </property> | 316 | </property> |
317 | <property stdset="1"> | 317 | <property stdset="1"> |
318 | <name>checked</name> | 318 | <name>checked</name> |
319 | <bool>true</bool> | 319 | <bool>true</bool> |
320 | </property> | 320 | </property> |
321 | </widget> | 321 | </widget> |
322 | <widget> | 322 | <widget> |
323 | <class>QRadioButton</class> | 323 | <class>QRadioButton</class> |
324 | <property stdset="1"> | 324 | <property stdset="1"> |
325 | <name>name</name> | 325 | <name>name</name> |
326 | <cstring>authShared</cstring> | 326 | <cstring>authShared</cstring> |
327 | </property> | 327 | </property> |
328 | <property stdset="1"> | 328 | <property stdset="1"> |
329 | <name>text</name> | 329 | <name>text</name> |
330 | <string>Shared Key</string> | 330 | <string>Shared Key</string> |
331 | </property> | 331 | </property> |
332 | </widget> | 332 | </widget> |
333 | </hbox> | 333 | </hbox> |
334 | </widget> | 334 | </widget> |
335 | <widget> | 335 | <widget> |
336 | <class>QButtonGroup</class> | 336 | <class>QButtonGroup</class> |
337 | <property stdset="1"> | 337 | <property stdset="1"> |
338 | <name>name</name> | 338 | <name>name</name> |
339 | <cstring>ButtonGroup44</cstring> | 339 | <cstring>ButtonGroup44</cstring> |
340 | </property> | 340 | </property> |
341 | <property stdset="1"> | 341 | <property stdset="1"> |
342 | <name>enabled</name> | 342 | <name>enabled</name> |
343 | <bool>false</bool> | 343 | <bool>false</bool> |
344 | </property> | 344 | </property> |
345 | <property stdset="1"> | 345 | <property stdset="1"> |
346 | <name>title</name> | 346 | <name>title</name> |
347 | <string>Key Setting</string> | 347 | <string>Key Setting</string> |
348 | </property> | 348 | </property> |
349 | <grid> | 349 | <grid> |
350 | <property stdset="1"> | 350 | <property stdset="1"> |
351 | <name>margin</name> | 351 | <name>margin</name> |
352 | <number>11</number> | 352 | <number>11</number> |
353 | </property> | 353 | </property> |
354 | <property stdset="1"> | 354 | <property stdset="1"> |
355 | <name>spacing</name> | 355 | <name>spacing</name> |
356 | <number>6</number> | 356 | <number>6</number> |
357 | </property> | 357 | </property> |
358 | <widget row="0" column="1" > | 358 | <widget row="0" column="1" > |
359 | <class>QLineEdit</class> | 359 | <class>QLineEdit</class> |
360 | <property stdset="1"> | 360 | <property stdset="1"> |
361 | <name>name</name> | 361 | <name>name</name> |
362 | <cstring>keyLineEdit0</cstring> | 362 | <cstring>keyLineEdit0</cstring> |
363 | </property> | 363 | </property> |
364 | </widget> | 364 | </widget> |
365 | <widget row="1" column="1" > | 365 | <widget row="1" column="1" > |
366 | <class>QLineEdit</class> | 366 | <class>QLineEdit</class> |
367 | <property stdset="1"> | 367 | <property stdset="1"> |
368 | <name>name</name> | 368 | <name>name</name> |
369 | <cstring>keyLineEdit1</cstring> | 369 | <cstring>keyLineEdit1</cstring> |
370 | </property> | 370 | </property> |
371 | </widget> | 371 | </widget> |
372 | <widget row="2" column="1" > | 372 | <widget row="2" column="1" > |
373 | <class>QLineEdit</class> | 373 | <class>QLineEdit</class> |
374 | <property stdset="1"> | 374 | <property stdset="1"> |
375 | <name>name</name> | 375 | <name>name</name> |
376 | <cstring>keyLineEdit2</cstring> | 376 | <cstring>keyLineEdit2</cstring> |
377 | </property> | 377 | </property> |
378 | </widget> | 378 | </widget> |
379 | <widget row="3" column="1" > | 379 | <widget row="3" column="1" > |
380 | <class>QLineEdit</class> | 380 | <class>QLineEdit</class> |
381 | <property stdset="1"> | 381 | <property stdset="1"> |
382 | <name>name</name> | 382 | <name>name</name> |
383 | <cstring>keyLineEdit3</cstring> | 383 | <cstring>keyLineEdit3</cstring> |
384 | </property> | 384 | </property> |
385 | </widget> | 385 | </widget> |
386 | <widget row="0" column="0" > | 386 | <widget row="0" column="0" > |
387 | <class>QRadioButton</class> | 387 | <class>QRadioButton</class> |
388 | <property stdset="1"> | 388 | <property stdset="1"> |
389 | <name>name</name> | 389 | <name>name</name> |
390 | <cstring>keyRadio0</cstring> | 390 | <cstring>keyRadio0</cstring> |
391 | </property> | 391 | </property> |
392 | <property stdset="1"> | 392 | <property stdset="1"> |
393 | <name>text</name> | 393 | <name>text</name> |
394 | <string>Key 1</string> | 394 | <string>Key 1</string> |
395 | </property> | 395 | </property> |
396 | <property stdset="1"> | 396 | <property stdset="1"> |
397 | <name>checked</name> | 397 | <name>checked</name> |
398 | <bool>true</bool> | 398 | <bool>true</bool> |
399 | </property> | 399 | </property> |
400 | </widget> | 400 | </widget> |
401 | <widget row="1" column="0" > | 401 | <widget row="1" column="0" > |
402 | <class>QRadioButton</class> | 402 | <class>QRadioButton</class> |
403 | <property stdset="1"> | 403 | <property stdset="1"> |
404 | <name>name</name> | 404 | <name>name</name> |
405 | <cstring>keyRadio1</cstring> | 405 | <cstring>keyRadio1</cstring> |
406 | </property> | 406 | </property> |
407 | <property stdset="1"> | 407 | <property stdset="1"> |
408 | <name>text</name> | 408 | <name>text</name> |
409 | <string>Key 2</string> | 409 | <string>Key 2</string> |
410 | </property> | 410 | </property> |
411 | </widget> | 411 | </widget> |
412 | <widget row="2" column="0" > | 412 | <widget row="2" column="0" > |
413 | <class>QRadioButton</class> | 413 | <class>QRadioButton</class> |
414 | <property stdset="1"> | 414 | <property stdset="1"> |
415 | <name>name</name> | 415 | <name>name</name> |
416 | <cstring>keyRadio2</cstring> | 416 | <cstring>keyRadio2</cstring> |
417 | </property> | 417 | </property> |
418 | <property stdset="1"> | 418 | <property stdset="1"> |
419 | <name>text</name> | 419 | <name>text</name> |
420 | <string>Key 3</string> | 420 | <string>Key 3</string> |
421 | </property> | 421 | </property> |
422 | </widget> | 422 | </widget> |
423 | <widget row="3" column="0" > | 423 | <widget row="3" column="0" > |
424 | <class>QRadioButton</class> | 424 | <class>QRadioButton</class> |
425 | <property stdset="1"> | 425 | <property stdset="1"> |
426 | <name>name</name> | 426 | <name>name</name> |
427 | <cstring>keyRadio3</cstring> | 427 | <cstring>keyRadio3</cstring> |
428 | </property> | 428 | </property> |
429 | <property stdset="1"> | 429 | <property stdset="1"> |
430 | <name>text</name> | 430 | <name>text</name> |
431 | <string>Key 4</string> | 431 | <string>Key 4</string> |
432 | </property> | 432 | </property> |
433 | </widget> | 433 | </widget> |
434 | </grid> | 434 | </grid> |
435 | </widget> | 435 | </widget> |
436 | <spacer> | 436 | <spacer> |
437 | <property> | 437 | <property> |
438 | <name>name</name> | 438 | <name>name</name> |
439 | <cstring>Spacer30</cstring> | 439 | <cstring>Spacer30</cstring> |
440 | </property> | 440 | </property> |
441 | <property stdset="1"> | 441 | <property stdset="1"> |
442 | <name>orientation</name> | 442 | <name>orientation</name> |
443 | <enum>Vertical</enum> | 443 | <enum>Vertical</enum> |
444 | </property> | 444 | </property> |
445 | <property stdset="1"> | 445 | <property stdset="1"> |
446 | <name>sizeType</name> | 446 | <name>sizeType</name> |
447 | <enum>Expanding</enum> | 447 | <enum>Expanding</enum> |
448 | </property> | 448 | </property> |
449 | <property> | 449 | <property> |
450 | <name>sizeHint</name> | 450 | <name>sizeHint</name> |
451 | <size> | 451 | <size> |
452 | <width>20</width> | 452 | <width>20</width> |
453 | <height>20</height> | 453 | <height>20</height> |
454 | </size> | 454 | </size> |
455 | </property> | 455 | </property> |
456 | </spacer> | 456 | </spacer> |
457 | </vbox> | 457 | </vbox> |
458 | </widget> | 458 | </widget> |
459 | </widget> | 459 | </widget> |
460 | </vbox> | 460 | </vbox> |
461 | </widget> | 461 | </widget> |
462 | <connections> | 462 | <connections> |
463 | <connection> | 463 | <connection> |
464 | <sender>essSpecific</sender> | 464 | <sender>essSpecific</sender> |
465 | <signal>toggled(bool)</signal> | 465 | <signal>toggled(bool)</signal> |
466 | <receiver>essSpecificLineEdit</receiver> | 466 | <receiver>essSpecificLineEdit</receiver> |
467 | <slot>setEnabled(bool)</slot> | 467 | <slot>setEnabled(bool)</slot> |
468 | </connection> | 468 | </connection> |
469 | <connection> | 469 | <connection> |
470 | <sender>network802</sender> | 470 | <sender>network802</sender> |
471 | <signal>clicked()</signal> | 471 | <signal>clicked()</signal> |
472 | <receiver>essSpecific</receiver> | 472 | <receiver>essSpecific</receiver> |
473 | <slot>animateClick()</slot> | 473 | <slot>animateClick()</slot> |
474 | </connection> | 474 | </connection> |
475 | <connection> | 475 | <connection> |
476 | <sender>network802</sender> | 476 | <sender>network802</sender> |
477 | <signal>toggled(bool)</signal> | 477 | <signal>toggled(bool)</signal> |
478 | <receiver>TextLabel2</receiver> | 478 | <receiver>TextLabel2</receiver> |
479 | <slot>setEnabled(bool)</slot> | 479 | <slot>setEnabled(bool)</slot> |
480 | </connection> | 480 | </connection> |
481 | <connection> | 481 | <connection> |
482 | <sender>network802</sender> | 482 | <sender>network802</sender> |
483 | <signal>toggled(bool)</signal> | 483 | <signal>toggled(bool)</signal> |
484 | <receiver>networkChannel</receiver> | 484 | <receiver>networkChannel</receiver> |
485 | <slot>setEnabled(bool)</slot> | 485 | <slot>setEnabled(bool)</slot> |
486 | </connection> | 486 | </connection> |
487 | <connection> | 487 | <connection> |
488 | <sender>wepEnabled</sender> | 488 | <sender>wepEnabled</sender> |
489 | <signal>toggled(bool)</signal> | 489 | <signal>toggled(bool)</signal> |
490 | <receiver>ButtonGroup43</receiver> | 490 | <receiver>ButtonGroup43</receiver> |
491 | <slot>setEnabled(bool)</slot> | 491 | <slot>setEnabled(bool)</slot> |
492 | </connection> | 492 | </connection> |
493 | <connection> | 493 | <connection> |
494 | <sender>wepEnabled</sender> | 494 | <sender>wepEnabled</sender> |
495 | <signal>toggled(bool)</signal> | 495 | <signal>toggled(bool)</signal> |
496 | <receiver>ButtonGroup44</receiver> | 496 | <receiver>ButtonGroup44</receiver> |
497 | <slot>setEnabled(bool)</slot> | 497 | <slot>setEnabled(bool)</slot> |
498 | </connection> | 498 | </connection> |
499 | </connections> | 499 | </connections> |
500 | <tabstops> | 500 | <tabstops> |
501 | <tabstop>tabWidget</tabstop> | 501 | <tabstop>tabWidget</tabstop> |
502 | <tabstop>essNon</tabstop> | 502 | <tabstop>essNon</tabstop> |
503 | <tabstop>essSpecific</tabstop> | ||
503 | <tabstop>essSpecificLineEdit</tabstop> | 504 | <tabstop>essSpecificLineEdit</tabstop> |
504 | <tabstop>networkInfrastructure</tabstop> | 505 | <tabstop>networkInfrastructure</tabstop> |
506 | <tabstop>network802</tabstop> | ||
505 | <tabstop>networkChannel</tabstop> | 507 | <tabstop>networkChannel</tabstop> |
508 | <tabstop>wepEnabled</tabstop> | ||
506 | <tabstop>authOpen</tabstop> | 509 | <tabstop>authOpen</tabstop> |
507 | <tabstop>authShared</tabstop> | 510 | <tabstop>authShared</tabstop> |
508 | <tabstop>keyRadio0</tabstop> | 511 | <tabstop>keyRadio0</tabstop> |
509 | <tabstop>keyLineEdit0</tabstop> | 512 | <tabstop>keyLineEdit0</tabstop> |
510 | <tabstop>keyRadio1</tabstop> | 513 | <tabstop>keyRadio1</tabstop> |
511 | <tabstop>keyLineEdit1</tabstop> | 514 | <tabstop>keyLineEdit1</tabstop> |
512 | <tabstop>keyRadio2</tabstop> | 515 | <tabstop>keyRadio2</tabstop> |
513 | <tabstop>keyLineEdit2</tabstop> | 516 | <tabstop>keyLineEdit2</tabstop> |
514 | <tabstop>keyRadio3</tabstop> | 517 | <tabstop>keyRadio3</tabstop> |
515 | <tabstop>keyLineEdit3</tabstop> | 518 | <tabstop>keyLineEdit3</tabstop> |
516 | </tabstops> | 519 | </tabstops> |
517 | </UI> | 520 | </UI> |
diff --git a/noncore/settings/networksettings/TODO b/noncore/settings/networksettings/TODO index 020339f..862d681 100644 --- a/noncore/settings/networksettings/TODO +++ b/noncore/settings/networksettings/TODO | |||
@@ -1,14 +1,72 @@ | |||
1 | test WEP | 1 | test WEP |
2 | WEP key in file wireless.conf is not encrypted !, therefore it is very easy to get the key out of the zaurus.. | 2 | WEP key in file wireless.conf is not encrypted !, therefore it is very easy to get the key out of the zaurus.. |
3 | 3 | ||
4 | udchcp needs to output the dhcp information so interfaces can read it | 4 | udchcp needs to output the dhcp information so interfaces can read it |
5 | 5 | ||
6 | interfacesetupimp really doesn't need a interface* pointer | 6 | interfacesetupimp really doesn't need a interface* pointer |
7 | 7 | ||
8 | Possible other modules to write: ppp, ipsec, bluetooth, ipchains | 8 | Possible other modules to write: ppp, ipsec, bluetooth, ipchains |
9 | 9 | ||
10 | PPP module needs to scan pppd.tdb to see what is currently active | 10 | PPP module needs to scan pppd.tdb to see what is currently active |
11 | 11 | ||
12 | WLAN - add possiblity to input text or hex without knowing "s:" | 12 | WLAN - add possiblity to input text or hex without knowing "s:" |
13 | 13 | ||
14 | Interface setupimp needs to use kernel calls. | 14 | Interface setupimp needs to use kernel calls. |
15 | |||
16 | Automaticly update the main list of interfaces: | ||
17 | > That would be me. :-D netlink, can you point me in the right | ||
18 | > direction where I can get more info on it? (I figured there was some | ||
19 | > kenel call) | ||
20 | |||
21 | You can look up the meaning of the packets you receive, or you can just go | ||
22 | poll for changes you might be interested in each time you receive _any_ | ||
23 | packet. Anything's better than periodic polling. | ||
24 | |||
25 | Note that you can't do this as non-root on some kernels. There's a patch | ||
26 | which can go into the hh.org kernel if it's not already there. | ||
27 | cf. http://marc.theaimsgroup.com/?l=linux-kernel&m=103520821605353&w=2 | ||
28 | |||
29 | |||
30 | #include <asm/types.h> | ||
31 | #include <sys/socket.h> | ||
32 | #include <linux/netlink.h> | ||
33 | #include <linux/rtnetlink.h> | ||
34 | |||
35 | int main(int argc, char **argv) | ||
36 | { | ||
37 | int fd; | ||
38 | unsigned char buf[4096]; | ||
39 | int ret; | ||
40 | int i, j; | ||
41 | struct sockaddr_nl snl; | ||
42 | |||
43 | fd = socket(AF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE); | ||
44 | if (fd < 0) { | ||
45 | perror("socket"); | ||
46 | exit(1); | ||
47 | } | ||
48 | |||
49 | snl.nl_family = AF_NETLINK; | ||
50 | snl.nl_pad = 0; | ||
51 | snl.nl_pid = getpid(); | ||
52 | snl.nl_groups = RTM_NEWLINK|RTM_DELLINK; | ||
53 | |||
54 | if (bind(fd, &snl, sizeof(snl)) < 0) { | ||
55 | perror("bind"); | ||
56 | exit(1); | ||
57 | } | ||
58 | while (1) { | ||
59 | ret = recv(fd, buf, 4096, 0); | ||
60 | if (ret < 0) { | ||
61 | perror("recv"); | ||
62 | exit(1); | ||
63 | } | ||
64 | for (i=0; i<ret; i++) { | ||
65 | printf("%02x ", buf[i]); | ||
66 | } | ||
67 | printf("\n"); | ||
68 | } | ||
69 | |||
70 | } | ||
71 | -- | ||
72 | |||
diff --git a/noncore/settings/networksettings/addconnection.ui b/noncore/settings/networksettings/addconnection.ui index a349804..da6cf06 100644 --- a/noncore/settings/networksettings/addconnection.ui +++ b/noncore/settings/networksettings/addconnection.ui | |||
@@ -1,153 +1,158 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>AddConnection</class> | 2 | <class>AddConnection</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QDialog</class> | 4 | <class>QDialog</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>AddConnection</cstring> | 7 | <cstring>AddConnection</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>233</width> | 14 | <width>229</width> |
15 | <height>268</height> | 15 | <height>268</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Add Network Connection</string> | 20 | <string>Add Network Connection</string> |
21 | </property> | 21 | </property> |
22 | <grid> | 22 | <grid> |
23 | <property stdset="1"> | 23 | <property stdset="1"> |
24 | <name>margin</name> | 24 | <name>margin</name> |
25 | <number>11</number> | 25 | <number>11</number> |
26 | </property> | 26 | </property> |
27 | <property stdset="1"> | 27 | <property stdset="1"> |
28 | <name>spacing</name> | 28 | <name>spacing</name> |
29 | <number>6</number> | 29 | <number>6</number> |
30 | </property> | 30 | </property> |
31 | <widget row="3" column="1" > | 31 | <widget row="3" column="1" > |
32 | <class>QPushButton</class> | 32 | <class>QPushButton</class> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>name</name> | 34 | <name>name</name> |
35 | <cstring>cancelButton</cstring> | 35 | <cstring>cancelButton</cstring> |
36 | </property> | 36 | </property> |
37 | <property stdset="1"> | 37 | <property stdset="1"> |
38 | <name>text</name> | 38 | <name>text</name> |
39 | <string>&Cancel</string> | 39 | <string>&Cancel</string> |
40 | </property> | 40 | </property> |
41 | </widget> | 41 | </widget> |
42 | <widget row="3" column="0" > | 42 | <widget row="3" column="0" > |
43 | <class>QPushButton</class> | 43 | <class>QPushButton</class> |
44 | <property stdset="1"> | 44 | <property stdset="1"> |
45 | <name>name</name> | 45 | <name>name</name> |
46 | <cstring>addButton</cstring> | 46 | <cstring>addButton</cstring> |
47 | </property> | 47 | </property> |
48 | <property stdset="1"> | 48 | <property stdset="1"> |
49 | <name>text</name> | 49 | <name>text</name> |
50 | <string>&Add</string> | 50 | <string>&Add</string> |
51 | </property> | 51 | </property> |
52 | </widget> | 52 | </widget> |
53 | <widget row="0" column="0" rowspan="1" colspan="2" > | 53 | <widget row="0" column="0" rowspan="1" colspan="2" > |
54 | <class>QListView</class> | 54 | <class>QListView</class> |
55 | <column> | 55 | <column> |
56 | <property> | 56 | <property> |
57 | <name>text</name> | 57 | <name>text</name> |
58 | <string>Services</string> | 58 | <string>Services</string> |
59 | </property> | 59 | </property> |
60 | <property> | 60 | <property> |
61 | <name>clickable</name> | 61 | <name>clickable</name> |
62 | <bool>true</bool> | 62 | <bool>true</bool> |
63 | </property> | 63 | </property> |
64 | <property> | 64 | <property> |
65 | <name>resizeable</name> | 65 | <name>resizeable</name> |
66 | <bool>true</bool> | 66 | <bool>true</bool> |
67 | </property> | 67 | </property> |
68 | </column> | 68 | </column> |
69 | <property stdset="1"> | 69 | <property stdset="1"> |
70 | <name>name</name> | 70 | <name>name</name> |
71 | <cstring>registeredServicesList</cstring> | 71 | <cstring>registeredServicesList</cstring> |
72 | </property> | 72 | </property> |
73 | <property stdset="1"> | 73 | <property stdset="1"> |
74 | <name>sizePolicy</name> | 74 | <name>sizePolicy</name> |
75 | <sizepolicy> | 75 | <sizepolicy> |
76 | <hsizetype>7</hsizetype> | 76 | <hsizetype>7</hsizetype> |
77 | <vsizetype>3</vsizetype> | 77 | <vsizetype>3</vsizetype> |
78 | </sizepolicy> | 78 | </sizepolicy> |
79 | </property> | 79 | </property> |
80 | <property stdset="1"> | 80 | <property stdset="1"> |
81 | <name>minimumSize</name> | 81 | <name>minimumSize</name> |
82 | <size> | 82 | <size> |
83 | <width>0</width> | 83 | <width>0</width> |
84 | <height>75</height> | 84 | <height>75</height> |
85 | </size> | 85 | </size> |
86 | </property> | 86 | </property> |
87 | </widget> | 87 | </widget> |
88 | <spacer row="2" column="1" > | 88 | <spacer row="2" column="1" > |
89 | <property> | 89 | <property> |
90 | <name>name</name> | 90 | <name>name</name> |
91 | <cstring>Spacer12</cstring> | 91 | <cstring>Spacer12</cstring> |
92 | </property> | 92 | </property> |
93 | <property stdset="1"> | 93 | <property stdset="1"> |
94 | <name>orientation</name> | 94 | <name>orientation</name> |
95 | <enum>Vertical</enum> | 95 | <enum>Vertical</enum> |
96 | </property> | 96 | </property> |
97 | <property stdset="1"> | 97 | <property stdset="1"> |
98 | <name>sizeType</name> | 98 | <name>sizeType</name> |
99 | <enum>Expanding</enum> | 99 | <enum>Expanding</enum> |
100 | </property> | 100 | </property> |
101 | <property> | 101 | <property> |
102 | <name>sizeHint</name> | 102 | <name>sizeHint</name> |
103 | <size> | 103 | <size> |
104 | <width>20</width> | 104 | <width>20</width> |
105 | <height>20</height> | 105 | <height>20</height> |
106 | </size> | 106 | </size> |
107 | </property> | 107 | </property> |
108 | </spacer> | 108 | </spacer> |
109 | <widget row="1" column="0" rowspan="1" colspan="2" > | 109 | <widget row="1" column="0" rowspan="1" colspan="2" > |
110 | <class>QLabel</class> | 110 | <class>QLabel</class> |
111 | <property stdset="1"> | 111 | <property stdset="1"> |
112 | <name>name</name> | 112 | <name>name</name> |
113 | <cstring>help</cstring> | 113 | <cstring>help</cstring> |
114 | </property> | 114 | </property> |
115 | <property stdset="1"> | 115 | <property stdset="1"> |
116 | <name>sizePolicy</name> | 116 | <name>sizePolicy</name> |
117 | <sizepolicy> | 117 | <sizepolicy> |
118 | <hsizetype>5</hsizetype> | 118 | <hsizetype>5</hsizetype> |
119 | <vsizetype>4</vsizetype> | 119 | <vsizetype>4</vsizetype> |
120 | </sizepolicy> | 120 | </sizepolicy> |
121 | </property> | 121 | </property> |
122 | <property stdset="1"> | 122 | <property stdset="1"> |
123 | <name>text</name> | 123 | <name>text</name> |
124 | <string></string> | 124 | <string></string> |
125 | </property> | 125 | </property> |
126 | <property stdset="1"> | 126 | <property stdset="1"> |
127 | <name>alignment</name> | 127 | <name>alignment</name> |
128 | <set>WordBreak|AlignTop|AlignLeft</set> | 128 | <set>WordBreak|AlignTop|AlignLeft</set> |
129 | </property> | 129 | </property> |
130 | <property> | 130 | <property> |
131 | <name>vAlign</name> | 131 | <name>vAlign</name> |
132 | </property> | 132 | </property> |
133 | <property> | 133 | <property> |
134 | <name>wordwrap</name> | 134 | <name>wordwrap</name> |
135 | </property> | 135 | </property> |
136 | </widget> | 136 | </widget> |
137 | </grid> | 137 | </grid> |
138 | </widget> | 138 | </widget> |
139 | <connections> | 139 | <connections> |
140 | <connection> | 140 | <connection> |
141 | <sender>cancelButton</sender> | 141 | <sender>cancelButton</sender> |
142 | <signal>clicked()</signal> | 142 | <signal>clicked()</signal> |
143 | <receiver>AddConnection</receiver> | 143 | <receiver>AddConnection</receiver> |
144 | <slot>reject()</slot> | 144 | <slot>reject()</slot> |
145 | </connection> | 145 | </connection> |
146 | <connection> | 146 | <connection> |
147 | <sender>addButton</sender> | 147 | <sender>addButton</sender> |
148 | <signal>clicked()</signal> | 148 | <signal>clicked()</signal> |
149 | <receiver>AddConnection</receiver> | 149 | <receiver>AddConnection</receiver> |
150 | <slot>accept()</slot> | 150 | <slot>accept()</slot> |
151 | </connection> | 151 | </connection> |
152 | </connections> | 152 | </connections> |
153 | <tabstops> | ||
154 | <tabstop>registeredServicesList</tabstop> | ||
155 | <tabstop>addButton</tabstop> | ||
156 | <tabstop>cancelButton</tabstop> | ||
157 | </tabstops> | ||
153 | </UI> | 158 | </UI> |
diff --git a/noncore/settings/networksettings/ppp/ppp.ui b/noncore/settings/networksettings/ppp/ppp.ui index 67d6735..56e1621 100644 --- a/noncore/settings/networksettings/ppp/ppp.ui +++ b/noncore/settings/networksettings/ppp/ppp.ui | |||
@@ -1,770 +1,770 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>PPP</class> | 2 | <class>PPP</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QDialog</class> | 4 | <class>QDialog</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>PPP</cstring> | 7 | <cstring>PPP</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>277</width> | 14 | <width>277</width> |
15 | <height>340</height> | 15 | <height>340</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Dial-up </string> | 20 | <string>Dial-up </string> |
21 | </property> | 21 | </property> |
22 | <property> | 22 | <property> |
23 | <name>layoutMargin</name> | 23 | <name>layoutMargin</name> |
24 | </property> | 24 | </property> |
25 | <property> | 25 | <property> |
26 | <name>layoutSpacing</name> | 26 | <name>layoutSpacing</name> |
27 | </property> | 27 | </property> |
28 | <vbox> | 28 | <vbox> |
29 | <property stdset="1"> | 29 | <property stdset="1"> |
30 | <name>margin</name> | 30 | <name>margin</name> |
31 | <number>1</number> | 31 | <number>1</number> |
32 | </property> | 32 | </property> |
33 | <property stdset="1"> | 33 | <property stdset="1"> |
34 | <name>spacing</name> | 34 | <name>spacing</name> |
35 | <number>0</number> | 35 | <number>0</number> |
36 | </property> | 36 | </property> |
37 | <widget> | 37 | <widget> |
38 | <class>QTabWidget</class> | 38 | <class>QTabWidget</class> |
39 | <property stdset="1"> | 39 | <property stdset="1"> |
40 | <name>name</name> | 40 | <name>name</name> |
41 | <cstring>TabWidget2</cstring> | 41 | <cstring>TabWidget2</cstring> |
42 | </property> | 42 | </property> |
43 | <property> | 43 | <property> |
44 | <name>layoutMargin</name> | 44 | <name>layoutMargin</name> |
45 | </property> | 45 | </property> |
46 | <property> | 46 | <property> |
47 | <name>layoutSpacing</name> | 47 | <name>layoutSpacing</name> |
48 | </property> | 48 | </property> |
49 | <widget> | 49 | <widget> |
50 | <class>QWidget</class> | 50 | <class>QWidget</class> |
51 | <property stdset="1"> | 51 | <property stdset="1"> |
52 | <name>name</name> | 52 | <name>name</name> |
53 | <cstring>tab</cstring> | 53 | <cstring>tab</cstring> |
54 | </property> | 54 | </property> |
55 | <attribute> | 55 | <attribute> |
56 | <name>title</name> | 56 | <name>title</name> |
57 | <string>Account</string> | 57 | <string>Account</string> |
58 | </attribute> | 58 | </attribute> |
59 | <grid> | 59 | <grid> |
60 | <property stdset="1"> | 60 | <property stdset="1"> |
61 | <name>margin</name> | 61 | <name>margin</name> |
62 | <number>6</number> | 62 | <number>6</number> |
63 | </property> | 63 | </property> |
64 | <property stdset="1"> | 64 | <property stdset="1"> |
65 | <name>spacing</name> | 65 | <name>spacing</name> |
66 | <number>4</number> | 66 | <number>4</number> |
67 | </property> | 67 | </property> |
68 | <widget row="3" column="1" > | 68 | <widget row="3" column="1" > |
69 | <class>QLineEdit</class> | 69 | <class>QLineEdit</class> |
70 | <property stdset="1"> | 70 | <property stdset="1"> |
71 | <name>name</name> | 71 | <name>name</name> |
72 | <cstring>password</cstring> | 72 | <cstring>password</cstring> |
73 | </property> | 73 | </property> |
74 | <property stdset="1"> | 74 | <property stdset="1"> |
75 | <name>echoMode</name> | 75 | <name>echoMode</name> |
76 | <enum>Password</enum> | 76 | <enum>Password</enum> |
77 | </property> | 77 | </property> |
78 | </widget> | 78 | </widget> |
79 | <widget row="2" column="1" > | 79 | <widget row="2" column="1" > |
80 | <class>QLineEdit</class> | 80 | <class>QLineEdit</class> |
81 | <property stdset="1"> | 81 | <property stdset="1"> |
82 | <name>name</name> | 82 | <name>name</name> |
83 | <cstring>username</cstring> | 83 | <cstring>username</cstring> |
84 | </property> | 84 | </property> |
85 | </widget> | 85 | </widget> |
86 | <widget row="2" column="0" > | 86 | <widget row="2" column="0" > |
87 | <class>QLabel</class> | 87 | <class>QLabel</class> |
88 | <property stdset="1"> | 88 | <property stdset="1"> |
89 | <name>name</name> | 89 | <name>name</name> |
90 | <cstring>TextLabel1</cstring> | 90 | <cstring>TextLabel1</cstring> |
91 | </property> | 91 | </property> |
92 | <property stdset="1"> | 92 | <property stdset="1"> |
93 | <name>text</name> | 93 | <name>text</name> |
94 | <string>Username</string> | 94 | <string>Username</string> |
95 | </property> | 95 | </property> |
96 | </widget> | 96 | </widget> |
97 | <widget row="3" column="0" > | 97 | <widget row="3" column="0" > |
98 | <class>QLabel</class> | 98 | <class>QLabel</class> |
99 | <property stdset="1"> | 99 | <property stdset="1"> |
100 | <name>name</name> | 100 | <name>name</name> |
101 | <cstring>TextLabel2</cstring> | 101 | <cstring>TextLabel2</cstring> |
102 | </property> | 102 | </property> |
103 | <property stdset="1"> | 103 | <property stdset="1"> |
104 | <name>text</name> | 104 | <name>text</name> |
105 | <string>Password</string> | 105 | <string>Password</string> |
106 | </property> | 106 | </property> |
107 | </widget> | 107 | </widget> |
108 | <widget row="5" column="0" > | 108 | <widget row="5" column="0" > |
109 | <class>QLabel</class> | 109 | <class>QLabel</class> |
110 | <property stdset="1"> | 110 | <property stdset="1"> |
111 | <name>name</name> | 111 | <name>name</name> |
112 | <cstring>TextLabel1_2_2</cstring> | 112 | <cstring>TextLabel1_2_2</cstring> |
113 | </property> | 113 | </property> |
114 | <property stdset="1"> | 114 | <property stdset="1"> |
115 | <name>text</name> | 115 | <name>text</name> |
116 | <string>Phone #</string> | 116 | <string>Phone #</string> |
117 | </property> | 117 | </property> |
118 | </widget> | 118 | </widget> |
119 | <widget row="5" column="1" > | 119 | <widget row="5" column="1" > |
120 | <class>QLineEdit</class> | 120 | <class>QLineEdit</class> |
121 | <property stdset="1"> | 121 | <property stdset="1"> |
122 | <name>name</name> | 122 | <name>name</name> |
123 | <cstring>phone</cstring> | 123 | <cstring>phone</cstring> |
124 | </property> | 124 | </property> |
125 | </widget> | 125 | </widget> |
126 | <widget row="4" column="0" rowspan="1" colspan="2" > | 126 | <widget row="4" column="0" rowspan="1" colspan="2" > |
127 | <class>Line</class> | 127 | <class>Line</class> |
128 | <property stdset="1"> | 128 | <property stdset="1"> |
129 | <name>name</name> | 129 | <name>name</name> |
130 | <cstring>Line3</cstring> | 130 | <cstring>Line3</cstring> |
131 | </property> | 131 | </property> |
132 | <property stdset="1"> | 132 | <property stdset="1"> |
133 | <name>orientation</name> | 133 | <name>orientation</name> |
134 | <enum>Horizontal</enum> | 134 | <enum>Horizontal</enum> |
135 | </property> | 135 | </property> |
136 | </widget> | 136 | </widget> |
137 | <widget row="0" column="1" > | 137 | <widget row="0" column="1" > |
138 | <class>QLineEdit</class> | 138 | <class>QLineEdit</class> |
139 | <property stdset="1"> | 139 | <property stdset="1"> |
140 | <name>name</name> | 140 | <name>name</name> |
141 | <cstring>acname</cstring> | 141 | <cstring>acname</cstring> |
142 | </property> | 142 | </property> |
143 | </widget> | 143 | </widget> |
144 | <widget row="0" column="0" > | 144 | <widget row="0" column="0" > |
145 | <class>QLabel</class> | 145 | <class>QLabel</class> |
146 | <property stdset="1"> | 146 | <property stdset="1"> |
147 | <name>name</name> | 147 | <name>name</name> |
148 | <cstring>TextLabel1_2</cstring> | 148 | <cstring>TextLabel1_2</cstring> |
149 | </property> | 149 | </property> |
150 | <property stdset="1"> | 150 | <property stdset="1"> |
151 | <name>text</name> | 151 | <name>text</name> |
152 | <string>Name</string> | 152 | <string>Name</string> |
153 | </property> | 153 | </property> |
154 | </widget> | 154 | </widget> |
155 | <widget row="1" column="0" rowspan="1" colspan="2" > | 155 | <widget row="1" column="0" rowspan="1" colspan="2" > |
156 | <class>Line</class> | 156 | <class>Line</class> |
157 | <property stdset="1"> | 157 | <property stdset="1"> |
158 | <name>name</name> | 158 | <name>name</name> |
159 | <cstring>Line4</cstring> | 159 | <cstring>Line4</cstring> |
160 | </property> | 160 | </property> |
161 | <property stdset="1"> | 161 | <property stdset="1"> |
162 | <name>orientation</name> | 162 | <name>orientation</name> |
163 | <enum>Horizontal</enum> | 163 | <enum>Horizontal</enum> |
164 | </property> | 164 | </property> |
165 | </widget> | 165 | </widget> |
166 | <spacer row="9" column="1" > | 166 | <spacer row="9" column="1" > |
167 | <property> | 167 | <property> |
168 | <name>name</name> | 168 | <name>name</name> |
169 | <cstring>Spacer4</cstring> | 169 | <cstring>Spacer4</cstring> |
170 | </property> | 170 | </property> |
171 | <property stdset="1"> | 171 | <property stdset="1"> |
172 | <name>orientation</name> | 172 | <name>orientation</name> |
173 | <enum>Vertical</enum> | 173 | <enum>Vertical</enum> |
174 | </property> | 174 | </property> |
175 | <property stdset="1"> | 175 | <property stdset="1"> |
176 | <name>sizeType</name> | 176 | <name>sizeType</name> |
177 | <enum>Expanding</enum> | 177 | <enum>Expanding</enum> |
178 | </property> | 178 | </property> |
179 | <property> | 179 | <property> |
180 | <name>sizeHint</name> | 180 | <name>sizeHint</name> |
181 | <size> | 181 | <size> |
182 | <width>20</width> | 182 | <width>20</width> |
183 | <height>20</height> | 183 | <height>20</height> |
184 | </size> | 184 | </size> |
185 | </property> | 185 | </property> |
186 | </spacer> | 186 | </spacer> |
187 | </grid> | 187 | </grid> |
188 | </widget> | 188 | </widget> |
189 | <widget> | 189 | <widget> |
190 | <class>QWidget</class> | 190 | <class>QWidget</class> |
191 | <property stdset="1"> | 191 | <property stdset="1"> |
192 | <name>name</name> | 192 | <name>name</name> |
193 | <cstring>tab</cstring> | 193 | <cstring>tab</cstring> |
194 | </property> | 194 | </property> |
195 | <attribute> | 195 | <attribute> |
196 | <name>title</name> | 196 | <name>title</name> |
197 | <string>Modem</string> | 197 | <string>Modem</string> |
198 | </attribute> | 198 | </attribute> |
199 | <grid> | 199 | <grid> |
200 | <property stdset="1"> | 200 | <property stdset="1"> |
201 | <name>margin</name> | 201 | <name>margin</name> |
202 | <number>6</number> | 202 | <number>6</number> |
203 | </property> | 203 | </property> |
204 | <property stdset="1"> | 204 | <property stdset="1"> |
205 | <name>spacing</name> | 205 | <name>spacing</name> |
206 | <number>4</number> | 206 | <number>4</number> |
207 | </property> | 207 | </property> |
208 | <widget row="0" column="0" > | 208 | <widget row="0" column="0" > |
209 | <class>QLabel</class> | 209 | <class>QLabel</class> |
210 | <property stdset="1"> | 210 | <property stdset="1"> |
211 | <name>name</name> | 211 | <name>name</name> |
212 | <cstring>TextLabel3_2_2</cstring> | 212 | <cstring>TextLabel3_2_2</cstring> |
213 | </property> | 213 | </property> |
214 | <property stdset="1"> | 214 | <property stdset="1"> |
215 | <name>text</name> | 215 | <name>text</name> |
216 | <string>AT-dial</string> | 216 | <string>AT-dial</string> |
217 | </property> | 217 | </property> |
218 | </widget> | 218 | </widget> |
219 | <widget row="0" column="1" rowspan="1" colspan="3" > | 219 | <widget row="0" column="1" rowspan="1" colspan="3" > |
220 | <class>QComboBox</class> | 220 | <class>QComboBox</class> |
221 | <item> | 221 | <item> |
222 | <property> | 222 | <property> |
223 | <name>text</name> | 223 | <name>text</name> |
224 | <string>ATDT</string> | 224 | <string>ATDT</string> |
225 | </property> | 225 | </property> |
226 | </item> | 226 | </item> |
227 | <item> | 227 | <item> |
228 | <property> | 228 | <property> |
229 | <name>text</name> | 229 | <name>text</name> |
230 | <string>ATDP</string> | 230 | <string>ATDP</string> |
231 | </property> | 231 | </property> |
232 | </item> | 232 | </item> |
233 | <property stdset="1"> | 233 | <property stdset="1"> |
234 | <name>name</name> | 234 | <name>name</name> |
235 | <cstring>atdial</cstring> | 235 | <cstring>atdial</cstring> |
236 | </property> | 236 | </property> |
237 | <property stdset="1"> | 237 | <property stdset="1"> |
238 | <name>editable</name> | 238 | <name>editable</name> |
239 | <bool>true</bool> | 239 | <bool>true</bool> |
240 | </property> | 240 | </property> |
241 | </widget> | 241 | </widget> |
242 | <widget row="1" column="0" > | 242 | <widget row="1" column="0" > |
243 | <class>QLabel</class> | 243 | <class>QLabel</class> |
244 | <property stdset="1"> | 244 | <property stdset="1"> |
245 | <name>name</name> | 245 | <name>name</name> |
246 | <cstring>TextLabel1_4</cstring> | 246 | <cstring>TextLabel1_4</cstring> |
247 | </property> | 247 | </property> |
248 | <property stdset="1"> | 248 | <property stdset="1"> |
249 | <name>text</name> | 249 | <name>text</name> |
250 | <string>Speed</string> | 250 | <string>Speed</string> |
251 | </property> | 251 | </property> |
252 | </widget> | 252 | </widget> |
253 | <widget row="1" column="1" rowspan="1" colspan="3" > | 253 | <widget row="1" column="1" rowspan="1" colspan="3" > |
254 | <class>QComboBox</class> | 254 | <class>QComboBox</class> |
255 | <item> | 255 | <item> |
256 | <property> | 256 | <property> |
257 | <name>text</name> | 257 | <name>text</name> |
258 | <string>4800</string> | 258 | <string>4800</string> |
259 | </property> | 259 | </property> |
260 | </item> | 260 | </item> |
261 | <item> | 261 | <item> |
262 | <property> | 262 | <property> |
263 | <name>text</name> | 263 | <name>text</name> |
264 | <string>9600</string> | 264 | <string>9600</string> |
265 | </property> | 265 | </property> |
266 | </item> | 266 | </item> |
267 | <item> | 267 | <item> |
268 | <property> | 268 | <property> |
269 | <name>text</name> | 269 | <name>text</name> |
270 | <string>19200</string> | 270 | <string>19200</string> |
271 | </property> | 271 | </property> |
272 | </item> | 272 | </item> |
273 | <item> | 273 | <item> |
274 | <property> | 274 | <property> |
275 | <name>text</name> | 275 | <name>text</name> |
276 | <string>38400</string> | 276 | <string>38400</string> |
277 | </property> | 277 | </property> |
278 | </item> | 278 | </item> |
279 | <item> | 279 | <item> |
280 | <property> | 280 | <property> |
281 | <name>text</name> | 281 | <name>text</name> |
282 | <string>57600</string> | 282 | <string>57600</string> |
283 | </property> | 283 | </property> |
284 | </item> | 284 | </item> |
285 | <item> | 285 | <item> |
286 | <property> | 286 | <property> |
287 | <name>text</name> | 287 | <name>text</name> |
288 | <string>115200</string> | 288 | <string>115200</string> |
289 | </property> | 289 | </property> |
290 | </item> | 290 | </item> |
291 | <property stdset="1"> | 291 | <property stdset="1"> |
292 | <name>name</name> | 292 | <name>name</name> |
293 | <cstring>speed</cstring> | 293 | <cstring>speed</cstring> |
294 | </property> | 294 | </property> |
295 | <property stdset="1"> | 295 | <property stdset="1"> |
296 | <name>currentItem</name> | 296 | <name>currentItem</name> |
297 | <number>5</number> | 297 | <number>5</number> |
298 | </property> | 298 | </property> |
299 | </widget> | 299 | </widget> |
300 | <widget row="3" column="1" > | 300 | <widget row="3" column="1" > |
301 | <class>QSlider</class> | 301 | <class>QSlider</class> |
302 | <property stdset="1"> | 302 | <property stdset="1"> |
303 | <name>name</name> | 303 | <name>name</name> |
304 | <cstring>connectdelay</cstring> | 304 | <cstring>connectdelay</cstring> |
305 | </property> | 305 | </property> |
306 | <property stdset="1"> | 306 | <property stdset="1"> |
307 | <name>minValue</name> | 307 | <name>minValue</name> |
308 | <number>1</number> | 308 | <number>1</number> |
309 | </property> | 309 | </property> |
310 | <property stdset="1"> | 310 | <property stdset="1"> |
311 | <name>maxValue</name> | 311 | <name>maxValue</name> |
312 | <number>180</number> | 312 | <number>180</number> |
313 | </property> | 313 | </property> |
314 | <property stdset="1"> | 314 | <property stdset="1"> |
315 | <name>value</name> | 315 | <name>value</name> |
316 | <number>6</number> | 316 | <number>6</number> |
317 | </property> | 317 | </property> |
318 | <property stdset="1"> | 318 | <property stdset="1"> |
319 | <name>orientation</name> | 319 | <name>orientation</name> |
320 | <enum>Horizontal</enum> | 320 | <enum>Horizontal</enum> |
321 | </property> | 321 | </property> |
322 | </widget> | 322 | </widget> |
323 | <widget row="3" column="0" > | 323 | <widget row="3" column="0" > |
324 | <class>QLabel</class> | 324 | <class>QLabel</class> |
325 | <property stdset="1"> | 325 | <property stdset="1"> |
326 | <name>name</name> | 326 | <name>name</name> |
327 | <cstring>TextLabel1_3</cstring> | 327 | <cstring>TextLabel1_3</cstring> |
328 | </property> | 328 | </property> |
329 | <property stdset="1"> | 329 | <property stdset="1"> |
330 | <name>text</name> | 330 | <name>text</name> |
331 | <string>Wait time</string> | 331 | <string>Wait time</string> |
332 | </property> | 332 | </property> |
333 | </widget> | 333 | </widget> |
334 | <widget row="3" column="2" > | 334 | <widget row="3" column="2" > |
335 | <class>QLabel</class> | 335 | <class>QLabel</class> |
336 | <property stdset="1"> | 336 | <property stdset="1"> |
337 | <name>name</name> | 337 | <name>name</name> |
338 | <cstring>connectdelay_text</cstring> | 338 | <cstring>connectdelay_text</cstring> |
339 | </property> | 339 | </property> |
340 | <property stdset="1"> | 340 | <property stdset="1"> |
341 | <name>minimumSize</name> | 341 | <name>minimumSize</name> |
342 | <size> | 342 | <size> |
343 | <width>15</width> | 343 | <width>15</width> |
344 | <height>0</height> | 344 | <height>0</height> |
345 | </size> | 345 | </size> |
346 | </property> | 346 | </property> |
347 | <property stdset="1"> | 347 | <property stdset="1"> |
348 | <name>text</name> | 348 | <name>text</name> |
349 | <string>6</string> | 349 | <string>6</string> |
350 | </property> | 350 | </property> |
351 | <property stdset="1"> | 351 | <property stdset="1"> |
352 | <name>alignment</name> | 352 | <name>alignment</name> |
353 | <set>AlignVCenter|AlignRight</set> | 353 | <set>AlignVCenter|AlignRight</set> |
354 | </property> | 354 | </property> |
355 | <property> | 355 | <property> |
356 | <name>hAlign</name> | 356 | <name>hAlign</name> |
357 | </property> | 357 | </property> |
358 | </widget> | 358 | </widget> |
359 | <widget row="3" column="3" > | 359 | <widget row="3" column="3" > |
360 | <class>QLabel</class> | 360 | <class>QLabel</class> |
361 | <property stdset="1"> | 361 | <property stdset="1"> |
362 | <name>name</name> | 362 | <name>name</name> |
363 | <cstring>TextLabel5</cstring> | 363 | <cstring>TextLabel5</cstring> |
364 | </property> | 364 | </property> |
365 | <property stdset="1"> | 365 | <property stdset="1"> |
366 | <name>text</name> | 366 | <name>text</name> |
367 | <string>sec</string> | 367 | <string>sec</string> |
368 | </property> | 368 | </property> |
369 | </widget> | 369 | </widget> |
370 | <widget row="2" column="0" > | 370 | <widget row="2" column="0" > |
371 | <class>QLabel</class> | 371 | <class>QLabel</class> |
372 | <property stdset="1"> | 372 | <property stdset="1"> |
373 | <name>name</name> | 373 | <name>name</name> |
374 | <cstring>TextLabel3</cstring> | 374 | <cstring>TextLabel3</cstring> |
375 | </property> | 375 | </property> |
376 | <property stdset="1"> | 376 | <property stdset="1"> |
377 | <name>text</name> | 377 | <name>text</name> |
378 | <string>Flow control</string> | 378 | <string>Flow control</string> |
379 | </property> | 379 | </property> |
380 | </widget> | 380 | </widget> |
381 | <widget row="2" column="1" rowspan="1" colspan="3" > | 381 | <widget row="2" column="1" rowspan="1" colspan="3" > |
382 | <class>QCheckBox</class> | 382 | <class>QCheckBox</class> |
383 | <property stdset="1"> | 383 | <property stdset="1"> |
384 | <name>name</name> | 384 | <name>name</name> |
385 | <cstring>crtscts</cstring> | 385 | <cstring>crtscts</cstring> |
386 | </property> | 386 | </property> |
387 | <property stdset="1"> | 387 | <property stdset="1"> |
388 | <name>text</name> | 388 | <name>text</name> |
389 | <string>Hardware flow control</string> | 389 | <string>Hardware flow control</string> |
390 | </property> | 390 | </property> |
391 | <property stdset="1"> | 391 | <property stdset="1"> |
392 | <name>checked</name> | 392 | <name>checked</name> |
393 | <bool>true</bool> | 393 | <bool>true</bool> |
394 | </property> | 394 | </property> |
395 | </widget> | 395 | </widget> |
396 | <spacer row="4" column="1" > | 396 | <spacer row="4" column="1" > |
397 | <property> | 397 | <property> |
398 | <name>name</name> | 398 | <name>name</name> |
399 | <cstring>Spacer5</cstring> | 399 | <cstring>Spacer5</cstring> |
400 | </property> | 400 | </property> |
401 | <property stdset="1"> | 401 | <property stdset="1"> |
402 | <name>orientation</name> | 402 | <name>orientation</name> |
403 | <enum>Vertical</enum> | 403 | <enum>Vertical</enum> |
404 | </property> | 404 | </property> |
405 | <property stdset="1"> | 405 | <property stdset="1"> |
406 | <name>sizeType</name> | 406 | <name>sizeType</name> |
407 | <enum>Expanding</enum> | 407 | <enum>Expanding</enum> |
408 | </property> | 408 | </property> |
409 | <property> | 409 | <property> |
410 | <name>sizeHint</name> | 410 | <name>sizeHint</name> |
411 | <size> | 411 | <size> |
412 | <width>20</width> | 412 | <width>20</width> |
413 | <height>20</height> | 413 | <height>20</height> |
414 | </size> | 414 | </size> |
415 | </property> | 415 | </property> |
416 | </spacer> | 416 | </spacer> |
417 | <widget row="5" column="0" rowspan="1" colspan="4" > | 417 | <widget row="5" column="0" rowspan="1" colspan="4" > |
418 | <class>QButtonGroup</class> | 418 | <class>QButtonGroup</class> |
419 | <property stdset="1"> | 419 | <property stdset="1"> |
420 | <name>name</name> | 420 | <name>name</name> |
421 | <cstring>dialmode</cstring> | 421 | <cstring>dialmode</cstring> |
422 | </property> | 422 | </property> |
423 | <property stdset="1"> | 423 | <property stdset="1"> |
424 | <name>title</name> | 424 | <name>title</name> |
425 | <string>Demand Dialing</string> | 425 | <string>Demand Dialing</string> |
426 | </property> | 426 | </property> |
427 | <grid> | 427 | <grid> |
428 | <property stdset="1"> | 428 | <property stdset="1"> |
429 | <name>margin</name> | 429 | <name>margin</name> |
430 | <number>11</number> | 430 | <number>11</number> |
431 | </property> | 431 | </property> |
432 | <property stdset="1"> | 432 | <property stdset="1"> |
433 | <name>spacing</name> | 433 | <name>spacing</name> |
434 | <number>6</number> | 434 | <number>6</number> |
435 | </property> | 435 | </property> |
436 | <widget row="0" column="0" rowspan="1" colspan="2" > | 436 | <widget row="0" column="0" rowspan="1" colspan="2" > |
437 | <class>QRadioButton</class> | 437 | <class>QRadioButton</class> |
438 | <property stdset="1"> | 438 | <property stdset="1"> |
439 | <name>name</name> | 439 | <name>name</name> |
440 | <cstring>dial_manual</cstring> | 440 | <cstring>dial_manual</cstring> |
441 | </property> | 441 | </property> |
442 | <property stdset="1"> | 442 | <property stdset="1"> |
443 | <name>text</name> | 443 | <name>text</name> |
444 | <string>Manual connect and disconnect</string> | 444 | <string>Manual connect and disconnect</string> |
445 | </property> | 445 | </property> |
446 | </widget> | 446 | </widget> |
447 | <widget row="3" column="1" > | 447 | <widget row="3" column="1" > |
448 | <class>QSpinBox</class> | 448 | <class>QSpinBox</class> |
449 | <property stdset="1"> | 449 | <property stdset="1"> |
450 | <name>name</name> | 450 | <name>name</name> |
451 | <cstring>idletime</cstring> | 451 | <cstring>idletime</cstring> |
452 | </property> | 452 | </property> |
453 | <property stdset="1"> | 453 | <property stdset="1"> |
454 | <name>suffix</name> | 454 | <name>suffix</name> |
455 | <string> seconds</string> | 455 | <string> seconds</string> |
456 | </property> | 456 | </property> |
457 | <property stdset="1"> | 457 | <property stdset="1"> |
458 | <name>maxValue</name> | 458 | <name>maxValue</name> |
459 | <number>3600</number> | 459 | <number>3600</number> |
460 | </property> | 460 | </property> |
461 | <property stdset="1"> | 461 | <property stdset="1"> |
462 | <name>lineStep</name> | 462 | <name>lineStep</name> |
463 | <number>30</number> | 463 | <number>30</number> |
464 | </property> | 464 | </property> |
465 | <property stdset="1"> | 465 | <property stdset="1"> |
466 | <name>value</name> | 466 | <name>value</name> |
467 | <number>120</number> | 467 | <number>120</number> |
468 | </property> | 468 | </property> |
469 | </widget> | 469 | </widget> |
470 | <widget row="3" column="0" > | 470 | <widget row="3" column="0" > |
471 | <class>QLabel</class> | 471 | <class>QLabel</class> |
472 | <property stdset="1"> | 472 | <property stdset="1"> |
473 | <name>name</name> | 473 | <name>name</name> |
474 | <cstring>TextLabel1_5</cstring> | 474 | <cstring>TextLabel1_5</cstring> |
475 | </property> | 475 | </property> |
476 | <property stdset="1"> | 476 | <property stdset="1"> |
477 | <name>sizePolicy</name> | 477 | <name>sizePolicy</name> |
478 | <sizepolicy> | 478 | <sizepolicy> |
479 | <hsizetype>7</hsizetype> | 479 | <hsizetype>7</hsizetype> |
480 | <vsizetype>1</vsizetype> | 480 | <vsizetype>1</vsizetype> |
481 | </sizepolicy> | 481 | </sizepolicy> |
482 | </property> | 482 | </property> |
483 | <property stdset="1"> | 483 | <property stdset="1"> |
484 | <name>text</name> | 484 | <name>text</name> |
485 | <string>Idle timeout:</string> | 485 | <string>Idle timeout:</string> |
486 | </property> | 486 | </property> |
487 | <property stdset="1"> | 487 | <property stdset="1"> |
488 | <name>alignment</name> | 488 | <name>alignment</name> |
489 | <set>AlignVCenter|AlignRight</set> | 489 | <set>AlignVCenter|AlignRight</set> |
490 | </property> | 490 | </property> |
491 | <property> | 491 | <property> |
492 | <name>hAlign</name> | 492 | <name>hAlign</name> |
493 | </property> | 493 | </property> |
494 | </widget> | 494 | </widget> |
495 | <widget row="2" column="0" rowspan="1" colspan="2" > | 495 | <widget row="2" column="0" rowspan="1" colspan="2" > |
496 | <class>QRadioButton</class> | 496 | <class>QRadioButton</class> |
497 | <property stdset="1"> | 497 | <property stdset="1"> |
498 | <name>name</name> | 498 | <name>name</name> |
499 | <cstring>dial_demand</cstring> | 499 | <cstring>dial_demand</cstring> |
500 | </property> | 500 | </property> |
501 | <property stdset="1"> | 501 | <property stdset="1"> |
502 | <name>text</name> | 502 | <name>text</name> |
503 | <string>Automatic connect and disconnect</string> | 503 | <string>Automatic connect and disconnect</string> |
504 | </property> | 504 | </property> |
505 | <property stdset="1"> | 505 | <property stdset="1"> |
506 | <name>checked</name> | 506 | <name>checked</name> |
507 | <bool>true</bool> | 507 | <bool>true</bool> |
508 | </property> | 508 | </property> |
509 | <property stdset="1"> | 509 | <property stdset="1"> |
510 | <name>buttonGroupId</name> | 510 | <name>buttonGroupId</name> |
511 | <number>2</number> | 511 | <number>2</number> |
512 | </property> | 512 | </property> |
513 | </widget> | 513 | </widget> |
514 | <widget row="1" column="0" rowspan="1" colspan="2" > | 514 | <widget row="1" column="0" rowspan="1" colspan="2" > |
515 | <class>QRadioButton</class> | 515 | <class>QRadioButton</class> |
516 | <property stdset="1"> | 516 | <property stdset="1"> |
517 | <name>name</name> | 517 | <name>name</name> |
518 | <cstring>dial_idle</cstring> | 518 | <cstring>dial_idle</cstring> |
519 | </property> | 519 | </property> |
520 | <property stdset="1"> | 520 | <property stdset="1"> |
521 | <name>text</name> | 521 | <name>text</name> |
522 | <string>Manual connect, automatic disconnect</string> | 522 | <string>Manual connect, automatic disconnect</string> |
523 | </property> | 523 | </property> |
524 | <property stdset="1"> | 524 | <property stdset="1"> |
525 | <name>buttonGroupId</name> | 525 | <name>buttonGroupId</name> |
526 | <number>1</number> | 526 | <number>1</number> |
527 | </property> | 527 | </property> |
528 | </widget> | 528 | </widget> |
529 | </grid> | 529 | </grid> |
530 | </widget> | 530 | </widget> |
531 | </grid> | 531 | </grid> |
532 | </widget> | 532 | </widget> |
533 | <widget> | 533 | <widget> |
534 | <class>QWidget</class> | 534 | <class>QWidget</class> |
535 | <property stdset="1"> | 535 | <property stdset="1"> |
536 | <name>name</name> | 536 | <name>name</name> |
537 | <cstring>tab</cstring> | 537 | <cstring>tab</cstring> |
538 | </property> | 538 | </property> |
539 | <attribute> | 539 | <attribute> |
540 | <name>title</name> | 540 | <name>title</name> |
541 | <string>Network</string> | 541 | <string>Network</string> |
542 | </attribute> | 542 | </attribute> |
543 | <grid> | 543 | <grid> |
544 | <property stdset="1"> | 544 | <property stdset="1"> |
545 | <name>margin</name> | 545 | <name>margin</name> |
546 | <number>6</number> | 546 | <number>6</number> |
547 | </property> | 547 | </property> |
548 | <property stdset="1"> | 548 | <property stdset="1"> |
549 | <name>spacing</name> | 549 | <name>spacing</name> |
550 | <number>4</number> | 550 | <number>4</number> |
551 | </property> | 551 | </property> |
552 | <spacer row="4" column="1" > | 552 | <spacer row="4" column="1" > |
553 | <property> | 553 | <property> |
554 | <name>name</name> | 554 | <name>name</name> |
555 | <cstring>Spacer8</cstring> | 555 | <cstring>Spacer8</cstring> |
556 | </property> | 556 | </property> |
557 | <property stdset="1"> | 557 | <property stdset="1"> |
558 | <name>orientation</name> | 558 | <name>orientation</name> |
559 | <enum>Vertical</enum> | 559 | <enum>Vertical</enum> |
560 | </property> | 560 | </property> |
561 | <property stdset="1"> | 561 | <property stdset="1"> |
562 | <name>sizeType</name> | 562 | <name>sizeType</name> |
563 | <enum>Expanding</enum> | 563 | <enum>Expanding</enum> |
564 | </property> | 564 | </property> |
565 | <property> | 565 | <property> |
566 | <name>sizeHint</name> | 566 | <name>sizeHint</name> |
567 | <size> | 567 | <size> |
568 | <width>20</width> | 568 | <width>20</width> |
569 | <height>20</height> | 569 | <height>20</height> |
570 | </size> | 570 | </size> |
571 | </property> | 571 | </property> |
572 | </spacer> | 572 | </spacer> |
573 | <widget row="2" column="0" > | 573 | <widget row="2" column="0" > |
574 | <class>QCheckBox</class> | 574 | <class>QCheckBox</class> |
575 | <property stdset="1"> | 575 | <property stdset="1"> |
576 | <name>name</name> | 576 | <name>name</name> |
577 | <cstring>usepeerdns</cstring> | 577 | <cstring>usepeerdns</cstring> |
578 | </property> | 578 | </property> |
579 | <property stdset="1"> | 579 | <property stdset="1"> |
580 | <name>text</name> | 580 | <name>text</name> |
581 | <string>Auto-detect name servers</string> | 581 | <string>Auto-detect name servers</string> |
582 | </property> | 582 | </property> |
583 | <property stdset="1"> | 583 | <property stdset="1"> |
584 | <name>checked</name> | 584 | <name>checked</name> |
585 | <bool>true</bool> | 585 | <bool>true</bool> |
586 | </property> | 586 | </property> |
587 | </widget> | 587 | </widget> |
588 | <widget row="1" column="0" rowspan="1" colspan="2" > | 588 | <widget row="1" column="0" rowspan="1" colspan="2" > |
589 | <class>QGroupBox</class> | 589 | <class>QGroupBox</class> |
590 | <property stdset="1"> | 590 | <property stdset="1"> |
591 | <name>name</name> | 591 | <name>name</name> |
592 | <cstring>gatewaybox</cstring> | 592 | <cstring>gatewaybox</cstring> |
593 | </property> | 593 | </property> |
594 | <property stdset="1"> | 594 | <property stdset="1"> |
595 | <name>enabled</name> | 595 | <name>enabled</name> |
596 | <bool>false</bool> | 596 | <bool>false</bool> |
597 | </property> | 597 | </property> |
598 | <property stdset="1"> | 598 | <property stdset="1"> |
599 | <name>title</name> | 599 | <name>title</name> |
600 | <string></string> | 600 | <string></string> |
601 | </property> | 601 | </property> |
602 | <hbox> | 602 | <hbox> |
603 | <property stdset="1"> | 603 | <property stdset="1"> |
604 | <name>margin</name> | 604 | <name>margin</name> |
605 | <number>11</number> | 605 | <number>11</number> |
606 | </property> | 606 | </property> |
607 | <property stdset="1"> | 607 | <property stdset="1"> |
608 | <name>spacing</name> | 608 | <name>spacing</name> |
609 | <number>6</number> | 609 | <number>6</number> |
610 | </property> | 610 | </property> |
611 | <widget> | 611 | <widget> |
612 | <class>QLabel</class> | 612 | <class>QLabel</class> |
613 | <property stdset="1"> | 613 | <property stdset="1"> |
614 | <name>name</name> | 614 | <name>name</name> |
615 | <cstring>TextLabel4_2</cstring> | 615 | <cstring>TextLabel4_2</cstring> |
616 | </property> | 616 | </property> |
617 | <property stdset="1"> | 617 | <property stdset="1"> |
618 | <name>text</name> | 618 | <name>text</name> |
619 | <string>Gateway</string> | 619 | <string>Gateway</string> |
620 | </property> | 620 | </property> |
621 | </widget> | 621 | </widget> |
622 | <widget> | 622 | <widget> |
623 | <class>QLineEdit</class> | 623 | <class>QLineEdit</class> |
624 | <property stdset="1"> | 624 | <property stdset="1"> |
625 | <name>name</name> | 625 | <name>name</name> |
626 | <cstring>gateway</cstring> | 626 | <cstring>gateway</cstring> |
627 | </property> | 627 | </property> |
628 | <property stdset="1"> | 628 | <property stdset="1"> |
629 | <name>text</name> | 629 | <name>text</name> |
630 | <string></string> | 630 | <string></string> |
631 | </property> | 631 | </property> |
632 | </widget> | 632 | </widget> |
633 | </hbox> | 633 | </hbox> |
634 | </widget> | 634 | </widget> |
635 | <widget row="0" column="0" rowspan="1" colspan="2" > | 635 | <widget row="0" column="0" rowspan="1" colspan="2" > |
636 | <class>QCheckBox</class> | 636 | <class>QCheckBox</class> |
637 | <property stdset="1"> | 637 | <property stdset="1"> |
638 | <name>name</name> | 638 | <name>name</name> |
639 | <cstring>defaultroute</cstring> | 639 | <cstring>defaultroute</cstring> |
640 | </property> | 640 | </property> |
641 | <property stdset="1"> | 641 | <property stdset="1"> |
642 | <name>text</name> | 642 | <name>text</name> |
643 | <string>Auto-detect routing</string> | 643 | <string>Auto-detect routing</string> |
644 | </property> | 644 | </property> |
645 | <property stdset="1"> | 645 | <property stdset="1"> |
646 | <name>checked</name> | 646 | <name>checked</name> |
647 | <bool>true</bool> | 647 | <bool>true</bool> |
648 | </property> | 648 | </property> |
649 | </widget> | 649 | </widget> |
650 | <widget row="3" column="0" rowspan="1" colspan="2" > | 650 | <widget row="3" column="0" rowspan="1" colspan="2" > |
651 | <class>QGroupBox</class> | 651 | <class>QGroupBox</class> |
652 | <property stdset="1"> | 652 | <property stdset="1"> |
653 | <name>name</name> | 653 | <name>name</name> |
654 | <cstring>dnsbox</cstring> | 654 | <cstring>dnsbox</cstring> |
655 | </property> | 655 | </property> |
656 | <property stdset="1"> | 656 | <property stdset="1"> |
657 | <name>enabled</name> | 657 | <name>enabled</name> |
658 | <bool>false</bool> | 658 | <bool>false</bool> |
659 | </property> | 659 | </property> |
660 | <property stdset="1"> | 660 | <property stdset="1"> |
661 | <name>title</name> | 661 | <name>title</name> |
662 | <string></string> | 662 | <string></string> |
663 | </property> | 663 | </property> |
664 | <grid> | 664 | <grid> |
665 | <property stdset="1"> | 665 | <property stdset="1"> |
666 | <name>margin</name> | 666 | <name>margin</name> |
667 | <number>11</number> | 667 | <number>11</number> |
668 | </property> | 668 | </property> |
669 | <property stdset="1"> | 669 | <property stdset="1"> |
670 | <name>spacing</name> | 670 | <name>spacing</name> |
671 | <number>6</number> | 671 | <number>6</number> |
672 | </property> | 672 | </property> |
673 | <widget row="0" column="1" > | 673 | <widget row="0" column="1" > |
674 | <class>QLineEdit</class> | 674 | <class>QLineEdit</class> |
675 | <property stdset="1"> | 675 | <property stdset="1"> |
676 | <name>name</name> | 676 | <name>name</name> |
677 | <cstring>dns1</cstring> | 677 | <cstring>dns1</cstring> |
678 | </property> | 678 | </property> |
679 | <property stdset="1"> | 679 | <property stdset="1"> |
680 | <name>text</name> | 680 | <name>text</name> |
681 | <string></string> | 681 | <string></string> |
682 | </property> | 682 | </property> |
683 | </widget> | 683 | </widget> |
684 | <widget row="1" column="1" > | 684 | <widget row="1" column="1" > |
685 | <class>QLineEdit</class> | 685 | <class>QLineEdit</class> |
686 | <property stdset="1"> | 686 | <property stdset="1"> |
687 | <name>name</name> | 687 | <name>name</name> |
688 | <cstring>dns2</cstring> | 688 | <cstring>dns2</cstring> |
689 | </property> | 689 | </property> |
690 | <property stdset="1"> | 690 | <property stdset="1"> |
691 | <name>text</name> | 691 | <name>text</name> |
692 | <string></string> | 692 | <string></string> |
693 | </property> | 693 | </property> |
694 | </widget> | 694 | </widget> |
695 | <widget row="0" column="0" > | 695 | <widget row="0" column="0" > |
696 | <class>QLabel</class> | 696 | <class>QLabel</class> |
697 | <property stdset="1"> | 697 | <property stdset="1"> |
698 | <name>name</name> | 698 | <name>name</name> |
699 | <cstring>TextLabel1_2_3</cstring> | 699 | <cstring>TextLabel1_2_3</cstring> |
700 | </property> | 700 | </property> |
701 | <property stdset="1"> | 701 | <property stdset="1"> |
702 | <name>text</name> | 702 | <name>text</name> |
703 | <string>First DNS</string> | 703 | <string>First DNS</string> |
704 | </property> | 704 | </property> |
705 | </widget> | 705 | </widget> |
706 | <widget row="1" column="0" > | 706 | <widget row="1" column="0" > |
707 | <class>QLabel</class> | 707 | <class>QLabel</class> |
708 | <property stdset="1"> | 708 | <property stdset="1"> |
709 | <name>name</name> | 709 | <name>name</name> |
710 | <cstring>TextLabel1_2_2_2</cstring> | 710 | <cstring>TextLabel1_2_2_2</cstring> |
711 | </property> | 711 | </property> |
712 | <property stdset="1"> | 712 | <property stdset="1"> |
713 | <name>text</name> | 713 | <name>text</name> |
714 | <string>Second DNS</string> | 714 | <string>Second DNS</string> |
715 | </property> | 715 | </property> |
716 | </widget> | 716 | </widget> |
717 | </grid> | 717 | </grid> |
718 | </widget> | 718 | </widget> |
719 | </grid> | 719 | </grid> |
720 | </widget> | 720 | </widget> |
721 | </widget> | 721 | </widget> |
722 | </vbox> | 722 | </vbox> |
723 | </widget> | 723 | </widget> |
724 | <connections> | 724 | <connections> |
725 | <connection> | 725 | <connection> |
726 | <sender>defaultroute</sender> | 726 | <sender>defaultroute</sender> |
727 | <signal>toggled(bool)</signal> | 727 | <signal>toggled(bool)</signal> |
728 | <receiver>gatewaybox</receiver> | 728 | <receiver>gatewaybox</receiver> |
729 | <slot>setDisabled(bool)</slot> | 729 | <slot>setDisabled(bool)</slot> |
730 | </connection> | 730 | </connection> |
731 | <connection> | 731 | <connection> |
732 | <sender>usepeerdns</sender> | 732 | <sender>usepeerdns</sender> |
733 | <signal>toggled(bool)</signal> | 733 | <signal>toggled(bool)</signal> |
734 | <receiver>dnsbox</receiver> | 734 | <receiver>dnsbox</receiver> |
735 | <slot>setDisabled(bool)</slot> | 735 | <slot>setDisabled(bool)</slot> |
736 | </connection> | 736 | </connection> |
737 | <connection> | 737 | <connection> |
738 | <sender>dial_manual</sender> | 738 | <sender>dial_manual</sender> |
739 | <signal>toggled(bool)</signal> | 739 | <signal>toggled(bool)</signal> |
740 | <receiver>idletime</receiver> | 740 | <receiver>idletime</receiver> |
741 | <slot>setDisabled(bool)</slot> | 741 | <slot>setDisabled(bool)</slot> |
742 | </connection> | 742 | </connection> |
743 | <connection> | 743 | <connection> |
744 | <sender>connectdelay</sender> | 744 | <sender>connectdelay</sender> |
745 | <signal>valueChanged(int)</signal> | 745 | <signal>valueChanged(int)</signal> |
746 | <receiver>connectdelay_text</receiver> | 746 | <receiver>connectdelay_text</receiver> |
747 | <slot>setNum(int)</slot> | 747 | <slot>setNum(int)</slot> |
748 | </connection> | 748 | </connection> |
749 | </connections> | 749 | </connections> |
750 | <tabstops> | 750 | <tabstops> |
751 | <tabstop>TabWidget2</tabstop> | 751 | <tabstop>TabWidget2</tabstop> |
752 | <tabstop>acname</tabstop> | 752 | <tabstop>acname</tabstop> |
753 | <tabstop>username</tabstop> | 753 | <tabstop>username</tabstop> |
754 | <tabstop>password</tabstop> | 754 | <tabstop>password</tabstop> |
755 | <tabstop>phone</tabstop> | 755 | <tabstop>phone</tabstop> |
756 | <tabstop>atdial</tabstop> | 756 | <tabstop>atdial</tabstop> |
757 | <tabstop>speed</tabstop> | 757 | <tabstop>speed</tabstop> |
758 | <tabstop>crtscts</tabstop> | 758 | <tabstop>crtscts</tabstop> |
759 | <tabstop>connectdelay</tabstop> | 759 | <tabstop>connectdelay</tabstop> |
760 | <tabstop>dial_manual</tabstop> | ||
761 | <tabstop>dial_idle</tabstop> | ||
762 | <tabstop>dial_demand</tabstop> | 760 | <tabstop>dial_demand</tabstop> |
763 | <tabstop>idletime</tabstop> | 761 | <tabstop>idletime</tabstop> |
764 | <tabstop>defaultroute</tabstop> | 762 | <tabstop>defaultroute</tabstop> |
765 | <tabstop>gateway</tabstop> | 763 | <tabstop>gateway</tabstop> |
766 | <tabstop>usepeerdns</tabstop> | 764 | <tabstop>usepeerdns</tabstop> |
767 | <tabstop>dns1</tabstop> | 765 | <tabstop>dns1</tabstop> |
768 | <tabstop>dns2</tabstop> | 766 | <tabstop>dns2</tabstop> |
767 | <tabstop>dial_manual</tabstop> | ||
768 | <tabstop>dial_idle</tabstop> | ||
769 | </tabstops> | 769 | </tabstops> |
770 | </UI> | 770 | </UI> |
diff --git a/noncore/settings/networksettings/systemadvanced.ui b/noncore/settings/networksettings/systemadvanced.ui deleted file mode 100644 index cd7ac61..0000000 --- a/noncore/settings/networksettings/systemadvanced.ui +++ b/dev/null | |||
@@ -1,396 +0,0 @@ | |||
1 | <!DOCTYPE UI><UI> | ||
2 | <class>SystemNetworking</class> | ||
3 | <widget> | ||
4 | <class>QWidget</class> | ||
5 | <property stdset="1"> | ||
6 | <name>name</name> | ||
7 | <cstring>SystemNetworking</cstring> | ||
8 | </property> | ||
9 | <property stdset="1"> | ||
10 | <name>geometry</name> | ||
11 | <rect> | ||
12 | <x>0</x> | ||
13 | <y>0</y> | ||
14 | <width>218</width> | ||
15 | <height>289</height> | ||
16 | </rect> | ||
17 | </property> | ||
18 | <property stdset="1"> | ||
19 | <name>caption</name> | ||
20 | <string>System Networking</string> | ||
21 | </property> | ||
22 | <vbox> | ||
23 | <property stdset="1"> | ||
24 | <name>margin</name> | ||
25 | <number>0</number> | ||
26 | </property> | ||
27 | <property stdset="1"> | ||
28 | <name>spacing</name> | ||
29 | <number>6</number> | ||
30 | </property> | ||
31 | <widget> | ||
32 | <class>QTabWidget</class> | ||
33 | <property stdset="1"> | ||
34 | <name>name</name> | ||
35 | <cstring>tabWidget</cstring> | ||
36 | </property> | ||
37 | <property> | ||
38 | <name>layoutMargin</name> | ||
39 | </property> | ||
40 | <widget> | ||
41 | <class>QWidget</class> | ||
42 | <property stdset="1"> | ||
43 | <name>name</name> | ||
44 | <cstring>tab</cstring> | ||
45 | </property> | ||
46 | <attribute> | ||
47 | <name>title</name> | ||
48 | <string>DNS</string> | ||
49 | </attribute> | ||
50 | <grid> | ||
51 | <property stdset="1"> | ||
52 | <name>margin</name> | ||
53 | <number>11</number> | ||
54 | </property> | ||
55 | <property stdset="1"> | ||
56 | <name>spacing</name> | ||
57 | <number>6</number> | ||
58 | </property> | ||
59 | <widget row="0" column="0" > | ||
60 | <class>QLabel</class> | ||
61 | <property stdset="1"> | ||
62 | <name>name</name> | ||
63 | <cstring>TextLabel6</cstring> | ||
64 | </property> | ||
65 | <property stdset="1"> | ||
66 | <name>text</name> | ||
67 | <string>Hostname</string> | ||
68 | </property> | ||
69 | </widget> | ||
70 | <widget row="1" column="0" > | ||
71 | <class>QLabel</class> | ||
72 | <property stdset="1"> | ||
73 | <name>name</name> | ||
74 | <cstring>TextLabel5</cstring> | ||
75 | </property> | ||
76 | <property stdset="1"> | ||
77 | <name>text</name> | ||
78 | <string>DNS</string> | ||
79 | </property> | ||
80 | <property stdset="1"> | ||
81 | <name>alignment</name> | ||
82 | <set>AlignTop|AlignLeft</set> | ||
83 | </property> | ||
84 | <property> | ||
85 | <name>vAlign</name> | ||
86 | </property> | ||
87 | </widget> | ||
88 | <widget row="1" column="1" > | ||
89 | <class>QListBox</class> | ||
90 | <property stdset="1"> | ||
91 | <name>name</name> | ||
92 | <cstring>ListBox5</cstring> | ||
93 | </property> | ||
94 | </widget> | ||
95 | <widget row="0" column="1" > | ||
96 | <class>QLineEdit</class> | ||
97 | <property stdset="1"> | ||
98 | <name>name</name> | ||
99 | <cstring>LineEdit7</cstring> | ||
100 | </property> | ||
101 | </widget> | ||
102 | <widget row="3" column="0" > | ||
103 | <class>QLabel</class> | ||
104 | <property stdset="1"> | ||
105 | <name>name</name> | ||
106 | <cstring>TextLabel7</cstring> | ||
107 | </property> | ||
108 | <property stdset="1"> | ||
109 | <name>text</name> | ||
110 | <string>Hosts</string> | ||
111 | </property> | ||
112 | </widget> | ||
113 | <widget row="3" column="1" > | ||
114 | <class>QLabel</class> | ||
115 | <property stdset="1"> | ||
116 | <name>name</name> | ||
117 | <cstring>TextLabel9</cstring> | ||
118 | </property> | ||
119 | <property stdset="1"> | ||
120 | <name>text</name> | ||
121 | <string>List here....</string> | ||
122 | </property> | ||
123 | </widget> | ||
124 | <widget row="2" column="0" > | ||
125 | <class>QPushButton</class> | ||
126 | <property stdset="1"> | ||
127 | <name>name</name> | ||
128 | <cstring>PushButton15</cstring> | ||
129 | </property> | ||
130 | <property stdset="1"> | ||
131 | <name>text</name> | ||
132 | <string>&Add</string> | ||
133 | </property> | ||
134 | </widget> | ||
135 | <widget row="2" column="1" > | ||
136 | <class>QPushButton</class> | ||
137 | <property stdset="1"> | ||
138 | <name>name</name> | ||
139 | <cstring>PushButton16</cstring> | ||
140 | </property> | ||
141 | <property stdset="1"> | ||
142 | <name>text</name> | ||
143 | <string>&Delete</string> | ||
144 | </property> | ||
145 | </widget> | ||
146 | <spacer row="4" column="1" > | ||
147 | <property> | ||
148 | <name>name</name> | ||
149 | <cstring>Spacer14</cstring> | ||
150 | </property> | ||
151 | <property stdset="1"> | ||
152 | <name>orientation</name> | ||
153 | <enum>Vertical</enum> | ||
154 | </property> | ||
155 | <property stdset="1"> | ||
156 | <name>sizeType</name> | ||
157 | <enum>Expanding</enum> | ||
158 | </property> | ||
159 | <property> | ||
160 | <name>sizeHint</name> | ||
161 | <size> | ||
162 | <width>20</width> | ||
163 | <height>20</height> | ||
164 | </size> | ||
165 | </property> | ||
166 | </spacer> | ||
167 | </grid> | ||
168 | </widget> | ||
169 | <widget> | ||
170 | <class>QWidget</class> | ||
171 | <property stdset="1"> | ||
172 | <name>name</name> | ||
173 | <cstring>tab</cstring> | ||
174 | </property> | ||
175 | <attribute> | ||
176 | <name>title</name> | ||
177 | <string>Routing</string> | ||
178 | </attribute> | ||
179 | <grid> | ||
180 | <property stdset="1"> | ||
181 | <name>margin</name> | ||
182 | <number>11</number> | ||
183 | </property> | ||
184 | <property stdset="1"> | ||
185 | <name>spacing</name> | ||
186 | <number>6</number> | ||
187 | </property> | ||
188 | <widget row="0" column="0" rowspan="1" colspan="2" > | ||
189 | <class>QListView</class> | ||
190 | <column> | ||
191 | <property> | ||
192 | <name>text</name> | ||
193 | <string>Destination</string> | ||
194 | </property> | ||
195 | <property> | ||
196 | <name>clickable</name> | ||
197 | <bool>true</bool> | ||
198 | </property> | ||
199 | <property> | ||
200 | <name>resizeable</name> | ||
201 | <bool>true</bool> | ||
202 | </property> | ||
203 | </column> | ||
204 | <column> | ||
205 | <property> | ||
206 | <name>text</name> | ||
207 | <string>Gateway</string> | ||
208 | </property> | ||
209 | <property> | ||
210 | <name>clickable</name> | ||
211 | <bool>true</bool> | ||
212 | </property> | ||
213 | <property> | ||
214 | <name>resizeable</name> | ||
215 | <bool>true</bool> | ||
216 | </property> | ||
217 | </column> | ||
218 | <column> | ||
219 | <property> | ||
220 | <name>text</name> | ||
221 | <string>Genmask</string> | ||
222 | </property> | ||
223 | <property> | ||
224 | <name>clickable</name> | ||
225 | <bool>true</bool> | ||
226 | </property> | ||
227 | <property> | ||
228 | <name>resizeable</name> | ||
229 | <bool>true</bool> | ||
230 | </property> | ||
231 | </column> | ||
232 | <column> | ||
233 | <property> | ||
234 | <name>text</name> | ||
235 | <string>Flags</string> | ||
236 | </property> | ||
237 | <property> | ||
238 | <name>clickable</name> | ||
239 | <bool>true</bool> | ||
240 | </property> | ||
241 | <property> | ||
242 | <name>resizeable</name> | ||
243 | <bool>true</bool> | ||
244 | </property> | ||
245 | </column> | ||
246 | <column> | ||
247 | <property> | ||
248 | <name>text</name> | ||
249 | <string>Metric</string> | ||
250 | </property> | ||
251 | <property> | ||
252 | <name>clickable</name> | ||
253 | <bool>true</bool> | ||
254 | </property> | ||
255 | <property> | ||
256 | <name>resizeable</name> | ||
257 | <bool>true</bool> | ||
258 | </property> | ||
259 | </column> | ||
260 | <column> | ||
261 | <property> | ||
262 | <name>text</name> | ||
263 | <string>Ref</string> | ||
264 | </property> | ||
265 | <property> | ||
266 | <name>clickable</name> | ||
267 | <bool>true</bool> | ||
268 | </property> | ||
269 | <property> | ||
270 | <name>resizeable</name> | ||
271 | <bool>true</bool> | ||
272 | </property> | ||
273 | </column> | ||
274 | <column> | ||
275 | <property> | ||
276 | <name>text</name> | ||
277 | <string>Use</string> | ||
278 | </property> | ||
279 | <property> | ||
280 | <name>clickable</name> | ||
281 | <bool>true</bool> | ||
282 | </property> | ||
283 | <property> | ||
284 | <name>resizeable</name> | ||
285 | <bool>true</bool> | ||
286 | </property> | ||
287 | </column> | ||
288 | <column> | ||
289 | <property> | ||
290 | <name>text</name> | ||
291 | <string>Iface</string> | ||
292 | </property> | ||
293 | <property> | ||
294 | <name>clickable</name> | ||
295 | <bool>true</bool> | ||
296 | </property> | ||
297 | <property> | ||
298 | <name>resizeable</name> | ||
299 | <bool>true</bool> | ||
300 | </property> | ||
301 | </column> | ||
302 | <item> | ||
303 | <property> | ||
304 | <name>text</name> | ||
305 | <string>192.168.1.0</string> | ||
306 | </property> | ||
307 | <property> | ||
308 | <name>text</name> | ||
309 | <string>*</string> | ||
310 | </property> | ||
311 | <property> | ||
312 | <name>text</name> | ||
313 | <string>255.255.255.0</string> | ||
314 | </property> | ||
315 | <property> | ||
316 | <name>text</name> | ||
317 | <string>U</string> | ||
318 | </property> | ||
319 | <property> | ||
320 | <name>text</name> | ||
321 | <string>0</string> | ||
322 | </property> | ||
323 | <property> | ||
324 | <name>text</name> | ||
325 | <string>0</string> | ||
326 | </property> | ||
327 | <property> | ||
328 | <name>text</name> | ||
329 | <string>0</string> | ||
330 | </property> | ||
331 | <property> | ||
332 | <name>text</name> | ||
333 | <string>eth0</string> | ||
334 | </property> | ||
335 | <property> | ||
336 | <name>pixmap</name> | ||
337 | <pixmap></pixmap> | ||
338 | </property> | ||
339 | <property> | ||
340 | <name>pixmap</name> | ||
341 | <pixmap></pixmap> | ||
342 | </property> | ||
343 | <property> | ||
344 | <name>pixmap</name> | ||
345 | <pixmap></pixmap> | ||
346 | </property> | ||
347 | <property> | ||
348 | <name>pixmap</name> | ||
349 | <pixmap></pixmap> | ||
350 | </property> | ||
351 | <property> | ||
352 | <name>pixmap</name> | ||
353 | <pixmap></pixmap> | ||
354 | </property> | ||
355 | <property> | ||
356 | <name>pixmap</name> | ||
357 | <pixmap></pixmap> | ||
358 | </property> | ||
359 | <property> | ||
360 | <name>pixmap</name> | ||
361 | <pixmap></pixmap> | ||
362 | </property> | ||
363 | <property> | ||
364 | <name>pixmap</name> | ||
365 | <pixmap></pixmap> | ||
366 | </property> | ||
367 | </item> | ||
368 | <property stdset="1"> | ||
369 | <name>name</name> | ||
370 | <cstring>ListView4</cstring> | ||
371 | </property> | ||
372 | </widget> | ||
373 | <widget row="1" column="0" > | ||
374 | <class>QPushButton</class> | ||
375 | <property stdset="1"> | ||
376 | <name>name</name> | ||
377 | <cstring>PushButton17</cstring> | ||
378 | </property> | ||
379 | <property stdset="1"> | ||
380 | <name>text</name> | ||
381 | <string>&Add</string> | ||
382 | </property> | ||
383 | </widget> | ||
384 | <widget row="1" column="1" > | ||
385 | <class>QPushButton</class> | ||
386 | <property stdset="1"> | ||
387 | <name>name</name> | ||
388 | <cstring>PushButton18</cstring> | ||
389 | </property> | ||
390 | <property stdset="1"> | ||
391 | <name>text</name> | ||
392 | <string>Remove</string> | ||
393 | </property> | ||
394 | </widget> | ||
395 | <spacer row="2" column="1" > | ||
396 | \ No newline at end of file | ||
diff --git a/noncore/settings/networksettings/wlan/wlan.ui b/noncore/settings/networksettings/wlan/wlan.ui index 1b29a3e..47d6db6 100644 --- a/noncore/settings/networksettings/wlan/wlan.ui +++ b/noncore/settings/networksettings/wlan/wlan.ui | |||
@@ -1,517 +1,520 @@ | |||
1 | <!DOCTYPE UI><UI> | 1 | <!DOCTYPE UI><UI> |
2 | <class>WLAN</class> | 2 | <class>WLAN</class> |
3 | <widget> | 3 | <widget> |
4 | <class>QDialog</class> | 4 | <class>QDialog</class> |
5 | <property stdset="1"> | 5 | <property stdset="1"> |
6 | <name>name</name> | 6 | <name>name</name> |
7 | <cstring>WLAN</cstring> | 7 | <cstring>WLAN</cstring> |
8 | </property> | 8 | </property> |
9 | <property stdset="1"> | 9 | <property stdset="1"> |
10 | <name>geometry</name> | 10 | <name>geometry</name> |
11 | <rect> | 11 | <rect> |
12 | <x>0</x> | 12 | <x>0</x> |
13 | <y>0</y> | 13 | <y>0</y> |
14 | <width>238</width> | 14 | <width>237</width> |
15 | <height>286</height> | 15 | <height>286</height> |
16 | </rect> | 16 | </rect> |
17 | </property> | 17 | </property> |
18 | <property stdset="1"> | 18 | <property stdset="1"> |
19 | <name>caption</name> | 19 | <name>caption</name> |
20 | <string>Wireless LAN Setting</string> | 20 | <string>Wireless LAN Setting</string> |
21 | </property> | 21 | </property> |
22 | <property stdset="1"> | 22 | <property stdset="1"> |
23 | <name>sizeGripEnabled</name> | 23 | <name>sizeGripEnabled</name> |
24 | <bool>true</bool> | 24 | <bool>true</bool> |
25 | </property> | 25 | </property> |
26 | <property> | 26 | <property> |
27 | <name>layoutMargin</name> | 27 | <name>layoutMargin</name> |
28 | </property> | 28 | </property> |
29 | <vbox> | 29 | <vbox> |
30 | <property stdset="1"> | 30 | <property stdset="1"> |
31 | <name>margin</name> | 31 | <name>margin</name> |
32 | <number>0</number> | 32 | <number>0</number> |
33 | </property> | 33 | </property> |
34 | <property stdset="1"> | 34 | <property stdset="1"> |
35 | <name>spacing</name> | 35 | <name>spacing</name> |
36 | <number>6</number> | 36 | <number>6</number> |
37 | </property> | 37 | </property> |
38 | <widget> | 38 | <widget> |
39 | <class>QTabWidget</class> | 39 | <class>QTabWidget</class> |
40 | <property stdset="1"> | 40 | <property stdset="1"> |
41 | <name>name</name> | 41 | <name>name</name> |
42 | <cstring>tabWidget</cstring> | 42 | <cstring>tabWidget</cstring> |
43 | </property> | 43 | </property> |
44 | <property stdset="1"> | 44 | <property stdset="1"> |
45 | <name>enabled</name> | 45 | <name>enabled</name> |
46 | <bool>true</bool> | 46 | <bool>true</bool> |
47 | </property> | 47 | </property> |
48 | <widget> | 48 | <widget> |
49 | <class>QWidget</class> | 49 | <class>QWidget</class> |
50 | <property stdset="1"> | 50 | <property stdset="1"> |
51 | <name>name</name> | 51 | <name>name</name> |
52 | <cstring>ConfigPage</cstring> | 52 | <cstring>ConfigPage</cstring> |
53 | </property> | 53 | </property> |
54 | <attribute> | 54 | <attribute> |
55 | <name>title</name> | 55 | <name>title</name> |
56 | <string>WLAN General</string> | 56 | <string>WLAN General</string> |
57 | </attribute> | 57 | </attribute> |
58 | <vbox> | 58 | <vbox> |
59 | <property stdset="1"> | 59 | <property stdset="1"> |
60 | <name>margin</name> | 60 | <name>margin</name> |
61 | <number>11</number> | 61 | <number>11</number> |
62 | </property> | 62 | </property> |
63 | <property stdset="1"> | 63 | <property stdset="1"> |
64 | <name>spacing</name> | 64 | <name>spacing</name> |
65 | <number>6</number> | 65 | <number>6</number> |
66 | </property> | 66 | </property> |
67 | <widget> | 67 | <widget> |
68 | <class>QButtonGroup</class> | 68 | <class>QButtonGroup</class> |
69 | <property stdset="1"> | 69 | <property stdset="1"> |
70 | <name>name</name> | 70 | <name>name</name> |
71 | <cstring>ButtonGroup45</cstring> | 71 | <cstring>ButtonGroup45</cstring> |
72 | </property> | 72 | </property> |
73 | <property stdset="1"> | 73 | <property stdset="1"> |
74 | <name>title</name> | 74 | <name>title</name> |
75 | <string>ESS ID</string> | 75 | <string>ESS ID</string> |
76 | </property> | 76 | </property> |
77 | <vbox> | 77 | <vbox> |
78 | <property stdset="1"> | 78 | <property stdset="1"> |
79 | <name>margin</name> | 79 | <name>margin</name> |
80 | <number>11</number> | 80 | <number>11</number> |
81 | </property> | 81 | </property> |
82 | <property stdset="1"> | 82 | <property stdset="1"> |
83 | <name>spacing</name> | 83 | <name>spacing</name> |
84 | <number>6</number> | 84 | <number>6</number> |
85 | </property> | 85 | </property> |
86 | <widget> | 86 | <widget> |
87 | <class>QRadioButton</class> | 87 | <class>QRadioButton</class> |
88 | <property stdset="1"> | 88 | <property stdset="1"> |
89 | <name>name</name> | 89 | <name>name</name> |
90 | <cstring>essNon</cstring> | 90 | <cstring>essNon</cstring> |
91 | </property> | 91 | </property> |
92 | <property stdset="1"> | 92 | <property stdset="1"> |
93 | <name>text</name> | 93 | <name>text</name> |
94 | <string>Non-Spec ESSID: "ANY"</string> | 94 | <string>Non-Spec ESSID: "ANY"</string> |
95 | </property> | 95 | </property> |
96 | <property stdset="1"> | 96 | <property stdset="1"> |
97 | <name>checked</name> | 97 | <name>checked</name> |
98 | <bool>true</bool> | 98 | <bool>true</bool> |
99 | </property> | 99 | </property> |
100 | </widget> | 100 | </widget> |
101 | <widget> | 101 | <widget> |
102 | <class>QRadioButton</class> | 102 | <class>QRadioButton</class> |
103 | <property stdset="1"> | 103 | <property stdset="1"> |
104 | <name>name</name> | 104 | <name>name</name> |
105 | <cstring>essSpecific</cstring> | 105 | <cstring>essSpecific</cstring> |
106 | </property> | 106 | </property> |
107 | <property stdset="1"> | 107 | <property stdset="1"> |
108 | <name>text</name> | 108 | <name>text</name> |
109 | <string>Specific ESSID</string> | 109 | <string>Specific ESSID</string> |
110 | </property> | 110 | </property> |
111 | </widget> | 111 | </widget> |
112 | <widget> | 112 | <widget> |
113 | <class>QLineEdit</class> | 113 | <class>QLineEdit</class> |
114 | <property stdset="1"> | 114 | <property stdset="1"> |
115 | <name>name</name> | 115 | <name>name</name> |
116 | <cstring>essSpecificLineEdit</cstring> | 116 | <cstring>essSpecificLineEdit</cstring> |
117 | </property> | 117 | </property> |
118 | <property stdset="1"> | 118 | <property stdset="1"> |
119 | <name>enabled</name> | 119 | <name>enabled</name> |
120 | <bool>false</bool> | 120 | <bool>false</bool> |
121 | </property> | 121 | </property> |
122 | </widget> | 122 | </widget> |
123 | </vbox> | 123 | </vbox> |
124 | </widget> | 124 | </widget> |
125 | <widget> | 125 | <widget> |
126 | <class>QButtonGroup</class> | 126 | <class>QButtonGroup</class> |
127 | <property stdset="1"> | 127 | <property stdset="1"> |
128 | <name>name</name> | 128 | <name>name</name> |
129 | <cstring>ButtonGroup46</cstring> | 129 | <cstring>ButtonGroup46</cstring> |
130 | </property> | 130 | </property> |
131 | <property stdset="1"> | 131 | <property stdset="1"> |
132 | <name>title</name> | 132 | <name>title</name> |
133 | <string>Network Type</string> | 133 | <string>Network Type</string> |
134 | </property> | 134 | </property> |
135 | <grid> | 135 | <grid> |
136 | <property stdset="1"> | 136 | <property stdset="1"> |
137 | <name>margin</name> | 137 | <name>margin</name> |
138 | <number>11</number> | 138 | <number>11</number> |
139 | </property> | 139 | </property> |
140 | <property stdset="1"> | 140 | <property stdset="1"> |
141 | <name>spacing</name> | 141 | <name>spacing</name> |
142 | <number>6</number> | 142 | <number>6</number> |
143 | </property> | 143 | </property> |
144 | <widget row="0" column="0" rowspan="1" colspan="3" > | 144 | <widget row="0" column="0" rowspan="1" colspan="3" > |
145 | <class>QRadioButton</class> | 145 | <class>QRadioButton</class> |
146 | <property stdset="1"> | 146 | <property stdset="1"> |
147 | <name>name</name> | 147 | <name>name</name> |
148 | <cstring>networkInfrastructure</cstring> | 148 | <cstring>networkInfrastructure</cstring> |
149 | </property> | 149 | </property> |
150 | <property stdset="1"> | 150 | <property stdset="1"> |
151 | <name>text</name> | 151 | <name>text</name> |
152 | <string>Infrastructure</string> | 152 | <string>Infrastructure</string> |
153 | </property> | 153 | </property> |
154 | <property stdset="1"> | 154 | <property stdset="1"> |
155 | <name>checked</name> | 155 | <name>checked</name> |
156 | <bool>true</bool> | 156 | <bool>true</bool> |
157 | </property> | 157 | </property> |
158 | </widget> | 158 | </widget> |
159 | <widget row="2" column="0" > | 159 | <widget row="2" column="0" > |
160 | <class>QLabel</class> | 160 | <class>QLabel</class> |
161 | <property stdset="1"> | 161 | <property stdset="1"> |
162 | <name>name</name> | 162 | <name>name</name> |
163 | <cstring>TextLabel2</cstring> | 163 | <cstring>TextLabel2</cstring> |
164 | </property> | 164 | </property> |
165 | <property stdset="1"> | 165 | <property stdset="1"> |
166 | <name>enabled</name> | 166 | <name>enabled</name> |
167 | <bool>false</bool> | 167 | <bool>false</bool> |
168 | </property> | 168 | </property> |
169 | <property stdset="1"> | 169 | <property stdset="1"> |
170 | <name>text</name> | 170 | <name>text</name> |
171 | <string>Channel</string> | 171 | <string>Channel</string> |
172 | </property> | 172 | </property> |
173 | </widget> | 173 | </widget> |
174 | <widget row="1" column="0" rowspan="1" colspan="2" > | 174 | <widget row="1" column="0" rowspan="1" colspan="2" > |
175 | <class>QRadioButton</class> | 175 | <class>QRadioButton</class> |
176 | <property stdset="1"> | 176 | <property stdset="1"> |
177 | <name>name</name> | 177 | <name>name</name> |
178 | <cstring>network802</cstring> | 178 | <cstring>network802</cstring> |
179 | </property> | 179 | </property> |
180 | <property stdset="1"> | 180 | <property stdset="1"> |
181 | <name>text</name> | 181 | <name>text</name> |
182 | <string>Ad-Hoc</string> | 182 | <string>Ad-Hoc</string> |
183 | </property> | 183 | </property> |
184 | </widget> | 184 | </widget> |
185 | <widget row="2" column="1" > | 185 | <widget row="2" column="1" > |
186 | <class>QSpinBox</class> | 186 | <class>QSpinBox</class> |
187 | <property stdset="1"> | 187 | <property stdset="1"> |
188 | <name>name</name> | 188 | <name>name</name> |
189 | <cstring>networkChannel</cstring> | 189 | <cstring>networkChannel</cstring> |
190 | </property> | 190 | </property> |
191 | <property stdset="1"> | 191 | <property stdset="1"> |
192 | <name>enabled</name> | 192 | <name>enabled</name> |
193 | <bool>false</bool> | 193 | <bool>false</bool> |
194 | </property> | 194 | </property> |
195 | <property stdset="1"> | 195 | <property stdset="1"> |
196 | <name>maxValue</name> | 196 | <name>maxValue</name> |
197 | <number>11</number> | 197 | <number>11</number> |
198 | </property> | 198 | </property> |
199 | <property stdset="1"> | 199 | <property stdset="1"> |
200 | <name>minValue</name> | 200 | <name>minValue</name> |
201 | <number>1</number> | 201 | <number>1</number> |
202 | </property> | 202 | </property> |
203 | <property stdset="1"> | 203 | <property stdset="1"> |
204 | <name>value</name> | 204 | <name>value</name> |
205 | <number>6</number> | 205 | <number>6</number> |
206 | </property> | 206 | </property> |
207 | </widget> | 207 | </widget> |
208 | <spacer row="2" column="2" > | 208 | <spacer row="2" column="2" > |
209 | <property> | 209 | <property> |
210 | <name>name</name> | 210 | <name>name</name> |
211 | <cstring>Spacer32</cstring> | 211 | <cstring>Spacer32</cstring> |
212 | </property> | 212 | </property> |
213 | <property stdset="1"> | 213 | <property stdset="1"> |
214 | <name>orientation</name> | 214 | <name>orientation</name> |
215 | <enum>Horizontal</enum> | 215 | <enum>Horizontal</enum> |
216 | </property> | 216 | </property> |
217 | <property stdset="1"> | 217 | <property stdset="1"> |
218 | <name>sizeType</name> | 218 | <name>sizeType</name> |
219 | <enum>Expanding</enum> | 219 | <enum>Expanding</enum> |
220 | </property> | 220 | </property> |
221 | <property> | 221 | <property> |
222 | <name>sizeHint</name> | 222 | <name>sizeHint</name> |
223 | <size> | 223 | <size> |
224 | <width>20</width> | 224 | <width>20</width> |
225 | <height>20</height> | 225 | <height>20</height> |
226 | </size> | 226 | </size> |
227 | </property> | 227 | </property> |
228 | </spacer> | 228 | </spacer> |
229 | </grid> | 229 | </grid> |
230 | </widget> | 230 | </widget> |
231 | <spacer> | 231 | <spacer> |
232 | <property> | 232 | <property> |
233 | <name>name</name> | 233 | <name>name</name> |
234 | <cstring>Spacer31</cstring> | 234 | <cstring>Spacer31</cstring> |
235 | </property> | 235 | </property> |
236 | <property stdset="1"> | 236 | <property stdset="1"> |
237 | <name>orientation</name> | 237 | <name>orientation</name> |
238 | <enum>Vertical</enum> | 238 | <enum>Vertical</enum> |
239 | </property> | 239 | </property> |
240 | <property stdset="1"> | 240 | <property stdset="1"> |
241 | <name>sizeType</name> | 241 | <name>sizeType</name> |
242 | <enum>Expanding</enum> | 242 | <enum>Expanding</enum> |
243 | </property> | 243 | </property> |
244 | <property> | 244 | <property> |
245 | <name>sizeHint</name> | 245 | <name>sizeHint</name> |
246 | <size> | 246 | <size> |
247 | <width>20</width> | 247 | <width>20</width> |
248 | <height>20</height> | 248 | <height>20</height> |
249 | </size> | 249 | </size> |
250 | </property> | 250 | </property> |
251 | </spacer> | 251 | </spacer> |
252 | </vbox> | 252 | </vbox> |
253 | </widget> | 253 | </widget> |
254 | <widget> | 254 | <widget> |
255 | <class>QWidget</class> | 255 | <class>QWidget</class> |
256 | <property stdset="1"> | 256 | <property stdset="1"> |
257 | <name>name</name> | 257 | <name>name</name> |
258 | <cstring>WepPage</cstring> | 258 | <cstring>WepPage</cstring> |
259 | </property> | 259 | </property> |
260 | <attribute> | 260 | <attribute> |
261 | <name>title</name> | 261 | <name>title</name> |
262 | <string>Wep</string> | 262 | <string>Wep</string> |
263 | </attribute> | 263 | </attribute> |
264 | <vbox> | 264 | <vbox> |
265 | <property stdset="1"> | 265 | <property stdset="1"> |
266 | <name>margin</name> | 266 | <name>margin</name> |
267 | <number>11</number> | 267 | <number>11</number> |
268 | </property> | 268 | </property> |
269 | <property stdset="1"> | 269 | <property stdset="1"> |
270 | <name>spacing</name> | 270 | <name>spacing</name> |
271 | <number>6</number> | 271 | <number>6</number> |
272 | </property> | 272 | </property> |
273 | <widget> | 273 | <widget> |
274 | <class>QCheckBox</class> | 274 | <class>QCheckBox</class> |
275 | <property stdset="1"> | 275 | <property stdset="1"> |
276 | <name>name</name> | 276 | <name>name</name> |
277 | <cstring>wepEnabled</cstring> | 277 | <cstring>wepEnabled</cstring> |
278 | </property> | 278 | </property> |
279 | <property stdset="1"> | 279 | <property stdset="1"> |
280 | <name>text</name> | 280 | <name>text</name> |
281 | <string>Enable Wep</string> | 281 | <string>Enable Wep</string> |
282 | </property> | 282 | </property> |
283 | </widget> | 283 | </widget> |
284 | <widget> | 284 | <widget> |
285 | <class>QButtonGroup</class> | 285 | <class>QButtonGroup</class> |
286 | <property stdset="1"> | 286 | <property stdset="1"> |
287 | <name>name</name> | 287 | <name>name</name> |
288 | <cstring>ButtonGroup43</cstring> | 288 | <cstring>ButtonGroup43</cstring> |
289 | </property> | 289 | </property> |
290 | <property stdset="1"> | 290 | <property stdset="1"> |
291 | <name>enabled</name> | 291 | <name>enabled</name> |
292 | <bool>false</bool> | 292 | <bool>false</bool> |
293 | </property> | 293 | </property> |
294 | <property stdset="1"> | 294 | <property stdset="1"> |
295 | <name>title</name> | 295 | <name>title</name> |
296 | <string>Authentication Type</string> | 296 | <string>Authentication Type</string> |
297 | </property> | 297 | </property> |
298 | <hbox> | 298 | <hbox> |
299 | <property stdset="1"> | 299 | <property stdset="1"> |
300 | <name>margin</name> | 300 | <name>margin</name> |
301 | <number>11</number> | 301 | <number>11</number> |
302 | </property> | 302 | </property> |
303 | <property stdset="1"> | 303 | <property stdset="1"> |
304 | <name>spacing</name> | 304 | <name>spacing</name> |
305 | <number>6</number> | 305 | <number>6</number> |
306 | </property> | 306 | </property> |
307 | <widget> | 307 | <widget> |
308 | <class>QRadioButton</class> | 308 | <class>QRadioButton</class> |
309 | <property stdset="1"> | 309 | <property stdset="1"> |
310 | <name>name</name> | 310 | <name>name</name> |
311 | <cstring>authOpen</cstring> | 311 | <cstring>authOpen</cstring> |
312 | </property> | 312 | </property> |
313 | <property stdset="1"> | 313 | <property stdset="1"> |
314 | <name>text</name> | 314 | <name>text</name> |
315 | <string>Open System</string> | 315 | <string>Open System</string> |
316 | </property> | 316 | </property> |
317 | <property stdset="1"> | 317 | <property stdset="1"> |
318 | <name>checked</name> | 318 | <name>checked</name> |
319 | <bool>true</bool> | 319 | <bool>true</bool> |
320 | </property> | 320 | </property> |
321 | </widget> | 321 | </widget> |
322 | <widget> | 322 | <widget> |
323 | <class>QRadioButton</class> | 323 | <class>QRadioButton</class> |
324 | <property stdset="1"> | 324 | <property stdset="1"> |
325 | <name>name</name> | 325 | <name>name</name> |
326 | <cstring>authShared</cstring> | 326 | <cstring>authShared</cstring> |
327 | </property> | 327 | </property> |
328 | <property stdset="1"> | 328 | <property stdset="1"> |
329 | <name>text</name> | 329 | <name>text</name> |
330 | <string>Shared Key</string> | 330 | <string>Shared Key</string> |
331 | </property> | 331 | </property> |
332 | </widget> | 332 | </widget> |
333 | </hbox> | 333 | </hbox> |
334 | </widget> | 334 | </widget> |
335 | <widget> | 335 | <widget> |
336 | <class>QButtonGroup</class> | 336 | <class>QButtonGroup</class> |
337 | <property stdset="1"> | 337 | <property stdset="1"> |
338 | <name>name</name> | 338 | <name>name</name> |
339 | <cstring>ButtonGroup44</cstring> | 339 | <cstring>ButtonGroup44</cstring> |
340 | </property> | 340 | </property> |
341 | <property stdset="1"> | 341 | <property stdset="1"> |
342 | <name>enabled</name> | 342 | <name>enabled</name> |
343 | <bool>false</bool> | 343 | <bool>false</bool> |
344 | </property> | 344 | </property> |
345 | <property stdset="1"> | 345 | <property stdset="1"> |
346 | <name>title</name> | 346 | <name>title</name> |
347 | <string>Key Setting</string> | 347 | <string>Key Setting</string> |
348 | </property> | 348 | </property> |
349 | <grid> | 349 | <grid> |
350 | <property stdset="1"> | 350 | <property stdset="1"> |
351 | <name>margin</name> | 351 | <name>margin</name> |
352 | <number>11</number> | 352 | <number>11</number> |
353 | </property> | 353 | </property> |
354 | <property stdset="1"> | 354 | <property stdset="1"> |
355 | <name>spacing</name> | 355 | <name>spacing</name> |
356 | <number>6</number> | 356 | <number>6</number> |
357 | </property> | 357 | </property> |
358 | <widget row="0" column="1" > | 358 | <widget row="0" column="1" > |
359 | <class>QLineEdit</class> | 359 | <class>QLineEdit</class> |
360 | <property stdset="1"> | 360 | <property stdset="1"> |
361 | <name>name</name> | 361 | <name>name</name> |
362 | <cstring>keyLineEdit0</cstring> | 362 | <cstring>keyLineEdit0</cstring> |
363 | </property> | 363 | </property> |
364 | </widget> | 364 | </widget> |
365 | <widget row="1" column="1" > | 365 | <widget row="1" column="1" > |
366 | <class>QLineEdit</class> | 366 | <class>QLineEdit</class> |
367 | <property stdset="1"> | 367 | <property stdset="1"> |
368 | <name>name</name> | 368 | <name>name</name> |
369 | <cstring>keyLineEdit1</cstring> | 369 | <cstring>keyLineEdit1</cstring> |
370 | </property> | 370 | </property> |
371 | </widget> | 371 | </widget> |
372 | <widget row="2" column="1" > | 372 | <widget row="2" column="1" > |
373 | <class>QLineEdit</class> | 373 | <class>QLineEdit</class> |
374 | <property stdset="1"> | 374 | <property stdset="1"> |
375 | <name>name</name> | 375 | <name>name</name> |
376 | <cstring>keyLineEdit2</cstring> | 376 | <cstring>keyLineEdit2</cstring> |
377 | </property> | 377 | </property> |
378 | </widget> | 378 | </widget> |
379 | <widget row="3" column="1" > | 379 | <widget row="3" column="1" > |
380 | <class>QLineEdit</class> | 380 | <class>QLineEdit</class> |
381 | <property stdset="1"> | 381 | <property stdset="1"> |
382 | <name>name</name> | 382 | <name>name</name> |
383 | <cstring>keyLineEdit3</cstring> | 383 | <cstring>keyLineEdit3</cstring> |
384 | </property> | 384 | </property> |
385 | </widget> | 385 | </widget> |
386 | <widget row="0" column="0" > | 386 | <widget row="0" column="0" > |
387 | <class>QRadioButton</class> | 387 | <class>QRadioButton</class> |
388 | <property stdset="1"> | 388 | <property stdset="1"> |
389 | <name>name</name> | 389 | <name>name</name> |
390 | <cstring>keyRadio0</cstring> | 390 | <cstring>keyRadio0</cstring> |
391 | </property> | 391 | </property> |
392 | <property stdset="1"> | 392 | <property stdset="1"> |
393 | <name>text</name> | 393 | <name>text</name> |
394 | <string>Key 1</string> | 394 | <string>Key 1</string> |
395 | </property> | 395 | </property> |
396 | <property stdset="1"> | 396 | <property stdset="1"> |
397 | <name>checked</name> | 397 | <name>checked</name> |
398 | <bool>true</bool> | 398 | <bool>true</bool> |
399 | </property> | 399 | </property> |
400 | </widget> | 400 | </widget> |
401 | <widget row="1" column="0" > | 401 | <widget row="1" column="0" > |
402 | <class>QRadioButton</class> | 402 | <class>QRadioButton</class> |
403 | <property stdset="1"> | 403 | <property stdset="1"> |
404 | <name>name</name> | 404 | <name>name</name> |
405 | <cstring>keyRadio1</cstring> | 405 | <cstring>keyRadio1</cstring> |
406 | </property> | 406 | </property> |
407 | <property stdset="1"> | 407 | <property stdset="1"> |
408 | <name>text</name> | 408 | <name>text</name> |
409 | <string>Key 2</string> | 409 | <string>Key 2</string> |
410 | </property> | 410 | </property> |
411 | </widget> | 411 | </widget> |
412 | <widget row="2" column="0" > | 412 | <widget row="2" column="0" > |
413 | <class>QRadioButton</class> | 413 | <class>QRadioButton</class> |
414 | <property stdset="1"> | 414 | <property stdset="1"> |
415 | <name>name</name> | 415 | <name>name</name> |
416 | <cstring>keyRadio2</cstring> | 416 | <cstring>keyRadio2</cstring> |
417 | </property> | 417 | </property> |
418 | <property stdset="1"> | 418 | <property stdset="1"> |
419 | <name>text</name> | 419 | <name>text</name> |
420 | <string>Key 3</string> | 420 | <string>Key 3</string> |
421 | </property> | 421 | </property> |
422 | </widget> | 422 | </widget> |
423 | <widget row="3" column="0" > | 423 | <widget row="3" column="0" > |
424 | <class>QRadioButton</class> | 424 | <class>QRadioButton</class> |
425 | <property stdset="1"> | 425 | <property stdset="1"> |
426 | <name>name</name> | 426 | <name>name</name> |
427 | <cstring>keyRadio3</cstring> | 427 | <cstring>keyRadio3</cstring> |
428 | </property> | 428 | </property> |
429 | <property stdset="1"> | 429 | <property stdset="1"> |
430 | <name>text</name> | 430 | <name>text</name> |
431 | <string>Key 4</string> | 431 | <string>Key 4</string> |
432 | </property> | 432 | </property> |
433 | </widget> | 433 | </widget> |
434 | </grid> | 434 | </grid> |
435 | </widget> | 435 | </widget> |
436 | <spacer> | 436 | <spacer> |
437 | <property> | 437 | <property> |
438 | <name>name</name> | 438 | <name>name</name> |
439 | <cstring>Spacer30</cstring> | 439 | <cstring>Spacer30</cstring> |
440 | </property> | 440 | </property> |
441 | <property stdset="1"> | 441 | <property stdset="1"> |
442 | <name>orientation</name> | 442 | <name>orientation</name> |
443 | <enum>Vertical</enum> | 443 | <enum>Vertical</enum> |
444 | </property> | 444 | </property> |
445 | <property stdset="1"> | 445 | <property stdset="1"> |
446 | <name>sizeType</name> | 446 | <name>sizeType</name> |
447 | <enum>Expanding</enum> | 447 | <enum>Expanding</enum> |
448 | </property> | 448 | </property> |
449 | <property> | 449 | <property> |
450 | <name>sizeHint</name> | 450 | <name>sizeHint</name> |
451 | <size> | 451 | <size> |
452 | <width>20</width> | 452 | <width>20</width> |
453 | <height>20</height> | 453 | <height>20</height> |
454 | </size> | 454 | </size> |
455 | </property> | 455 | </property> |
456 | </spacer> | 456 | </spacer> |
457 | </vbox> | 457 | </vbox> |
458 | </widget> | 458 | </widget> |
459 | </widget> | 459 | </widget> |
460 | </vbox> | 460 | </vbox> |
461 | </widget> | 461 | </widget> |
462 | <connections> | 462 | <connections> |
463 | <connection> | 463 | <connection> |
464 | <sender>essSpecific</sender> | 464 | <sender>essSpecific</sender> |
465 | <signal>toggled(bool)</signal> | 465 | <signal>toggled(bool)</signal> |
466 | <receiver>essSpecificLineEdit</receiver> | 466 | <receiver>essSpecificLineEdit</receiver> |
467 | <slot>setEnabled(bool)</slot> | 467 | <slot>setEnabled(bool)</slot> |
468 | </connection> | 468 | </connection> |
469 | <connection> | 469 | <connection> |
470 | <sender>network802</sender> | 470 | <sender>network802</sender> |
471 | <signal>clicked()</signal> | 471 | <signal>clicked()</signal> |
472 | <receiver>essSpecific</receiver> | 472 | <receiver>essSpecific</receiver> |
473 | <slot>animateClick()</slot> | 473 | <slot>animateClick()</slot> |
474 | </connection> | 474 | </connection> |
475 | <connection> | 475 | <connection> |
476 | <sender>network802</sender> | 476 | <sender>network802</sender> |
477 | <signal>toggled(bool)</signal> | 477 | <signal>toggled(bool)</signal> |
478 | <receiver>TextLabel2</receiver> | 478 | <receiver>TextLabel2</receiver> |
479 | <slot>setEnabled(bool)</slot> | 479 | <slot>setEnabled(bool)</slot> |
480 | </connection> | 480 | </connection> |
481 | <connection> | 481 | <connection> |
482 | <sender>network802</sender> | 482 | <sender>network802</sender> |
483 | <signal>toggled(bool)</signal> | 483 | <signal>toggled(bool)</signal> |
484 | <receiver>networkChannel</receiver> | 484 | <receiver>networkChannel</receiver> |
485 | <slot>setEnabled(bool)</slot> | 485 | <slot>setEnabled(bool)</slot> |
486 | </connection> | 486 | </connection> |
487 | <connection> | 487 | <connection> |
488 | <sender>wepEnabled</sender> | 488 | <sender>wepEnabled</sender> |
489 | <signal>toggled(bool)</signal> | 489 | <signal>toggled(bool)</signal> |
490 | <receiver>ButtonGroup43</receiver> | 490 | <receiver>ButtonGroup43</receiver> |
491 | <slot>setEnabled(bool)</slot> | 491 | <slot>setEnabled(bool)</slot> |
492 | </connection> | 492 | </connection> |
493 | <connection> | 493 | <connection> |
494 | <sender>wepEnabled</sender> | 494 | <sender>wepEnabled</sender> |
495 | <signal>toggled(bool)</signal> | 495 | <signal>toggled(bool)</signal> |
496 | <receiver>ButtonGroup44</receiver> | 496 | <receiver>ButtonGroup44</receiver> |
497 | <slot>setEnabled(bool)</slot> | 497 | <slot>setEnabled(bool)</slot> |
498 | </connection> | 498 | </connection> |
499 | </connections> | 499 | </connections> |
500 | <tabstops> | 500 | <tabstops> |
501 | <tabstop>tabWidget</tabstop> | 501 | <tabstop>tabWidget</tabstop> |
502 | <tabstop>essNon</tabstop> | 502 | <tabstop>essNon</tabstop> |
503 | <tabstop>essSpecific</tabstop> | ||
503 | <tabstop>essSpecificLineEdit</tabstop> | 504 | <tabstop>essSpecificLineEdit</tabstop> |
504 | <tabstop>networkInfrastructure</tabstop> | 505 | <tabstop>networkInfrastructure</tabstop> |
506 | <tabstop>network802</tabstop> | ||
505 | <tabstop>networkChannel</tabstop> | 507 | <tabstop>networkChannel</tabstop> |
508 | <tabstop>wepEnabled</tabstop> | ||
506 | <tabstop>authOpen</tabstop> | 509 | <tabstop>authOpen</tabstop> |
507 | <tabstop>authShared</tabstop> | 510 | <tabstop>authShared</tabstop> |
508 | <tabstop>keyRadio0</tabstop> | 511 | <tabstop>keyRadio0</tabstop> |
509 | <tabstop>keyLineEdit0</tabstop> | 512 | <tabstop>keyLineEdit0</tabstop> |
510 | <tabstop>keyRadio1</tabstop> | 513 | <tabstop>keyRadio1</tabstop> |
511 | <tabstop>keyLineEdit1</tabstop> | 514 | <tabstop>keyLineEdit1</tabstop> |
512 | <tabstop>keyRadio2</tabstop> | 515 | <tabstop>keyRadio2</tabstop> |
513 | <tabstop>keyLineEdit2</tabstop> | 516 | <tabstop>keyLineEdit2</tabstop> |
514 | <tabstop>keyRadio3</tabstop> | 517 | <tabstop>keyRadio3</tabstop> |
515 | <tabstop>keyLineEdit3</tabstop> | 518 | <tabstop>keyLineEdit3</tabstop> |
516 | </tabstops> | 519 | </tabstops> |
517 | </UI> | 520 | </UI> |