summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/mainwindowimp.h
authormickeyl <mickeyl>2004-07-06 18:34:54 (UTC)
committer mickeyl <mickeyl>2004-07-06 18:34:54 (UTC)
commitda843f0c0571fd3d67d797c8fa80e2672056af4b (patch) (side-by-side diff)
tree441b591b9e59ece79275bf83157cd023c24c6005 /noncore/settings/networksettings/mainwindowimp.h
parent7cb107b4be2d07ac8849d2ea1e41ea0318017048 (diff)
downloadopie-da843f0c0571fd3d67d797c8fa80e2672056af4b.zip
opie-da843f0c0571fd3d67d797c8fa80e2672056af4b.tar.gz
opie-da843f0c0571fd3d67d797c8fa80e2672056af4b.tar.bz2
CLEANUP: make networksettings directory structure packaging-friendly
Diffstat (limited to 'noncore/settings/networksettings/mainwindowimp.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/mainwindowimp.h75
1 files changed, 0 insertions, 75 deletions
diff --git a/noncore/settings/networksettings/mainwindowimp.h b/noncore/settings/networksettings/mainwindowimp.h
deleted file mode 100644
index f211d6e..0000000
--- a/noncore/settings/networksettings/mainwindowimp.h
+++ b/dev/null
@@ -1,75 +0,0 @@
-#ifndef MAINWINOWIMP_H
-#define MAINWINOWIMP_H
-
-#include "mainwindow.h"
-#include <qmap.h>
-#include <qstringlist.h>
-
-class Module;
-class Interface;
-class QLibrary;
-class KProcess;
-class QCopChannel;
-#ifdef QWS
-class QLibrary;
-#else
-class KLibrary;
-class KLibLoader;
-#define QLibrary KLibrary
-#endif
-
-
-class MainWindowImp : public MainWindow {
- Q_OBJECT
-
-public:
- static QString appName() { return QString::fromLatin1("networksettings"); }
- MainWindowImp(QWidget *parent=0, const char *name=0, WFlags fl = 0);
- ~MainWindowImp();
-
- QCopChannel *channel;
-
-private slots:
- void getAllInterfaces();
-
- void addClicked();
- void removeClicked();
- void configureClicked();
- void informationClicked();
-
- void addProfile();
- void removeProfile();
- void changeProfile();
-
- void updateInterface(Interface *i);
- void newProfileChanged(const QString& newText);
-
- void receive (const QCString &, const QByteArray &);
-
-private:
- void makeChannel();
- void loadModules(const QString &path);
-
- Module* loadPlugin(const QString &pluginFileName,
- const QString &resolveString = "create_plugin");
-
- // For our local list of names
- QMap<QString, Interface*> interfaceNames;
-
- QMap<Module*, QLibrary*> libraries;
- QMap<Interface*, QListViewItem*> items;
- QMap<QListViewItem*, Interface*> interfaceItems;
- QStringList m_handledIfaces;
-
- QMap<KProcess*, QString> threads;
- QStringList profiles;
-
- bool advancedUserMode;
- QString scheme;
-#ifndef QWS
- KLibLoader *loader;
-#endif
-};
-
-#endif // MAINWINOWIMP_H
-