mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
64 lines
2.1 KiB
C++
64 lines
2.1 KiB
C++
|
/*
|
||
|
* RetroShare
|
||
|
* Copyright (C) 2012 RetroShare Team
|
||
|
*
|
||
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
#include "FriendRequestToaster.h"
|
||
|
#include "gui/FriendsDialog.h"
|
||
|
#include "gui/connect/FriendRequest.h"
|
||
|
|
||
|
#include <retroshare/rspeers.h>
|
||
|
|
||
|
FriendRequestToaster::FriendRequestToaster(const std::string &gpgId, const QString &sslName, const std::string &/*peerId*/)
|
||
|
: QWidget(NULL), mGpgId(gpgId)
|
||
|
{
|
||
|
/* Invoke the Qt Designer generated object setup routine */
|
||
|
ui.setupUi(this);
|
||
|
|
||
|
bool knownPeer = false;
|
||
|
RsPeerDetails details;
|
||
|
if (rsPeers->getGPGDetails(mGpgId, details)) {
|
||
|
knownPeer = true;
|
||
|
}
|
||
|
|
||
|
if (knownPeer) {
|
||
|
connect(ui.friendrequestButton, SIGNAL(clicked()), SLOT(friendrequestButtonSlot()));
|
||
|
} else {
|
||
|
ui.friendrequestButton->setEnabled(false);
|
||
|
}
|
||
|
connect(ui.closeButton, SIGNAL(clicked()), SLOT(hide()));
|
||
|
|
||
|
/* set informations */
|
||
|
ui.avatarWidget->setFrameType(AvatarWidget::NORMAL_FRAME);
|
||
|
if (knownPeer) {
|
||
|
ui.nameLabel->setText(QString::fromUtf8(details.name.c_str()));
|
||
|
ui.messageLabel->setText(tr("wants to be friend with you on RetroShare"));
|
||
|
ui.avatarWidget->setDefaultAvatar(":/images/avatar_request.png");
|
||
|
} else {
|
||
|
ui.nameLabel->setText(sslName);
|
||
|
ui.messageLabel->setText(tr("Unknown (Incoming) Connect Attempt"));
|
||
|
ui.avatarWidget->setDefaultAvatar(":/images/avatar_request_unknown.png");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void FriendRequestToaster::friendrequestButtonSlot()
|
||
|
{
|
||
|
FriendRequest *frDlg = new FriendRequest(mGpgId);
|
||
|
frDlg->show();
|
||
|
hide();
|
||
|
}
|