mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-08 06:08:12 -05:00
4edcec6fe9
- cleaned source code - added auto refresh Updated english translation git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6506 b45a01b8-16f6-495d-af2f-9b41ad6348cc
62 lines
1.5 KiB
C++
62 lines
1.5 KiB
C++
/*
|
|
* Retroshare Posted
|
|
*
|
|
* Copyright 2012-2013 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 POSTEDCREATEPOSTDIALOG_H
|
|
#define POSTEDCREATEPOSTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include "retroshare/rsposted.h"
|
|
|
|
class TokenQueue;
|
|
|
|
namespace Ui {
|
|
class PostedCreatePostDialog;
|
|
}
|
|
|
|
class PostedCreatePostDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/*!
|
|
* @param tokenQ parent callee token
|
|
* @param posted
|
|
*/
|
|
explicit PostedCreatePostDialog(TokenQueue* tokenQ, RsPosted* posted, const RsGxsGroupId& grpId, QWidget *parent = 0);
|
|
~PostedCreatePostDialog();
|
|
|
|
private slots:
|
|
void createPost();
|
|
|
|
private:
|
|
QString mLink;
|
|
QString mNotes;
|
|
TokenQueue* mTokenQueue;
|
|
RsPosted* mPosted;
|
|
RsGxsGroupId mGrpId;
|
|
|
|
Ui::PostedCreatePostDialog *ui;
|
|
};
|
|
|
|
#endif // POSTEDCREATEPOSTDIALOG_H
|