mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
744a78b140
disabled msg synchronisation by default through compilation #define (use GXS_ENABLE_MSG_SYNC to enable message sync) Finally removed v2 suffix from all photo components and filenames (please edit your libretroshare.pro file accordingly) git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5883 b45a01b8-16f6-495d-af2f-9b41ad6348cc
63 lines
1.2 KiB
C++
63 lines
1.2 KiB
C++
#ifndef PHOTODIALOG_H
|
|
#define PHOTODIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QSet>
|
|
#include "retroshare/rsphoto.h"
|
|
#include "util/TokenQueue.h"
|
|
#include "PhotoCommentItem.h"
|
|
|
|
namespace Ui {
|
|
class PhotoDialog;
|
|
}
|
|
|
|
class PhotoDialog : public QDialog, public TokenResponse
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PhotoDialog(RsPhoto* rs_photo, const RsPhotoPhoto& photo, QWidget *parent = 0);
|
|
~PhotoDialog();
|
|
|
|
private slots:
|
|
|
|
void addComment();
|
|
void createComment();
|
|
void setFullScreen();
|
|
|
|
public:
|
|
void loadRequest(const TokenQueue *queue, const TokenRequest &req);
|
|
private:
|
|
void setUp();
|
|
|
|
/*!
|
|
* clears comments
|
|
* and places them back in dialog
|
|
*/
|
|
void resetComments();
|
|
|
|
/*!
|
|
* Request comments
|
|
*/
|
|
void requestComments();
|
|
|
|
/*!
|
|
* Simply removes comments but doesn't place them back in dialog
|
|
*/
|
|
void clearComments();
|
|
|
|
void acknowledgeComment(uint32_t token);
|
|
void loadComment(uint32_t token);
|
|
void loadList(uint32_t token);
|
|
void addComment(const RsPhotoComment& comment);
|
|
private:
|
|
Ui::PhotoDialog *ui;
|
|
|
|
RsPhoto* mRsPhoto;
|
|
TokenQueue* mPhotoQueue;
|
|
RsPhotoPhoto mPhotoDetails;
|
|
QSet<PhotoCommentItem*> mComments;
|
|
};
|
|
|
|
#endif // PHOTODIALOG_H
|