2020-08-20 21:32:30 +00:00
|
|
|
/*
|
2023-11-06 23:57:08 +00:00
|
|
|
* Squawk messenger.
|
2020-08-20 21:32:30 +00:00
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
2023-11-06 23:57:08 +00:00
|
|
|
*
|
2020-08-20 21:32:30 +00:00
|
|
|
* 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.
|
2023-11-06 23:57:08 +00:00
|
|
|
*
|
2020-08-20 21:32:30 +00:00
|
|
|
* 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.
|
2023-11-06 23:57:08 +00:00
|
|
|
*
|
2020-08-20 21:32:30 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-11-06 23:57:08 +00:00
|
|
|
#pragma once
|
2020-08-20 21:32:30 +00:00
|
|
|
|
2021-02-01 22:55:15 +00:00
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
|
2020-08-20 21:32:30 +00:00
|
|
|
#include <QStyledItemDelegate>
|
2021-02-01 22:55:15 +00:00
|
|
|
#include <QStyleOptionButton>
|
2020-08-20 21:32:30 +00:00
|
|
|
#include <QFont>
|
|
|
|
#include <QFontMetrics>
|
2021-01-14 11:22:02 +00:00
|
|
|
#include <QPushButton>
|
2021-03-22 18:04:26 +00:00
|
|
|
#include <QProgressBar>
|
2021-04-26 16:37:36 +00:00
|
|
|
#include <QLabel>
|
2022-04-30 18:41:25 +00:00
|
|
|
#include <QTextDocument>
|
2023-08-15 15:28:25 +00:00
|
|
|
#include <QString>
|
|
|
|
#include <QPainter>
|
2020-08-20 21:32:30 +00:00
|
|
|
|
|
|
|
#include "shared/icons.h"
|
2021-04-20 21:56:47 +00:00
|
|
|
#include "shared/global.h"
|
2021-05-03 11:23:41 +00:00
|
|
|
#include "shared/utils.h"
|
2022-02-18 21:27:09 +00:00
|
|
|
#include "shared/pathcheck.h"
|
2020-08-20 21:32:30 +00:00
|
|
|
|
2021-05-15 22:07:49 +00:00
|
|
|
#include "preview.h"
|
|
|
|
|
2021-02-01 22:55:15 +00:00
|
|
|
namespace Models {
|
|
|
|
struct FeedItem;
|
|
|
|
};
|
|
|
|
|
2023-11-06 23:57:08 +00:00
|
|
|
class MessageDelegate : public QStyledItemDelegate {
|
2020-08-20 21:32:30 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
MessageDelegate(QObject *parent = nullptr);
|
|
|
|
~MessageDelegate();
|
2023-11-06 23:57:08 +00:00
|
|
|
|
2020-08-20 21:32:30 +00:00
|
|
|
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override;
|
|
|
|
QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const override;
|
|
|
|
//void setModelData(QWidget * editor, QAbstractItemModel * model, const QModelIndex & index) const override;
|
2023-11-06 23:57:08 +00:00
|
|
|
|
2021-01-07 21:50:12 +00:00
|
|
|
bool editorEvent(QEvent * event, QAbstractItemModel * model, const QStyleOptionViewItem & option, const QModelIndex & index) override;
|
2021-02-01 22:55:15 +00:00
|
|
|
void endClearWidgets();
|
|
|
|
void beginClearWidgets();
|
2022-04-27 21:08:59 +00:00
|
|
|
void leftClick(const QPoint& point, const QModelIndex& index, const QRect& sizeHint) const;
|
2022-05-03 09:17:08 +00:00
|
|
|
QString leftDoubleClick(const QPoint& point, const QModelIndex& index, const QRect& sizeHint);
|
2022-05-02 19:25:50 +00:00
|
|
|
Shared::Hover hoverType(const QPoint& point, const QModelIndex& index, const QRect& sizeHint) const;
|
|
|
|
QString mouseDrag(const QPoint& start, const QPoint& end, const QModelIndex& index, const QRect& sizeHint);
|
2022-05-01 20:19:52 +00:00
|
|
|
QString clearSelection();
|
2022-01-09 14:32:23 +00:00
|
|
|
|
|
|
|
static int avatarHeight;
|
|
|
|
static int margin;
|
2023-11-06 23:57:08 +00:00
|
|
|
|
2021-02-06 11:02:42 +00:00
|
|
|
signals:
|
2021-05-14 19:49:38 +00:00
|
|
|
void buttonPushed(const QString& messageId) const;
|
2021-04-28 20:26:19 +00:00
|
|
|
void invalidPath(const QString& messageId) const;
|
2022-04-28 21:29:44 +00:00
|
|
|
void openLink(const QString& href) const;
|
2023-11-06 23:57:08 +00:00
|
|
|
|
2021-02-01 22:55:15 +00:00
|
|
|
protected:
|
2022-01-08 22:28:29 +00:00
|
|
|
int paintButton(QPushButton* btn, QPainter* painter, bool sentByMe, QStyleOptionViewItem& option) const;
|
|
|
|
int paintBar(QProgressBar* bar, QPainter* painter, bool sentByMe, QStyleOptionViewItem& option) const;
|
|
|
|
int paintPreview(const Models::FeedItem& data, QPainter* painter, QStyleOptionViewItem& option) const;
|
|
|
|
int paintComment(const Models::FeedItem& data, QPainter* painter, QStyleOptionViewItem& option) const;
|
2022-04-26 22:17:53 +00:00
|
|
|
int paintBody(const Models::FeedItem& data, QPainter* painter, QStyleOptionViewItem& option) const;
|
2022-01-07 14:02:49 +00:00
|
|
|
void paintAvatar(const Models::FeedItem& data, const QModelIndex& index, const QStyleOptionViewItem& option, QPainter* painter) const;
|
2022-01-09 14:32:23 +00:00
|
|
|
void paintBubble(const Models::FeedItem& data, QPainter* painter, const QStyleOptionViewItem& option) const;
|
2022-04-26 22:17:53 +00:00
|
|
|
|
2021-02-01 22:55:15 +00:00
|
|
|
QPushButton* getButton(const Models::FeedItem& data) const;
|
2021-03-22 18:04:26 +00:00
|
|
|
QProgressBar* getBar(const Models::FeedItem& data) const;
|
2021-04-26 16:37:36 +00:00
|
|
|
QLabel* getStatusIcon(const Models::FeedItem& data) const;
|
2021-05-24 22:06:05 +00:00
|
|
|
QLabel* getPencilIcon(const Models::FeedItem& data) const;
|
2023-11-06 23:57:08 +00:00
|
|
|
QLabel* getEncryptionIcon(const Models::FeedItem& data) const;
|
2021-03-22 18:04:26 +00:00
|
|
|
void clearHelperWidget(const Models::FeedItem& data) const;
|
2022-01-07 14:02:49 +00:00
|
|
|
|
|
|
|
bool needToDrawAvatar(const QModelIndex& index, const Models::FeedItem& data, const QStyleOptionViewItem& option) const;
|
|
|
|
bool needToDrawSender(const QModelIndex& index, const Models::FeedItem& data) const;
|
2022-04-28 21:29:44 +00:00
|
|
|
|
|
|
|
QRect getHoveredMessageBodyRect(const QModelIndex& index, const Models::FeedItem& data, const QRect& sizeHint) const;
|
|
|
|
QString getAnchor(const QPoint& point, const QModelIndex& index, const QRect& sizeHint) const;
|
2023-11-06 23:57:08 +00:00
|
|
|
|
2021-02-06 11:02:42 +00:00
|
|
|
protected slots:
|
|
|
|
void onButtonPushed() const;
|
2023-11-06 23:57:08 +00:00
|
|
|
|
2020-08-20 21:32:30 +00:00
|
|
|
private:
|
2021-02-01 22:55:15 +00:00
|
|
|
class FeedButton : public QPushButton {
|
|
|
|
public:
|
|
|
|
QString messageId;
|
|
|
|
};
|
2023-11-06 23:57:08 +00:00
|
|
|
|
2023-01-12 17:56:01 +00:00
|
|
|
const QFont& bodyFont;
|
|
|
|
const QFont& nickFont;
|
|
|
|
const QFont& dateFont;
|
|
|
|
const QFontMetrics& nickMetrics;
|
|
|
|
const QFontMetrics& dateMetrics;
|
2023-11-06 23:57:08 +00:00
|
|
|
mutable QTextDocument bodyRenderer;
|
|
|
|
|
2021-02-01 22:55:15 +00:00
|
|
|
int buttonHeight;
|
2022-01-09 14:32:23 +00:00
|
|
|
int buttonWidth;
|
2021-03-22 18:04:26 +00:00
|
|
|
int barHeight;
|
2023-11-06 23:57:08 +00:00
|
|
|
|
|
|
|
mutable std::map<QString, FeedButton*> buttons;
|
|
|
|
mutable std::map<QString, QProgressBar*> bars;
|
|
|
|
mutable std::map<QString, QLabel*> statusIcons;
|
|
|
|
mutable std::map<QString, QLabel*> pencilIcons;
|
|
|
|
mutable std::map<QString, QLabel*> encryptionIcons;
|
|
|
|
mutable std::map<QString, Preview*> previews;
|
|
|
|
mutable std::set<QString> idsToKeep;
|
2021-02-01 22:55:15 +00:00
|
|
|
bool clearingWidgets;
|
2022-05-01 20:19:52 +00:00
|
|
|
QString currentId;
|
|
|
|
std::pair<int, int> selection;
|
2020-08-20 21:32:30 +00:00
|
|
|
};
|