summaryrefslogtreecommitdiff
path: root/noncore
authortille <tille>2003-06-02 12:36:00 (UTC)
committer tille <tille>2003-06-02 12:36:00 (UTC)
commit2d0134f0bee1c0d33fc8cdc66ecc390080adba25 (patch) (side-by-side diff)
tree430950574b78a060940fc1a00942550fb5d84cf6 /noncore
parented171b266b1f42b358b2b814deb33be21c220683 (diff)
downloadopie-2d0134f0bee1c0d33fc8cdc66ecc390080adba25.zip
opie-2d0134f0bee1c0d33fc8cdc66ecc390080adba25.tar.gz
opie-2d0134f0bee1c0d33fc8cdc66ecc390080adba25.tar.bz2
disable the profile tab and add some whatsthis
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/mainwindow.ui24
-rw-r--r--noncore/settings/networksettings/mainwindowimp.cpp10
2 files changed, 32 insertions, 2 deletions
diff --git a/noncore/settings/networksettings/mainwindow.ui b/noncore/settings/networksettings/mainwindow.ui
index f61a1ae..a730dd5 100644
--- a/noncore/settings/networksettings/mainwindow.ui
+++ b/noncore/settings/networksettings/mainwindow.ui
@@ -34,6 +34,10 @@
<name>name</name>
<cstring>tabWidget</cstring>
</property>
+ <property stdset="1">
+ <name>enabled</name>
+ <bool>true</bool>
+ </property>
<property>
<name>layoutMargin</name>
</property>
@@ -136,6 +140,10 @@
<name>allColumnsShowFocus</name>
<bool>true</bool>
</property>
+ <property>
+ <name>whatsThis</name>
+ <string>A list of network settings to be choosen from</string>
+ </property>
</widget>
<widget>
<class>QLayoutWidget</class>
@@ -165,6 +173,10 @@
<name>text</name>
<string>&amp;Add</string>
</property>
+ <property>
+ <name>whatsThis</name>
+ <string>Add a new interface to the list.</string>
+ </property>
</widget>
<widget row="0" column="0" >
<class>QPushButton</class>
@@ -176,6 +188,10 @@
<name>text</name>
<string>&amp;Start/Stop</string>
</property>
+ <property>
+ <name>whatsThis</name>
+ <string>Start and Stop the current interface, gives additional information about the interface.</string>
+ </property>
</widget>
<widget row="0" column="1" >
<class>QPushButton</class>
@@ -187,6 +203,10 @@
<name>text</name>
<string>&amp;Configure</string>
</property>
+ <property>
+ <name>whatsThis</name>
+ <string>Configure the current interface</string>
+ </property>
</widget>
<widget row="1" column="1" >
<class>QPushButton</class>
@@ -198,6 +218,10 @@
<name>text</name>
<string>&amp;Remove</string>
</property>
+ <property>
+ <name>whatsThis</name>
+ <string>Remove the current interface from the list.</string>
+ </property>
</widget>
</grid>
</widget>
diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp
index 63b9603..abf5663 100644
--- a/noncore/settings/networksettings/mainwindowimp.cpp
+++ b/noncore/settings/networksettings/mainwindowimp.cpp
@@ -11,6 +11,7 @@
#include <qlistview.h>
#include <qheader.h>
#include <qlabel.h>
+#include <qtabwidget.h> // in order to disable the profiles tab
#include <qmessagebox.h>
@@ -58,6 +59,10 @@ MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(par
connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile()));
connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&)));
+
+ //FIXME: disable profiles for the moment:
+ tabWidget->setTabEnabled( tab, false );
+
// Load connections.
// /usr/local/kde/lib/libinterfaces.la
#ifdef QWS
@@ -94,8 +99,9 @@ MainWindowImp::MainWindowImp(QWidget *parent, const char *name) : MainWindow(par
Config cfg("NetworkSetup");
profiles = QStringList::split(" ", cfg.readEntry("Profiles", "All"));
- for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it)
- profilesList->insertItem((*it));
+ for ( QStringList::Iterator it = profiles.begin();
+ it != profiles.end(); ++it)
+ profilesList->insertItem((*it));
currentProfileLabel->setText(cfg.readEntry("CurrentProfile", "All"));
advancedUserMode = cfg.readBoolEntry("AdvancedUserMode", false);
scheme = cfg.readEntry("SchemeFile", DEFAULT_SCHEME);