2019-08-28 11:40:55 +00:00
|
|
|
/*
|
|
|
|
* Squawk messenger.
|
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* 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 ROOM_H
|
|
|
|
#define ROOM_H
|
|
|
|
|
|
|
|
#include "conversation.h"
|
|
|
|
#include "../models/room.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @todo write docs
|
|
|
|
*/
|
|
|
|
class Room : public Conversation
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-12-20 15:41:20 +00:00
|
|
|
Room(Models::Account* acc, Models::Room* p_room, QWidget* parent = 0);
|
2019-08-28 11:40:55 +00:00
|
|
|
~Room();
|
|
|
|
|
2019-08-29 14:19:35 +00:00
|
|
|
bool autoJoined() const;
|
|
|
|
|
2019-09-03 20:28:58 +00:00
|
|
|
protected slots:
|
|
|
|
void onRoomChanged(Models::Item* item, int row, int col);
|
2019-12-31 18:14:12 +00:00
|
|
|
void onParticipantJoined(const Models::Participant& participant);
|
|
|
|
void onParticipantLeft(const QString& name);
|
2019-09-03 20:28:58 +00:00
|
|
|
|
2019-08-28 11:40:55 +00:00
|
|
|
protected:
|
2020-04-15 13:48:49 +00:00
|
|
|
Shared::Message createMessage() const override;
|
2019-08-28 11:40:55 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Models::Room* room;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ROOM_H
|