RetroShare/retroshare-gui/src/gui/WikiPoos/WikiEditDialog.h

71 lines
1.7 KiB
C
Raw Normal View History

/*
* 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