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 HISTORY_VIEW_MANAGER_H
|
|
|
|
#define HISTORY_VIEW_MANAGER_H
|
|
|
|
|
|
|
|
#include <QDebug>
|
2017-04-13 04:11:22 +03:00
|
|
|
#include <QSharedPointer>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QStackedWidget>
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
#include "HistoryView.h"
|
2017-04-13 04:11:22 +03:00
|
|
|
#include "MatrixClient.h"
|
2017-04-06 02:06:42 +03:00
|
|
|
#include "RoomInfo.h"
|
|
|
|
#include "Sync.h"
|
|
|
|
|
|
|
|
class HistoryViewManager : public QStackedWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-04-13 04:11:22 +03:00
|
|
|
HistoryViewManager(QSharedPointer<MatrixClient> client, QWidget *parent);
|
2017-04-06 02:06:42 +03:00
|
|
|
~HistoryViewManager();
|
|
|
|
|
|
|
|
void initialize(const Rooms &rooms);
|
|
|
|
void sync(const Rooms &rooms);
|
2017-04-09 02:17:04 +03:00
|
|
|
void clearAll();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-04-11 22:48:02 +03:00
|
|
|
static QString chooseRandomColor();
|
2017-04-13 04:11:22 +03:00
|
|
|
static QString getUserColor(const QString &userid);
|
2017-04-11 22:48:02 +03:00
|
|
|
static QMap<QString, QString> NICK_COLORS;
|
|
|
|
|
2017-04-15 02:56:04 +03:00
|
|
|
signals:
|
|
|
|
void unreadMessages(QString roomid, int count);
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
public slots:
|
|
|
|
void setHistoryView(const RoomInfo &info);
|
2017-04-13 04:11:22 +03:00
|
|
|
void sendTextMessage(const QString &msg);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void messageSent(const QString &eventid, const QString &roomid, int txnid);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-04-13 04:11:22 +03:00
|
|
|
RoomInfo active_room_;
|
2017-04-06 02:06:42 +03:00
|
|
|
QMap<QString, HistoryView *> views_;
|
2017-04-13 04:11:22 +03:00
|
|
|
QSharedPointer<MatrixClient> client_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|