mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
de8f4f283c
Also: - modified TokenQueue to include MSGRELATEDLIST & new Request Options. - updated PhotoDialog to include new Options for requests. git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-new_cache_system@5205 b45a01b8-16f6-495d-af2f-9b41ad6348cc
71 lines
1.7 KiB
C++
71 lines
1.7 KiB
C++
/*
|
|
* Retroshare Wiki Plugin.
|
|
*
|
|
* Copyright 2012-2012 by Robert Fernie.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License Version 2.1 as published by the Free Software Foundation.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
*
|
|
*/
|
|
|
|
#ifndef MRK_WIKI_EDIT_DIALOG_H
|
|
#define MRK_WIKI_EDIT_DIALOG_H
|
|
|
|
#include "ui_WikiEditDialog.h"
|
|
|
|
#include <retroshare/rswiki.h>
|
|
#include "util/TokenQueue.h"
|
|
|
|
class WikiEditDialog : public QWidget, public TokenResponse
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
WikiEditDialog(QWidget *parent = 0);
|
|
|
|
void setNewPage();
|
|
|
|
void setupData(const std::string &groupId, const std::string &pageId);
|
|
void loadRequest(const TokenQueue *queue, const TokenRequest &req);
|
|
|
|
private slots:
|
|
|
|
void cancelEdit();
|
|
void revertEdit();
|
|
void submitEdit();
|
|
|
|
private:
|
|
|
|
void setGroup(RsWikiGroup &group);
|
|
void setPreviousPage(RsWikiPage &page);
|
|
|
|
void requestPage(const std::string &msgId);
|
|
void loadPage(const uint32_t &token);
|
|
void requestGroup(const std::string &groupId);
|
|
void loadGroup(const uint32_t &token);
|
|
|
|
bool mNewPage;
|
|
RsWikiGroup mWikiGroup;
|
|
RsWikiPage mWikiPage;
|
|
|
|
Ui::WikiEditDialog ui;
|
|
|
|
TokenQueue *mWikiQueue;
|
|
};
|
|
|
|
#endif
|
|
|