summaryrefslogtreecommitdiff
path: root/fetchpostsaction.h
blob: 9951989207018ae4964d5f0c8703b3b8791de6b8 (plain)
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
#ifndef FETCHPOSTSACTION_H
#define FETCHPOSTSACTION_H

#include <QtCore/QVariant>
#include <QtSql/QSqlQuery>
#include "action.h"

class XmlRpcPendingCall;

class FetchPostsAction : public Action
{
	Q_OBJECT
public:
	explicit FetchPostsAction(int topicId, int start, int end, Board *board);

	bool isSupersetOf(Action *action) const;

	void execute();

private slots:
	void handleFinishedCall();

private:
	static QString unencodePostText(const QVariant& v);
	QString unencodePostContent(const QVariant& v);

private:
	XmlRpcPendingCall *_call;
	int _topicId;
	int _start;
	int _end;
};

#endif // FETCHPOSTSACTION_H