nheko/include/RoomInfoListItem.h

213 lines
7.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
2017-05-31 18:42:07 +02:00
#include <QAction>
#include <QDateTime>
2017-05-31 18:42:07 +02:00
#include <QSharedPointer>
2017-05-19 02:28:15 +02:00
#include <QWidget>
2017-04-06 01:06:42 +02:00
2017-12-19 21:36:12 +01:00
#include <mtx/responses.hpp>
2017-10-28 14:46:39 +02:00
class Menu;
class RippleOverlay;
2018-04-21 15:34:50 +02:00
struct RoomInfo;
2017-10-28 14:46:39 +02:00
2017-10-15 21:08:51 +02:00
struct DescInfo
{
2017-09-10 11:59:21 +02:00
QString username;
QString userid;
QString body;
QString timestamp;
QDateTime datetime;
};
2017-04-06 01:06:42 +02:00
class RoomInfoListItem : public QWidget
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
Q_PROPERTY(QColor highlightedBackgroundColor READ highlightedBackgroundColor WRITE
setHighlightedBackgroundColor)
Q_PROPERTY(
QColor hoverBackgroundColor READ hoverBackgroundColor WRITE setHoverBackgroundColor)
Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setBackgroundColor)
2018-03-18 22:38:04 +01:00
Q_PROPERTY(QColor avatarBgColor READ avatarBgColor WRITE setAvatarBgColor)
Q_PROPERTY(QColor avatarFgColor READ avatarFgColor WRITE setAvatarFgColor)
Q_PROPERTY(QColor bubbleBgColor READ bubbleBgColor WRITE setBubbleBgColor)
Q_PROPERTY(QColor bubbleFgColor READ bubbleFgColor WRITE setBubbleFgColor)
Q_PROPERTY(QColor titleColor READ titleColor WRITE setTitleColor)
Q_PROPERTY(QColor subtitleColor READ subtitleColor WRITE setSubtitleColor)
2018-03-18 22:38:04 +01:00
Q_PROPERTY(QColor timestampColor READ timestampColor WRITE setTimestampColor)
Q_PROPERTY(QColor highlightedTimestampColor READ highlightedTimestampColor WRITE
setHighlightedTimestampColor)
Q_PROPERTY(
QColor highlightedTitleColor READ highlightedTitleColor WRITE setHighlightedTitleColor)
Q_PROPERTY(QColor highlightedSubtitleColor READ highlightedSubtitleColor WRITE
setHighlightedSubtitleColor)
2017-04-06 01:06:42 +02:00
2017-12-19 21:36:12 +01:00
Q_PROPERTY(QColor btnColor READ btnColor WRITE setBtnColor)
Q_PROPERTY(QColor btnTextColor READ btnTextColor WRITE setBtnTextColor)
2017-04-06 01:06:42 +02:00
public:
2018-04-21 15:34:50 +02:00
RoomInfoListItem(QString room_id, RoomInfo info, QWidget *parent = 0);
2017-12-19 21:36:12 +01:00
2017-09-10 11:59:21 +02:00
void updateUnreadMessageCount(int count);
void clearUnreadMessageCount() { updateUnreadMessageCount(0); };
QString roomId() { return roomId_; }
bool isPressed() const { return isPressed_; }
int unreadMessageCount() const { return unreadMsgCount_; }
2017-10-22 18:03:55 +02:00
void setAvatar(const QImage &avatar_image);
void setDescriptionMessage(const DescInfo &info);
DescInfo lastMessageInfo() const { return lastMsgInfo_; }
2017-04-06 01:06:42 +02:00
2017-12-19 21:36:12 +01:00
QColor highlightedBackgroundColor() const { return highlightedBackgroundColor_; }
QColor hoverBackgroundColor() const { return hoverBackgroundColor_; }
QColor backgroundColor() const { return backgroundColor_; }
2018-03-18 22:38:04 +01:00
QColor avatarBgColor() const { return avatarBgColor_; }
QColor avatarFgColor() const { return avatarFgColor_; }
2017-12-19 21:36:12 +01:00
QColor highlightedTitleColor() const { return highlightedTitleColor_; }
QColor highlightedSubtitleColor() const { return highlightedSubtitleColor_; }
2018-03-18 22:38:04 +01:00
QColor highlightedTimestampColor() const { return highlightedTimestampColor_; }
2017-12-19 21:36:12 +01:00
QColor titleColor() const { return titleColor_; }
QColor subtitleColor() const { return subtitleColor_; }
2018-03-18 22:38:04 +01:00
QColor timestampColor() const { return timestampColor_; }
2017-12-19 21:36:12 +01:00
QColor btnColor() const { return btnColor_; }
QColor btnTextColor() const { return btnTextColor_; }
QColor bubbleFgColor() const { return bubbleFgColor_; }
QColor bubbleBgColor() const { return bubbleBgColor_; }
2017-12-19 21:36:12 +01:00
void setHighlightedBackgroundColor(QColor &color) { highlightedBackgroundColor_ = color; }
void setHoverBackgroundColor(QColor &color) { hoverBackgroundColor_ = color; }
void setBackgroundColor(QColor &color) { backgroundColor_ = color; }
2018-03-18 22:38:04 +01:00
void setTimestampColor(QColor &color) { timestampColor_ = color; }
void setAvatarFgColor(QColor &color) { avatarFgColor_ = color; }
void setAvatarBgColor(QColor &color) { avatarBgColor_ = color; }
2017-12-19 21:36:12 +01:00
void setHighlightedTitleColor(QColor &color) { highlightedTitleColor_ = color; }
void setHighlightedSubtitleColor(QColor &color) { highlightedSubtitleColor_ = color; }
2018-03-18 22:38:04 +01:00
void setHighlightedTimestampColor(QColor &color) { highlightedTimestampColor_ = color; }
2017-12-19 21:36:12 +01:00
void setTitleColor(QColor &color) { titleColor_ = color; }
void setSubtitleColor(QColor &color) { subtitleColor_ = color; }
2017-12-19 21:36:12 +01:00
void setBtnColor(QColor &color) { btnColor_ = color; }
void setBtnTextColor(QColor &color) { btnTextColor_ = color; }
void setBubbleFgColor(QColor &color) { bubbleFgColor_ = color; }
void setBubbleBgColor(QColor &color) { bubbleBgColor_ = color; }
2018-04-21 15:34:50 +02:00
void setRoomName(const QString &name) { roomName_ = name; }
void setRoomType(bool isInvite)
{
if (isInvite)
roomType_ = RoomType::Invited;
else
roomType_ = RoomType::Joined;
}
2018-04-22 13:19:05 +02:00
bool isInvite() { return roomType_ == RoomType::Invited; }
2017-04-06 01:06:42 +02:00
signals:
2017-09-10 11:59:21 +02:00
void clicked(const QString &room_id);
void leaveRoom(const QString &room_id);
2017-12-19 21:36:12 +01:00
void acceptInvite(const QString &room_id);
void declineInvite(const QString &room_id);
2017-04-06 01:06:42 +02:00
public slots:
2017-09-10 11:59:21 +02:00
void setPressedState(bool state);
2017-04-06 01:06:42 +02:00
protected:
2017-09-10 11:59:21 +02:00
void mousePressEvent(QMouseEvent *event) override;
void paintEvent(QPaintEvent *event) override;
void resizeEvent(QResizeEvent *event) override;
void contextMenuEvent(QContextMenuEvent *event) override;
2017-04-06 01:06:42 +02:00
private:
2017-12-19 21:36:12 +01:00
void init(QWidget *parent);
2018-04-21 15:34:50 +02:00
QString roomName() { return roomName_; }
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
RippleOverlay *ripple_overlay_;
2017-04-06 01:06:42 +02:00
2017-12-19 21:36:12 +01:00
enum class RoomType
{
Joined,
Invited,
};
RoomType roomType_ = RoomType::Joined;
// State information for the invited rooms.
mtx::responses::InvitedRoom invitedRoom_;
2017-09-10 11:59:21 +02:00
QString roomId_;
QString roomName_;
2017-09-10 11:59:21 +02:00
DescInfo lastMsgInfo_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
QPixmap roomAvatar_;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
Menu *menu_;
QAction *leaveRoom_;
2017-05-31 18:42:07 +02:00
2017-09-10 11:59:21 +02:00
bool isPressed_ = false;
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
int unreadMsgCount_ = 0;
QColor highlightedBackgroundColor_;
QColor hoverBackgroundColor_;
QColor backgroundColor_;
QColor highlightedTitleColor_;
QColor highlightedSubtitleColor_;
QColor titleColor_;
QColor subtitleColor_;
2017-12-19 21:36:12 +01:00
QColor btnColor_;
QColor btnTextColor_;
QRectF acceptBtnRegion_;
QRectF declineBtnRegion_;
2018-01-09 14:07:32 +01:00
// Fonts
QFont bubbleFont_;
QFont font_;
QFont headingFont_;
QFont timestampFont_;
QFont usernameFont_;
QFont unreadCountFont_;
2018-03-18 22:38:04 +01:00
QColor timestampColor_;
QColor highlightedTimestampColor_;
QColor avatarBgColor_;
QColor avatarFgColor_;
QColor bubbleBgColor_;
QColor bubbleFgColor_;
};