nheko/include/TopRoomBar.h

99 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>
2017-04-06 01:06:42 +02:00
#include <QIcon>
#include <QImage>
#include <QLabel>
#include <QPaintEvent>
2018-05-25 15:13:38 +02:00
#include <QPainter>
#include <QPen>
2017-05-31 16:06:03 +02:00
#include <QSharedPointer>
2018-05-25 15:13:38 +02:00
#include <QStyle>
#include <QStyleOption>
2017-04-06 01:06:42 +02:00
#include <QVBoxLayout>
2017-10-28 14:46:39 +02:00
class Avatar;
class FlatButton;
class Menu;
class OverlayModal;
2017-04-06 01:06:42 +02:00
class TopRoomBar : public QWidget
{
2017-08-26 14:36:10 +02:00
Q_OBJECT
Q_PROPERTY(QColor borderColor READ borderColor WRITE setBorderColor)
2017-04-06 01:06:42 +02:00
public:
2017-08-26 14:36:10 +02:00
TopRoomBar(QWidget *parent = 0);
2017-04-06 01:06:42 +02:00
2017-10-22 18:03:55 +02:00
void updateRoomAvatar(const QImage &avatar_image);
void updateRoomAvatar(const QIcon &icon);
void updateRoomName(const QString &name);
void updateRoomTopic(QString topic);
2017-08-26 14:36:10 +02:00
void updateRoomAvatarFromName(const QString &name);
2017-04-06 01:06:42 +02:00
2017-08-26 14:36:10 +02:00
void reset();
QColor borderColor() const { return borderColor_; }
void setBorderColor(QColor &color) { borderColor_ = color; }
signals:
2017-12-10 22:59:50 +01:00
void inviteUsers(QStringList users);
2017-04-06 01:06:42 +02:00
protected:
2018-05-25 15:13:38 +02:00
void mousePressEvent(QMouseEvent *) override
{
if (roomSettings_ != nullptr)
roomSettings_->trigger();
}
void paintEvent(QPaintEvent *) override
{
QStyleOption opt;
opt.init(this);
QPainter p(this);
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
p.setPen(QPen(borderColor()));
p.drawLine(QPointF(0, height()), QPointF(width(), height()));
}
2017-04-06 01:06:42 +02:00
private:
2018-05-25 15:13:38 +02:00
QHBoxLayout *topLayout_ = nullptr;
QVBoxLayout *textLayout_ = nullptr;
2017-04-06 01:06:42 +02:00
2018-05-25 15:13:38 +02:00
QLabel *nameLabel_ = nullptr;
QLabel *topicLabel_ = nullptr;
2017-04-06 01:06:42 +02:00
2018-04-30 20:41:47 +02:00
Menu *menu_;
2018-05-25 15:13:38 +02:00
QAction *leaveRoom_ = nullptr;
QAction *roomMembers_ = nullptr;
QAction *roomSettings_ = nullptr;
QAction *inviteUsers_ = nullptr;
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-10-19 18:04:51 +02:00
QColor borderColor_;
2017-04-06 01:06:42 +02:00
};