mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
226c0f2cf1
(fixes invisible background)
100 lines
2.6 KiB
C++
100 lines
2.6 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 "genericchatroomwidget.h"
|
|
#include "misc/style.h"
|
|
#include "widget/maskablepixmapwidget.h"
|
|
#include "croppinglabel.h"
|
|
#include <QMouseEvent>
|
|
#include <QStyle>
|
|
|
|
GenericChatroomWidget::GenericChatroomWidget(QWidget *parent)
|
|
: QFrame(parent)
|
|
{
|
|
setFixedHeight(55);
|
|
|
|
setLayout(&layout);
|
|
layout.setSpacing(0);
|
|
layout.setMargin(0);
|
|
textLayout.setSpacing(0);
|
|
textLayout.setMargin(0);
|
|
setLayoutDirection(Qt::LeftToRight); // parent might have set Qt::RightToLeft
|
|
|
|
// avatar
|
|
avatar = new MaskablePixmapWidget(this, QSize(40,40), ":/img/avatar_mask.png");
|
|
|
|
// status text
|
|
statusMessageLabel = new CroppingLabel(this);
|
|
statusMessageLabel->setObjectName("status");
|
|
|
|
// name text
|
|
nameLabel = new CroppingLabel(this);
|
|
nameLabel->setObjectName("name");
|
|
|
|
textLayout.addStretch();
|
|
textLayout.addWidget(nameLabel);
|
|
textLayout.addWidget(statusMessageLabel);
|
|
textLayout.addStretch();
|
|
|
|
layout.addSpacing(20);
|
|
layout.addWidget(avatar);
|
|
layout.addSpacing(10);
|
|
layout.addLayout(&textLayout);
|
|
layout.addSpacing(10);
|
|
layout.addWidget(&statusPic);
|
|
layout.addSpacing(10);
|
|
layout.activate();
|
|
|
|
setProperty("active", false);
|
|
setStyleSheet(Style::getStylesheet(":/ui/chatroomWidgets/genericChatroomWidget.css"));
|
|
}
|
|
|
|
bool GenericChatroomWidget::isActive()
|
|
{
|
|
return property("active").toBool();
|
|
}
|
|
|
|
void GenericChatroomWidget::setActive(bool active)
|
|
{
|
|
setProperty("active", active);
|
|
Style::repolish(this);
|
|
}
|
|
|
|
void GenericChatroomWidget::setName(const QString &name)
|
|
{
|
|
nameLabel->setText(name);
|
|
}
|
|
|
|
void GenericChatroomWidget::setStatusMsg(const QString &status)
|
|
{
|
|
statusMessageLabel->setText(status);
|
|
}
|
|
|
|
QString GenericChatroomWidget::getName() const
|
|
{
|
|
return nameLabel->text();
|
|
}
|
|
|
|
QString GenericChatroomWidget::getStatusMsg() const
|
|
{
|
|
return statusMessageLabel->text();
|
|
}
|
|
|
|
void GenericChatroomWidget::mouseReleaseEvent(QMouseEvent*)
|
|
{
|
|
emit chatroomWidgetClicked(this);
|
|
}
|