2017-04-06 02:06:42 +03: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/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-16 21:46:45 +03:00
|
|
|
#pragma once
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-28 15:46:39 +03:00
|
|
|
#include <QMap>
|
2017-10-01 19:49:36 +03:00
|
|
|
#include <QPushButton>
|
2017-05-19 17:23:36 +03:00
|
|
|
#include <QScrollArea>
|
2017-04-11 17:45:47 +03:00
|
|
|
#include <QSharedPointer>
|
2017-05-19 17:23:36 +03:00
|
|
|
#include <QVBoxLayout>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QWidget>
|
|
|
|
|
2017-12-19 23:36:12 +03:00
|
|
|
#include <mtx.hpp>
|
|
|
|
|
2017-11-30 21:02:46 +03:00
|
|
|
#include "dialogs/LeaveRoom.h"
|
|
|
|
|
2017-10-28 15:46:39 +03:00
|
|
|
class LeaveRoomDialog;
|
|
|
|
class MatrixClient;
|
2017-12-22 01:00:48 +03:00
|
|
|
class Cache;
|
2017-10-28 15:46:39 +03:00
|
|
|
class OverlayModal;
|
|
|
|
class RoomInfoListItem;
|
|
|
|
class RoomSettings;
|
|
|
|
class RoomState;
|
|
|
|
class Sync;
|
|
|
|
struct DescInfo;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
class RoomList : public QWidget
|
|
|
|
{
|
2017-09-10 12:59:21 +03:00
|
|
|
Q_OBJECT
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
public:
|
2017-09-10 12:59:21 +03:00
|
|
|
RoomList(QSharedPointer<MatrixClient> client, QWidget *parent = 0);
|
|
|
|
~RoomList();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-12-22 01:00:48 +03:00
|
|
|
void setCache(QSharedPointer<Cache> cache) { cache_ = cache; }
|
2017-09-10 12:59:21 +03:00
|
|
|
void setInitialRooms(const QMap<QString, QSharedPointer<RoomSettings>> &settings,
|
|
|
|
const QMap<QString, RoomState> &states);
|
2017-11-21 18:34:32 +03:00
|
|
|
void sync(const QMap<QString, RoomState> &states,
|
|
|
|
QMap<QString, QSharedPointer<RoomSettings>> &settings);
|
2017-12-19 23:36:12 +03:00
|
|
|
void syncInvites(const std::map<std::string, mtx::responses::InvitedRoom> &rooms);
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
void clear();
|
2017-12-22 01:00:48 +03:00
|
|
|
void updateAvatar(const QString &room_id, const QString &url);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-11-21 18:34:32 +03:00
|
|
|
void addRoom(const QMap<QString, QSharedPointer<RoomSettings>> &settings,
|
2017-10-01 19:49:36 +03:00
|
|
|
const RoomState &state,
|
|
|
|
const QString &room_id);
|
2017-12-19 23:36:12 +03:00
|
|
|
void addInvitedRoom(const QString &room_id, const mtx::responses::InvitedRoom &room);
|
2017-10-01 19:49:36 +03:00
|
|
|
void removeRoom(const QString &room_id, bool reset);
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
signals:
|
2017-09-10 12:59:21 +03:00
|
|
|
void roomChanged(const QString &room_id);
|
|
|
|
void totalUnreadMessageCountUpdated(int count);
|
2017-12-19 23:36:12 +03:00
|
|
|
void acceptInvite(const QString &room_id);
|
|
|
|
void declineInvite(const QString &room_id);
|
2017-12-22 01:00:48 +03:00
|
|
|
void roomAvatarChanged(const QString &room_id, const QPixmap &img);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
public slots:
|
2017-09-10 12:59:21 +03: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);
|
2017-10-01 19:49:36 +03:00
|
|
|
void closeJoinRoomDialog(bool isJoining, QString roomAlias);
|
|
|
|
void openLeaveRoomDialog(const QString &room_id);
|
|
|
|
void closeLeaveRoomDialog(bool leaving, const QString &room_id);
|
2017-11-24 01:10:58 +03:00
|
|
|
void clearRoomMessageCount(const QString &room_id);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-11-25 23:20:34 +03:00
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *event) override;
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
private:
|
2017-09-10 12:59:21 +03:00
|
|
|
void calculateUnreadMessageCount();
|
2017-04-15 19:04:02 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
QVBoxLayout *topLayout_;
|
|
|
|
QVBoxLayout *contentsLayout_;
|
|
|
|
QScrollArea *scrollArea_;
|
|
|
|
QWidget *scrollAreaContents_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
QPushButton *joinRoomButton_;
|
|
|
|
|
|
|
|
OverlayModal *joinRoomModal_;
|
|
|
|
|
2017-10-07 20:09:34 +03:00
|
|
|
QSharedPointer<OverlayModal> leaveRoomModal_;
|
2017-11-30 21:02:46 +03:00
|
|
|
QSharedPointer<dialogs::LeaveRoom> leaveRoomDialog_;
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
QMap<QString, QSharedPointer<RoomInfoListItem>> rooms_;
|
2017-04-11 17:45:47 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
QSharedPointer<MatrixClient> client_;
|
2017-12-22 01:00:48 +03:00
|
|
|
QSharedPointer<Cache> cache_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|