nheko/include/RoomList.h

109 lines
3.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
#include <QPushButton>
2017-05-19 16:23:36 +02:00
#include <QScrollArea>
#include <QSharedPointer>
2017-05-19 16:23:36 +02:00
#include <QVBoxLayout>
2017-04-06 01:06:42 +02:00
#include <QWidget>
2017-12-19 21:36:12 +01:00
#include <mtx.hpp>
2017-10-28 14:46:39 +02:00
class LeaveRoomDialog;
class OverlayModal;
class RoomInfoListItem;
class Sync;
class UserSettings;
2017-10-28 14:46:39 +02:00
struct DescInfo;
2018-04-29 14:42:40 +02:00
struct RoomInfo;
2017-04-06 01:06:42 +02:00
class RoomList : public QWidget
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
public:
RoomList(QSharedPointer<UserSettings> userSettings, QWidget *parent = 0);
2017-04-06 01:06:42 +02:00
2018-04-21 15:34:50 +02:00
void initialize(const QMap<QString, RoomInfo> &info);
void sync(const std::map<QString, RoomInfo> &info);
2018-04-21 15:34:50 +02:00
void clear() { rooms_.clear(); };
2017-12-21 23:00:48 +01:00
void updateAvatar(const QString &room_id, const QString &url);
2017-04-06 01:06:42 +02:00
2018-04-21 15:34:50 +02:00
void addRoom(const QString &room_id, const RoomInfo &info);
void addInvitedRoom(const QString &room_id, const RoomInfo &info);
void removeRoom(const QString &room_id, bool reset);
2018-01-09 14:07:32 +01:00
void setFilterRooms(bool filterRooms);
void setRoomFilter(std::vector<QString> room_ids);
2018-04-21 15:34:50 +02:00
void updateRoom(const QString &room_id, const RoomInfo &info);
2018-04-22 13:19:05 +02:00
void cleanupInvites(const std::map<QString, bool> &invites);
2017-04-06 01:06:42 +02:00
signals:
2017-09-10 11:59:21 +02:00
void roomChanged(const QString &room_id);
void totalUnreadMessageCountUpdated(int count);
2017-12-19 21:36:12 +01:00
void acceptInvite(const QString &room_id);
void declineInvite(const QString &room_id);
2017-12-21 23:00:48 +01:00
void roomAvatarChanged(const QString &room_id, const QPixmap &img);
void joinRoom(const QString &room_id);
void updateRoomAvatarCb(const QString &room_id, const QPixmap &img);
2017-04-06 01:06:42 +02:00
public slots:
2017-09-10 11:59:21 +02:00
void updateRoomAvatar(const QString &roomid, const QPixmap &img);
void highlightSelectedRoom(const QString &room_id);
void updateUnreadMessageCount(const QString &roomid, int count);
void updateRoomDescription(const QString &roomid, const DescInfo &info);
void closeJoinRoomDialog(bool isJoining, QString roomAlias);
2017-04-06 01:06:42 +02:00
2017-11-25 21:20:34 +01:00
protected:
void paintEvent(QPaintEvent *event) override;
void leaveEvent(QEvent *event) override;
private slots:
void sortRoomsByLastMessage();
2017-11-25 21:20:34 +01:00
2017-04-06 01:06:42 +02:00
private:
//! Return the first non-null room.
std::pair<QString, QSharedPointer<RoomInfoListItem>> firstRoom() const;
2017-09-10 11:59:21 +02:00
void calculateUnreadMessageCount();
bool roomExists(const QString &room_id) { return rooms_.find(room_id) != rooms_.end(); }
bool filterItemExists(const QString &id)
{
return std::find(roomFilter_.begin(), roomFilter_.end(), id) != roomFilter_.end();
}
2017-09-10 11:59:21 +02:00
QVBoxLayout *topLayout_;
QVBoxLayout *contentsLayout_;
QScrollArea *scrollArea_;
QWidget *scrollAreaContents_;
2017-04-06 01:06:42 +02:00
QPushButton *joinRoomButton_;
OverlayModal *joinRoomModal_;
std::map<QString, QSharedPointer<RoomInfoListItem>> rooms_;
2018-01-09 14:07:32 +01:00
QString selectedRoom_;
//! Which rooms to include in the room list.
std::vector<QString> roomFilter_;
QSharedPointer<UserSettings> userSettings_;
bool isSortPending_ = false;
2017-04-06 01:06:42 +02:00
};