tdesktop/Telegram/SourceFiles/history/history_message.h

177 lines
4.8 KiB
C
Raw Normal View History

/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "history/history_item.h"
namespace HistoryView {
class Message;
} // namespace HistoryView
struct HistoryMessageEdited;
Fn<void(ChannelData*, MsgId)> HistoryDependentItemCallback(
const FullMsgId &msgId);
MTPDmessage::Flags NewMessageFlags(not_null<PeerData*> peer);
QString GetErrorTextForForward(
not_null<PeerData*> peer,
const HistoryItemsList &items);
void FastShareMessage(not_null<HistoryItem*> item);
QString FormatViewsCount(int views);
class HistoryMessage
2018-01-18 20:02:50 +00:00
: public HistoryItem {
public:
2017-12-13 18:10:48 +00:00
HistoryMessage(
not_null<History*> history,
const MTPDmessage &data);
2017-12-13 18:10:48 +00:00
HistoryMessage(
not_null<History*> history,
const MTPDmessageService &data);
2017-12-13 18:10:48 +00:00
HistoryMessage(
not_null<History*> history,
MsgId id,
2017-12-13 18:10:48 +00:00
MTPDmessage::Flags flags,
TimeId date,
2017-12-13 18:10:48 +00:00
UserId from,
const QString &postAuthor,
not_null<HistoryMessage*> original); // local forwarded
2017-12-13 18:10:48 +00:00
HistoryMessage(
not_null<History*> history,
MsgId id,
2017-12-13 18:10:48 +00:00
MTPDmessage::Flags flags,
MsgId replyTo,
UserId viaBotId,
TimeId date,
2017-12-13 18:10:48 +00:00
UserId from,
const QString &postAuthor,
const TextWithEntities &textWithEntities); // local message
HistoryMessage(
not_null<History*> history,
MsgId id,
2017-12-13 18:10:48 +00:00
MTPDmessage::Flags flags,
MsgId replyTo,
UserId viaBotId,
TimeId date,
2017-12-13 18:10:48 +00:00
UserId from,
const QString &postAuthor,
not_null<DocumentData*> document,
2018-01-18 13:59:22 +00:00
const TextWithEntities &caption,
2017-12-13 18:10:48 +00:00
const MTPReplyMarkup &markup); // local document
HistoryMessage(
not_null<History*> history,
MsgId id,
2017-12-13 18:10:48 +00:00
MTPDmessage::Flags flags,
MsgId replyTo,
UserId viaBotId,
TimeId date,
2017-12-13 18:10:48 +00:00
UserId from,
const QString &postAuthor,
not_null<PhotoData*> photo,
2018-01-18 13:59:22 +00:00
const TextWithEntities &caption,
2017-12-13 18:10:48 +00:00
const MTPReplyMarkup &markup); // local photo
HistoryMessage(
not_null<History*> history,
MsgId id,
2017-12-13 18:10:48 +00:00
MTPDmessage::Flags flags,
MsgId replyTo,
UserId viaBotId,
TimeId date,
2017-12-13 18:10:48 +00:00
UserId from,
const QString &postAuthor,
not_null<GameData*> game,
const MTPReplyMarkup &markup); // local game
2018-01-18 20:02:50 +00:00
void refreshMedia(const MTPMessageMedia *media);
void refreshSentMedia(const MTPMessageMedia *media);
void setMedia(const MTPMessageMedia &media);
static std::unique_ptr<Data::Media> CreateMedia(
not_null<HistoryMessage*> item,
const MTPMessageMedia &media);
bool allowsForward() const override;
bool allowsEdit(TimeId now) const override;
2018-01-18 20:02:50 +00:00
bool uploading() const;
void applyGroupAdminChanges(
const base::flat_map<UserId, bool> &changes) override;
void setViewsCount(int32 count) override;
void setRealId(MsgId newId) override;
void dependencyItemRemoved(HistoryItem *dependency) override;
QString notificationHeader() const override;
void applyEdition(const MTPDmessage &message) override;
void applyEdition(const MTPDmessageService &message) override;
void updateSentMedia(const MTPMessageMedia *media) override;
void updateReplyMarkup(const MTPReplyMarkup *markup) override {
setReplyMarkup(markup);
}
void addToUnreadMentions(UnreadMentionType type) override;
void eraseFromUnreadMentions() override;
Storage::SharedMediaTypesMask sharedMediaTypes() const override;
void setText(const TextWithEntities &textWithEntities) override;
TextWithEntities originalText() const override;
TextWithEntities clipboardText() const override;
2018-01-18 20:02:50 +00:00
bool textHasLinks() const override;
int viewsCount() const override;
not_null<PeerData*> displayFrom() const;
bool updateDependencyItem() override;
MsgId dependencyMsgId() const override {
return replyToId();
}
HistoryMessage *toHistoryMessage() override { // dynamic_cast optimize
return this;
}
const HistoryMessage *toHistoryMessage() const override { // dynamic_cast optimize
return this;
}
std::unique_ptr<HistoryView::Element> createView(
not_null<HistoryView::ElementDelegate*> delegate) override;
~HistoryMessage();
private:
void setEmptyText();
bool hasAdminBadge() const {
return _flags & MTPDmessage_ClientFlag::f_has_admin_badge;
}
2018-12-19 11:20:04 +00:00
bool isTooOldForEdit(TimeId now) const;
// For an invoice button we replace the button text with a "Receipt" key.
// It should show the receipt for the payed invoice. Still let mobile apps do that.
void replaceBuyWithReceiptInMarkup();
void applyEditionToEmpty();
void setReplyMarkup(const MTPReplyMarkup *markup);
struct CreateConfig;
2017-07-12 19:14:20 +00:00
void createComponentsHelper(MTPDmessage::Flags flags, MsgId replyTo, UserId viaBotId, const QString &postAuthor, const MTPReplyMarkup &markup);
void createComponents(const CreateConfig &config);
void updateAdminBadgeState();
2017-12-30 08:15:42 +00:00
ClickHandlerPtr fastReplyLink() const;
QString _timeText;
int _timeWidth = 0;
mutable int32 _fromNameVersion = 0;
friend class HistoryView::Element;
friend class HistoryView::Message;
};