2019-09-10 14:33:39 +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 MESSAGE_H
|
|
|
|
#define MESSAGE_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QGraphicsDropShadowEffect>
|
2019-09-12 20:54:44 +00:00
|
|
|
#include <QPushButton>
|
2019-09-17 22:05:32 +00:00
|
|
|
#include <QProgressBar>
|
|
|
|
#include <QAction>
|
|
|
|
#include <QDesktopServices>
|
|
|
|
#include <QUrl>
|
2020-02-08 11:44:15 +00:00
|
|
|
#include <QMap>
|
2019-09-10 14:33:39 +00:00
|
|
|
|
2020-04-03 22:28:15 +00:00
|
|
|
#include "shared/message.h"
|
|
|
|
#include "shared/icons.h"
|
|
|
|
#include "shared/global.h"
|
2020-04-12 15:55:05 +00:00
|
|
|
#include "shared/utils.h"
|
2019-11-11 15:19:54 +00:00
|
|
|
#include "resizer.h"
|
|
|
|
#include "image.h"
|
2019-09-10 14:33:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @todo write docs
|
|
|
|
*/
|
2020-02-04 15:14:51 +00:00
|
|
|
class Message : public QWidget
|
2019-09-10 14:33:39 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-12-20 15:41:20 +00:00
|
|
|
Message(const Shared::Message& source, bool outgoing, const QString& sender, const QString& avatarPath = "", QWidget* parent = nullptr);
|
2019-09-10 14:33:39 +00:00
|
|
|
~Message();
|
|
|
|
|
|
|
|
void setSender(const QString& sender);
|
|
|
|
QString getId() const;
|
2020-02-08 11:44:15 +00:00
|
|
|
QString getSenderJid() const;
|
|
|
|
QString getSenderResource() const;
|
2019-11-11 15:19:54 +00:00
|
|
|
QString getFileUrl() const;
|
2019-11-12 13:38:01 +00:00
|
|
|
const Shared::Message& getMessage() const;
|
2019-09-10 14:33:39 +00:00
|
|
|
|
2019-11-14 11:43:43 +00:00
|
|
|
void addButton(const QIcon& icon, const QString& buttonText, const QString& tooltip = "");
|
2019-11-12 13:38:01 +00:00
|
|
|
void showComment(const QString& comment, bool wordWrap = false);
|
|
|
|
void hideComment();
|
2019-09-12 20:54:44 +00:00
|
|
|
void showFile(const QString& path);
|
2019-11-12 13:38:01 +00:00
|
|
|
void setProgress(qreal value);
|
2019-12-20 15:41:20 +00:00
|
|
|
void setAvatarPath(const QString& p_path);
|
2020-02-08 11:44:15 +00:00
|
|
|
bool change(const QMap<QString, QVariant>& data);
|
|
|
|
|
|
|
|
bool const outgoing;
|
2019-09-12 20:54:44 +00:00
|
|
|
|
|
|
|
signals:
|
2019-11-12 13:38:01 +00:00
|
|
|
void buttonClicked();
|
2019-09-12 20:54:44 +00:00
|
|
|
|
2019-09-10 14:33:39 +00:00
|
|
|
private:
|
|
|
|
Shared::Message msg;
|
|
|
|
QWidget* body;
|
2020-02-04 15:14:51 +00:00
|
|
|
QWidget* statusBar;
|
2019-09-10 14:33:39 +00:00
|
|
|
QVBoxLayout* bodyLayout;
|
2020-02-04 15:14:51 +00:00
|
|
|
QHBoxLayout* layout;
|
2019-09-10 14:33:39 +00:00
|
|
|
QLabel* date;
|
|
|
|
QLabel* sender;
|
|
|
|
QLabel* text;
|
|
|
|
QGraphicsDropShadowEffect* shadow;
|
2019-11-12 13:38:01 +00:00
|
|
|
QPushButton* button;
|
2019-09-12 20:54:44 +00:00
|
|
|
QLabel* file;
|
2019-09-17 22:05:32 +00:00
|
|
|
QProgressBar* progress;
|
2019-09-17 15:16:09 +00:00
|
|
|
QLabel* fileComment;
|
2020-02-08 11:44:15 +00:00
|
|
|
QLabel* statusIcon;
|
|
|
|
QLabel* editedLabel;
|
2019-12-20 15:41:20 +00:00
|
|
|
Image* avatar;
|
2019-11-12 13:38:01 +00:00
|
|
|
bool hasButton;
|
2019-09-12 20:54:44 +00:00
|
|
|
bool hasProgress;
|
|
|
|
bool hasFile;
|
2019-09-17 22:05:32 +00:00
|
|
|
bool commentAdded;
|
2020-02-08 11:44:15 +00:00
|
|
|
bool hasStatusIcon;
|
|
|
|
bool hasEditedLabel;
|
2019-09-17 22:05:32 +00:00
|
|
|
|
|
|
|
private:
|
2019-11-12 13:38:01 +00:00
|
|
|
void hideButton();
|
2019-09-17 22:05:32 +00:00
|
|
|
void hideProgress();
|
|
|
|
void hideFile();
|
2020-03-26 15:08:44 +00:00
|
|
|
void setState();
|
2020-03-28 14:05:49 +00:00
|
|
|
void setEdited();
|
2019-09-10 14:33:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MESSAGE_H
|