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

195 lines
5.7 KiB
C++
Raw Normal View History

/*
Copyright © 2014-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 "genericchatroomwidget.h"
2015-06-06 07:44:47 +08:00
#include "src/widget/style.h"
#include "src/persistence/settings.h"
2014-10-08 12:26:25 +08:00
#include "maskablepixmapwidget.h"
2015-06-06 07:44:47 +08:00
#include "src/widget/tool/croppinglabel.h"
2015-06-11 00:11:50 +08:00
#include <QBoxLayout>
#include <QMouseEvent>
GenericChatroomWidget::GenericChatroomWidget(QWidget *parent)
2015-06-11 00:11:50 +08:00
: GenericChatItemWidget(parent), active{false}
{
2014-10-01 17:13:49 +08:00
// avatar
2015-06-11 00:11:50 +08:00
if (isCompact())
avatar = new MaskablePixmapWidget(this, QSize(20,20), ":/img/avatar_mask.svg");
else
avatar = new MaskablePixmapWidget(this, QSize(40,40), ":/img/avatar_mask.svg");
2014-10-01 17:13:49 +08:00
// status text
statusMessageLabel = new CroppingLabel(this);
statusMessageLabel->setTextFormat(Qt::PlainText);
statusMessageLabel->setForegroundRole(QPalette::WindowText);
2014-10-01 17:13:49 +08:00
2015-06-10 07:42:51 +08:00
nameLabel->setForegroundRole(QPalette::WindowText);
setAutoFillBackground(true);
reloadTheme();
2015-06-11 00:11:50 +08:00
compactChange(isCompact());
}
bool GenericChatroomWidget::eventFilter(QObject *, QEvent *)
{
return true; // Disable all events.
}
2015-06-11 00:11:50 +08:00
void GenericChatroomWidget::compactChange(bool _compact)
{
2015-06-11 00:11:50 +08:00
setCompact(_compact);
delete textLayout; // has to be first, deleted by layout
2015-05-28 08:45:23 +08:00
delete mainLayout;
2015-05-28 08:45:23 +08:00
mainLayout = new QHBoxLayout;
textLayout = new QVBoxLayout;
2015-05-28 08:45:23 +08:00
setLayout(mainLayout);
mainLayout->setSpacing(0);
mainLayout->setMargin(0);
textLayout->setSpacing(0);
textLayout->setMargin(0);
setLayoutDirection(Qt::LeftToRight); // parent might have set Qt::RightToLeft
// avatar
2015-06-11 00:11:50 +08:00
if (isCompact())
{
setFixedHeight(25);
avatar->setSize(QSize(20,20));
2015-05-28 08:45:23 +08:00
mainLayout->addSpacing(18);
mainLayout->addWidget(avatar);
mainLayout->addSpacing(5);
mainLayout->addWidget(nameLabel);
mainLayout->addWidget(statusMessageLabel);
mainLayout->addSpacing(5);
mainLayout->addWidget(&statusPic);
mainLayout->addSpacing(5);
mainLayout->activate();
2015-06-07 21:35:15 +08:00
statusMessageLabel->setFont(Style::getFont(Style::Small));
nameLabel->setFont(Style::getFont(Style::Medium));
}
else
{
setFixedHeight(55);
avatar->setSize(QSize(40,40));
textLayout->addStretch();
textLayout->addWidget(nameLabel);
textLayout->addWidget(statusMessageLabel);
textLayout->addStretch();
2015-05-28 08:45:23 +08:00
mainLayout->addSpacing(20);
mainLayout->addWidget(avatar);
mainLayout->addSpacing(10);
mainLayout->addLayout(textLayout);
mainLayout->addSpacing(10);
mainLayout->addWidget(&statusPic);
mainLayout->addSpacing(10);
mainLayout->activate();
2015-06-07 21:35:15 +08:00
statusMessageLabel->setFont(Style::getFont(Style::Medium));
nameLabel->setFont(Style::getFont(Style::Big));
}
}
bool GenericChatroomWidget::isActive()
{
return active;
}
2014-10-01 17:13:49 +08:00
void GenericChatroomWidget::setActive(bool _active)
{
active = _active;
if (active)
{
setBackgroundRole(QPalette::Light);
statusMessageLabel->setForegroundRole(QPalette::HighlightedText);
nameLabel->setForegroundRole(QPalette::HighlightedText);
}
else
{
setBackgroundRole(QPalette::Window);
statusMessageLabel->setForegroundRole(QPalette::WindowText);
nameLabel->setForegroundRole(QPalette::WindowText);
}
2014-10-01 17:13:49 +08:00
}
2014-10-01 17:13:49 +08:00
void GenericChatroomWidget::setName(const QString &name)
{
nameLabel->setText(name);
}
void GenericChatroomWidget::setStatusMsg(const QString &status)
{
statusMessageLabel->setText(status);
}
2014-10-01 17:13:49 +08:00
QString GenericChatroomWidget::getStatusMsg() const
{
2014-10-01 17:13:49 +08:00
return statusMessageLabel->text();
}
QString GenericChatroomWidget::getTitle() const
{
QString title = getName();
if (!getStatusString().isNull())
title += QStringLiteral(" (") + getStatusString() + QStringLiteral(")");
return title;
}
2014-11-16 04:30:20 +08:00
void GenericChatroomWidget::reloadTheme()
{
QPalette p;
p = statusMessageLabel->palette();
p.setColor(QPalette::WindowText, Style::getColor(Style::LightGrey)); // Base color
p.setColor(QPalette::HighlightedText, Style::getColor(Style::MediumGrey)); // Color when active
statusMessageLabel->setPalette(p);
p = nameLabel->palette();
p.setColor(QPalette::WindowText, Style::getColor(Style::White)); // Base color
p.setColor(QPalette::HighlightedText, Style::getColor(Style::DarkGrey)); // Color when active
nameLabel->setPalette(p);
p = palette();
p.setColor(QPalette::Window, Style::getColor(Style::ThemeMedium)); // Base background color
p.setColor(QPalette::Highlight, Style::getColor(Style::ThemeLight)); // On mouse over
p.setColor(QPalette::Light, Style::getColor(Style::White)); // When active
setPalette(p);
2014-11-16 04:30:20 +08:00
}
void GenericChatroomWidget::mouseReleaseEvent(QMouseEvent*)
{
emit chatroomWidgetClicked(this);
}
void GenericChatroomWidget::enterEvent(QEvent*)
{
if (!active)
setBackgroundRole(QPalette::Highlight);
}
2015-06-11 00:11:50 +08:00
void GenericChatroomWidget::leaveEvent(QEvent* event)
2014-12-11 22:31:01 +08:00
{
if (!active)
setBackgroundRole(QPalette::Window);
2015-06-11 00:11:50 +08:00
QWidget::leaveEvent(event);
}