2012-07-01 19:05:03 -04:00
|
|
|
/*
|
|
|
|
* Retroshare Posted 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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QBuffer>
|
2012-07-28 05:25:10 -04:00
|
|
|
#include <time.h>
|
2012-07-01 19:05:03 -04:00
|
|
|
|
|
|
|
#include "PostedItem.h"
|
|
|
|
|
2012-10-21 15:45:35 -04:00
|
|
|
#include <retroshare/rsposted.h>
|
2012-07-01 19:05:03 -04:00
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
|
|
/** Constructor */
|
2012-11-22 17:40:31 -05:00
|
|
|
PostedItem::PostedItem(PostedHolder *postHolder, const RsPostedPost &post)
|
|
|
|
:QWidget(NULL), mPostHolder(postHolder)
|
2012-07-01 19:05:03 -04:00
|
|
|
{
|
|
|
|
setupUi(this);
|
|
|
|
setAttribute ( Qt::WA_DeleteOnClose, true );
|
|
|
|
|
2012-11-22 17:40:31 -05:00
|
|
|
QDateTime qtime;
|
|
|
|
qtime.setTime_t(mPost.mMeta.mPublishTs);
|
|
|
|
QString timestamp = qtime.toString("dd.MMMM yyyy hh:mm");
|
|
|
|
dateLabel->setText(timestamp);
|
2012-07-01 19:05:03 -04:00
|
|
|
fromLabel->setText(QString::fromUtf8(post.mMeta.mAuthorId.c_str()));
|
2012-11-22 17:40:31 -05:00
|
|
|
titleLabel->setText("<a href=" + QString::fromStdString(post.mLink) +
|
|
|
|
"><span style=\" text-decoration: underline; color:#0000ff;\">" +
|
|
|
|
QString::fromStdString(post.mMeta.mMsgName) + "</span></a>");
|
|
|
|
siteLabel->setText("<a href=" + QString::fromStdString(post.mLink) +
|
|
|
|
"><span style=\" text-decoration: underline; color:#0000ff;\">" +
|
|
|
|
QString::fromStdString(post.mLink) + "</span></a>");
|
2012-07-07 21:31:23 -04:00
|
|
|
|
2012-11-22 17:40:31 -05:00
|
|
|
scoreLabel->setText(QString("1"));
|
2012-07-31 21:47:53 -04:00
|
|
|
|
|
|
|
connect( commentButton, SIGNAL( clicked() ), this, SLOT( loadComments() ) );
|
|
|
|
|
2012-07-01 19:05:03 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-22 17:40:31 -05:00
|
|
|
RsPostedPost PostedItem::getPost() const
|
|
|
|
{
|
|
|
|
return mPost;
|
|
|
|
}
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-07-31 21:47:53 -04:00
|
|
|
void PostedItem::loadComments()
|
|
|
|
{
|
|
|
|
std::cerr << "PostedItem::loadComments() Requesting for " << mThreadId;
|
|
|
|
std::cerr << std::endl;
|
2012-11-22 17:40:31 -05:00
|
|
|
mPostHolder->showComments(mPost.mMeta.mMsgId);
|
2012-07-31 21:47:53 -04:00
|
|
|
}
|