Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef ADDINTERFACE_H
00016 #define ADDINTERFACE_H
00017
00018 #include <QObject>
00019
00020 #include <QtGui/QDialog>
00021 #include <QtGui/QTreeWidget>
00022 #include <QtGui/QVBoxLayout>
00023
00024 class WpaGui;
00025
00026 class AddInterface : public QDialog
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 AddInterface(WpaGui *_wpagui, QWidget *parent = 0);
00032
00033 public slots:
00034 virtual void interfaceSelected(QTreeWidgetItem *sel);
00035
00036 private:
00037 void addInterfaces();
00038 bool addRegistryInterface(const QString &ifname);
00039
00040 QVBoxLayout *vboxLayout;
00041 QTreeWidget *interfaceWidget;
00042 WpaGui *wpagui;
00043 };
00044
00045 #endif