nheko/include/TimelineItem.h

107 lines
3.1 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 <QHBoxLayout>
#include <QLabel>
#include <QWidget>
2017-04-28 13:56:45 +02:00
#include "ImageItem.h"
2017-04-30 14:10:59 +02:00
#include "Sync.h"
2017-04-06 01:06:42 +02:00
#include "Avatar.h"
#include "Emote.h"
#include "Image.h"
#include "MessageEvent.h"
#include "Notice.h"
#include "RoomInfoListItem.h"
#include "Text.h"
namespace events = matrix::events;
2017-08-26 10:33:26 +02:00
namespace msgs = matrix::events::messages;
class TimelineItem : public QWidget
2017-04-06 01:06:42 +02:00
{
2017-08-26 10:33:26 +02:00
Q_OBJECT
2017-04-06 01:06:42 +02:00
public:
2017-08-26 10:33:26 +02:00
TimelineItem(const events::MessageEvent<msgs::Notice> &e,
bool with_sender,
QWidget *parent = 0);
TimelineItem(const events::MessageEvent<msgs::Text> &e,
bool with_sender,
QWidget *parent = 0);
TimelineItem(const events::MessageEvent<msgs::Emote> &e,
bool with_sender,
QWidget *parent = 0);
2017-08-26 10:33:26 +02:00
// For local messages.
2017-09-10 11:58:00 +02:00
// m.text & m.emote
TimelineItem(events::MessageEventType ty,
const QString &userid,
QString body,
bool withSender,
QWidget *parent = 0);
2017-09-10 11:58:00 +02:00
// m.image
TimelineItem(ImageItem *item, const QString &userid, bool withSender, QWidget *parent = 0);
2017-08-26 10:33:26 +02:00
TimelineItem(ImageItem *img,
const events::MessageEvent<msgs::Image> &e,
bool with_sender,
QWidget *parent);
2017-04-28 13:56:45 +02:00
2017-08-26 10:33:26 +02:00
void setUserAvatar(const QImage &pixmap);
inline DescInfo descriptionMessage() const;
2017-08-26 10:33:26 +02:00
~TimelineItem();
2017-04-06 01:06:42 +02:00
private:
2017-08-26 10:33:26 +02:00
void init();
2017-08-26 10:33:26 +02:00
void generateBody(const QString &body);
void generateBody(const QString &userid, const QString &body);
void generateTimestamp(const QDateTime &time);
QString descriptiveTime(const QDateTime &then);
2017-08-26 10:33:26 +02:00
void setupAvatarLayout(const QString &userName);
void setupSimpleLayout();
2017-08-26 10:33:26 +02:00
QString replaceEmoji(const QString &body);
2017-04-19 18:38:39 +02:00
2017-08-26 10:33:26 +02:00
DescInfo descriptionMsg_;
2017-08-26 10:33:26 +02:00
QHBoxLayout *topLayout_;
QVBoxLayout *sideLayout_; // Avatar or Timestamp
QVBoxLayout *mainLayout_; // Header & Message body
2017-08-26 10:33:26 +02:00
QHBoxLayout *headerLayout_; // Username (&) Timestamp
2017-08-26 10:33:26 +02:00
Avatar *userAvatar_;
2017-08-26 10:33:26 +02:00
QFont font_;
2017-08-26 10:33:26 +02:00
QLabel *timestamp_;
QLabel *userName_;
QLabel *body_;
2017-04-06 01:06:42 +02:00
};
2017-08-20 12:47:22 +02:00
inline DescInfo
TimelineItem::descriptionMessage() const
{
2017-08-26 10:33:26 +02:00
return descriptionMsg_;
}