mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
b74ecd92d2
fix #3085
222 lines
6.5 KiB
C++
222 lines
6.5 KiB
C++
/*
|
|
Copyright © 2015 by The qTox Project
|
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
qTox 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.
|
|
|
|
qTox 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 qTox. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "groupinviteform.h"
|
|
|
|
#include <tox/tox.h>
|
|
#include <QDebug>
|
|
#include <QSignalMapper>
|
|
#include <QPushButton>
|
|
#include <QBoxLayout>
|
|
#include <QGroupBox>
|
|
#include <QDateTime>
|
|
#include <QLabel>
|
|
#include <QWindow>
|
|
#include "ui_mainwindow.h"
|
|
#include "src/widget/tool/croppinglabel.h"
|
|
#include "src/widget/translator.h"
|
|
#include "src/nexus.h"
|
|
#include "src/core/core.h"
|
|
#include "src/widget/gui.h"
|
|
#include "src/widget/translator.h"
|
|
#include "src/widget/contentlayout.h"
|
|
|
|
GroupInviteForm::GroupInviteForm()
|
|
{
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
|
createButton = new QPushButton(this);
|
|
connect(createButton, &QPushButton::released, [this]()
|
|
{
|
|
emit groupCreate(TOX_GROUPCHAT_TYPE_AV);
|
|
});
|
|
|
|
inviteBox = new QGroupBox(this);
|
|
inviteLayout = new QVBoxLayout(inviteBox);
|
|
|
|
scroll = new QScrollArea(this);
|
|
|
|
QWidget* innerWidget = new QWidget(scroll);
|
|
innerWidget->setLayout(new QVBoxLayout());
|
|
innerWidget->layout()->setAlignment(Qt::AlignTop);
|
|
scroll->setWidget(innerWidget);
|
|
scroll->setWidgetResizable(true);
|
|
|
|
inviteLayout->addWidget(scroll);
|
|
|
|
layout->addWidget(createButton);
|
|
layout->addWidget(inviteBox);
|
|
|
|
QFont bold;
|
|
bold.setBold(true);
|
|
|
|
headLabel = new QLabel(this);
|
|
headLabel->setFont(bold);
|
|
headWidget = new QWidget(this);
|
|
QHBoxLayout* headLayout = new QHBoxLayout(headWidget);
|
|
headLayout->addWidget(headLabel);
|
|
|
|
retranslateUi();
|
|
Translator::registerHandler(std::bind(&GroupInviteForm::retranslateUi, this), this);
|
|
}
|
|
|
|
GroupInviteForm::~GroupInviteForm()
|
|
{
|
|
Translator::unregister(this);
|
|
}
|
|
|
|
bool GroupInviteForm::isShown() const
|
|
{
|
|
if (this->isVisible())
|
|
{
|
|
headWidget->window()->windowHandle()->alert(0);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void GroupInviteForm::show(ContentLayout* contentLayout)
|
|
{
|
|
contentLayout->mainContent->layout()->addWidget(this);
|
|
contentLayout->mainHead->layout()->addWidget(headWidget);
|
|
QWidget::show();
|
|
headWidget->show();
|
|
}
|
|
|
|
void GroupInviteForm::addGroupInvite(int32_t friendId, uint8_t type, QByteArray invite)
|
|
{
|
|
QWidget* groupWidget = new QWidget(this);
|
|
QHBoxLayout* groupLayout = new QHBoxLayout(groupWidget);
|
|
|
|
CroppingLabel* groupLabel = new CroppingLabel(this);
|
|
groupLabels.insert(groupLabel);
|
|
QString name = Nexus::getCore()->getFriendUsername(friendId);
|
|
QString time = QDateTime::currentDateTime().toString();
|
|
groupLabel->setText(tr("Invited by <b>%1</b> on %2.").arg(name, time));
|
|
groupLayout->addWidget(groupLabel);
|
|
|
|
QPushButton* acceptButton = new QPushButton(this);
|
|
acceptButtons.insert(acceptButton);
|
|
connect(acceptButton, &QPushButton::released, this, &GroupInviteForm::onGroupInviteAccepted);
|
|
groupLayout->addWidget(acceptButton);
|
|
retranslateAcceptButton(acceptButton);
|
|
|
|
QPushButton* rejectButton = new QPushButton(this);
|
|
rejectButtons.insert(rejectButton);
|
|
connect(rejectButton, &QPushButton::released, this, &GroupInviteForm::onGroupInviteRejected);
|
|
groupLayout->addWidget(rejectButton);
|
|
retranslateRejectButton(rejectButton);
|
|
|
|
scroll->widget()->layout()->addWidget(groupWidget);
|
|
|
|
GroupInvite group;
|
|
group.friendId = friendId;
|
|
group.type = type;
|
|
group.invite = invite;
|
|
group.time = QDateTime::currentDateTime();
|
|
groupInvites.push_front(group);
|
|
|
|
if (isVisible())
|
|
emit groupInvitesSeen();
|
|
}
|
|
|
|
void GroupInviteForm::showEvent(QShowEvent* event)
|
|
{
|
|
QWidget::showEvent(event);
|
|
emit groupInvitesSeen();
|
|
}
|
|
|
|
void GroupInviteForm::onGroupInviteAccepted()
|
|
{
|
|
QPushButton* acceptButton = static_cast<QPushButton*>(sender());
|
|
QWidget* groupWidget = acceptButton->parentWidget();
|
|
int index = scroll->widget()->layout()->indexOf(groupWidget);
|
|
GroupInvite invite = groupInvites.at(index);
|
|
groupInvites.removeAt(index);
|
|
|
|
deleteInviteButtons(groupWidget);
|
|
|
|
emit groupInviteAccepted(invite.friendId, invite.type, invite.invite);
|
|
}
|
|
|
|
void GroupInviteForm::onGroupInviteRejected()
|
|
{
|
|
QPushButton* rejectButton = static_cast<QPushButton*>(sender());
|
|
QWidget* groupWidget = rejectButton->parentWidget();
|
|
int index = scroll->widget()->layout()->indexOf(groupWidget);
|
|
groupInvites.removeAt(index);
|
|
|
|
deleteInviteButtons(groupWidget);
|
|
}
|
|
|
|
void GroupInviteForm::deleteInviteButtons(QWidget* widget)
|
|
{
|
|
QList<QPushButton*> buttons = widget->findChildren<QPushButton*>();
|
|
|
|
QSet<QPushButton*> set = QSet<QPushButton*>::fromList(buttons);
|
|
acceptButtons.subtract(set);
|
|
rejectButtons.subtract(set);
|
|
|
|
QList<CroppingLabel*> labels = widget->findChildren<CroppingLabel*>();
|
|
groupLabels.remove(labels.at(0));
|
|
|
|
widget->deleteLater();
|
|
scroll->widget()->layout()->removeWidget(widget);
|
|
}
|
|
|
|
void GroupInviteForm::retranslateUi()
|
|
{
|
|
headLabel->setText(tr("Groups"));
|
|
if(createButton)
|
|
{
|
|
createButton->setText(tr("Create new group"));
|
|
}
|
|
inviteBox->setTitle(tr("Group invites"));
|
|
|
|
for (QPushButton* acceptButton : acceptButtons)
|
|
retranslateAcceptButton(acceptButton);
|
|
|
|
for (QPushButton* rejectButton : rejectButtons)
|
|
retranslateRejectButton(rejectButton);
|
|
|
|
for (CroppingLabel* label : groupLabels)
|
|
retranslateGroupLabel(label);
|
|
}
|
|
|
|
void GroupInviteForm::retranslateGroupLabel(CroppingLabel* label)
|
|
{
|
|
QWidget* groupWidget = label->parentWidget();
|
|
int index = scroll->widget()->layout()->indexOf(groupWidget);
|
|
GroupInvite invite = groupInvites.at(index);
|
|
|
|
QString name = Nexus::getCore()->getFriendUsername(invite.friendId);
|
|
QString date = invite.time.toString();
|
|
label->setText(tr("Invited by <b>%1</b> on %2.").arg(name, date));
|
|
}
|
|
|
|
void GroupInviteForm::retranslateAcceptButton(QPushButton* acceptButton)
|
|
{
|
|
acceptButton->setText(tr("Join"));
|
|
}
|
|
|
|
void GroupInviteForm::retranslateRejectButton(QPushButton* rejectButton)
|
|
{
|
|
rejectButton->setText(tr("Decline"));
|
|
}
|