summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/mainwindowimp.h
blob: 382428cb6da1f7fef099bf8e6602b5a088413b21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef MAINWINOWIMP_H
#define MAINWINOWIMP_H

#include "mainwindow.h"
#include <qmap.h>
#include <qstringlist.h>

class Module;
class Interface;
class QLibrary;
class KProcess;

class MainWindowImp : public MainWindow {
  Q_OBJECT

public:
  MainWindowImp(QWidget *parent=0, const char *name=0);
  ~MainWindowImp();
  
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);

private:
  void loadModules(QString path);
  
  Module* loadPlugin(QString pluginFileName,
		     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;
  
  QMap<KProcess*, QString> threads;
  QStringList profiles;

  bool advancedUserMode;
  QString scheme;
};

#endif

// mainwindowimp.h