2013-03-11 16:53:15 -04:00
|
|
|
/*
|
|
|
|
* Retroshare Comment Dialog
|
|
|
|
*
|
|
|
|
* 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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gui/gxs/GxsCommentDialog.h"
|
|
|
|
|
|
|
|
//#include "gxs/GxsCreateComment.h"
|
|
|
|
//#include <retroshare/rsposted.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Constructor */
|
|
|
|
GxsCommentDialog::GxsCommentDialog(QWidget *parent, RsTokenService *token_service, RsGxsCommentService *comment_service)
|
|
|
|
:QWidget(parent)
|
|
|
|
{
|
2013-03-12 20:33:14 -04:00
|
|
|
ui.setupUi(this);
|
|
|
|
//ui.postFrame->setVisible(false);
|
2013-03-11 16:53:15 -04:00
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
ui.treeWidget->setup(token_service, comment_service);
|
|
|
|
|
|
|
|
/* fill in the available OwnIds for signing */
|
|
|
|
ui.idChooser->loadIds(IDCHOOSER_ID_REQUIRED, "");
|
|
|
|
|
|
|
|
connect(ui.refreshButton, SIGNAL(clicked()), this, SLOT(refresh()));
|
|
|
|
connect(ui.idChooser, SIGNAL(currentIndexChanged( int )), this, SLOT(voterSelectionChanged( int )));
|
|
|
|
|
|
|
|
/* force voterId through - first time */
|
|
|
|
voterSelectionChanged( 0 );
|
2013-03-11 16:53:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void GxsCommentDialog::commentLoad(const RsGxsGroupId &grpId, const RsGxsMessageId &msgId)
|
|
|
|
{
|
2013-03-12 20:33:14 -04:00
|
|
|
std::cerr << "GxsCommentDialog::commentLoad(" << grpId << ", " << msgId << ")";
|
2013-03-11 16:53:15 -04:00
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
mGrpId = grpId;
|
|
|
|
mMsgId = msgId;
|
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
RsGxsGrpMsgIdPair threadId;
|
2013-03-11 16:53:15 -04:00
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
threadId.first = grpId;
|
|
|
|
threadId.second = msgId;
|
2013-03-11 16:53:15 -04:00
|
|
|
|
|
|
|
ui.treeWidget->requestComments(threadId);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-12 20:33:14 -04:00
|
|
|
void GxsCommentDialog::refresh()
|
|
|
|
{
|
|
|
|
std::cerr << "GxsCommentDialog::refresh()";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
commentLoad(mGrpId, mMsgId);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void GxsCommentDialog::voterSelectionChanged( int index )
|
|
|
|
{
|
|
|
|
std::cerr << "GxsCommentDialog::voterSelectionChanged(" << index << ")";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
|
|
|
|
RsGxsId voterId;
|
|
|
|
if (ui.idChooser->getChosenId(voterId))
|
|
|
|
{
|
|
|
|
std::cerr << "GxsCommentDialog::voterSelectionChanged() => " << voterId;
|
|
|
|
std::cerr << std::endl;
|
|
|
|
ui.treeWidget->setVoteId(voterId);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr << "GxsCommentDialog::voterSelectionChanged() ERROR nothing selected";
|
|
|
|
std::cerr << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-11 16:53:15 -04:00
|
|
|
void GxsCommentDialog::setCommentHeader(GxsCommentHeader *header)
|
|
|
|
{
|
|
|
|
|
|
|
|
#if 0
|
2013-03-12 20:33:14 -04:00
|
|
|
ui.postFrame->setVisible(true);
|
|
|
|
|
|
|
|
QDateTime qtime;
|
|
|
|
qtime.setTime_t(mCurrentPost.mMeta.mPublishTs);
|
|
|
|
QString timestamp = qtime.toString("dd.MMMM yyyy hh:mm");
|
|
|
|
ui.dateLabel->setText(timestamp);
|
|
|
|
ui.fromLabel->setText(QString::fromUtf8(mCurrentPost.mMeta.mAuthorId.c_str()));
|
|
|
|
ui.titleLabel->setText("<a href=" + QString::fromStdString(mCurrentPost.mLink) +
|
|
|
|
"><span style=\" text-decoration: underline; color:#0000ff;\">" +
|
|
|
|
QString::fromStdString(mCurrentPost.mMeta.mMsgName) + "</span></a>");
|
|
|
|
ui.siteLabel->setText("<a href=" + QString::fromStdString(mCurrentPost.mLink) +
|
|
|
|
"><span style=\" text-decoration: underline; color:#0000ff;\">" +
|
|
|
|
QString::fromStdString(mCurrentPost.mLink) + "</span></a>");
|
|
|
|
|
|
|
|
ui.scoreLabel->setText(QString("0"));
|
|
|
|
|
|
|
|
ui.notesBrowser->setPlainText(QString::fromStdString(mCurrentPost.mNotes));
|
2013-03-11 16:53:15 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|