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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ROOMLIST_H
|
|
|
|
#define ROOMLIST_H
|
|
|
|
|
|
|
|
#include <QImage>
|
2017-04-11 17:45:47 +03:00
|
|
|
#include <QSharedPointer>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QUrl>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2017-04-11 17:45:47 +03:00
|
|
|
#include "MatrixClient.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
#include "RoomInfoListItem.h"
|
2017-05-07 17:15:38 +03:00
|
|
|
#include "RoomState.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
#include "Sync.h"
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class RoomList;
|
|
|
|
}
|
|
|
|
|
|
|
|
class RoomList : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-04-11 17:45:47 +03:00
|
|
|
RoomList(QSharedPointer<MatrixClient> client, QWidget *parent = 0);
|
2017-04-06 02:06:42 +03:00
|
|
|
~RoomList();
|
|
|
|
|
2017-05-07 17:15:38 +03:00
|
|
|
void setInitialRooms(const QMap<QString, RoomState> &states);
|
|
|
|
void sync(const QMap<QString, RoomState> &states);
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2017-05-07 17:15:38 +03:00
|
|
|
void clear();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
signals:
|
2017-05-07 17:15:38 +03:00
|
|
|
void roomChanged(const QString &room_id);
|
2017-04-15 19:04:02 +03:00
|
|
|
void totalUnreadMessageCountUpdated(int count);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
public slots:
|
2017-04-11 17:45:47 +03:00
|
|
|
void updateRoomAvatar(const QString &roomid, const QPixmap &img);
|
2017-05-07 17:15:38 +03:00
|
|
|
void highlightSelectedRoom(const QString &room_id);
|
2017-04-15 02:56:04 +03:00
|
|
|
void updateUnreadMessageCount(const QString &roomid, int count);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-04-15 19:04:02 +03:00
|
|
|
void calculateUnreadMessageCount();
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
Ui::RoomList *ui;
|
|
|
|
|
2017-04-09 02:17:04 +03:00
|
|
|
QMap<QString, RoomInfoListItem *> rooms_;
|
2017-04-11 17:45:47 +03:00
|
|
|
|
|
|
|
QSharedPointer<MatrixClient> client_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ROOMLIST_H
|