summaryrefslogtreecommitdiffstats
path: root/LogReceiver/ndgui.h
blob: 21217ecec1842e63cbe8e6d742f066395eafd47e (plain) (blame)
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 NDGUI_H
#define NDGUI_H

#include <QtGui>
#include <QtWebKit>
#include <QProgressBar>
#include <QLabel>
#include <QGroupBox>
#include <QBoxLayout>

#include "networkdiscovery.h"

#include "ui_ndgui.h"

class ndgui: public QMainWindow {
Q_OBJECT

public:
	ndgui(QMainWindow *parent = 0);
	~ndgui();

public slots:
    void handleConnectionEstablished(interfaceconfiguration *ifConf);
    void abortBoot(QString msg);
    void chooseInterfaceDialog(QString msg);
    void handleAllProcessesFinished();

    void restartSystem();
    void shutDownSystem();
    void continueBoot(QString ifName, bool userChoice);
    void showLog();

    void startNetworkDiscovery();

    /*test for html gui version*/
    void attachToDOM();
    void loadJQuery();
    void addInterface(const QString &ifName);
    void updateIfStatus(const QString &ifName, const QString &status);
    void updateStatus(const QString &status);
    void updateIfProgressBar(const QString &ifName, const int& percent);
    void notifyCall();


private:

	bool _started;

	QWebView * _webView;

	NetworkDiscovery networkDiscovery;

	QMap<QString, interfaceconfiguration*> finalUsableIntefacesMap;		// maps interfaceName to its gateway


};

#endif // NDGUI_H