summaryrefslogblamecommitdiffstats
path: root/src/fbgui/ndgui.h
blob: 05e2665954296be8bc674321b641ee2e9956c1de (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                          






                   
                 
                                     

                             

                          

       

                 
 
                    
 
             
 




                                                         
 

                                                      
                                                 
 
 
        
                         

              
                                 

        
                          
 

                                            
 

                                  
 
                                       
 


                                                                        


                 
/**
 * Copyright (c) 2010,2011 - RZ Uni Freiburg
 * Copyright (c) 2010,2011 - OpenSLX Project
 *
 * This program/file is free software distributed under the GPL version 2.
 * See http://openslx.org/COPYING
 *
 * If you have any feedback please consult http://openslx.org/feedback and
 * send your feedback to feedback@openslx.org
 *
 * General information about OpenSLX can be found under http://openslx.org
 */

#ifndef NDGUI_H
#define NDGUI_H

#include <QtGui>
#include <QtWebKit>
#include <QVariant>

#include "agui.h"
#include "javascriptinterfacendgui.h"
#include "networkdiscovery.h"

class ndgui: public agui {
Q_OBJECT

public:
	ndgui();
	~ndgui();

	void init();

public slots:

	void startNetworkDiscovery();
	void handleConnectionEstablished(QString ifName);
	void handleAllProcessesFinished();
	void continueBootWithoutCheck(QString ifName);
	void tryAgain();

	/* to delete once the new jsi is tested ... */
//	void addInterface(const QString &ifName);
	void continueBoot(const QString& ifName);


signals:
	void initFbgui();

private slots:
	void setUserChoiceTrue();

private:
	void addActions();

	NetworkDiscovery* _networkDiscovery;
	JavascriptInterfaceNDGUI* _jsi;

	QAction* _allowUserChoice;
	QAction* _tryAgain;

	bool _userChoice;bool _started;

	QList<QString> _ifNameList; // maps interfaceName to its gateway
	QList<QString> _manConfList;
	QString _manualConfInterfaces;
};

#endif // NDGUI_H