mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
627b0ca54a
- Added To, Cc, Bcc and Recommend friends - Added group support - Show state of the friends in real time - Save state of the window in profile - Translated into german Added "Message group" to PeersDialog git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3541 b45a01b8-16f6-495d-af2f-9b41ad6348cc
398 lines
9.1 KiB
C++
398 lines
9.1 KiB
C++
/****************************************************************
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2008 Robert Fernie
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#include <QDateTime>
|
|
#include <QTimer>
|
|
|
|
#include "PeerItem.h"
|
|
#include "FeedHolder.h"
|
|
#include "../RsAutoUpdatePage.h"
|
|
#include "gui/msgs/MessageComposer.h"
|
|
|
|
#include "gui/notifyqt.h"
|
|
|
|
#include <retroshare/rsmsgs.h>
|
|
#include <retroshare/rspeers.h>
|
|
|
|
#include <sstream>
|
|
|
|
/*****
|
|
* #define DEBUG_ITEM 1
|
|
****/
|
|
|
|
/** Constructor */
|
|
PeerItem::PeerItem(FeedHolder *parent, uint32_t feedId, std::string peerId, uint32_t type, bool isHome)
|
|
:QWidget(NULL), mParent(parent), mFeedId(feedId),
|
|
mPeerId(peerId), mType(type), mIsHome(isHome)
|
|
{
|
|
/* Invoke the Qt Designer generated object setup routine */
|
|
setupUi(this);
|
|
|
|
messageframe->setVisible(false);
|
|
sendmsgButton->setEnabled(false);
|
|
|
|
/* general ones */
|
|
connect( expandButton, SIGNAL( clicked( void ) ), this, SLOT( toggle ( void ) ) );
|
|
connect( clearButton, SIGNAL( clicked( void ) ), this, SLOT( removeItem ( void ) ) );
|
|
|
|
/* specific ones */
|
|
connect( chatButton, SIGNAL( clicked( void ) ), this, SLOT( openChat ( void ) ) );
|
|
connect( actionNew_Message, SIGNAL( triggered( ) ), this, SLOT( sendMsg ( void ) ) );
|
|
|
|
connect( quickmsgButton, SIGNAL( clicked( ) ), this, SLOT( togglequickmessage() ) );
|
|
connect( cancelButton, SIGNAL( clicked( ) ), this, SLOT( togglequickmessage() ) );
|
|
|
|
connect( sendmsgButton, SIGNAL( clicked( ) ), this, SLOT( sendMessage() ) );
|
|
|
|
connect(NotifyQt::getInstance(), SIGNAL(peerHasNewAvatar(const QString&)), this, SLOT(updateAvatar(const QString&)));
|
|
|
|
QMenu *msgmenu = new QMenu();
|
|
msgmenu->addAction(actionNew_Message);
|
|
|
|
quickmsgButton->setMenu(msgmenu);
|
|
|
|
small();
|
|
updateItemStatic();
|
|
updateItem();
|
|
updateAvatar(QString::fromStdString(mPeerId));
|
|
}
|
|
|
|
|
|
void PeerItem::updateItemStatic()
|
|
{
|
|
if (!rsPeers)
|
|
return;
|
|
|
|
|
|
/* fill in */
|
|
#ifdef DEBUG_ITEM
|
|
std::cerr << "PeerItem::updateItemStatic()";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
|
|
RsPeerDetails details;
|
|
if (rsPeers->getPeerDetails(mPeerId, details))
|
|
{
|
|
QString title;
|
|
|
|
switch(mType)
|
|
{
|
|
case PEER_TYPE_STD:
|
|
title = tr("Friend");
|
|
break;
|
|
case PEER_TYPE_CONNECT:
|
|
title = tr("Friend Connected");
|
|
break;
|
|
case PEER_TYPE_HELLO:
|
|
title = tr("Connect Attempt");
|
|
break;
|
|
case PEER_TYPE_NEW_FOF:
|
|
title = tr("Friend of Friend");
|
|
break;
|
|
default:
|
|
title = tr("Peer");
|
|
break;
|
|
}
|
|
|
|
titleLabel->setText(title);
|
|
|
|
/* set textcolor for peername */
|
|
QString nameStr("<span style=\"font-size:14pt; font-weight:500;"
|
|
"color:#990033;\">%1</span>");
|
|
|
|
/* set Blog name */
|
|
QString peername = QString::fromStdString(details.name);
|
|
peernameLabel->setText(nameStr.arg(peername));
|
|
|
|
/* expanded Info */
|
|
nameLabel->setText(QString::fromStdString(details.name));
|
|
idLabel->setText(QString::fromStdString(details.id));
|
|
locLabel->setText(QString::fromStdString(details.location));
|
|
}
|
|
else
|
|
{
|
|
statusLabel->setText(tr("Unknown Peer"));
|
|
titleLabel->setText(tr("Unknown Peer"));
|
|
trustLabel->setText(tr("Unknown Peer"));
|
|
nameLabel->setText(tr("Unknown Peer"));
|
|
idLabel->setText(tr("Unknown Peer"));
|
|
locLabel->setText(tr("Unknown Peer"));
|
|
ipLabel->setText(tr("Unknown Peer"));
|
|
connLabel->setText(tr("Unknown Peer"));
|
|
lastLabel->setText(tr("Unknown Peer"));
|
|
|
|
chatButton->setEnabled(false);
|
|
|
|
}
|
|
|
|
if (mIsHome)
|
|
{
|
|
/* disable buttons */
|
|
clearButton->setEnabled(false);
|
|
//gotoButton->setEnabled(false);
|
|
|
|
/* disable buttons */
|
|
clearButton->hide();
|
|
}
|
|
|
|
}
|
|
|
|
|
|
void PeerItem::updateItem()
|
|
{
|
|
if (!rsPeers)
|
|
return;
|
|
|
|
/* fill in */
|
|
#ifdef DEBUG_ITEM
|
|
std::cerr << "PeerItem::updateItem()";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
if(!RsAutoUpdatePage::eventsLocked()) {
|
|
RsPeerDetails details;
|
|
if (!rsPeers->getPeerDetails(mPeerId, details))
|
|
{
|
|
return;
|
|
}
|
|
|
|
/* top Level info */
|
|
QString status = QString::fromStdString(RsPeerStateString(details.state));
|
|
|
|
#if 0
|
|
/* Append additional status info from status service */
|
|
StatusInfo statusInfo;
|
|
if ((rsStatus) && (rsStatus->getStatus(*it, statusInfo)))
|
|
{
|
|
status.append(QString::fromStdString("/" + RsStatusString(statusInfo.status)));
|
|
}
|
|
#endif
|
|
statusLabel->setText(status);
|
|
trustLabel->setText(QString::fromStdString(
|
|
RsPeerTrustString(details.trustLvl)));
|
|
|
|
{
|
|
std::ostringstream out;
|
|
out << details.localAddr << ":";
|
|
out << details.localPort << "/";
|
|
out << details.extAddr << ":";
|
|
out << details.extPort;
|
|
ipLabel->setText(QString::fromStdString(out.str()));
|
|
}
|
|
|
|
connLabel->setText(QString::fromStdString(details.autoconnect));
|
|
QDateTime date = QDateTime::fromTime_t(details.lastConnect);
|
|
QString stime = date.toString(Qt::LocalDate);
|
|
lastLabel-> setText(stime);
|
|
|
|
/* do buttons */
|
|
chatButton->setEnabled(details.state & RS_PEER_STATE_CONNECTED);
|
|
if (details.state & RS_PEER_STATE_FRIEND)
|
|
{
|
|
//addButton->setEnabled(false);
|
|
//removeButton->setEnabled(true);
|
|
quickmsgButton->setEnabled(true);
|
|
}
|
|
else
|
|
{
|
|
//addButton->setEnabled(true);
|
|
//removeButton->setEnabled(false);
|
|
quickmsgButton->setEnabled(false);
|
|
}
|
|
}
|
|
|
|
/* slow Tick */
|
|
int msec_rate = 10129;
|
|
|
|
QTimer::singleShot( msec_rate, this, SLOT(updateItem( void ) ));
|
|
return;
|
|
}
|
|
|
|
void PeerItem::small()
|
|
{
|
|
expandFrame->hide();
|
|
}
|
|
|
|
void PeerItem::toggle()
|
|
{
|
|
if (expandFrame->isHidden())
|
|
{
|
|
expandFrame->show();
|
|
expandButton->setIcon(QIcon(QString(":/images/edit_remove24.png")));
|
|
expandButton->setToolTip(tr("Hide"));
|
|
}
|
|
else
|
|
{
|
|
expandFrame->hide();
|
|
expandButton->setIcon(QIcon(QString(":/images/edit_add24.png")));
|
|
expandButton->setToolTip(tr("Expand"));
|
|
}
|
|
}
|
|
|
|
|
|
void PeerItem::removeItem()
|
|
{
|
|
#ifdef DEBUG_ITEM
|
|
std::cerr << "PeerItem::removeItem()";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
hide();
|
|
if (mParent)
|
|
{
|
|
mParent->deleteFeedItem(this, mFeedId);
|
|
}
|
|
}
|
|
|
|
|
|
void PeerItem::gotoHome()
|
|
{
|
|
#ifdef DEBUG_ITEM
|
|
std::cerr << "PeerItem::gotoHome()";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
}
|
|
|
|
/*********** SPECIFIC FUNCTIOSN ***********************/
|
|
|
|
void PeerItem::addFriend()
|
|
{
|
|
#ifdef DEBUG_ITEM
|
|
std::cerr << "PeerItem::addFriend()";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
void PeerItem::removeFriend()
|
|
{
|
|
#ifdef DEBUG_ITEM
|
|
std::cerr << "PeerItem::removeFriend()";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
}
|
|
|
|
|
|
|
|
void PeerItem::sendMsg()
|
|
{
|
|
#ifdef DEBUG_ITEM
|
|
std::cerr << "PeerItem::sendMsg()";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
|
|
if (mParent)
|
|
{
|
|
//mParent->openMsg(FEEDHOLDER_MSG_MESSAGE, mPeerId, "");
|
|
|
|
MessageComposer *nMsgDialog = new MessageComposer();
|
|
nMsgDialog->newMsg();
|
|
|
|
nMsgDialog->addRecipient(MessageComposer::TO, mPeerId, false);
|
|
nMsgDialog->show();
|
|
nMsgDialog->activateWindow();
|
|
|
|
/* window will destroy itself! */
|
|
}
|
|
}
|
|
|
|
|
|
void PeerItem::openChat()
|
|
{
|
|
#ifdef DEBUG_ITEM
|
|
std::cerr << "PeerItem::openChat()";
|
|
std::cerr << std::endl;
|
|
#endif
|
|
if (mParent)
|
|
{
|
|
mParent->openChat(mPeerId);
|
|
}
|
|
}
|
|
|
|
void PeerItem::updateAvatar(const QString &peer_id)
|
|
{
|
|
if (peer_id.toStdString() != mPeerId) {
|
|
/* it 's not me */
|
|
return;
|
|
}
|
|
|
|
unsigned char *data = NULL;
|
|
int size = 0 ;
|
|
|
|
rsMsgs->getAvatarData(mPeerId,data,size);
|
|
|
|
|
|
if(size != 0)
|
|
{
|
|
// set the image
|
|
QPixmap pix ;
|
|
pix.loadFromData(data,size,"PNG") ;
|
|
avatar_label->setPixmap(pix);
|
|
delete[] data ;
|
|
|
|
}
|
|
else
|
|
{
|
|
avatar_label->setPixmap(QPixmap(":/images/user/personal64.png"));
|
|
}
|
|
|
|
|
|
}
|
|
|
|
void PeerItem::togglequickmessage()
|
|
{
|
|
if (messageframe->isHidden())
|
|
{
|
|
messageframe->setVisible(true);
|
|
}
|
|
else
|
|
{
|
|
messageframe->setVisible(false);
|
|
}
|
|
|
|
}
|
|
|
|
void PeerItem::sendMessage()
|
|
{
|
|
/* construct a message */
|
|
MessageInfo mi;
|
|
|
|
mi.title = tr("Quick Message").toStdWString();
|
|
mi.msg = quickmsgText->toHtml().toStdWString();
|
|
mi.msgto.push_back(mPeerId);
|
|
|
|
rsMsgs->MessageSend(mi);
|
|
|
|
quickmsgText->clear();
|
|
messageframe->setVisible(false);
|
|
}
|
|
|
|
void PeerItem::on_quickmsgText_textChanged()
|
|
{
|
|
if (quickmsgText->toPlainText().isEmpty())
|
|
{
|
|
sendmsgButton->setEnabled(false);
|
|
}
|
|
else
|
|
{
|
|
sendmsgButton->setEnabled(true);
|
|
}
|
|
}
|