mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
116 lines
3.4 KiB
C++
116 lines
3.4 KiB
C++
/*
|
|
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.
|
|
*/
|
|
|
|
#include "groupwidget.h"
|
|
#include "grouplist.h"
|
|
#include "group.h"
|
|
#include "misc/settings.h"
|
|
#include "widget/form/groupchatform.h"
|
|
#include "widget/maskablepixmapwidget.h"
|
|
#include "misc/style.h"
|
|
#include <QPalette>
|
|
#include <QMenu>
|
|
#include <QContextMenuEvent>
|
|
|
|
#include "ui_mainwindow.h"
|
|
|
|
GroupWidget::GroupWidget(int GroupId, QString Name)
|
|
: groupId{GroupId}
|
|
{
|
|
avatar->setPixmap(QPixmap(":img/group.png"), Qt::transparent);
|
|
statusPic.setPixmap(QPixmap(":img/status/dot_online.png"));
|
|
nameLabel->setText(Name);
|
|
|
|
Group* g = GroupList::findGroup(groupId);
|
|
if (g)
|
|
statusMessageLabel->setText(GroupWidget::tr("%1 users in chat").arg(g->peers.size()));
|
|
else
|
|
statusMessageLabel->setText(GroupWidget::tr("0 users in chat"));
|
|
}
|
|
|
|
void GroupWidget::contextMenuEvent(QContextMenuEvent * event)
|
|
{
|
|
QPoint pos = event->globalPos();
|
|
QMenu menu;
|
|
QAction* quitGroup = menu.addAction(tr("Quit group","Menu to quit a groupchat"));
|
|
|
|
QAction* selectedItem = menu.exec(pos);
|
|
if (selectedItem == quitGroup)
|
|
emit removeGroup(groupId);
|
|
}
|
|
|
|
void GroupWidget::onUserListChanged()
|
|
{
|
|
Group* g = GroupList::findGroup(groupId);
|
|
if (g)
|
|
statusMessageLabel->setText(tr("%1 users in chat").arg(g->nPeers));
|
|
else
|
|
statusMessageLabel->setText(tr("0 users in chat"));
|
|
}
|
|
|
|
void GroupWidget::setAsActiveChatroom()
|
|
{
|
|
setActive(true);
|
|
avatar->setPixmap(QPixmap(":img/group_dark.png"), Qt::transparent);
|
|
}
|
|
|
|
void GroupWidget::setAsInactiveChatroom()
|
|
{
|
|
setActive(false);
|
|
avatar->setPixmap(QPixmap(":img/group.png"), Qt::transparent);
|
|
}
|
|
|
|
void GroupWidget::updateStatusLight()
|
|
{
|
|
Group *g = GroupList::findGroup(groupId);
|
|
|
|
if (Settings::getInstance().getUseNativeDecoration())
|
|
{
|
|
if (g->hasNewMessages == 0)
|
|
{
|
|
statusPic.setPixmap(QPixmap(":img/status/dot_online.png"));
|
|
} else {
|
|
if (g->userWasMentioned == 0)
|
|
statusPic.setPixmap(QPixmap(":img/status/dot_online_notification.png"));
|
|
else
|
|
statusPic.setPixmap(QPixmap(":img/status/dot_online_notification.png"));
|
|
}
|
|
} else {
|
|
if (g->hasNewMessages == 0)
|
|
{
|
|
statusPic.setPixmap(QPixmap(":img/status/dot_groupchat.png"));
|
|
} else {
|
|
if (g->userWasMentioned == 0)
|
|
statusPic.setPixmap(QPixmap(":img/status/dot_groupchat_newmessages.png"));
|
|
else
|
|
statusPic.setPixmap(QPixmap(":img/status/dot_groupchat_notification.png"));
|
|
}
|
|
}
|
|
}
|
|
|
|
void GroupWidget::setChatForm(Ui::MainWindow &ui)
|
|
{
|
|
Group* g = GroupList::findGroup(groupId);
|
|
g->chatForm->show(ui);
|
|
}
|
|
|
|
void GroupWidget::resetEventFlags()
|
|
{
|
|
Group* g = GroupList::findGroup(groupId);
|
|
g->hasNewMessages = 0;
|
|
g->userWasMentioned = 0;
|
|
}
|