nheko/src/TopRoomBar.h

94 lines
2.5 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
2020-01-31 06:12:02 +01:00
#include <QColor>
#include <QStringList>
#include <QWidget>
2017-04-06 01:06:42 +02:00
2017-10-28 14:46:39 +02:00
class Avatar;
class FlatButton;
class Menu;
2018-09-19 21:42:26 +02:00
class TextLabel;
2017-10-28 14:46:39 +02:00
class OverlayModal;
2017-04-06 01:06:42 +02:00
2020-01-31 06:12:02 +01:00
class QPainter;
class QLabel;
class QIcon;
class QHBoxLayout;
class QVBoxLayout;
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:
2020-02-04 04:58:43 +01:00
TopRoomBar(QWidget *parent = nullptr);
2017-04-06 01:06:42 +02:00
void updateRoomAvatar(const QString &avatar_image);
2017-10-22 18:03:55 +02:00
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; }
public slots:
//! Add a "back-arrow" button that can switch to roomlist only view.
void enableBackButton();
//! Replace the "back-arrow" button with the avatar of the room.
void disableBackButton();
signals:
2017-12-10 22:59:50 +01:00
void inviteUsers(QStringList users);
void showRoomList();
void mentionsClicked(const QPoint &pos);
2017-04-06 01:06:42 +02:00
protected:
2020-01-31 06:12:02 +01:00
void mousePressEvent(QMouseEvent *) override;
void paintEvent(QPaintEvent *) override;
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-09-19 21:42:26 +02:00
QLabel *nameLabel_ = nullptr;
TextLabel *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_;
FlatButton *mentionsBtn_;
FlatButton *backBtn_;
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
};