summaryrefslogtreecommitdiffstats
path: root/workspace/LogReceiver/ndgui.h
blob: 990a6b9ae0e5215efd2cafe93574d1e0fbf1770a (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
#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"

class ndgui: public QWidget {
Q_OBJECT

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

public slots:
    void handleProgress(int iFaceIndex, int newValue);
    void addNewInterface(QString ifName, int index);

private:
	Ui::ndguiClass ui;

	LogReceiver logReceiver;

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

	/*gui functions*/
	void buildGui();
	void createInterfaceGroupBox();
	//void addInterfacesToGroupBox(QList<QNetworkInterface> &interfaces);




};

#endif // NDGUI_H