1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/widget/form/groupchatform.cpp

119 lines
3.3 KiB
C++
Raw Normal View History

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 "groupchatform.h"
#include "group.h"
#include "widget/groupwidget.h"
2014-09-11 21:44:34 +08:00
#include "widget/tool/chattextedit.h"
#include "widget/croppinglabel.h"
#include "widget/maskablepixmapwidget.h"
2014-09-26 00:03:25 +08:00
#include "core.h"
#include "style.h"
2014-09-11 21:44:34 +08:00
#include <QPushButton>
2014-09-26 00:03:25 +08:00
#include <QMimeData>
#include <QDragEnterEvent>
2014-06-25 04:11:11 +08:00
GroupChatForm::GroupChatForm(Group* chatGroup)
: group(chatGroup)
2014-06-25 04:11:11 +08:00
{
2014-09-05 23:29:14 +08:00
nusersLabel = new QLabel();
namesList = new QLabel();
fileButton->setEnabled(false);
callButton->setVisible(false);
videoButton->setVisible(false);
volButton->setVisible(false);
micButton->setVisible(false);
2014-06-25 04:11:11 +08:00
QFont small;
small.setPixelSize(10);
nameLabel->setText(group->widget->name.text());
nusersLabel->setFont(Style::getFont(Style::Medium));
2014-09-05 23:29:14 +08:00
nusersLabel->setText(GroupChatForm::tr("%1 users in chat","Number of users in chat").arg(group->peers.size()));
QPalette pal; pal.setColor(QPalette::WindowText, Style::getColor(Style::MediumGrey));
nusersLabel->setPalette(pal);
avatar->setPixmap(QPixmap(":/img/group_dark.png"), Qt::transparent);
2014-06-25 04:11:11 +08:00
QString names;
for (QString& s : group->peers)
names.append(s+", ");
names.chop(2);
namesList->setText(names);
namesList->setFont(small);
msgEdit->setObjectName("group");
2014-09-05 23:29:14 +08:00
headTextLayout->addWidget(nusersLabel);
2014-06-25 04:11:11 +08:00
headTextLayout->addWidget(namesList);
headTextLayout->setMargin(0);
headTextLayout->setSpacing(0);
headTextLayout->addStretch();
connect(sendButton, SIGNAL(clicked()), this, SLOT(onSendTriggered()));
connect(msgEdit, SIGNAL(enterPressed()), this, SLOT(onSendTriggered()));
2014-09-26 00:03:25 +08:00
setAcceptDrops(true);
2014-06-25 04:11:11 +08:00
}
void GroupChatForm::onSendTriggered()
{
QString msg = msgEdit->toPlainText();
if (msg.isEmpty())
return;
msgEdit->clear();
emit sendMessage(group->groupId, msg);
}
void GroupChatForm::addGroupMessage(QString message, int peerId)
{
2014-09-05 23:24:29 +08:00
QString msgAuthor;
2014-06-25 04:11:11 +08:00
if (group->peers.contains(peerId))
2014-09-05 23:24:29 +08:00
msgAuthor = group->peers[peerId];
2014-06-25 04:11:11 +08:00
else
2014-09-05 23:24:29 +08:00
msgAuthor = tr("<Unknown>");
2014-06-25 04:11:11 +08:00
2014-09-05 23:24:29 +08:00
addMessage(msgAuthor, message);
2014-06-25 04:11:11 +08:00
}
void GroupChatForm::onUserListChanged()
{
2014-09-05 23:29:14 +08:00
nusersLabel->setText(tr("%1 users in chat").arg(group->nPeers));
2014-06-25 04:11:11 +08:00
QString names;
for (QString& s : group->peers)
names.append(s+", ");
names.chop(2);
namesList->setText(names);
}
2014-09-26 00:03:25 +08:00
void GroupChatForm::dragEnterEvent(QDragEnterEvent *ev)
{
if (ev->mimeData()->hasFormat("friend"))
ev->acceptProposedAction();
}
void GroupChatForm::dropEvent(QDropEvent *ev)
{
if (ev->mimeData()->hasFormat("friend"))
{
int friendId = ev->mimeData()->data("friend").toInt();
Core::getInstance()->groupInviteFriend(friendId, group->groupId);
}
}