2008-12-25 15:38:09 +01:00
|
|
|
/*
|
|
|
|
* wpa_gui - AddInterface class
|
|
|
|
* Copyright (c) 2008, Jouni Malinen <j@w1.fi>
|
|
|
|
*
|
2012-02-11 15:46:35 +01:00
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
|
* See README for more details.
|
2008-12-25 15:38:09 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ADDINTERFACE_H
|
|
|
|
#define ADDINTERFACE_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2015-05-08 23:01:01 +02:00
|
|
|
#include <QDialog>
|
|
|
|
#include <QTreeWidget>
|
|
|
|
#include <QVBoxLayout>
|
2008-12-25 15:38:09 +01:00
|
|
|
|
|
|
|
class WpaGui;
|
|
|
|
|
|
|
|
class AddInterface : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
AddInterface(WpaGui *_wpagui, QWidget *parent = 0);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
virtual void interfaceSelected(QTreeWidgetItem *sel);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void addInterfaces();
|
|
|
|
bool addRegistryInterface(const QString &ifname);
|
|
|
|
|
|
|
|
QVBoxLayout *vboxLayout;
|
|
|
|
QTreeWidget *interfaceWidget;
|
|
|
|
WpaGui *wpagui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* ADDINTERFACE_H */
|