2014-07-07 00:19:45 +08:00
|
|
|
/*
|
|
|
|
Copyright (C) 2014 by Project Tox <https://tox.im>
|
|
|
|
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
|
|
|
This program is libre 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 3 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 COPYING file for more details.
|
|
|
|
*/
|
|
|
|
|
2014-06-25 04:11:11 +08:00
|
|
|
#include "friend.h"
|
|
|
|
#include "friendlist.h"
|
2014-06-27 06:42:45 +08:00
|
|
|
#include "widget/friendwidget.h"
|
2014-09-11 21:44:34 +08:00
|
|
|
#include "widget/form/chatform.h"
|
2014-11-09 00:53:00 +08:00
|
|
|
#include "widget/widget.h"
|
2014-06-25 04:11:11 +08:00
|
|
|
|
|
|
|
Friend::Friend(int FriendId, QString UserId)
|
2014-11-06 23:26:22 +08:00
|
|
|
: friendId(FriendId)
|
2014-06-25 04:11:11 +08:00
|
|
|
{
|
2014-11-06 23:26:22 +08:00
|
|
|
widget = new FriendWidget(friendId, UserId);
|
2014-06-25 04:11:11 +08:00
|
|
|
chatForm = new ChatForm(this);
|
2014-08-31 22:48:15 +08:00
|
|
|
hasNewEvents = 0;
|
2014-06-28 00:12:43 +08:00
|
|
|
friendStatus = Status::Offline;
|
2014-11-06 23:26:22 +08:00
|
|
|
userID = ToxID::fromString(UserId);
|
2014-11-08 01:15:42 +08:00
|
|
|
userName = UserId;
|
2014-06-25 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Friend::~Friend()
|
|
|
|
{
|
|
|
|
delete chatForm;
|
|
|
|
delete widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Friend::setName(QString name)
|
|
|
|
{
|
2014-11-06 23:26:22 +08:00
|
|
|
userName = name;
|
|
|
|
if (userAlias.size() == 0)
|
|
|
|
{
|
|
|
|
widget->setName(name);
|
|
|
|
chatForm->setName(name);
|
2014-11-09 00:53:00 +08:00
|
|
|
|
|
|
|
if (widget->isActive())
|
|
|
|
Widget::getInstance()->setWindowTitle(name + " - qTox");
|
2014-11-06 23:26:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Friend::setAlias(QString name)
|
|
|
|
{
|
|
|
|
userAlias = name;
|
|
|
|
QString dispName = userAlias.size() == 0 ? userName : userAlias;
|
|
|
|
|
|
|
|
widget->setName(dispName);
|
|
|
|
chatForm->setName(dispName);
|
2014-06-25 04:11:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Friend::setStatusMessage(QString message)
|
|
|
|
{
|
2014-10-01 17:13:49 +08:00
|
|
|
widget->setStatusMsg(message);
|
2014-06-25 04:11:11 +08:00
|
|
|
chatForm->setStatusMessage(message);
|
|
|
|
}
|
|
|
|
|
2014-11-06 23:26:22 +08:00
|
|
|
QString Friend::getDisplayedName() const
|
|
|
|
{
|
|
|
|
if (userAlias.size() == 0)
|
|
|
|
return userName;
|
|
|
|
return userAlias;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ToxID &Friend::getToxID() const
|
|
|
|
{
|
|
|
|
return userID;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Friend::getFriendID() const
|
|
|
|
{
|
|
|
|
return friendId;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Friend::setEventFlag(int f)
|
|
|
|
{
|
|
|
|
hasNewEvents = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Friend::getEventFlag() const
|
|
|
|
{
|
|
|
|
return hasNewEvents;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Friend::setStatus(Status s)
|
|
|
|
{
|
|
|
|
friendStatus = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status Friend::getStatus() const
|
|
|
|
{
|
|
|
|
return friendStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
ChatForm *Friend::getChatForm()
|
2014-06-25 04:11:11 +08:00
|
|
|
{
|
2014-11-06 23:26:22 +08:00
|
|
|
return chatForm;
|
2014-06-25 04:11:11 +08:00
|
|
|
}
|
2014-11-03 01:36:27 +08:00
|
|
|
|
2014-11-06 23:26:22 +08:00
|
|
|
FriendWidget *Friend::getFriendWidget()
|
2014-11-03 01:36:27 +08:00
|
|
|
{
|
2014-11-06 23:26:22 +08:00
|
|
|
return widget;
|
2014-11-03 01:36:27 +08:00
|
|
|
}
|