small commit

This commit is contained in:
arcan1s
2014-02-06 11:06:36 +04:00
parent fc43861ba6
commit 4a2a27176f
8 changed files with 203 additions and 18 deletions

View File

@ -38,6 +38,13 @@ class MainWindow : public QMainWindow
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
enum wpaConfigIndex {
wpaCliPath = 0,
wpaSupplicantPath = 1,
wpaPidPath = 2,
wpadSupDrivers = 3,
wpaConfDir = 4
};
private slots:
void updateTabs(const int tab);
@ -51,15 +58,16 @@ private slots:
private:
Netctl *netctlCommand;
WpaSup *wpaCliCommand;
WpaSup *wpaCommand;
Ui::MainWindow *ui;
void createActions();
// configuration
QString netctlPath;
QString profileDir;
QString sudoPath;
QString wpaCliPath;
QStringList wpaConfig;
QString ifaceDir;
QString preferedInterface;
};