mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
417f66a566
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7789 b45a01b8-16f6-495d-af2f-9b41ad6348cc
93 lines
3.1 KiB
C++
93 lines
3.1 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".
|
|
*
|
|
*/
|
|
|
|
#include <QMessageBox>
|
|
#include "PostedCreatePostDialog.h"
|
|
#include "ui_PostedCreatePostDialog.h"
|
|
|
|
#include "util/TokenQueue.h"
|
|
|
|
#include <iostream>
|
|
|
|
PostedCreatePostDialog::PostedCreatePostDialog(TokenQueue* tokenQ, RsPosted *posted, const RsGxsGroupId& grpId, QWidget *parent):
|
|
QDialog(parent, Qt::WindowSystemMenuHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint),
|
|
mTokenQueue(tokenQ), mPosted(posted), mGrpId(grpId),
|
|
ui(new Ui::PostedCreatePostDialog)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
connect(ui->submitButton, SIGNAL(clicked()), this, SLOT(createPost()));
|
|
connect(ui->buttonBox, SIGNAL(rejected()), this, SLOT(close()));
|
|
|
|
ui->headerFrame->setHeaderImage(QPixmap(":/images/posted_64.png"));
|
|
ui->headerFrame->setHeaderText(tr("Submit a new Post"));
|
|
|
|
setAttribute ( Qt::WA_DeleteOnClose, true );
|
|
|
|
/* fill in the available OwnIds for signing */
|
|
ui->idChooser->loadIds(IDCHOOSER_ID_REQUIRED, RsGxsId());
|
|
}
|
|
|
|
PostedCreatePostDialog::~PostedCreatePostDialog()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void PostedCreatePostDialog::createPost()
|
|
{
|
|
RsGxsId authorId;
|
|
switch (ui->idChooser->getChosenId(authorId)) {
|
|
case GxsIdChooser::KnowId:
|
|
case GxsIdChooser::UnKnowId:
|
|
break;
|
|
case GxsIdChooser::NoId:
|
|
case GxsIdChooser::None:
|
|
default:
|
|
std::cerr << "PostedCreatePostDialog::createPost() ERROR GETTING AuthorId!, Post Failed";
|
|
std::cerr << std::endl;
|
|
|
|
QMessageBox::warning(this, tr("RetroShare"),tr("Please create or choose a Signing Id first"), QMessageBox::Ok, QMessageBox::Ok);
|
|
|
|
return;
|
|
}//switch (ui->idChooser->getChosenId(authorId))
|
|
|
|
RsPostedPost post;
|
|
post.mMeta.mGroupId = mGrpId;
|
|
post.mLink = std::string(ui->linkEdit->text().toUtf8());
|
|
post.mNotes = std::string(ui->notesTextEdit->toPlainText().toUtf8());
|
|
post.mMeta.mMsgName = std::string(ui->titleEdit->text().toUtf8());
|
|
post.mMeta.mAuthorId = authorId;
|
|
|
|
if(ui->titleEdit->text().isEmpty()) {
|
|
/* error message */
|
|
QMessageBox::warning(this, "RetroShare", tr("Please add a Title"), QMessageBox::Ok, QMessageBox::Ok);
|
|
return; //Don't add a empty title!!
|
|
}//if(ui->titleEdit->text().isEmpty())
|
|
|
|
uint32_t token;
|
|
mPosted->createPost(token, post);
|
|
// mTokenQueue->queueRequest(token, TOKENREQ_MSGINFO, RS_TOKREQ_ANSTYPE_ACK, TOKEN_USER_TYPE_POST);
|
|
|
|
accept();
|
|
}
|