File: Subscriber.hpp

package info (click to toggle)
danmaq 0.2.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 656 kB
  • sloc: cpp: 786; makefile: 6; sh: 4
file content (51 lines) | stat: -rw-r--r-- 1,294 bytes parent folder | download | duplicates (3)
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
/*
 * This file is part of danmaQ.
 * 
 * DanmaQ is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * DanmaQ is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef SUBSCRIBER_HPP
#define SUBSCRIBER_HPP
#include <QtCore>
#include <QThread>
#include <QNetworkAccessManager>
#include <QNetworkRequest>
#include <QTime>


class Subscriber : public QThread
{
	Q_OBJECT
	
public:
	Subscriber(QString server, QString channel, QString passwd, QObject* parent=0);
	void run();
	bool mark_stop;

public slots:
	void parse_response(QNetworkReply* reply);

signals:
	void new_danmaku(QString text, QString color, QString position);
	void new_alert(QString msg);

private:
	QNetworkAccessManager* http;
	QNetworkRequest request;
	QString server, channel, passwd, _uuid;
	
};


#endif