nheko/include/TopRoomBar.h

106 lines
2.7 KiB
C
Raw Normal View History

2017-04-06 01:06:42 +02: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/>.
*/
#pragma once
2017-04-06 01:06:42 +02:00
2017-05-31 16:06:03 +02:00
#include <QAction>
#include <QDebug>
2017-04-06 01:06:42 +02:00
#include <QIcon>
#include <QImage>
#include <QLabel>
#include <QPaintEvent>
2017-05-31 16:06:03 +02:00
#include <QSharedPointer>
2017-04-06 01:06:42 +02:00
#include <QVBoxLayout>
#include <QWidget>
#include "Avatar.h"
#include "FlatButton.h"
2017-05-31 16:06:03 +02:00
#include "Menu.h"
#include "RoomSettings.h"
2017-04-06 01:06:42 +02:00
2017-08-26 14:36:10 +02:00
static const QString URL_HTML = "<a href=\"\\1\" style=\"color: #333333\">\\1</a>";
static const QRegExp URL_REGEX("((?:https?|ftp)://\\S+)");
2017-04-06 01:06:42 +02:00
class TopRoomBar : public QWidget
{
2017-08-26 14:36:10 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
public:
2017-08-26 14:36:10 +02:00
TopRoomBar(QWidget *parent = 0);
~TopRoomBar();
2017-04-06 01:06:42 +02:00
2017-08-26 14:36:10 +02:00
inline void updateRoomAvatar(const QImage &avatar_image);
inline void updateRoomAvatar(const QIcon &icon);
inline void updateRoomName(const QString &name);
inline void updateRoomTopic(QString topic);
void updateRoomAvatarFromName(const QString &name);
void setRoomSettings(QSharedPointer<RoomSettings> settings);
2017-04-06 01:06:42 +02:00
2017-08-26 14:36:10 +02:00
void reset();
2017-04-06 01:06:42 +02:00
protected:
2017-08-26 14:36:10 +02:00
void paintEvent(QPaintEvent *event) override;
2017-04-06 01:06:42 +02:00
private:
2017-08-26 14:36:10 +02:00
QHBoxLayout *topLayout_;
QVBoxLayout *textLayout_;
2017-04-06 01:06:42 +02:00
2017-08-26 14:36:10 +02:00
QLabel *nameLabel_;
QLabel *topicLabel_;
2017-04-06 01:06:42 +02:00
2017-08-26 14:36:10 +02:00
QSharedPointer<RoomSettings> roomSettings_;
2017-05-31 16:06:03 +02:00
2017-08-26 14:36:10 +02:00
QMenu *menu_;
QAction *toggleNotifications_;
2017-05-31 16:06:03 +02:00
2017-08-26 14:36:10 +02:00
FlatButton *settingsBtn_;
2017-04-06 01:06:42 +02:00
2017-08-26 14:36:10 +02:00
Avatar *avatar_;
2017-05-31 16:06:03 +02:00
2017-08-26 14:36:10 +02:00
int buttonSize_;
2017-04-06 01:06:42 +02:00
};
2017-08-20 12:47:22 +02:00
inline void
TopRoomBar::updateRoomAvatar(const QImage &avatar_image)
2017-04-06 01:06:42 +02:00
{
2017-08-26 14:36:10 +02:00
avatar_->setImage(avatar_image);
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline void
TopRoomBar::updateRoomAvatar(const QIcon &icon)
2017-04-06 01:06:42 +02:00
{
2017-08-26 14:36:10 +02:00
avatar_->setIcon(icon);
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline void
TopRoomBar::updateRoomName(const QString &name)
2017-04-06 01:06:42 +02:00
{
2017-08-26 14:36:10 +02:00
QString elidedText =
QFontMetrics(nameLabel_->font()).elidedText(name, Qt::ElideRight, width() * 0.8);
nameLabel_->setText(elidedText);
2017-04-06 01:06:42 +02:00
}
2017-08-20 12:47:22 +02:00
inline void
2017-08-26 14:36:10 +02:00
TopRoomBar::updateRoomTopic(QString topic)
2017-04-06 01:06:42 +02:00
{
2017-08-26 14:36:10 +02:00
topic.replace(URL_REGEX, URL_HTML);
QString elidedText =
QFontMetrics(topicLabel_->font()).elidedText(topic, Qt::ElideRight, width() * 0.6);
topicLabel_->setText(topic);
2017-04-06 01:06:42 +02:00
}