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

105 lines
2.9 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 "groupwidget.h"
#include "grouplist.h"
#include "group.h"
2014-09-30 02:28:59 +08:00
#include "misc/settings.h"
#include "widget/form/groupchatform.h"
#include "widget/maskablepixmapwidget.h"
2014-10-01 22:17:09 +08:00
#include "misc/style.h"
2014-06-25 04:11:11 +08:00
#include <QPalette>
#include <QMenu>
#include <QContextMenuEvent>
#include "ui_mainwindow.h"
2014-06-25 04:11:11 +08:00
GroupWidget::GroupWidget(int GroupId, QString Name)
: groupId{GroupId}
{
avatar->setPixmap(QPixmap(":img/group.png"), Qt::transparent);
statusPic.setPixmap(QPixmap(":img/status/dot_online.png"));
2014-10-01 17:13:49 +08:00
nameLabel->setText(Name);
2014-06-25 04:11:11 +08:00
Group* g = GroupList::findGroup(groupId);
if (g)
2014-10-01 17:13:49 +08:00
statusMessageLabel->setText(GroupWidget::tr("%1 users in chat").arg(g->peers.size()));
2014-06-25 04:11:11 +08:00
else
2014-10-01 17:13:49 +08:00
statusMessageLabel->setText(GroupWidget::tr("0 users in chat"));
2014-06-25 04:11:11 +08:00
}
void GroupWidget::contextMenuEvent(QContextMenuEvent * event)
{
QPoint pos = event->globalPos();
QMenu menu;
2014-07-04 22:41:29 +08:00
QAction* quitGroup = menu.addAction(tr("Quit group","Menu to quit a groupchat"));
2014-06-25 04:11:11 +08:00
QAction* selectedItem = menu.exec(pos);
2014-07-04 22:41:29 +08:00
if (selectedItem == quitGroup)
emit removeGroup(groupId);
2014-06-25 04:11:11 +08:00
}
void GroupWidget::onUserListChanged()
{
Group* g = GroupList::findGroup(groupId);
if (g)
2014-10-01 17:13:49 +08:00
statusMessageLabel->setText(tr("%1 users in chat").arg(g->nPeers));
2014-06-25 04:11:11 +08:00
else
2014-10-01 17:13:49 +08:00
statusMessageLabel->setText(tr("0 users in chat"));
2014-06-25 04:11:11 +08:00
}
2014-06-27 09:47:16 +08:00
void GroupWidget::setAsActiveChatroom()
{
setActive(true);
avatar->setPixmap(QPixmap(":img/group_dark.png"), Qt::transparent);
2014-06-27 09:47:16 +08:00
}
void GroupWidget::setAsInactiveChatroom()
{
setActive(false);
avatar->setPixmap(QPixmap(":img/group.png"), Qt::transparent);
2014-06-27 09:47:16 +08:00
}
void GroupWidget::updateStatusLight()
{
Group *g = GroupList::findGroup(groupId);
if (g->hasNewMessages == 0)
{
2014-10-04 17:08:14 +08:00
statusPic.setPixmap(QPixmap(":img/status/dot_online.png"));
}
else
{
if (g->userWasMentioned == 0)
2014-10-04 17:08:14 +08:00
statusPic.setPixmap(QPixmap(":img/status/dot_online_notification.png"));
else
2014-10-04 17:08:14 +08:00
statusPic.setPixmap(QPixmap(":img/status/dot_online_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;
}