-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathqstreamboxchat.h
51 lines (40 loc) · 1.14 KB
/
qstreamboxchat.h
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
47
48
49
50
51
#ifndef QSTREAMBOXCHAT
#define QSTREAMBOXCHAT
#include "qchatservice.h"
class QNetworkAccessManager;
class QWebSocket;
class QStreamBoxChat: public QChatService
{
Q_OBJECT
public:
explicit QStreamBoxChat( QObject *parent = 0 );
virtual ~QStreamBoxChat();
protected:
virtual void timerEvent( QTimerEvent *event );
private:
void loadSettings();
QString insertSmiles( const QString& message );
void getStatistic();
public slots:
virtual void connect();
virtual void disconnect();
virtual void reconnect();
private slots:
void onWebSocketConnected();
void onTextMessageReceived( const QString &message );
void onWebSocketError();
void onStatisticLoaded();
void onStatisticLoadError();
void onPong( quint64 elapsedTime, const QByteArray & payload );
private:
QNetworkAccessManager *nam_;
QWebSocket *socket_;
QString channelName_;
int reconnectTimerId_;
int reconnectInterval_;
int statisticTimerId_;
int statisticInterval_;
int saveConnectionTimerId_;
int saveConnectionInterval_;
};
#endif // QSTREAMBOXCHAT