blob: 1918552d8c2f5ed332df84bd54f233d5b7ef36df (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
#ifndef PREVIEWMODEL_H
#define PREVIEWMODEL_H
#include <vector>
#include <iostream>
#include <pthread.h>
#undef GetUserName //God dammit microsoft!
#include "PreviewView.h"
#include "client/SaveInfo.h"
#include "gui/preview/Comment.h"
#include "gui/search/Thumbnail.h"
using namespace std;
struct SaveData
{
SaveData(unsigned char * data_, int len):
data(data_),
length(len)
{
}
unsigned char * data;
int length;
};
struct threadInfo {
threadInfo(int saveID_, int saveDate_):
threadFinished(true),
previewExited(false),
saveID(saveID_),
saveDate(saveDate_)
{
}
bool threadFinished;
bool previewExited;
int saveID;
int saveDate;
};
class PreviewView;
class PreviewModel {
bool doOpen;
bool commentBoxEnabled;
vector<PreviewView*> observers;
SaveInfo * save;
SaveData *saveData;
std::vector<SaveComment*> * saveComments;
void notifySaveChanged();
void notifySaveCommentsChanged();
void notifyCommentsPageChanged();
void notifyCommentBoxEnabledChanged();
//Background retrieval
int tSaveID;
int tSaveDate;
//
bool commentsLoaded;
int commentsTotal;
int commentsPageNumber;
threadInfo * updateSaveDataInfo;
pthread_t updateSaveDataThread;
static void * updateSaveDataT(void * obj);
threadInfo * updateSaveInfoInfo;
pthread_t updateSaveInfoThread;
static void * updateSaveInfoT(void * obj);
threadInfo * updateSaveCommentsInfo;
pthread_t updateSaveCommentsThread;
static void * updateSaveCommentsT(void * obj);
public:
PreviewModel();
SaveInfo * GetSave();
std::vector<SaveComment*> * GetComments();
bool GetCommentBoxEnabled();
void SetCommentBoxEnabled(bool enabledState);
bool GetCommentsLoaded();
int GetCommentsPageNum();
int GetCommentsPageCount();
void UpdateComments(int pageNumber);
void AddObserver(PreviewView * observer);
void UpdateSave(int saveID, int saveDate);
void SetFavourite(bool favourite);
bool GetDoOpen();
void SetDoOpen(bool doOpen);
void Update();
virtual ~PreviewModel();
};
#endif /* PREVIEWMODEL_H */
|