mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
6d32524837
Fixed load/save of filter type in settings. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7722 b45a01b8-16f6-495d-af2f-9b41ad6348cc
50 lines
1.0 KiB
C++
50 lines
1.0 KiB
C++
#ifndef GXSFORUMSFILLTHREAD_H
|
|
#define GXSFORUMSFILLTHREAD_H
|
|
|
|
#include <QThread>
|
|
#include "retroshare/rsgxsifacetypes.h"
|
|
|
|
class GxsForumThreadWidget;
|
|
class RsGxsForumMsg;
|
|
class RSTreeWidgetItemCompareRole;
|
|
class QTreeWidgetItem;
|
|
|
|
class GxsForumsFillThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GxsForumsFillThread(GxsForumThreadWidget *parent);
|
|
~GxsForumsFillThread();
|
|
|
|
void run();
|
|
void stop();
|
|
bool wasStopped() { return mStopped; }
|
|
|
|
signals:
|
|
void progress(int current, int count);
|
|
void status(QString text);
|
|
|
|
public:
|
|
RsGxsGroupId mForumId;
|
|
int mFilterColumn;
|
|
bool mFillComplete;
|
|
int mViewType;
|
|
bool mFlatView;
|
|
bool mUseChildTS;
|
|
bool mExpandNewMessages;
|
|
std::string mFocusMsgId;
|
|
RSTreeWidgetItemCompareRole *mCompareRole;
|
|
|
|
QList<QTreeWidgetItem*> mItems;
|
|
QList<QTreeWidgetItem*> mItemToExpand;
|
|
|
|
private:
|
|
void calculateExpand(const RsGxsForumMsg &msg, QTreeWidgetItem *item);
|
|
|
|
GxsForumThreadWidget *mParent;
|
|
volatile bool mStopped;
|
|
};
|
|
|
|
#endif // GXSFORUMSFILLTHREAD_H
|