summaryrefslogblamecommitdiffstats
path: root/src/server/mainwindow/mainwindow.h
blob: 2bba8c3e13d2b82ae90f0ec7236cb591d13b21c5 (plain) (tree)
1
2
3
4
5
6
7




                      
                          
                                  




                        






















                                          

                                   




                                                                              
                                                                      
                                       

       
                                                       











                                           
                                                      



                                   



                                      
                                      

                                        
                                  







                                                                          
                                                                              




      
#ifndef _MAINWINDOW_H_
#define _MAINWINDOW_H_

#include <QtGui>
#include <QMainWindow>
#include "../net/client.h"
#include "../net/filedownloader.h"

class SessionNameWindow;
class ConnectionFrame;
class ListenServer;
class DiscoveryListener;

namespace Ui
{
	class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

private:
    Ui::MainWindow *ui;
    SessionNameWindow *_sessionNameWindow;
    QLabel *_sessionNameLabel;
    QList<ConnectionFrame*> _clientFrames;
    int _tileWidth, _tileHeight;
    int _tilesX, _tilesY;
    int _tbIconSize;
    Qt::ToolBarArea _tbArea;
    int _timerId, _timerTimeout;
    ListenServer *_listenServer;
    DiscoveryListener *_discoveryListener;
    qint64 _buttonBlockTime;
    FileDownloader _fileDownloader;
    QStringList _tutorList;

    void placeFrameInFreeSlot(ConnectionFrame* frame);
    ConnectionFrame* createFrame();
    bool loadPosition(QSettings& settings, const QString& id, int& x, int& y);
    void savePosition(ConnectionFrame *cf);
    void prepareForProjection(Client * const from, Client * const to);
    bool isValidClient(Client* client);

public:
    MainWindow(QString ipListUrl, QWidget *parent = 0);
    ~MainWindow();

protected:
    void closeEvent(QCloseEvent *e);
    void changeEvent(QEvent *e);
    void resizeEvent(QResizeEvent *e);
    void mouseReleaseEvent(QMouseEvent* e);
    void timerEvent(QTimerEvent* event);


protected slots:
	// This
    void onTutorListDownloaded(QByteArray& tutorList);
	void onSessionNameClick();
	void onSessionNameUpdate();
	void onButtonSettings();
	void onButtonChat();
	void onButtonStudentToAll();
	void onButtonStudentToTutor();
	void onButtonTutorToAll();
	void onButtonTutorToStudent();
	void onButtonStopProjection();
	void onButtonLock(bool checked);
	void onButtonExit();
	void onButtonSetAsTutor();
	// connection frame
	void onPlaceFrame(ConnectionFrame* frame);
	void onFrameClicked(ConnectionFrame* frame);
	// Net
	void onClientConnected(Client* client);
	void onClientAuthenticating(Client* client, ClientLogin* request);
	void onClientAuthenticated(Client* client);
	void onVncServerStateChange(Client* client);
	void onVncClientStateChange(Client* client, int lastProjectionSource);

};


#endif