2017-04-06 02:06:42 +03:00
|
|
|
/*
|
|
|
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
*
|
|
|
|
* This program is free 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
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-12-11 00:59:50 +03:00
|
|
|
#include <QDebug>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QStyleOption>
|
|
|
|
|
2017-10-28 15:46:39 +03:00
|
|
|
#include "Avatar.h"
|
2017-07-15 17:11:46 +03:00
|
|
|
#include "Config.h"
|
2017-10-28 15:46:39 +03:00
|
|
|
#include "FlatButton.h"
|
|
|
|
#include "Label.h"
|
2017-10-01 19:49:36 +03:00
|
|
|
#include "MainWindow.h"
|
2017-10-28 15:46:39 +03:00
|
|
|
#include "Menu.h"
|
|
|
|
#include "OverlayModal.h"
|
|
|
|
#include "RoomSettings.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
#include "TopRoomBar.h"
|
2018-01-12 11:21:53 +03:00
|
|
|
#include "Utils.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
TopRoomBar::TopRoomBar(QWidget *parent)
|
2017-08-20 13:47:22 +03:00
|
|
|
: QWidget(parent)
|
2017-11-06 00:04:55 +03:00
|
|
|
, buttonSize_{32}
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-08-26 15:36:10 +03:00
|
|
|
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
2017-11-09 00:09:15 +03:00
|
|
|
setFixedHeight(65);
|
2017-08-26 15:36:10 +03:00
|
|
|
|
|
|
|
topLayout_ = new QHBoxLayout();
|
|
|
|
topLayout_->setSpacing(10);
|
|
|
|
topLayout_->setMargin(10);
|
|
|
|
|
|
|
|
avatar_ = new Avatar(this);
|
2018-01-12 11:21:53 +03:00
|
|
|
avatar_->setLetter("");
|
2017-08-26 15:36:10 +03:00
|
|
|
avatar_->setSize(35);
|
|
|
|
|
|
|
|
textLayout_ = new QVBoxLayout();
|
|
|
|
textLayout_->setSpacing(0);
|
|
|
|
textLayout_->setContentsMargins(0, 0, 0, 0);
|
|
|
|
|
|
|
|
QFont roomFont("Open Sans SemiBold");
|
|
|
|
roomFont.setPixelSize(conf::topRoomBar::fonts::roomName);
|
|
|
|
|
|
|
|
nameLabel_ = new QLabel(this);
|
|
|
|
nameLabel_->setFont(roomFont);
|
|
|
|
|
|
|
|
QFont descriptionFont("Open Sans");
|
|
|
|
descriptionFont.setPixelSize(conf::topRoomBar::fonts::roomDescription);
|
|
|
|
|
2017-10-20 20:58:23 +03:00
|
|
|
topicLabel_ = new Label(this);
|
2017-08-26 15:36:10 +03:00
|
|
|
topicLabel_->setFont(descriptionFont);
|
|
|
|
topicLabel_->setTextFormat(Qt::RichText);
|
|
|
|
topicLabel_->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
|
|
|
topicLabel_->setOpenExternalLinks(true);
|
2017-10-20 20:58:23 +03:00
|
|
|
connect(topicLabel_, &Label::clicked, [=](QMouseEvent *e) {
|
|
|
|
if (e->button() == Qt::LeftButton && !topicLabel_->hasSelectedText())
|
|
|
|
topicLabel_->setWordWrap(!topicLabel_->wordWrap());
|
|
|
|
});
|
2017-08-26 15:36:10 +03:00
|
|
|
|
|
|
|
textLayout_->addWidget(nameLabel_);
|
|
|
|
textLayout_->addWidget(topicLabel_);
|
|
|
|
|
|
|
|
settingsBtn_ = new FlatButton(this);
|
|
|
|
settingsBtn_->setFixedSize(buttonSize_, buttonSize_);
|
|
|
|
settingsBtn_->setCornerRadius(buttonSize_ / 2);
|
|
|
|
|
|
|
|
QIcon settings_icon;
|
2017-10-15 22:08:51 +03:00
|
|
|
settings_icon.addFile(":/icons/icons/ui/vertical-ellipsis.png");
|
2017-08-26 15:36:10 +03:00
|
|
|
settingsBtn_->setIcon(settings_icon);
|
|
|
|
settingsBtn_->setIconSize(QSize(buttonSize_ / 2, buttonSize_ / 2));
|
|
|
|
|
|
|
|
topLayout_->addWidget(avatar_);
|
2017-10-19 19:04:51 +03:00
|
|
|
topLayout_->addLayout(textLayout_, 1);
|
|
|
|
topLayout_->addWidget(settingsBtn_, 0, Qt::AlignRight);
|
2017-08-26 15:36:10 +03:00
|
|
|
|
|
|
|
menu_ = new Menu(this);
|
|
|
|
|
|
|
|
toggleNotifications_ = new QAction(tr("Disable notifications"), this);
|
|
|
|
connect(toggleNotifications_, &QAction::triggered, this, [=]() {
|
|
|
|
roomSettings_->toggleNotifications();
|
|
|
|
});
|
|
|
|
|
2017-12-11 00:59:50 +03:00
|
|
|
inviteUsers_ = new QAction(tr("Invite users"), this);
|
|
|
|
connect(inviteUsers_, &QAction::triggered, this, [=]() {
|
|
|
|
if (inviteUsersDialog_.isNull()) {
|
|
|
|
inviteUsersDialog_ =
|
|
|
|
QSharedPointer<dialogs::InviteUsers>(new dialogs::InviteUsers(this));
|
|
|
|
|
|
|
|
connect(inviteUsersDialog_.data(),
|
|
|
|
&dialogs::InviteUsers::closing,
|
|
|
|
this,
|
|
|
|
[=](bool isSending, QStringList invitees) {
|
2018-02-17 19:43:40 +03:00
|
|
|
inviteUsersModal_->hide();
|
2017-12-11 00:59:50 +03:00
|
|
|
|
|
|
|
if (isSending && !invitees.isEmpty())
|
|
|
|
emit inviteUsers(invitees);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inviteUsersModal_.isNull()) {
|
|
|
|
inviteUsersModal_ = QSharedPointer<OverlayModal>(
|
|
|
|
new OverlayModal(MainWindow::instance(), inviteUsersDialog_.data()));
|
|
|
|
inviteUsersModal_->setColor(QColor(30, 30, 30, 170));
|
|
|
|
}
|
|
|
|
|
2018-02-17 19:43:40 +03:00
|
|
|
inviteUsersModal_->show();
|
2017-12-11 00:59:50 +03:00
|
|
|
});
|
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
leaveRoom_ = new QAction(tr("Leave room"), this);
|
|
|
|
connect(leaveRoom_, &QAction::triggered, this, [=]() {
|
2018-02-10 17:05:31 +03:00
|
|
|
MainWindow::instance()->openLeaveRoomDialog();
|
2017-10-01 19:49:36 +03:00
|
|
|
});
|
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
menu_->addAction(toggleNotifications_);
|
2017-12-11 00:59:50 +03:00
|
|
|
menu_->addAction(inviteUsers_);
|
2017-10-01 19:49:36 +03:00
|
|
|
menu_->addAction(leaveRoom_);
|
2017-08-26 15:36:10 +03:00
|
|
|
|
|
|
|
connect(settingsBtn_, &QPushButton::clicked, this, [=]() {
|
2018-02-02 20:50:02 +03:00
|
|
|
if (roomSettings_.isNull())
|
|
|
|
return;
|
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
if (roomSettings_->isNotificationsEnabled())
|
|
|
|
toggleNotifications_->setText(tr("Disable notifications"));
|
|
|
|
else
|
|
|
|
toggleNotifications_->setText(tr("Enable notifications"));
|
|
|
|
|
|
|
|
auto pos = mapToGlobal(settingsBtn_->pos());
|
|
|
|
menu_->popup(
|
|
|
|
QPoint(pos.x() + buttonSize_ - menu_->sizeHint().width(), pos.y() + buttonSize_));
|
|
|
|
});
|
|
|
|
|
|
|
|
setLayout(topLayout_);
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
TopRoomBar::updateRoomAvatarFromName(const QString &name)
|
2017-04-10 19:01:09 +03:00
|
|
|
{
|
2018-01-12 11:21:53 +03:00
|
|
|
avatar_->setLetter(utils::firstChar(name));
|
2017-09-30 20:43:57 +03:00
|
|
|
update();
|
2017-04-10 19:01:09 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
TopRoomBar::reset()
|
2017-04-09 02:17:04 +03:00
|
|
|
{
|
2017-08-26 15:36:10 +03:00
|
|
|
nameLabel_->setText("");
|
|
|
|
topicLabel_->setText("");
|
2018-01-12 11:21:53 +03:00
|
|
|
avatar_->setLetter("");
|
2017-10-19 19:04:51 +03:00
|
|
|
|
|
|
|
roomName_.clear();
|
|
|
|
roomTopic_.clear();
|
2017-04-09 02:17:04 +03:00
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
TopRoomBar::paintEvent(QPaintEvent *event)
|
2017-04-06 02:06:42 +03:00
|
|
|
{
|
2017-08-26 15:36:10 +03:00
|
|
|
Q_UNUSED(event);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
QStyleOption option;
|
|
|
|
option.initFrom(this);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
QPainter painter(this);
|
|
|
|
style()->drawPrimitive(QStyle::PE_Widget, &option, &painter, this);
|
2017-10-19 19:04:51 +03:00
|
|
|
|
2017-12-11 00:59:50 +03:00
|
|
|
// Number of pixels that we can move sidebar splitter per frame. If label contains
|
|
|
|
// text which fills entire it's width then label starts blocking it's layout from
|
|
|
|
// shrinking. Making label little bit shorter leaves some space for it to shrink.
|
2017-10-20 20:58:23 +03:00
|
|
|
const auto perFrameResize = 20;
|
|
|
|
|
2017-10-19 19:04:51 +03:00
|
|
|
QString elidedText =
|
2017-10-20 20:58:23 +03:00
|
|
|
QFontMetrics(nameLabel_->font())
|
|
|
|
.elidedText(roomName_, Qt::ElideRight, nameLabel_->width() - perFrameResize);
|
2017-10-19 19:04:51 +03:00
|
|
|
nameLabel_->setText(elidedText);
|
|
|
|
|
2017-10-20 20:58:23 +03:00
|
|
|
if (topicLabel_->wordWrap())
|
|
|
|
elidedText = roomTopic_;
|
|
|
|
else
|
|
|
|
elidedText =
|
|
|
|
QFontMetrics(topicLabel_->font())
|
|
|
|
.elidedText(roomTopic_, Qt::ElideRight, topicLabel_->width() - perFrameResize);
|
2017-12-24 14:13:07 +03:00
|
|
|
elidedText.replace(conf::strings::url_regex, conf::strings::url_html);
|
2017-10-19 19:04:51 +03:00
|
|
|
topicLabel_->setText(elidedText);
|
2017-04-06 02:06:42 +03:00
|
|
|
}
|
|
|
|
|
2017-10-20 20:58:23 +03:00
|
|
|
void
|
|
|
|
TopRoomBar::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (childAt(event->pos()) == topicLabel_) {
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
void
|
|
|
|
TopRoomBar::setRoomSettings(QSharedPointer<RoomSettings> settings)
|
2017-05-31 17:06:03 +03:00
|
|
|
{
|
2017-08-26 15:36:10 +03:00
|
|
|
roomSettings_ = settings;
|
2017-05-31 17:06:03 +03:00
|
|
|
}
|
|
|
|
|
2017-10-22 19:03:55 +03:00
|
|
|
void
|
|
|
|
TopRoomBar::updateRoomAvatar(const QImage &avatar_image)
|
|
|
|
{
|
|
|
|
avatar_->setImage(avatar_image);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TopRoomBar::updateRoomAvatar(const QIcon &icon)
|
|
|
|
{
|
|
|
|
avatar_->setIcon(icon);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TopRoomBar::updateRoomName(const QString &name)
|
|
|
|
{
|
|
|
|
roomName_ = name;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TopRoomBar::updateRoomTopic(QString topic)
|
|
|
|
{
|
|
|
|
roomTopic_ = topic;
|
|
|
|
update();
|
|
|
|
}
|