summaryrefslogtreecommitdiffstats
path: root/LogReceiver/ndgui.h
blob: e8b0b85630b4b03ed4a3c9f26f1250629eb8c52d (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
59
60
61
62
63
64
65
66
67
#ifndef NDGUI_H
#define NDGUI_H

#include <QtGui/QWidget>
#include "qprogressbar.h"
#include "qlabel.h"
#include "qgroupbox.h"
#include "qboxlayout.h"
#include "ui_ndgui.h"
#include "logreceiver.h"
#include "chooseinterfacedialog.h"
#include "abortbootdialog.h"

class ndgui: public QWidget {
Q_OBJECT

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

public slots:
    void handleProgress(QString ifName, int newValue);
    void addNewInterface(QString ifName);
    void handleConnectionEstablished(QString ifName);
    void handleAbortBoot(QString msg);
    void handleUpdateStatusLabel(QString ifName, QString status);
    void handleAllProcessesFinished();

    void restartSystem();
    void shutDownSystem();
    void continueBoot(QString ifName);
    void showLog();

    void showAbortBootDialog();
    void showChooseInterfaceDialog();

private:
	Ui::ndguiClass ui;

	LogReceiver logReceiver;

	QStringList finalUsableInterfaces;

	int numberOfInterfaces;

	ChooseInterfaceDialog *cID;
	AbortBootDialog *aBD;

	/*gui elements*/
	QMap<QString, QProgressBar *> progressBars;
	QMap<QString, QLabel*> statusLabels;
	QLabel *ndStatusLabel;
	QGroupBox *interfaceGroupBox;
	QVBoxLayout *mainLayout;
	QVBoxLayout *interfaceGroupBoxLayout;
	/**/




	/*gui functions*/
	void buildGui();
	void createInterfaceGroupBox();

};

#endif // NDGUI_H