author | benmeyer <benmeyer> | 2002-10-17 15:03:35 (UTC) |
---|---|---|
committer | benmeyer <benmeyer> | 2002-10-17 15:03:35 (UTC) |
commit | 1fa7ebd9512ac0497c3ede198621899a10e961af (patch) (unidiff) | |
tree | 45be4e45b5408f46c3f2e59b1241aebf9a9bf869 | |
parent | 6c8ae3c8af454c87f5f467fe17cbdffe4c8f5494 (diff) | |
download | opie-1fa7ebd9512ac0497c3ede198621899a10e961af.zip opie-1fa7ebd9512ac0497c3ede198621899a10e961af.tar.gz opie-1fa7ebd9512ac0497c3ede198621899a10e961af.tar.bz2 |
added interface listing
-rw-r--r-- | noncore/net/networksetup/TODO | 1 | ||||
-rw-r--r-- | noncore/net/networksetup/interfaces.cpp | 26 | ||||
-rw-r--r-- | noncore/net/networksetup/interfaces.h | 3 | ||||
-rw-r--r-- | noncore/net/networksetup/mainwindowimp.cpp | 22 | ||||
-rw-r--r-- | noncore/net/networksetup/networksetup.pro | 6 | ||||
-rw-r--r-- | noncore/settings/networksettings/TODO | 1 | ||||
-rw-r--r-- | noncore/settings/networksettings/interfaces.cpp | 26 | ||||
-rw-r--r-- | noncore/settings/networksettings/interfaces.h | 3 | ||||
-rw-r--r-- | noncore/settings/networksettings/mainwindowimp.cpp | 22 | ||||
-rw-r--r-- | noncore/settings/networksettings/networksetup.pro | 6 |
10 files changed, 106 insertions, 10 deletions
diff --git a/noncore/net/networksetup/TODO b/noncore/net/networksetup/TODO index 70d6717..7386646 100644 --- a/noncore/net/networksetup/TODO +++ b/noncore/net/networksetup/TODO | |||
@@ -1,7 +1,8 @@ | |||
1 | [ ] Wlanmodule needs to check if an interface supports wireless | 1 | [ ] Wlanmodule needs to check if an interface supports wireless |
2 | extensions. | 2 | extensions. |
3 | [x] When you set options in wlanmodule, hit OK, it exits all of | 3 | [x] When you set options in wlanmodule, hit OK, it exits all of |
4 | networksetup, doesnt bring you back to the main screen. | 4 | networksetup, doesnt bring you back to the main screen. |
5 | [x] Wlanmodule isnt writing out wireless.opts | 5 | [x] Wlanmodule isnt writing out wireless.opts |
6 | [ ] Need a means of bringing an interface up and down (calling | 6 | [ ] Need a means of bringing an interface up and down (calling |
7 | out ifup/ifdown) from the gui. | 7 | out ifup/ifdown) from the gui. |
8 | -Ben- Click information, then click up or down... :-D | ||
diff --git a/noncore/net/networksetup/interfaces.cpp b/noncore/net/networksetup/interfaces.cpp index b8a3e7f..1287d90 100644 --- a/noncore/net/networksetup/interfaces.cpp +++ b/noncore/net/networksetup/interfaces.cpp | |||
@@ -1,110 +1,134 @@ | |||
1 | #include "interfaces.h" | 1 | #include "interfaces.h" |
2 | 2 | ||
3 | #include <qfile.h> | 3 | #include <qfile.h> |
4 | #include <qtextstream.h> | 4 | #include <qtextstream.h> |
5 | #include <qregexp.h> | 5 | #include <qregexp.h> |
6 | 6 | ||
7 | #define AUTO "auto" | 7 | #define AUTO "auto" |
8 | #define IFACE "iface" | 8 | #define IFACE "iface" |
9 | #define MAPPING "mapping" | 9 | #define MAPPING "mapping" |
10 | 10 | ||
11 | /** | 11 | /** |
12 | * Constructor. Reads in the interfaces file and then split the file up by | 12 | * Constructor. Reads in the interfaces file and then split the file up by |
13 | * the \n for interfaces variable. | 13 | * the \n for interfaces variable. |
14 | * @param useInterfacesFile if an interface file other then the default is | 14 | * @param useInterfacesFile if an interface file other then the default is |
15 | * desired to be used it should be passed in. | 15 | * desired to be used it should be passed in. |
16 | */ | 16 | */ |
17 | Interfaces::Interfaces(QString useInterfacesFile){ | 17 | Interfaces::Interfaces(QString useInterfacesFile){ |
18 | acceptedFamily.append(INTERFACES_FAMILY_INET); | 18 | acceptedFamily.append(INTERFACES_FAMILY_INET); |
19 | acceptedFamily.append(INTERFACES_FAMILY_IPX); | 19 | acceptedFamily.append(INTERFACES_FAMILY_IPX); |
20 | acceptedFamily.append(INTERFACES_FAMILY_INET6); | 20 | acceptedFamily.append(INTERFACES_FAMILY_INET6); |
21 | 21 | ||
22 | interfacesFile = useInterfacesFile; | 22 | interfacesFile = useInterfacesFile; |
23 | QFile file(interfacesFile); | 23 | QFile file(interfacesFile); |
24 | if (!file.open(IO_ReadOnly)){ | 24 | if (!file.open(IO_ReadOnly)){ |
25 | qDebug(QString("Interfaces: Can't open file: %1 for reading.").arg(interfacesFile).latin1()); | 25 | qDebug(QString("Interfaces: Can't open file: %1 for reading.").arg(interfacesFile).latin1()); |
26 | currentIface = interfaces.end(); | 26 | currentIface = interfaces.end(); |
27 | currentMapping = interfaces.end(); | 27 | currentMapping = interfaces.end(); |
28 | return; | 28 | return; |
29 | } | 29 | } |
30 | QTextStream stream( &file ); | 30 | QTextStream stream( &file ); |
31 | QString line; | 31 | QString line; |
32 | while ( !stream.eof() ) { | 32 | while ( !stream.eof() ) { |
33 | line += stream.readLine(); | 33 | line += stream.readLine(); |
34 | line += "\n"; | 34 | line += "\n"; |
35 | } | 35 | } |
36 | file.close(); | 36 | file.close(); |
37 | interfaces = QStringList::split("\n", line, true); | 37 | interfaces = QStringList::split("\n", line, true); |
38 | 38 | ||
39 | currentIface = interfaces.end(); | 39 | currentIface = interfaces.end(); |
40 | currentMapping = interfaces.end(); | 40 | currentMapping = interfaces.end(); |
41 | } | 41 | } |
42 | 42 | ||
43 | |||
44 | /** | ||
45 | * Get a list of all interfaces in the interface file. Usefull for | ||
46 | * hardware that is not currently connected such as an 802.11b card | ||
47 | * not plugged in, but configured for when it is plugged in. | ||
48 | * @return Return string list of interfaces. | ||
49 | **/ | ||
50 | QStringList Interfaces::getInterfaceList(){ | ||
51 | QStringList list; | ||
52 | for ( QStringList::Iterator it = interfaces.begin(); it != interfaces.end(); ++it ) { | ||
53 | QString line = (*it).simplifyWhiteSpace(); | ||
54 | if(line.contains(IFACE)){ | ||
55 | line = line.mid(QString(IFACE).length() +1, line.length()); | ||
56 | line = line.simplifyWhiteSpace(); | ||
57 | int findSpace = line.find(" "); | ||
58 | if( findSpace >= 0){ | ||
59 | line = line.mid(0, findSpace); | ||
60 | list.append(line); | ||
61 | } | ||
62 | } | ||
63 | } | ||
64 | return list; | ||
65 | } | ||
66 | |||
43 | /** | 67 | /** |
44 | * Find out if interface is in an "auto" group or not. | 68 | * Find out if interface is in an "auto" group or not. |
45 | * Report any duplicates such as eth0 being in two differnt auto's | 69 | * Report any duplicates such as eth0 being in two differnt auto's |
46 | * @param | 70 | * @param interface interface to check to see if it is on or not. |
47 | * @return true is interface is in auto | 71 | * @return true is interface is in auto |
48 | */ | 72 | */ |
49 | bool Interfaces::isAuto(QString interface){ | 73 | bool Interfaces::isAuto(QString interface){ |
50 | QStringList autoLines = interfaces.grep(QRegExp(AUTO)); | 74 | QStringList autoLines = interfaces.grep(QRegExp(AUTO)); |
51 | QStringList awi = autoLines.grep(QRegExp(interface)); | 75 | QStringList awi = autoLines.grep(QRegExp(interface)); |
52 | if(awi.count() > 1) | 76 | if(awi.count() > 1) |
53 | qDebug(QString("Interfaces: Found more then auto group with interface: %1.").arg(interface).latin1()); | 77 | qDebug(QString("Interfaces: Found more then auto group with interface: %1.").arg(interface).latin1()); |
54 | if(awi.count() < 1) | 78 | if(awi.count() < 1) |
55 | return false; | 79 | return false; |
56 | return true; | 80 | return true; |
57 | } | 81 | } |
58 | 82 | ||
59 | /** | 83 | /** |
60 | * Attempt to set the auto option for interface to setAuto. | 84 | * Attempt to set the auto option for interface to setAuto. |
61 | * @param interface the interface to set | 85 | * @param interface the interface to set |
62 | * @param setAuto the value to set interface to. | 86 | * @param setAuto the value to set interface to. |
63 | * @return false if already set to setAuto. | 87 | * @return false if already set to setAuto. |
64 | * */ | 88 | * */ |
65 | bool Interfaces::setAuto(QString interface, bool setAuto){ | 89 | bool Interfaces::setAuto(QString interface, bool setAuto){ |
66 | // Don't need to set it if it is already set. | 90 | // Don't need to set it if it is already set. |
67 | if(isAuto(interface) == setAuto) | 91 | if(isAuto(interface) == setAuto) |
68 | return false; | 92 | return false; |
69 | 93 | ||
70 | bool changed = false; | 94 | bool changed = false; |
71 | for ( QStringList::Iterator it = interfaces.begin(); it != interfaces.end(); ++it ) { | 95 | for ( QStringList::Iterator it = interfaces.begin(); it != interfaces.end(); ++it ) { |
72 | if((*it).contains(AUTO)){ | 96 | if((*it).contains(AUTO)){ |
73 | //We know that they are not in any group so let add to this auto. | 97 | //We know that they are not in any group so let add to this auto. |
74 | if(setAuto){ | 98 | if(setAuto){ |
75 | (*it) = (*it) += " " + interface; | 99 | (*it) = (*it) += " " + interface; |
76 | // Don't care to have such thins as: auto eth0 lo usb0 | 100 | // Don't care to have such thins as: auto eth0 lo usb0 |
77 | (*it) = (*it).simplifyWhiteSpace(); | 101 | (*it) = (*it).simplifyWhiteSpace(); |
78 | changed = true; | 102 | changed = true; |
79 | break; | 103 | break; |
80 | } | 104 | } |
81 | else{ | 105 | else{ |
82 | if((*it).contains(interface)){ | 106 | if((*it).contains(interface)){ |
83 | (*it) = (*it).replace(QRegExp(interface), ""); | 107 | (*it) = (*it).replace(QRegExp(interface), ""); |
84 | // clean up | 108 | // clean up |
85 | QString line = (*it).simplifyWhiteSpace(); | 109 | QString line = (*it).simplifyWhiteSpace(); |
86 | line = line.replace(QRegExp(" "),""); | 110 | line = line.replace(QRegExp(" "),""); |
87 | if(line == AUTO) | 111 | if(line == AUTO) |
88 | (*it) = ""; | 112 | (*it) = ""; |
89 | changed = true; | 113 | changed = true; |
90 | // Don't break because we want to make sure we remove all cases. | 114 | // Don't break because we want to make sure we remove all cases. |
91 | } | 115 | } |
92 | } | 116 | } |
93 | } | 117 | } |
94 | } | 118 | } |
95 | if(changed == false){ | 119 | if(changed == false){ |
96 | if(setAuto == true) | 120 | if(setAuto == true) |
97 | interfaces.append(QString(AUTO" %1").arg(interface)); | 121 | interfaces.append(QString(AUTO" %1").arg(interface)); |
98 | else{ | 122 | else{ |
99 | qDebug(QString("Interfaces: Can't set interface %1 auto to false sense it is already false.").arg(interface).latin1()); | 123 | qDebug(QString("Interfaces: Can't set interface %1 auto to false sense it is already false.").arg(interface).latin1()); |
100 | } | 124 | } |
101 | } | 125 | } |
102 | return true; | 126 | return true; |
103 | } | 127 | } |
104 | 128 | ||
105 | /** | 129 | /** |
106 | * Set the current interface to interface. This needs to be done before you | 130 | * Set the current interface to interface. This needs to be done before you |
107 | * can call getFamily(), getMethod, and get/setOption(). | 131 | * can call getFamily(), getMethod, and get/setOption(). |
108 | * @param interface the name of the interface to set. All whitespace is | 132 | * @param interface the name of the interface to set. All whitespace is |
109 | * removed from the interface name. | 133 | * removed from the interface name. |
110 | * @return bool true if it is successfull. | 134 | * @return bool true if it is successfull. |
diff --git a/noncore/net/networksetup/interfaces.h b/noncore/net/networksetup/interfaces.h index 2cc9689..8b4788c 100644 --- a/noncore/net/networksetup/interfaces.h +++ b/noncore/net/networksetup/interfaces.h | |||
@@ -1,70 +1,71 @@ | |||
1 | #ifndef INTERFACES_H | 1 | #ifndef INTERFACES_H |
2 | #define INTERFACES_H | 2 | #define INTERFACES_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qstringlist.h> | 5 | #include <qstringlist.h> |
6 | 6 | ||
7 | #define INTERFACES_LOOPBACK "loopback" | 7 | #define INTERFACES_LOOPBACK "loopback" |
8 | 8 | ||
9 | #define INTERFACES_FAMILY_INET "inet" | 9 | #define INTERFACES_FAMILY_INET "inet" |
10 | #define INTERFACES_FAMILY_IPX "ipx" | 10 | #define INTERFACES_FAMILY_IPX "ipx" |
11 | #define INTERFACES_FAMILY_INET6 "inet6" | 11 | #define INTERFACES_FAMILY_INET6 "inet6" |
12 | 12 | ||
13 | #define INTERFACES_METHOD_DHCP "dhcp" | 13 | #define INTERFACES_METHOD_DHCP "dhcp" |
14 | #define INTERFACES_METHOD_STATIC "static" | 14 | #define INTERFACES_METHOD_STATIC "static" |
15 | #define INTERFACES_METHOD_PPP "ppp" | 15 | #define INTERFACES_METHOD_PPP "ppp" |
16 | 16 | ||
17 | /** | 17 | /** |
18 | * This class provides a clean frontend for parsing the network interfaces file. | 18 | * This class provides a clean frontend for parsing the network interfaces file. |
19 | * It provides helper functions to minipulate the options within the file. | 19 | * It provides helper functions to minipulate the options within the file. |
20 | * See the interfaces man page for the syntax rules. | 20 | * See the interfaces man page for the syntax rules. |
21 | */ | 21 | */ |
22 | class Interfaces { | 22 | class Interfaces { |
23 | 23 | ||
24 | public: | 24 | public: |
25 | Interfaces(QString useInterfacesFile = "/etc/network/interfaces"); | 25 | Interfaces(QString useInterfacesFile = "/etc/network/interfaces"); |
26 | 26 | QStringList getInterfaceList(); | |
27 | |||
27 | bool isAuto(QString interface); | 28 | bool isAuto(QString interface); |
28 | bool setAuto(QString interface, bool setAuto); | 29 | bool setAuto(QString interface, bool setAuto); |
29 | 30 | ||
30 | bool removeInterface(); | 31 | bool removeInterface(); |
31 | bool addInterface(QString interface, QString family, QString method); | 32 | bool addInterface(QString interface, QString family, QString method); |
32 | bool setInterface(QString interface); | 33 | bool setInterface(QString interface); |
33 | bool isInterfaceSet(); | 34 | bool isInterfaceSet(); |
34 | QString getInterfaceName(bool &error); | 35 | QString getInterfaceName(bool &error); |
35 | bool setInterfaceName(QString newName); | 36 | bool setInterfaceName(QString newName); |
36 | QString getInterfaceFamily(bool &error); | 37 | QString getInterfaceFamily(bool &error); |
37 | bool setInterfaceFamily(QString newName); | 38 | bool setInterfaceFamily(QString newName); |
38 | QString getInterfaceMethod(bool &error); | 39 | QString getInterfaceMethod(bool &error); |
39 | bool setInterfaceMethod(QString newName); | 40 | bool setInterfaceMethod(QString newName); |
40 | QString getInterfaceOption(QString option, bool &error); | 41 | QString getInterfaceOption(QString option, bool &error); |
41 | bool setInterfaceOption(QString option, QString value); | 42 | bool setInterfaceOption(QString option, QString value); |
42 | bool removeAllInterfaceOptions(); | 43 | bool removeAllInterfaceOptions(); |
43 | 44 | ||
44 | bool setMapping(QString interface); | 45 | bool setMapping(QString interface); |
45 | void addMapping(QString interfaces); | 46 | void addMapping(QString interfaces); |
46 | bool setMap(QString map, QString value); | 47 | bool setMap(QString map, QString value); |
47 | QString getMap(QString map, bool &error); | 48 | QString getMap(QString map, bool &error); |
48 | bool setScript(QString); | 49 | bool setScript(QString); |
49 | QString getScript(bool &error); | 50 | QString getScript(bool &error); |
50 | 51 | ||
51 | bool write(); | 52 | bool write(); |
52 | 53 | ||
53 | private: | 54 | private: |
54 | bool setStanza(QString stanza, QString option,QStringList::Iterator &iterator); | 55 | bool setStanza(QString stanza, QString option,QStringList::Iterator &iterator); |
55 | bool setOption(QStringList::Iterator start, QString option, QString value); | 56 | bool setOption(QStringList::Iterator start, QString option, QString value); |
56 | QString getOption(QStringList::Iterator start, QString option, bool &error); | 57 | QString getOption(QStringList::Iterator start, QString option, bool &error); |
57 | bool removeAllOptions(QStringList::Iterator start); | 58 | bool removeAllOptions(QStringList::Iterator start); |
58 | 59 | ||
59 | QString interfacesFile; | 60 | QString interfacesFile; |
60 | QStringList interfaces; | 61 | QStringList interfaces; |
61 | QStringList::Iterator currentIface; | 62 | QStringList::Iterator currentIface; |
62 | QStringList::Iterator currentMapping; | 63 | QStringList::Iterator currentMapping; |
63 | 64 | ||
64 | QStringList acceptedFamily; | 65 | QStringList acceptedFamily; |
65 | }; | 66 | }; |
66 | 67 | ||
67 | #endif | 68 | #endif |
68 | 69 | ||
69 | // interfaces | 70 | // interfaces |
70 | 71 | ||
diff --git a/noncore/net/networksetup/mainwindowimp.cpp b/noncore/net/networksetup/mainwindowimp.cpp index 36f12e0..24af1ec 100644 --- a/noncore/net/networksetup/mainwindowimp.cpp +++ b/noncore/net/networksetup/mainwindowimp.cpp | |||
@@ -1,68 +1,70 @@ | |||
1 | #include "mainwindowimp.h" | 1 | #include "mainwindowimp.h" |
2 | #include "addconnectionimp.h" | 2 | #include "addconnectionimp.h" |
3 | #include "interfaceinformationimp.h" | 3 | #include "interfaceinformationimp.h" |
4 | #include "interfacesetupimp.h" | 4 | #include "interfacesetupimp.h" |
5 | #include "interfaces.h" | ||
6 | |||
5 | #include "module.h" | 7 | #include "module.h" |
6 | 8 | ||
7 | #include "kprocess.h" | 9 | #include "kprocess.h" |
8 | 10 | ||
9 | #include <qpushbutton.h> | 11 | #include <qpushbutton.h> |
10 | #include <qtabwidget.h> | 12 | #include <qtabwidget.h> |
11 | #include <qlistbox.h> | 13 | #include <qlistbox.h> |
12 | #include <qlineedit.h> | 14 | #include <qlineedit.h> |
13 | #include <qlistview.h> | 15 | #include <qlistview.h> |
14 | #include <qheader.h> | 16 | #include <qheader.h> |
15 | #include <qlabel.h> | 17 | #include <qlabel.h> |
16 | 18 | ||
17 | #include <qmainwindow.h> | 19 | #include <qmainwindow.h> |
18 | #include <qmessagebox.h> | 20 | #include <qmessagebox.h> |
19 | 21 | ||
20 | #include <qpe/config.h> | 22 | #include <qpe/config.h> |
21 | #include <qpe/qlibrary.h> | 23 | #include <qpe/qlibrary.h> |
22 | #include <qpe/resource.h> | 24 | #include <qpe/resource.h> |
23 | #include <qpe/qpeapplication.h> | 25 | #include <qpe/qpeapplication.h> |
24 | 26 | ||
25 | #include <qlist.h> | 27 | #include <qlist.h> |
26 | #include <qdir.h> | 28 | #include <qdir.h> |
27 | #include <qfile.h> | 29 | #include <qfile.h> |
28 | #include <qtextstream.h> | 30 | #include <qtextstream.h> |
29 | 31 | ||
30 | #define TEMP_ALL "/tmp/ifconfig-a" | 32 | #define TEMP_ALL "/tmp/ifconfig-a" |
31 | #define TEMP_UP "/tmp/ifconfig" | 33 | #define TEMP_UP "/tmp/ifconfig" |
32 | 34 | ||
33 | MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(parent, name, true), advancedUserMode(false){ | 35 | MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(parent, name, true), advancedUserMode(false){ |
34 | connect(addConnectionButton, SIGNAL(clicked()), this, SLOT(addClicked())); | 36 | connect(addConnectionButton, SIGNAL(clicked()), this, SLOT(addClicked())); |
35 | connect(removeConnectionButton, SIGNAL(clicked()), this, SLOT(removeClicked())); | 37 | connect(removeConnectionButton, SIGNAL(clicked()), this, SLOT(removeClicked())); |
36 | connect(informationConnectionButton, SIGNAL(clicked()), this, SLOT(informationClicked())); | 38 | connect(informationConnectionButton, SIGNAL(clicked()), this, SLOT(informationClicked())); |
37 | connect(configureConnectionButton, SIGNAL(clicked()), this, SLOT(configureClicked())); | 39 | connect(configureConnectionButton, SIGNAL(clicked()), this, SLOT(configureClicked())); |
38 | 40 | ||
39 | connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); | 41 | connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); |
40 | connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); | 42 | connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); |
41 | connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); | 43 | connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); |
42 | 44 | ||
43 | connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); | 45 | connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); |
44 | // Load connections. | 46 | // Load connections. |
45 | loadModules(QPEApplication::qpeDir() + "/plugins/networksetup"); | 47 | loadModules(QPEApplication::qpeDir() + "/plugins/networksetup"); |
46 | getInterfaceList(); | 48 | getInterfaceList(); |
47 | connectionList->header()->hide(); | 49 | connectionList->header()->hide(); |
48 | 50 | ||
49 | 51 | ||
50 | Config cfg("NetworkSetup"); | 52 | Config cfg("NetworkSetup"); |
51 | profiles = QStringList::split(" ", cfg.readEntry("Profiles", "All")); | 53 | profiles = QStringList::split(" ", cfg.readEntry("Profiles", "All")); |
52 | for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) | 54 | for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) |
53 | profilesList->insertItem((*it)); | 55 | profilesList->insertItem((*it)); |
54 | advancedUserMode = cfg.readBoolEntry("AdvancedUserMode", false); | 56 | advancedUserMode = cfg.readBoolEntry("AdvancedUserMode", false); |
55 | } | 57 | } |
56 | 58 | ||
57 | /** | 59 | /** |
58 | * Deconstructor. Save profiles. Delete loaded libraries. | 60 | * Deconstructor. Save profiles. Delete loaded libraries. |
59 | */ | 61 | */ |
60 | MainWindowImp::~MainWindowImp(){ | 62 | MainWindowImp::~MainWindowImp(){ |
61 | // Save profiles. | 63 | // Save profiles. |
62 | if(profiles.count() > 1){ | 64 | if(profiles.count() > 1){ |
63 | Config cfg("NetworkSetup"); | 65 | Config cfg("NetworkSetup"); |
64 | cfg.setGroup("General"); | 66 | cfg.setGroup("General"); |
65 | cfg.writeEntry("Profiles", profiles.join(" ")); | 67 | cfg.writeEntry("Profiles", profiles.join(" ")); |
66 | } | 68 | } |
67 | // Delete Modules and Libraries | 69 | // Delete Modules and Libraries |
68 | QMap<Module*, QLibrary*>::Iterator it; | 70 | QMap<Module*, QLibrary*>::Iterator it; |
@@ -271,158 +273,178 @@ void MainWindowImp::getInterfaceList(){ | |||
271 | 273 | ||
272 | KShellProcess *process = new KShellProcess(); | 274 | KShellProcess *process = new KShellProcess(); |
273 | *process << "/sbin/ifconfig" << " > " TEMP_UP; | 275 | *process << "/sbin/ifconfig" << " > " TEMP_UP; |
274 | connect(process, SIGNAL(processExited(KProcess *)), | 276 | connect(process, SIGNAL(processExited(KProcess *)), |
275 | this, SLOT(jobDone(KProcess *))); | 277 | this, SLOT(jobDone(KProcess *))); |
276 | threads.insert(process, TEMP_UP); | 278 | threads.insert(process, TEMP_UP); |
277 | process->start(KShellProcess::NotifyOnExit); | 279 | process->start(KShellProcess::NotifyOnExit); |
278 | } | 280 | } |
279 | 281 | ||
280 | void MainWindowImp::jobDone(KProcess *process){ | 282 | void MainWindowImp::jobDone(KProcess *process){ |
281 | QString fileName = threads[process]; | 283 | QString fileName = threads[process]; |
282 | threads.remove(process); | 284 | threads.remove(process); |
283 | delete process; | 285 | delete process; |
284 | 286 | ||
285 | QFile file(fileName); | 287 | QFile file(fileName); |
286 | if (!file.open(IO_ReadOnly)){ | 288 | if (!file.open(IO_ReadOnly)){ |
287 | qDebug(QString("MainWindowImp: Can't open file: %1").arg(fileName).latin1()); | 289 | qDebug(QString("MainWindowImp: Can't open file: %1").arg(fileName).latin1()); |
288 | return; | 290 | return; |
289 | } | 291 | } |
290 | 292 | ||
291 | QTextStream stream( &file ); | 293 | QTextStream stream( &file ); |
292 | QString line; | 294 | QString line; |
293 | while ( !stream.eof() ) { | 295 | while ( !stream.eof() ) { |
294 | line = stream.readLine(); | 296 | line = stream.readLine(); |
295 | int space = line.find(" "); | 297 | int space = line.find(" "); |
296 | if(space > 1){ | 298 | if(space > 1){ |
297 | // We have found an interface | 299 | // We have found an interface |
298 | QString interfaceName = line.mid(0, space); | 300 | QString interfaceName = line.mid(0, space); |
299 | if(!advancedUserMode){ | 301 | if(!advancedUserMode){ |
300 | if(interfaceName == "lo") | 302 | if(interfaceName == "lo") |
301 | break; | 303 | break; |
302 | } | 304 | } |
303 | Interface *i; | 305 | Interface *i; |
304 | // See if we already have it | 306 | // See if we already have it |
305 | if(interfaceNames.find(interfaceName) == interfaceNames.end()){ | 307 | if(interfaceNames.find(interfaceName) == interfaceNames.end()){ |
306 | if(fileName == TEMP_ALL) | 308 | if(fileName == TEMP_ALL) |
307 | i = new Interface(interfaceName, false); | 309 | i = new Interface(interfaceName, false); |
308 | else | 310 | else |
309 | i = new Interface(interfaceName, true); | 311 | i = new Interface(interfaceName, true); |
310 | } | 312 | } |
311 | else{ | 313 | else{ |
312 | i = interfaceNames[interfaceName]; | 314 | i = interfaceNames[interfaceName]; |
313 | if(fileName != TEMP_ALL) | 315 | if(fileName != TEMP_ALL) |
314 | i->setStatus(true); | 316 | i->setStatus(true); |
315 | } | 317 | } |
316 | 318 | ||
317 | i->setAttached(true); | 319 | i->setAttached(true); |
318 | i->setInterfaceName(interfaceName); | 320 | i->setInterfaceName(interfaceName); |
319 | 321 | ||
320 | QString hardName = "Ethernet"; | 322 | QString hardName = "Ethernet"; |
321 | int hardwareName = line.find("Link encap:"); | 323 | int hardwareName = line.find("Link encap:"); |
322 | int macAddress = line.find("HWaddr"); | 324 | int macAddress = line.find("HWaddr"); |
323 | if(macAddress == -1) | 325 | if(macAddress == -1) |
324 | macAddress = line.length(); | 326 | macAddress = line.length(); |
325 | if(hardwareName != -1) | 327 | if(hardwareName != -1) |
326 | i->setHardwareName(line.mid(hardwareName+11, macAddress-(hardwareName+11)) + QString(" (%1)").arg(i->getInterfaceName())); | 328 | i->setHardwareName(line.mid(hardwareName+11, macAddress-(hardwareName+11)) + QString(" (%1)").arg(i->getInterfaceName())); |
327 | // We have found an interface | 329 | // We have found an interface |
328 | //qDebug(QString("MainWindowImp: Found Interface: %1").arg(line).latin1()); | 330 | //qDebug(QString("MainWindowImp: Found Interface: %1").arg(line).latin1()); |
329 | interfaceNames.insert(i->getInterfaceName(), i); | 331 | interfaceNames.insert(i->getInterfaceName(), i); |
330 | updateInterface(i); | 332 | updateInterface(i); |
331 | } | 333 | } |
332 | } | 334 | } |
333 | file.close(); | 335 | file.close(); |
334 | QFile::remove(fileName); | 336 | QFile::remove(fileName); |
337 | if(threads.count() == 0){ | ||
338 | Interfaces i; | ||
339 | QStringList list = i.getInterfaceList(); | ||
340 | QMap<QString, Interface*>::Iterator it; | ||
341 | for ( QStringList::Iterator ni = list.begin(); ni != list.end(); ++ni ) { | ||
342 | for( it = interfaceNames.begin(); it != interfaceNames.end(); ++it ){ | ||
343 | if(it.key() == (*ni)){ | ||
344 | Interface *i = new Interface(*ni, false); | ||
345 | i->setAttached(false); | ||
346 | i->setHardwareName(QString("Disconnected (%1)").arg(*ni)); | ||
347 | i->setInterfaceName(*ni); | ||
348 | interfaceNames.insert(i->getInterfaceName(), i); | ||
349 | updateInterface(i); | ||
350 | } | ||
351 | } | ||
352 | } | ||
353 | } | ||
335 | } | 354 | } |
336 | 355 | ||
337 | /** | 356 | /** |
338 | * Update this interface. If no QListViewItem exists create one. | 357 | * Update this interface. If no QListViewItem exists create one. |
339 | * @param Interface* pointer to the interface that needs to be updated. | 358 | * @param Interface* pointer to the interface that needs to be updated. |
340 | */ | 359 | */ |
341 | void MainWindowImp::updateInterface(Interface *i){ | 360 | void MainWindowImp::updateInterface(Interface *i){ |
342 | QListViewItem *item = NULL; | 361 | QListViewItem *item = NULL; |
343 | 362 | ||
344 | // Find the interface, making it if needed. | 363 | // Find the interface, making it if needed. |
345 | if(items.find(i) == items.end()){ | 364 | if(items.find(i) == items.end()){ |
346 | item = new QListViewItem(connectionList, "", "", ""); | 365 | item = new QListViewItem(connectionList, "", "", ""); |
347 | // See if you can't find a module owner for this interface | 366 | // See if you can't find a module owner for this interface |
348 | QMap<Module*, QLibrary*>::Iterator it; | 367 | QMap<Module*, QLibrary*>::Iterator it; |
349 | for( it = libraries.begin(); it != libraries.end(); ++it ){ | 368 | for( it = libraries.begin(); it != libraries.end(); ++it ){ |
350 | if(it.key()->isOwner(i)) | 369 | if(it.key()->isOwner(i)) |
351 | i->setModuleOwner(it.key()); | 370 | i->setModuleOwner(it.key()); |
352 | } | 371 | } |
353 | items.insert(i, item); | 372 | items.insert(i, item); |
354 | interfaceItems.insert(item, i); | 373 | interfaceItems.insert(item, i); |
355 | } | 374 | } |
356 | else | 375 | else |
357 | item = items[i]; | 376 | item = items[i]; |
358 | 377 | ||
359 | // Update the icons and information | 378 | // Update the icons and information |
360 | item->setPixmap(0, (Resource::loadPixmap(i->getStatus() ? "up": "down"))); | 379 | item->setPixmap(0, (Resource::loadPixmap(i->getStatus() ? "up": "down"))); |
361 | 380 | ||
362 | QString typeName = "lan"; | 381 | QString typeName = "lan"; |
363 | if(i->getHardwareName().contains("Local Loopback")) | 382 | if(i->getHardwareName().contains("Local Loopback")) |
364 | typeName = "lo"; | 383 | typeName = "lo"; |
365 | if(i->getInterfaceName().contains("irda")) | 384 | if(i->getInterfaceName().contains("irda")) |
366 | typeName = "irda"; | 385 | typeName = "irda"; |
367 | if(i->getInterfaceName().contains("wlan")) | 386 | if(i->getInterfaceName().contains("wlan")) |
368 | typeName = "wlan"; | 387 | typeName = "wlan"; |
388 | |||
389 | if(!i->isAttached()) | ||
390 | typeName = "connect_no"; | ||
369 | // Actually try to use the Module | 391 | // Actually try to use the Module |
370 | if(i->getModuleOwner() != NULL) | 392 | if(i->getModuleOwner() != NULL) |
371 | typeName = i->getModuleOwner()->getPixmapName(i); | 393 | typeName = i->getModuleOwner()->getPixmapName(i); |
372 | 394 | ||
373 | item->setPixmap(1, (Resource::loadPixmap(typeName))); | 395 | item->setPixmap(1, (Resource::loadPixmap(typeName))); |
374 | item->setText(2, i->getHardwareName()); | 396 | item->setText(2, i->getHardwareName()); |
375 | item->setText(3, (i->getStatus()) ? i->getIp() : QString("")); | 397 | item->setText(3, (i->getStatus()) ? i->getIp() : QString("")); |
376 | } | 398 | } |
377 | 399 | ||
378 | void MainWindowImp::newProfileChanged(const QString& newText){ | 400 | void MainWindowImp::newProfileChanged(const QString& newText){ |
379 | if(newText.length() > 0) | 401 | if(newText.length() > 0) |
380 | newProfileButton->setEnabled(true); | 402 | newProfileButton->setEnabled(true); |
381 | else | 403 | else |
382 | newProfileButton->setEnabled(false); | 404 | newProfileButton->setEnabled(false); |
383 | } | 405 | } |
384 | 406 | ||
385 | /** | 407 | /** |
386 | * Adds a new profile to the list of profiles. | 408 | * Adds a new profile to the list of profiles. |
387 | * Don't add profiles that already exists. | 409 | * Don't add profiles that already exists. |
388 | * Appends to the list and QStringList | 410 | * Appends to the list and QStringList |
389 | */ | 411 | */ |
390 | void MainWindowImp::addProfile(){ | 412 | void MainWindowImp::addProfile(){ |
391 | QString newProfileName = newProfile->text(); | 413 | QString newProfileName = newProfile->text(); |
392 | if(profiles.grep(newProfileName).count() > 0){ | 414 | if(profiles.grep(newProfileName).count() > 0){ |
393 | QMessageBox::information(this, "Can't Add","Profile already exists.", "Ok"); | 415 | QMessageBox::information(this, "Can't Add","Profile already exists.", "Ok"); |
394 | return; | 416 | return; |
395 | } | 417 | } |
396 | profiles.append(newProfileName); | 418 | profiles.append(newProfileName); |
397 | profilesList->insertItem(newProfileName); | 419 | profilesList->insertItem(newProfileName); |
398 | } | 420 | } |
399 | 421 | ||
400 | /** | 422 | /** |
401 | * Removes the currently selected profile in the combo. | 423 | * Removes the currently selected profile in the combo. |
402 | * Doesn't delete if there are less then 2 profiles. | 424 | * Doesn't delete if there are less then 2 profiles. |
403 | */ | 425 | */ |
404 | void MainWindowImp::removeProfile(){ | 426 | void MainWindowImp::removeProfile(){ |
405 | if(profilesList->count() <= 1){ | 427 | if(profilesList->count() <= 1){ |
406 | QMessageBox::information(this, "Can't remove anything.","Need One Profile.", "Ok"); | 428 | QMessageBox::information(this, "Can't remove anything.","Need One Profile.", "Ok"); |
407 | return; | 429 | return; |
408 | } | 430 | } |
409 | QString profileToRemove = profilesList->currentText(); | 431 | QString profileToRemove = profilesList->currentText(); |
410 | if(QMessageBox::information(this, "Question",QString("Remove profile: %1").arg(profileToRemove), QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok){ | 432 | if(QMessageBox::information(this, "Question",QString("Remove profile: %1").arg(profileToRemove), QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok){ |
411 | profiles = QStringList::split(" ", profiles.join(" ").replace(QRegExp(profileToRemove), "")); | 433 | profiles = QStringList::split(" ", profiles.join(" ").replace(QRegExp(profileToRemove), "")); |
412 | profilesList->clear(); | 434 | profilesList->clear(); |
413 | for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) | 435 | for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) |
414 | profilesList->insertItem((*it)); | 436 | profilesList->insertItem((*it)); |
415 | } | 437 | } |
416 | 438 | ||
417 | } | 439 | } |
418 | 440 | ||
419 | /** | 441 | /** |
420 | * A new profile has been selected, change. | 442 | * A new profile has been selected, change. |
421 | * @param newProfile the new profile. | 443 | * @param newProfile the new profile. |
422 | */ | 444 | */ |
423 | void MainWindowImp::changeProfile(){ | 445 | void MainWindowImp::changeProfile(){ |
424 | currentProfileLabel->setText(profilesList->text(profilesList->currentItem())); | 446 | currentProfileLabel->setText(profilesList->text(profilesList->currentItem())); |
425 | } | 447 | } |
426 | 448 | ||
427 | // mainwindowimp.cpp | 449 | // mainwindowimp.cpp |
428 | 450 | ||
diff --git a/noncore/net/networksetup/networksetup.pro b/noncore/net/networksetup/networksetup.pro index f09db93..441bbaa 100644 --- a/noncore/net/networksetup/networksetup.pro +++ b/noncore/net/networksetup/networksetup.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | #DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | #CONFIG = qt warn_on debug | 3 | #CONFIG = qt warn_on debug |
4 | CONFIG = qt warn_on release | 4 | CONFIG = qt warn_on release |
5 | HEADERS = mainwindowimp.h addconnectionimp.h interface.h interfaceinformationimp.h interfacesetupimp.h interfaces.h defaultmodule.h kprocctrl.h module.h kprocess.h | 5 | HEADERS = mainwindowimp.h addconnectionimp.h interface.h interfaceinformationimp.h interfacesetupimp.h interfaces.h defaultmodule.h kprocctrl.h module.h kprocess.h |
6 | SOURCES = main.cpp mainwindowimp.cpp addconnectionimp.cpp interface.cpp interfaceinformationimp.cpp interfacesetupimp.cpp kprocctrl.cpp kprocess.cpp interfaces.cpp | 6 | SOURCES = main.cpp mainwindowimp.cpp addconnectionimp.cpp interface.cpp interfaceinformationimp.cpp interfacesetupimp.cpp kprocctrl.cpp kprocess.cpp interfaces.cpp |
7 | INCLUDEPATH+= $(OPIEDIR)/include | 7 | #INCLUDEPATH+= $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | #DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES= mainwindow.ui addconnection.ui interfaceinformation.ui interfaceadvanced.ui interfacesetup.ui | 10 | INTERFACES= mainwindow.ui addconnection.ui interfaceinformation.ui interfaceadvanced.ui interfacesetup.ui |
11 | TARGET = networksetup | 11 | TARGET = networksetup |
diff --git a/noncore/settings/networksettings/TODO b/noncore/settings/networksettings/TODO index 70d6717..7386646 100644 --- a/noncore/settings/networksettings/TODO +++ b/noncore/settings/networksettings/TODO | |||
@@ -1,7 +1,8 @@ | |||
1 | [ ] Wlanmodule needs to check if an interface supports wireless | 1 | [ ] Wlanmodule needs to check if an interface supports wireless |
2 | extensions. | 2 | extensions. |
3 | [x] When you set options in wlanmodule, hit OK, it exits all of | 3 | [x] When you set options in wlanmodule, hit OK, it exits all of |
4 | networksetup, doesnt bring you back to the main screen. | 4 | networksetup, doesnt bring you back to the main screen. |
5 | [x] Wlanmodule isnt writing out wireless.opts | 5 | [x] Wlanmodule isnt writing out wireless.opts |
6 | [ ] Need a means of bringing an interface up and down (calling | 6 | [ ] Need a means of bringing an interface up and down (calling |
7 | out ifup/ifdown) from the gui. | 7 | out ifup/ifdown) from the gui. |
8 | -Ben- Click information, then click up or down... :-D | ||
diff --git a/noncore/settings/networksettings/interfaces.cpp b/noncore/settings/networksettings/interfaces.cpp index b8a3e7f..1287d90 100644 --- a/noncore/settings/networksettings/interfaces.cpp +++ b/noncore/settings/networksettings/interfaces.cpp | |||
@@ -1,110 +1,134 @@ | |||
1 | #include "interfaces.h" | 1 | #include "interfaces.h" |
2 | 2 | ||
3 | #include <qfile.h> | 3 | #include <qfile.h> |
4 | #include <qtextstream.h> | 4 | #include <qtextstream.h> |
5 | #include <qregexp.h> | 5 | #include <qregexp.h> |
6 | 6 | ||
7 | #define AUTO "auto" | 7 | #define AUTO "auto" |
8 | #define IFACE "iface" | 8 | #define IFACE "iface" |
9 | #define MAPPING "mapping" | 9 | #define MAPPING "mapping" |
10 | 10 | ||
11 | /** | 11 | /** |
12 | * Constructor. Reads in the interfaces file and then split the file up by | 12 | * Constructor. Reads in the interfaces file and then split the file up by |
13 | * the \n for interfaces variable. | 13 | * the \n for interfaces variable. |
14 | * @param useInterfacesFile if an interface file other then the default is | 14 | * @param useInterfacesFile if an interface file other then the default is |
15 | * desired to be used it should be passed in. | 15 | * desired to be used it should be passed in. |
16 | */ | 16 | */ |
17 | Interfaces::Interfaces(QString useInterfacesFile){ | 17 | Interfaces::Interfaces(QString useInterfacesFile){ |
18 | acceptedFamily.append(INTERFACES_FAMILY_INET); | 18 | acceptedFamily.append(INTERFACES_FAMILY_INET); |
19 | acceptedFamily.append(INTERFACES_FAMILY_IPX); | 19 | acceptedFamily.append(INTERFACES_FAMILY_IPX); |
20 | acceptedFamily.append(INTERFACES_FAMILY_INET6); | 20 | acceptedFamily.append(INTERFACES_FAMILY_INET6); |
21 | 21 | ||
22 | interfacesFile = useInterfacesFile; | 22 | interfacesFile = useInterfacesFile; |
23 | QFile file(interfacesFile); | 23 | QFile file(interfacesFile); |
24 | if (!file.open(IO_ReadOnly)){ | 24 | if (!file.open(IO_ReadOnly)){ |
25 | qDebug(QString("Interfaces: Can't open file: %1 for reading.").arg(interfacesFile).latin1()); | 25 | qDebug(QString("Interfaces: Can't open file: %1 for reading.").arg(interfacesFile).latin1()); |
26 | currentIface = interfaces.end(); | 26 | currentIface = interfaces.end(); |
27 | currentMapping = interfaces.end(); | 27 | currentMapping = interfaces.end(); |
28 | return; | 28 | return; |
29 | } | 29 | } |
30 | QTextStream stream( &file ); | 30 | QTextStream stream( &file ); |
31 | QString line; | 31 | QString line; |
32 | while ( !stream.eof() ) { | 32 | while ( !stream.eof() ) { |
33 | line += stream.readLine(); | 33 | line += stream.readLine(); |
34 | line += "\n"; | 34 | line += "\n"; |
35 | } | 35 | } |
36 | file.close(); | 36 | file.close(); |
37 | interfaces = QStringList::split("\n", line, true); | 37 | interfaces = QStringList::split("\n", line, true); |
38 | 38 | ||
39 | currentIface = interfaces.end(); | 39 | currentIface = interfaces.end(); |
40 | currentMapping = interfaces.end(); | 40 | currentMapping = interfaces.end(); |
41 | } | 41 | } |
42 | 42 | ||
43 | |||
44 | /** | ||
45 | * Get a list of all interfaces in the interface file. Usefull for | ||
46 | * hardware that is not currently connected such as an 802.11b card | ||
47 | * not plugged in, but configured for when it is plugged in. | ||
48 | * @return Return string list of interfaces. | ||
49 | **/ | ||
50 | QStringList Interfaces::getInterfaceList(){ | ||
51 | QStringList list; | ||
52 | for ( QStringList::Iterator it = interfaces.begin(); it != interfaces.end(); ++it ) { | ||
53 | QString line = (*it).simplifyWhiteSpace(); | ||
54 | if(line.contains(IFACE)){ | ||
55 | line = line.mid(QString(IFACE).length() +1, line.length()); | ||
56 | line = line.simplifyWhiteSpace(); | ||
57 | int findSpace = line.find(" "); | ||
58 | if( findSpace >= 0){ | ||
59 | line = line.mid(0, findSpace); | ||
60 | list.append(line); | ||
61 | } | ||
62 | } | ||
63 | } | ||
64 | return list; | ||
65 | } | ||
66 | |||
43 | /** | 67 | /** |
44 | * Find out if interface is in an "auto" group or not. | 68 | * Find out if interface is in an "auto" group or not. |
45 | * Report any duplicates such as eth0 being in two differnt auto's | 69 | * Report any duplicates such as eth0 being in two differnt auto's |
46 | * @param | 70 | * @param interface interface to check to see if it is on or not. |
47 | * @return true is interface is in auto | 71 | * @return true is interface is in auto |
48 | */ | 72 | */ |
49 | bool Interfaces::isAuto(QString interface){ | 73 | bool Interfaces::isAuto(QString interface){ |
50 | QStringList autoLines = interfaces.grep(QRegExp(AUTO)); | 74 | QStringList autoLines = interfaces.grep(QRegExp(AUTO)); |
51 | QStringList awi = autoLines.grep(QRegExp(interface)); | 75 | QStringList awi = autoLines.grep(QRegExp(interface)); |
52 | if(awi.count() > 1) | 76 | if(awi.count() > 1) |
53 | qDebug(QString("Interfaces: Found more then auto group with interface: %1.").arg(interface).latin1()); | 77 | qDebug(QString("Interfaces: Found more then auto group with interface: %1.").arg(interface).latin1()); |
54 | if(awi.count() < 1) | 78 | if(awi.count() < 1) |
55 | return false; | 79 | return false; |
56 | return true; | 80 | return true; |
57 | } | 81 | } |
58 | 82 | ||
59 | /** | 83 | /** |
60 | * Attempt to set the auto option for interface to setAuto. | 84 | * Attempt to set the auto option for interface to setAuto. |
61 | * @param interface the interface to set | 85 | * @param interface the interface to set |
62 | * @param setAuto the value to set interface to. | 86 | * @param setAuto the value to set interface to. |
63 | * @return false if already set to setAuto. | 87 | * @return false if already set to setAuto. |
64 | * */ | 88 | * */ |
65 | bool Interfaces::setAuto(QString interface, bool setAuto){ | 89 | bool Interfaces::setAuto(QString interface, bool setAuto){ |
66 | // Don't need to set it if it is already set. | 90 | // Don't need to set it if it is already set. |
67 | if(isAuto(interface) == setAuto) | 91 | if(isAuto(interface) == setAuto) |
68 | return false; | 92 | return false; |
69 | 93 | ||
70 | bool changed = false; | 94 | bool changed = false; |
71 | for ( QStringList::Iterator it = interfaces.begin(); it != interfaces.end(); ++it ) { | 95 | for ( QStringList::Iterator it = interfaces.begin(); it != interfaces.end(); ++it ) { |
72 | if((*it).contains(AUTO)){ | 96 | if((*it).contains(AUTO)){ |
73 | //We know that they are not in any group so let add to this auto. | 97 | //We know that they are not in any group so let add to this auto. |
74 | if(setAuto){ | 98 | if(setAuto){ |
75 | (*it) = (*it) += " " + interface; | 99 | (*it) = (*it) += " " + interface; |
76 | // Don't care to have such thins as: auto eth0 lo usb0 | 100 | // Don't care to have such thins as: auto eth0 lo usb0 |
77 | (*it) = (*it).simplifyWhiteSpace(); | 101 | (*it) = (*it).simplifyWhiteSpace(); |
78 | changed = true; | 102 | changed = true; |
79 | break; | 103 | break; |
80 | } | 104 | } |
81 | else{ | 105 | else{ |
82 | if((*it).contains(interface)){ | 106 | if((*it).contains(interface)){ |
83 | (*it) = (*it).replace(QRegExp(interface), ""); | 107 | (*it) = (*it).replace(QRegExp(interface), ""); |
84 | // clean up | 108 | // clean up |
85 | QString line = (*it).simplifyWhiteSpace(); | 109 | QString line = (*it).simplifyWhiteSpace(); |
86 | line = line.replace(QRegExp(" "),""); | 110 | line = line.replace(QRegExp(" "),""); |
87 | if(line == AUTO) | 111 | if(line == AUTO) |
88 | (*it) = ""; | 112 | (*it) = ""; |
89 | changed = true; | 113 | changed = true; |
90 | // Don't break because we want to make sure we remove all cases. | 114 | // Don't break because we want to make sure we remove all cases. |
91 | } | 115 | } |
92 | } | 116 | } |
93 | } | 117 | } |
94 | } | 118 | } |
95 | if(changed == false){ | 119 | if(changed == false){ |
96 | if(setAuto == true) | 120 | if(setAuto == true) |
97 | interfaces.append(QString(AUTO" %1").arg(interface)); | 121 | interfaces.append(QString(AUTO" %1").arg(interface)); |
98 | else{ | 122 | else{ |
99 | qDebug(QString("Interfaces: Can't set interface %1 auto to false sense it is already false.").arg(interface).latin1()); | 123 | qDebug(QString("Interfaces: Can't set interface %1 auto to false sense it is already false.").arg(interface).latin1()); |
100 | } | 124 | } |
101 | } | 125 | } |
102 | return true; | 126 | return true; |
103 | } | 127 | } |
104 | 128 | ||
105 | /** | 129 | /** |
106 | * Set the current interface to interface. This needs to be done before you | 130 | * Set the current interface to interface. This needs to be done before you |
107 | * can call getFamily(), getMethod, and get/setOption(). | 131 | * can call getFamily(), getMethod, and get/setOption(). |
108 | * @param interface the name of the interface to set. All whitespace is | 132 | * @param interface the name of the interface to set. All whitespace is |
109 | * removed from the interface name. | 133 | * removed from the interface name. |
110 | * @return bool true if it is successfull. | 134 | * @return bool true if it is successfull. |
diff --git a/noncore/settings/networksettings/interfaces.h b/noncore/settings/networksettings/interfaces.h index 2cc9689..8b4788c 100644 --- a/noncore/settings/networksettings/interfaces.h +++ b/noncore/settings/networksettings/interfaces.h | |||
@@ -1,70 +1,71 @@ | |||
1 | #ifndef INTERFACES_H | 1 | #ifndef INTERFACES_H |
2 | #define INTERFACES_H | 2 | #define INTERFACES_H |
3 | 3 | ||
4 | #include <qstring.h> | 4 | #include <qstring.h> |
5 | #include <qstringlist.h> | 5 | #include <qstringlist.h> |
6 | 6 | ||
7 | #define INTERFACES_LOOPBACK "loopback" | 7 | #define INTERFACES_LOOPBACK "loopback" |
8 | 8 | ||
9 | #define INTERFACES_FAMILY_INET "inet" | 9 | #define INTERFACES_FAMILY_INET "inet" |
10 | #define INTERFACES_FAMILY_IPX "ipx" | 10 | #define INTERFACES_FAMILY_IPX "ipx" |
11 | #define INTERFACES_FAMILY_INET6 "inet6" | 11 | #define INTERFACES_FAMILY_INET6 "inet6" |
12 | 12 | ||
13 | #define INTERFACES_METHOD_DHCP "dhcp" | 13 | #define INTERFACES_METHOD_DHCP "dhcp" |
14 | #define INTERFACES_METHOD_STATIC "static" | 14 | #define INTERFACES_METHOD_STATIC "static" |
15 | #define INTERFACES_METHOD_PPP "ppp" | 15 | #define INTERFACES_METHOD_PPP "ppp" |
16 | 16 | ||
17 | /** | 17 | /** |
18 | * This class provides a clean frontend for parsing the network interfaces file. | 18 | * This class provides a clean frontend for parsing the network interfaces file. |
19 | * It provides helper functions to minipulate the options within the file. | 19 | * It provides helper functions to minipulate the options within the file. |
20 | * See the interfaces man page for the syntax rules. | 20 | * See the interfaces man page for the syntax rules. |
21 | */ | 21 | */ |
22 | class Interfaces { | 22 | class Interfaces { |
23 | 23 | ||
24 | public: | 24 | public: |
25 | Interfaces(QString useInterfacesFile = "/etc/network/interfaces"); | 25 | Interfaces(QString useInterfacesFile = "/etc/network/interfaces"); |
26 | 26 | QStringList getInterfaceList(); | |
27 | |||
27 | bool isAuto(QString interface); | 28 | bool isAuto(QString interface); |
28 | bool setAuto(QString interface, bool setAuto); | 29 | bool setAuto(QString interface, bool setAuto); |
29 | 30 | ||
30 | bool removeInterface(); | 31 | bool removeInterface(); |
31 | bool addInterface(QString interface, QString family, QString method); | 32 | bool addInterface(QString interface, QString family, QString method); |
32 | bool setInterface(QString interface); | 33 | bool setInterface(QString interface); |
33 | bool isInterfaceSet(); | 34 | bool isInterfaceSet(); |
34 | QString getInterfaceName(bool &error); | 35 | QString getInterfaceName(bool &error); |
35 | bool setInterfaceName(QString newName); | 36 | bool setInterfaceName(QString newName); |
36 | QString getInterfaceFamily(bool &error); | 37 | QString getInterfaceFamily(bool &error); |
37 | bool setInterfaceFamily(QString newName); | 38 | bool setInterfaceFamily(QString newName); |
38 | QString getInterfaceMethod(bool &error); | 39 | QString getInterfaceMethod(bool &error); |
39 | bool setInterfaceMethod(QString newName); | 40 | bool setInterfaceMethod(QString newName); |
40 | QString getInterfaceOption(QString option, bool &error); | 41 | QString getInterfaceOption(QString option, bool &error); |
41 | bool setInterfaceOption(QString option, QString value); | 42 | bool setInterfaceOption(QString option, QString value); |
42 | bool removeAllInterfaceOptions(); | 43 | bool removeAllInterfaceOptions(); |
43 | 44 | ||
44 | bool setMapping(QString interface); | 45 | bool setMapping(QString interface); |
45 | void addMapping(QString interfaces); | 46 | void addMapping(QString interfaces); |
46 | bool setMap(QString map, QString value); | 47 | bool setMap(QString map, QString value); |
47 | QString getMap(QString map, bool &error); | 48 | QString getMap(QString map, bool &error); |
48 | bool setScript(QString); | 49 | bool setScript(QString); |
49 | QString getScript(bool &error); | 50 | QString getScript(bool &error); |
50 | 51 | ||
51 | bool write(); | 52 | bool write(); |
52 | 53 | ||
53 | private: | 54 | private: |
54 | bool setStanza(QString stanza, QString option,QStringList::Iterator &iterator); | 55 | bool setStanza(QString stanza, QString option,QStringList::Iterator &iterator); |
55 | bool setOption(QStringList::Iterator start, QString option, QString value); | 56 | bool setOption(QStringList::Iterator start, QString option, QString value); |
56 | QString getOption(QStringList::Iterator start, QString option, bool &error); | 57 | QString getOption(QStringList::Iterator start, QString option, bool &error); |
57 | bool removeAllOptions(QStringList::Iterator start); | 58 | bool removeAllOptions(QStringList::Iterator start); |
58 | 59 | ||
59 | QString interfacesFile; | 60 | QString interfacesFile; |
60 | QStringList interfaces; | 61 | QStringList interfaces; |
61 | QStringList::Iterator currentIface; | 62 | QStringList::Iterator currentIface; |
62 | QStringList::Iterator currentMapping; | 63 | QStringList::Iterator currentMapping; |
63 | 64 | ||
64 | QStringList acceptedFamily; | 65 | QStringList acceptedFamily; |
65 | }; | 66 | }; |
66 | 67 | ||
67 | #endif | 68 | #endif |
68 | 69 | ||
69 | // interfaces | 70 | // interfaces |
70 | 71 | ||
diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp index 36f12e0..24af1ec 100644 --- a/noncore/settings/networksettings/mainwindowimp.cpp +++ b/noncore/settings/networksettings/mainwindowimp.cpp | |||
@@ -1,68 +1,70 @@ | |||
1 | #include "mainwindowimp.h" | 1 | #include "mainwindowimp.h" |
2 | #include "addconnectionimp.h" | 2 | #include "addconnectionimp.h" |
3 | #include "interfaceinformationimp.h" | 3 | #include "interfaceinformationimp.h" |
4 | #include "interfacesetupimp.h" | 4 | #include "interfacesetupimp.h" |
5 | #include "interfaces.h" | ||
6 | |||
5 | #include "module.h" | 7 | #include "module.h" |
6 | 8 | ||
7 | #include "kprocess.h" | 9 | #include "kprocess.h" |
8 | 10 | ||
9 | #include <qpushbutton.h> | 11 | #include <qpushbutton.h> |
10 | #include <qtabwidget.h> | 12 | #include <qtabwidget.h> |
11 | #include <qlistbox.h> | 13 | #include <qlistbox.h> |
12 | #include <qlineedit.h> | 14 | #include <qlineedit.h> |
13 | #include <qlistview.h> | 15 | #include <qlistview.h> |
14 | #include <qheader.h> | 16 | #include <qheader.h> |
15 | #include <qlabel.h> | 17 | #include <qlabel.h> |
16 | 18 | ||
17 | #include <qmainwindow.h> | 19 | #include <qmainwindow.h> |
18 | #include <qmessagebox.h> | 20 | #include <qmessagebox.h> |
19 | 21 | ||
20 | #include <qpe/config.h> | 22 | #include <qpe/config.h> |
21 | #include <qpe/qlibrary.h> | 23 | #include <qpe/qlibrary.h> |
22 | #include <qpe/resource.h> | 24 | #include <qpe/resource.h> |
23 | #include <qpe/qpeapplication.h> | 25 | #include <qpe/qpeapplication.h> |
24 | 26 | ||
25 | #include <qlist.h> | 27 | #include <qlist.h> |
26 | #include <qdir.h> | 28 | #include <qdir.h> |
27 | #include <qfile.h> | 29 | #include <qfile.h> |
28 | #include <qtextstream.h> | 30 | #include <qtextstream.h> |
29 | 31 | ||
30 | #define TEMP_ALL "/tmp/ifconfig-a" | 32 | #define TEMP_ALL "/tmp/ifconfig-a" |
31 | #define TEMP_UP "/tmp/ifconfig" | 33 | #define TEMP_UP "/tmp/ifconfig" |
32 | 34 | ||
33 | MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(parent, name, true), advancedUserMode(false){ | 35 | MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(parent, name, true), advancedUserMode(false){ |
34 | connect(addConnectionButton, SIGNAL(clicked()), this, SLOT(addClicked())); | 36 | connect(addConnectionButton, SIGNAL(clicked()), this, SLOT(addClicked())); |
35 | connect(removeConnectionButton, SIGNAL(clicked()), this, SLOT(removeClicked())); | 37 | connect(removeConnectionButton, SIGNAL(clicked()), this, SLOT(removeClicked())); |
36 | connect(informationConnectionButton, SIGNAL(clicked()), this, SLOT(informationClicked())); | 38 | connect(informationConnectionButton, SIGNAL(clicked()), this, SLOT(informationClicked())); |
37 | connect(configureConnectionButton, SIGNAL(clicked()), this, SLOT(configureClicked())); | 39 | connect(configureConnectionButton, SIGNAL(clicked()), this, SLOT(configureClicked())); |
38 | 40 | ||
39 | connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); | 41 | connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); |
40 | connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); | 42 | connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); |
41 | connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); | 43 | connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); |
42 | 44 | ||
43 | connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); | 45 | connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); |
44 | // Load connections. | 46 | // Load connections. |
45 | loadModules(QPEApplication::qpeDir() + "/plugins/networksetup"); | 47 | loadModules(QPEApplication::qpeDir() + "/plugins/networksetup"); |
46 | getInterfaceList(); | 48 | getInterfaceList(); |
47 | connectionList->header()->hide(); | 49 | connectionList->header()->hide(); |
48 | 50 | ||
49 | 51 | ||
50 | Config cfg("NetworkSetup"); | 52 | Config cfg("NetworkSetup"); |
51 | profiles = QStringList::split(" ", cfg.readEntry("Profiles", "All")); | 53 | profiles = QStringList::split(" ", cfg.readEntry("Profiles", "All")); |
52 | for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) | 54 | for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) |
53 | profilesList->insertItem((*it)); | 55 | profilesList->insertItem((*it)); |
54 | advancedUserMode = cfg.readBoolEntry("AdvancedUserMode", false); | 56 | advancedUserMode = cfg.readBoolEntry("AdvancedUserMode", false); |
55 | } | 57 | } |
56 | 58 | ||
57 | /** | 59 | /** |
58 | * Deconstructor. Save profiles. Delete loaded libraries. | 60 | * Deconstructor. Save profiles. Delete loaded libraries. |
59 | */ | 61 | */ |
60 | MainWindowImp::~MainWindowImp(){ | 62 | MainWindowImp::~MainWindowImp(){ |
61 | // Save profiles. | 63 | // Save profiles. |
62 | if(profiles.count() > 1){ | 64 | if(profiles.count() > 1){ |
63 | Config cfg("NetworkSetup"); | 65 | Config cfg("NetworkSetup"); |
64 | cfg.setGroup("General"); | 66 | cfg.setGroup("General"); |
65 | cfg.writeEntry("Profiles", profiles.join(" ")); | 67 | cfg.writeEntry("Profiles", profiles.join(" ")); |
66 | } | 68 | } |
67 | // Delete Modules and Libraries | 69 | // Delete Modules and Libraries |
68 | QMap<Module*, QLibrary*>::Iterator it; | 70 | QMap<Module*, QLibrary*>::Iterator it; |
@@ -271,158 +273,178 @@ void MainWindowImp::getInterfaceList(){ | |||
271 | 273 | ||
272 | KShellProcess *process = new KShellProcess(); | 274 | KShellProcess *process = new KShellProcess(); |
273 | *process << "/sbin/ifconfig" << " > " TEMP_UP; | 275 | *process << "/sbin/ifconfig" << " > " TEMP_UP; |
274 | connect(process, SIGNAL(processExited(KProcess *)), | 276 | connect(process, SIGNAL(processExited(KProcess *)), |
275 | this, SLOT(jobDone(KProcess *))); | 277 | this, SLOT(jobDone(KProcess *))); |
276 | threads.insert(process, TEMP_UP); | 278 | threads.insert(process, TEMP_UP); |
277 | process->start(KShellProcess::NotifyOnExit); | 279 | process->start(KShellProcess::NotifyOnExit); |
278 | } | 280 | } |
279 | 281 | ||
280 | void MainWindowImp::jobDone(KProcess *process){ | 282 | void MainWindowImp::jobDone(KProcess *process){ |
281 | QString fileName = threads[process]; | 283 | QString fileName = threads[process]; |
282 | threads.remove(process); | 284 | threads.remove(process); |
283 | delete process; | 285 | delete process; |
284 | 286 | ||
285 | QFile file(fileName); | 287 | QFile file(fileName); |
286 | if (!file.open(IO_ReadOnly)){ | 288 | if (!file.open(IO_ReadOnly)){ |
287 | qDebug(QString("MainWindowImp: Can't open file: %1").arg(fileName).latin1()); | 289 | qDebug(QString("MainWindowImp: Can't open file: %1").arg(fileName).latin1()); |
288 | return; | 290 | return; |
289 | } | 291 | } |
290 | 292 | ||
291 | QTextStream stream( &file ); | 293 | QTextStream stream( &file ); |
292 | QString line; | 294 | QString line; |
293 | while ( !stream.eof() ) { | 295 | while ( !stream.eof() ) { |
294 | line = stream.readLine(); | 296 | line = stream.readLine(); |
295 | int space = line.find(" "); | 297 | int space = line.find(" "); |
296 | if(space > 1){ | 298 | if(space > 1){ |
297 | // We have found an interface | 299 | // We have found an interface |
298 | QString interfaceName = line.mid(0, space); | 300 | QString interfaceName = line.mid(0, space); |
299 | if(!advancedUserMode){ | 301 | if(!advancedUserMode){ |
300 | if(interfaceName == "lo") | 302 | if(interfaceName == "lo") |
301 | break; | 303 | break; |
302 | } | 304 | } |
303 | Interface *i; | 305 | Interface *i; |
304 | // See if we already have it | 306 | // See if we already have it |
305 | if(interfaceNames.find(interfaceName) == interfaceNames.end()){ | 307 | if(interfaceNames.find(interfaceName) == interfaceNames.end()){ |
306 | if(fileName == TEMP_ALL) | 308 | if(fileName == TEMP_ALL) |
307 | i = new Interface(interfaceName, false); | 309 | i = new Interface(interfaceName, false); |
308 | else | 310 | else |
309 | i = new Interface(interfaceName, true); | 311 | i = new Interface(interfaceName, true); |
310 | } | 312 | } |
311 | else{ | 313 | else{ |
312 | i = interfaceNames[interfaceName]; | 314 | i = interfaceNames[interfaceName]; |
313 | if(fileName != TEMP_ALL) | 315 | if(fileName != TEMP_ALL) |
314 | i->setStatus(true); | 316 | i->setStatus(true); |
315 | } | 317 | } |
316 | 318 | ||
317 | i->setAttached(true); | 319 | i->setAttached(true); |
318 | i->setInterfaceName(interfaceName); | 320 | i->setInterfaceName(interfaceName); |
319 | 321 | ||
320 | QString hardName = "Ethernet"; | 322 | QString hardName = "Ethernet"; |
321 | int hardwareName = line.find("Link encap:"); | 323 | int hardwareName = line.find("Link encap:"); |
322 | int macAddress = line.find("HWaddr"); | 324 | int macAddress = line.find("HWaddr"); |
323 | if(macAddress == -1) | 325 | if(macAddress == -1) |
324 | macAddress = line.length(); | 326 | macAddress = line.length(); |
325 | if(hardwareName != -1) | 327 | if(hardwareName != -1) |
326 | i->setHardwareName(line.mid(hardwareName+11, macAddress-(hardwareName+11)) + QString(" (%1)").arg(i->getInterfaceName())); | 328 | i->setHardwareName(line.mid(hardwareName+11, macAddress-(hardwareName+11)) + QString(" (%1)").arg(i->getInterfaceName())); |
327 | // We have found an interface | 329 | // We have found an interface |
328 | //qDebug(QString("MainWindowImp: Found Interface: %1").arg(line).latin1()); | 330 | //qDebug(QString("MainWindowImp: Found Interface: %1").arg(line).latin1()); |
329 | interfaceNames.insert(i->getInterfaceName(), i); | 331 | interfaceNames.insert(i->getInterfaceName(), i); |
330 | updateInterface(i); | 332 | updateInterface(i); |
331 | } | 333 | } |
332 | } | 334 | } |
333 | file.close(); | 335 | file.close(); |
334 | QFile::remove(fileName); | 336 | QFile::remove(fileName); |
337 | if(threads.count() == 0){ | ||
338 | Interfaces i; | ||
339 | QStringList list = i.getInterfaceList(); | ||
340 | QMap<QString, Interface*>::Iterator it; | ||
341 | for ( QStringList::Iterator ni = list.begin(); ni != list.end(); ++ni ) { | ||
342 | for( it = interfaceNames.begin(); it != interfaceNames.end(); ++it ){ | ||
343 | if(it.key() == (*ni)){ | ||
344 | Interface *i = new Interface(*ni, false); | ||
345 | i->setAttached(false); | ||
346 | i->setHardwareName(QString("Disconnected (%1)").arg(*ni)); | ||
347 | i->setInterfaceName(*ni); | ||
348 | interfaceNames.insert(i->getInterfaceName(), i); | ||
349 | updateInterface(i); | ||
350 | } | ||
351 | } | ||
352 | } | ||
353 | } | ||
335 | } | 354 | } |
336 | 355 | ||
337 | /** | 356 | /** |
338 | * Update this interface. If no QListViewItem exists create one. | 357 | * Update this interface. If no QListViewItem exists create one. |
339 | * @param Interface* pointer to the interface that needs to be updated. | 358 | * @param Interface* pointer to the interface that needs to be updated. |
340 | */ | 359 | */ |
341 | void MainWindowImp::updateInterface(Interface *i){ | 360 | void MainWindowImp::updateInterface(Interface *i){ |
342 | QListViewItem *item = NULL; | 361 | QListViewItem *item = NULL; |
343 | 362 | ||
344 | // Find the interface, making it if needed. | 363 | // Find the interface, making it if needed. |
345 | if(items.find(i) == items.end()){ | 364 | if(items.find(i) == items.end()){ |
346 | item = new QListViewItem(connectionList, "", "", ""); | 365 | item = new QListViewItem(connectionList, "", "", ""); |
347 | // See if you can't find a module owner for this interface | 366 | // See if you can't find a module owner for this interface |
348 | QMap<Module*, QLibrary*>::Iterator it; | 367 | QMap<Module*, QLibrary*>::Iterator it; |
349 | for( it = libraries.begin(); it != libraries.end(); ++it ){ | 368 | for( it = libraries.begin(); it != libraries.end(); ++it ){ |
350 | if(it.key()->isOwner(i)) | 369 | if(it.key()->isOwner(i)) |
351 | i->setModuleOwner(it.key()); | 370 | i->setModuleOwner(it.key()); |
352 | } | 371 | } |
353 | items.insert(i, item); | 372 | items.insert(i, item); |
354 | interfaceItems.insert(item, i); | 373 | interfaceItems.insert(item, i); |
355 | } | 374 | } |
356 | else | 375 | else |
357 | item = items[i]; | 376 | item = items[i]; |
358 | 377 | ||
359 | // Update the icons and information | 378 | // Update the icons and information |
360 | item->setPixmap(0, (Resource::loadPixmap(i->getStatus() ? "up": "down"))); | 379 | item->setPixmap(0, (Resource::loadPixmap(i->getStatus() ? "up": "down"))); |
361 | 380 | ||
362 | QString typeName = "lan"; | 381 | QString typeName = "lan"; |
363 | if(i->getHardwareName().contains("Local Loopback")) | 382 | if(i->getHardwareName().contains("Local Loopback")) |
364 | typeName = "lo"; | 383 | typeName = "lo"; |
365 | if(i->getInterfaceName().contains("irda")) | 384 | if(i->getInterfaceName().contains("irda")) |
366 | typeName = "irda"; | 385 | typeName = "irda"; |
367 | if(i->getInterfaceName().contains("wlan")) | 386 | if(i->getInterfaceName().contains("wlan")) |
368 | typeName = "wlan"; | 387 | typeName = "wlan"; |
388 | |||
389 | if(!i->isAttached()) | ||
390 | typeName = "connect_no"; | ||
369 | // Actually try to use the Module | 391 | // Actually try to use the Module |
370 | if(i->getModuleOwner() != NULL) | 392 | if(i->getModuleOwner() != NULL) |
371 | typeName = i->getModuleOwner()->getPixmapName(i); | 393 | typeName = i->getModuleOwner()->getPixmapName(i); |
372 | 394 | ||
373 | item->setPixmap(1, (Resource::loadPixmap(typeName))); | 395 | item->setPixmap(1, (Resource::loadPixmap(typeName))); |
374 | item->setText(2, i->getHardwareName()); | 396 | item->setText(2, i->getHardwareName()); |
375 | item->setText(3, (i->getStatus()) ? i->getIp() : QString("")); | 397 | item->setText(3, (i->getStatus()) ? i->getIp() : QString("")); |
376 | } | 398 | } |
377 | 399 | ||
378 | void MainWindowImp::newProfileChanged(const QString& newText){ | 400 | void MainWindowImp::newProfileChanged(const QString& newText){ |
379 | if(newText.length() > 0) | 401 | if(newText.length() > 0) |
380 | newProfileButton->setEnabled(true); | 402 | newProfileButton->setEnabled(true); |
381 | else | 403 | else |
382 | newProfileButton->setEnabled(false); | 404 | newProfileButton->setEnabled(false); |
383 | } | 405 | } |
384 | 406 | ||
385 | /** | 407 | /** |
386 | * Adds a new profile to the list of profiles. | 408 | * Adds a new profile to the list of profiles. |
387 | * Don't add profiles that already exists. | 409 | * Don't add profiles that already exists. |
388 | * Appends to the list and QStringList | 410 | * Appends to the list and QStringList |
389 | */ | 411 | */ |
390 | void MainWindowImp::addProfile(){ | 412 | void MainWindowImp::addProfile(){ |
391 | QString newProfileName = newProfile->text(); | 413 | QString newProfileName = newProfile->text(); |
392 | if(profiles.grep(newProfileName).count() > 0){ | 414 | if(profiles.grep(newProfileName).count() > 0){ |
393 | QMessageBox::information(this, "Can't Add","Profile already exists.", "Ok"); | 415 | QMessageBox::information(this, "Can't Add","Profile already exists.", "Ok"); |
394 | return; | 416 | return; |
395 | } | 417 | } |
396 | profiles.append(newProfileName); | 418 | profiles.append(newProfileName); |
397 | profilesList->insertItem(newProfileName); | 419 | profilesList->insertItem(newProfileName); |
398 | } | 420 | } |
399 | 421 | ||
400 | /** | 422 | /** |
401 | * Removes the currently selected profile in the combo. | 423 | * Removes the currently selected profile in the combo. |
402 | * Doesn't delete if there are less then 2 profiles. | 424 | * Doesn't delete if there are less then 2 profiles. |
403 | */ | 425 | */ |
404 | void MainWindowImp::removeProfile(){ | 426 | void MainWindowImp::removeProfile(){ |
405 | if(profilesList->count() <= 1){ | 427 | if(profilesList->count() <= 1){ |
406 | QMessageBox::information(this, "Can't remove anything.","Need One Profile.", "Ok"); | 428 | QMessageBox::information(this, "Can't remove anything.","Need One Profile.", "Ok"); |
407 | return; | 429 | return; |
408 | } | 430 | } |
409 | QString profileToRemove = profilesList->currentText(); | 431 | QString profileToRemove = profilesList->currentText(); |
410 | if(QMessageBox::information(this, "Question",QString("Remove profile: %1").arg(profileToRemove), QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok){ | 432 | if(QMessageBox::information(this, "Question",QString("Remove profile: %1").arg(profileToRemove), QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok){ |
411 | profiles = QStringList::split(" ", profiles.join(" ").replace(QRegExp(profileToRemove), "")); | 433 | profiles = QStringList::split(" ", profiles.join(" ").replace(QRegExp(profileToRemove), "")); |
412 | profilesList->clear(); | 434 | profilesList->clear(); |
413 | for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) | 435 | for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) |
414 | profilesList->insertItem((*it)); | 436 | profilesList->insertItem((*it)); |
415 | } | 437 | } |
416 | 438 | ||
417 | } | 439 | } |
418 | 440 | ||
419 | /** | 441 | /** |
420 | * A new profile has been selected, change. | 442 | * A new profile has been selected, change. |
421 | * @param newProfile the new profile. | 443 | * @param newProfile the new profile. |
422 | */ | 444 | */ |
423 | void MainWindowImp::changeProfile(){ | 445 | void MainWindowImp::changeProfile(){ |
424 | currentProfileLabel->setText(profilesList->text(profilesList->currentItem())); | 446 | currentProfileLabel->setText(profilesList->text(profilesList->currentItem())); |
425 | } | 447 | } |
426 | 448 | ||
427 | // mainwindowimp.cpp | 449 | // mainwindowimp.cpp |
428 | 450 | ||
diff --git a/noncore/settings/networksettings/networksetup.pro b/noncore/settings/networksettings/networksetup.pro index f09db93..441bbaa 100644 --- a/noncore/settings/networksettings/networksetup.pro +++ b/noncore/settings/networksettings/networksetup.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | #DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | #CONFIG = qt warn_on debug | 3 | #CONFIG = qt warn_on debug |
4 | CONFIG = qt warn_on release | 4 | CONFIG = qt warn_on release |
5 | HEADERS = mainwindowimp.h addconnectionimp.h interface.h interfaceinformationimp.h interfacesetupimp.h interfaces.h defaultmodule.h kprocctrl.h module.h kprocess.h | 5 | HEADERS = mainwindowimp.h addconnectionimp.h interface.h interfaceinformationimp.h interfacesetupimp.h interfaces.h defaultmodule.h kprocctrl.h module.h kprocess.h |
6 | SOURCES = main.cpp mainwindowimp.cpp addconnectionimp.cpp interface.cpp interfaceinformationimp.cpp interfacesetupimp.cpp kprocctrl.cpp kprocess.cpp interfaces.cpp | 6 | SOURCES = main.cpp mainwindowimp.cpp addconnectionimp.cpp interface.cpp interfaceinformationimp.cpp interfacesetupimp.cpp kprocctrl.cpp kprocess.cpp interfaces.cpp |
7 | INCLUDEPATH+= $(OPIEDIR)/include | 7 | #INCLUDEPATH+= $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | #DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES= mainwindow.ui addconnection.ui interfaceinformation.ui interfaceadvanced.ui interfacesetup.ui | 10 | INTERFACES= mainwindow.ui addconnection.ui interfaceinformation.ui interfaceadvanced.ui interfacesetup.ui |
11 | TARGET = networksetup | 11 | TARGET = networksetup |