X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fsessionthread.h;h=f9280f05c75aed13c83ce022a81ba75feeb79765;hp=b6c340a3821fed8a0cfbc14381f71f702115b022;hb=453ccab6ade4a21c7aa3c331af893c91468250a4;hpb=6f2f1723f5bb3d26908f6dd297890f6fba43793b diff --git a/src/core/sessionthread.h b/src/core/sessionthread.h index b6c340a3..f9280f05 100644 --- a/src/core/sessionthread.h +++ b/src/core/sessionthread.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,8 +18,8 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _SESSIONTHREAD_H_ -#define _SESSIONTHREAD_H_ +#ifndef SESSIONTHREAD_H +#define SESSIONTHREAD_H #include #include @@ -28,38 +28,45 @@ class CoreSession; class QIODevice; +class SignalProxy; class SessionThread : public QThread { Q_OBJECT - public: - SessionThread(UserId user, bool restoreState, QObject *parent = 0); - ~SessionThread(); +public: + SessionThread(UserId user, bool restoreState, QObject *parent = 0); + ~SessionThread(); - void run(); + void run(); - CoreSession *session(); - UserId user(); + CoreSession *session(); + UserId user(); - public slots: - void addClient(QIODevice *socket); +public slots: + void addClient(QObject *peer); + void stopSession(); - private slots: - void setSessionInitialized(); +private slots: + void setSessionInitialized(); - signals: - void initialized(); - void shutdown(); +signals: + void initialized(); + void shutdown(); - private: - CoreSession *_session; - UserId _user; - QList clientQueue; - bool _sessionInitialized; - bool _restoreState; + void addRemoteClient(QIODevice *); + void addInternalClient(SignalProxy *); - bool isSessionInitialized(); - void addClientToSession(QIODevice *socket); +private: + CoreSession *_session; + UserId _user; + QList clientQueue; + bool _sessionInitialized; + bool _restoreState; + + bool isSessionInitialized(); + void addClientToSession(QObject *peer); + void addRemoteClientToSession(QIODevice *socket); + void addInternalClientToSession(SignalProxy *proxy); }; #endif