summaryrefslogblamecommitdiffstats
path: root/LogReceiver/ndgui.h
blob: 81ab266134c0e84a36c393d46bc80f45f44c776f (plain) (tree)
1
2
3
4
5
6
7
8
9



                        




                       
                        

                                  
 

                     







                                   

                                                      
                                                                      


                                                                 
 







                                      


                          

                                
                                          
                                                                                                    


                               


                                   
                        

                                                   





                                             


 


                                       



                 
#ifndef NDGUI_H
#define NDGUI_H

#include <QtGui/QWidget>
#include <QProgressBar>
#include <QLabel>
#include <QGroupBox>
#include <QBoxLayout>

#include "logreceiver.h"
#include "chooseinterfacedialog.h"
#include "abortbootdialog.h"

#include "ui_ndgui.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, QString gateway);
    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;
	QMap<QString, QString> finalUsableIntefacesMap;		// maps interfaceName to its gateway

	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