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-05-31 17:06:03 +03:00
|
|
|
#include <QAction>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QIcon>
|
|
|
|
#include <QImage>
|
|
|
|
#include <QLabel>
|
2017-10-28 15:46:39 +03:00
|
|
|
#include <QMenu>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QPaintEvent>
|
2017-05-31 17:06:03 +03:00
|
|
|
#include <QSharedPointer>
|
2017-04-06 02:06:42 +03:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
2017-12-11 00:59:50 +03:00
|
|
|
#include "dialogs/InviteUsers.h"
|
2017-11-30 21:02:46 +03:00
|
|
|
#include "dialogs/LeaveRoom.h"
|
|
|
|
|
2017-10-28 15:46:39 +03:00
|
|
|
class Avatar;
|
|
|
|
class FlatButton;
|
|
|
|
class Label;
|
|
|
|
class Menu;
|
|
|
|
class OverlayModal;
|
|
|
|
class RoomSettings;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
class TopRoomBar : public QWidget
|
|
|
|
{
|
2017-08-26 15:36:10 +03:00
|
|
|
Q_OBJECT
|
2017-04-06 02:06:42 +03:00
|
|
|
public:
|
2017-08-26 15:36:10 +03:00
|
|
|
TopRoomBar(QWidget *parent = 0);
|
|
|
|
~TopRoomBar();
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 19:03:55 +03:00
|
|
|
void updateRoomAvatar(const QImage &avatar_image);
|
|
|
|
void updateRoomAvatar(const QIcon &icon);
|
|
|
|
void updateRoomName(const QString &name);
|
|
|
|
void updateRoomTopic(QString topic);
|
2017-08-26 15:36:10 +03:00
|
|
|
void updateRoomAvatarFromName(const QString &name);
|
|
|
|
void setRoomSettings(QSharedPointer<RoomSettings> settings);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
void reset();
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
signals:
|
|
|
|
void leaveRoom();
|
2017-12-11 00:59:50 +03:00
|
|
|
void inviteUsers(QStringList users);
|
2017-10-01 19:49:36 +03:00
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
protected:
|
2017-08-26 15:36:10 +03:00
|
|
|
void paintEvent(QPaintEvent *event) override;
|
2017-10-20 20:58:23 +03:00
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-01 19:49:36 +03:00
|
|
|
private slots:
|
|
|
|
void closeLeaveRoomDialog(bool leaving);
|
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
private:
|
2017-08-26 15:36:10 +03:00
|
|
|
QHBoxLayout *topLayout_;
|
|
|
|
QVBoxLayout *textLayout_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
QLabel *nameLabel_;
|
2017-10-20 20:58:23 +03:00
|
|
|
Label *topicLabel_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
QSharedPointer<RoomSettings> roomSettings_;
|
2017-05-31 17:06:03 +03:00
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
QMenu *menu_;
|
|
|
|
QAction *toggleNotifications_;
|
2017-10-01 19:49:36 +03:00
|
|
|
QAction *leaveRoom_;
|
2017-12-11 00:59:50 +03:00
|
|
|
QAction *inviteUsers_;
|
2017-05-31 17:06:03 +03:00
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
FlatButton *settingsBtn_;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
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-12-11 00:59:50 +03:00
|
|
|
QSharedPointer<OverlayModal> inviteUsersModal_;
|
|
|
|
QSharedPointer<dialogs::InviteUsers> inviteUsersDialog_;
|
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
Avatar *avatar_;
|
2017-05-31 17:06:03 +03:00
|
|
|
|
2017-08-26 15:36:10 +03:00
|
|
|
int buttonSize_;
|
2017-10-19 19:04:51 +03:00
|
|
|
|
|
|
|
QString roomName_;
|
|
|
|
QString roomTopic_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|