summaryrefslogtreecommitdiffstats
path: root/LogReceiver/ndgui.h
diff options
context:
space:
mode:
authorNiklas2011-09-27 17:03:35 +0200
committerNiklas2011-09-27 17:03:35 +0200
commitfcb16100b5aa80934c90ddd4a386acb14317f460 (patch)
treed8e4fc7920ba20965919b3d53c47695194b96c1f /LogReceiver/ndgui.h
parentadded a new function for manual configuration of an interface including a fun... (diff)
downloadfbgui-fcb16100b5aa80934c90ddd4a386acb14317f460.tar.gz
fbgui-fcb16100b5aa80934c90ddd4a386acb14317f460.tar.xz
fbgui-fcb16100b5aa80934c90ddd4a386acb14317f460.zip
manual config gui added. put the interfaceconfig map into networkDiscovery and adopted the signals.
Diffstat (limited to 'LogReceiver/ndgui.h')
-rw-r--r--LogReceiver/ndgui.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LogReceiver/ndgui.h b/LogReceiver/ndgui.h
index 21217ec..c41cecd 100644
--- a/LogReceiver/ndgui.h
+++ b/LogReceiver/ndgui.h
@@ -20,14 +20,14 @@ public:
~ndgui();
public slots:
- void handleConnectionEstablished(interfaceconfiguration *ifConf);
+ void handleConnectionEstablished(QString ifName);
void abortBoot(QString msg);
void chooseInterfaceDialog(QString msg);
void handleAllProcessesFinished();
void restartSystem();
void shutDownSystem();
- void continueBoot(QString ifName, bool userChoice);
+ void continueBoot(QString ifName, int userChoice);
void showLog();
void startNetworkDiscovery();
@@ -50,7 +50,7 @@ private:
NetworkDiscovery networkDiscovery;
- QMap<QString, interfaceconfiguration*> finalUsableIntefacesMap; // maps interfaceName to its gateway
+ QList<QString> _ifNameList; // maps interfaceName to its gateway
};