nheko/include/RoomList.h

86 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
#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>
#include "JoinRoomDialog.h"
#include "LeaveRoomDialog.h"
#include "MatrixClient.h"
#include "OverlayModal.h"
2017-04-06 01:06:42 +02:00
#include "RoomInfoListItem.h"
#include "RoomState.h"
2017-04-06 01:06:42 +02:00
#include "Sync.h"
class RoomList : public QWidget
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
public:
2017-09-10 11:59:21 +02:00
RoomList(QSharedPointer<MatrixClient> client, QWidget *parent = 0);
~RoomList();
2017-04-06 01:06:42 +02:00
2017-09-10 11:59:21 +02:00
void setInitialRooms(const QMap<QString, QSharedPointer<RoomSettings>> &settings,
const QMap<QString, RoomState> &states);
void sync(const QMap<QString, RoomState> &states);
2017-09-10 11:59:21 +02:00
void clear();
2017-04-06 01:06:42 +02:00
void addRoom(const QSharedPointer<RoomSettings> &settings,
const RoomState &state,
const QString &room_id);
void removeRoom(const QString &room_id, bool reset);
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-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);
void openLeaveRoomDialog(const QString &room_id);
void closeLeaveRoomDialog(bool leaving, const QString &room_id);
2017-04-06 01:06:42 +02:00
private:
2017-09-10 11:59:21 +02:00
void calculateUnreadMessageCount();
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_;
JoinRoomDialog *joinRoomDialog_;
OverlayModal *leaveRoomModal;
LeaveRoomDialog *leaveRoomDialog_;
2017-09-10 11:59:21 +02:00
QMap<QString, QSharedPointer<RoomInfoListItem>> rooms_;
2017-09-10 11:59:21 +02:00
QSharedPointer<MatrixClient> client_;
2017-04-06 01:06:42 +02:00
};