mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 10:11:41 -05:00
158 lines
4.3 KiB
C++
158 lines
4.3 KiB
C++
/*
|
|
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/view/history_view_element.h"
|
|
|
|
class HistoryMessage;
|
|
struct HistoryMessageEdited;
|
|
|
|
namespace HistoryView {
|
|
|
|
class WebPage;
|
|
|
|
// Special type of Component for the channel actions log.
|
|
struct LogEntryOriginal
|
|
: public RuntimeComponent<LogEntryOriginal, Element> {
|
|
LogEntryOriginal();
|
|
LogEntryOriginal(LogEntryOriginal &&other);
|
|
LogEntryOriginal &operator=(LogEntryOriginal &&other);
|
|
~LogEntryOriginal();
|
|
|
|
std::unique_ptr<WebPage> page;
|
|
|
|
};
|
|
|
|
class Message : public Element {
|
|
public:
|
|
Message(
|
|
not_null<ElementDelegate*> delegate,
|
|
not_null<HistoryMessage*> data);
|
|
|
|
int marginTop() const override;
|
|
int marginBottom() const override;
|
|
void draw(
|
|
Painter &p,
|
|
QRect clip,
|
|
TextSelection selection,
|
|
crl::time ms) const override;
|
|
PointState pointState(QPoint point) const override;
|
|
TextState textState(
|
|
QPoint point,
|
|
StateRequest request) const override;
|
|
void updatePressed(QPoint point) override;
|
|
void drawInfo(
|
|
Painter &p,
|
|
int right,
|
|
int bottom,
|
|
int width,
|
|
bool selected,
|
|
InfoDisplayType type) const override;
|
|
bool pointInTime(
|
|
int right,
|
|
int bottom,
|
|
QPoint point,
|
|
InfoDisplayType type) const override;
|
|
TextForMimeData selectedText(TextSelection selection) const override;
|
|
TextSelection adjustSelection(
|
|
TextSelection selection,
|
|
TextSelectType type) const override;
|
|
|
|
// hasFromPhoto() returns true even if we don't display the photo
|
|
// but we need to skip a place at the left side for this photo
|
|
bool hasFromPhoto() const override;
|
|
bool displayFromPhoto() const override;
|
|
bool hasFromName() const override;
|
|
bool displayFromName() const override;
|
|
bool displayForwardedFrom() const override;
|
|
bool hasOutLayout() const override;
|
|
bool drawBubble() const override;
|
|
bool hasBubble() const override;
|
|
bool hasFastReply() const override;
|
|
bool displayFastReply() const override;
|
|
bool displayRightAction() const override;
|
|
void drawRightAction(
|
|
Painter &p,
|
|
int left,
|
|
int top,
|
|
int outerWidth) const override;
|
|
ClickHandlerPtr rightActionLink() const override;
|
|
bool displayEditedBadge() const override;
|
|
TimeId displayedEditDate() const override;
|
|
int infoWidth() const override;
|
|
|
|
protected:
|
|
void refreshDataIdHook() override;
|
|
|
|
private:
|
|
not_null<HistoryMessage*> message() const;
|
|
|
|
void initLogEntryOriginal();
|
|
void refreshEditedBadge();
|
|
void fromNameUpdated(int width) const;
|
|
|
|
[[nodiscard]] TextSelection skipTextSelection(
|
|
TextSelection selection) const;
|
|
[[nodiscard]] TextSelection unskipTextSelection(
|
|
TextSelection selection) const;
|
|
|
|
void paintFromName(Painter &p, QRect &trect, bool selected) const;
|
|
void paintForwardedInfo(Painter &p, QRect &trect, bool selected) const;
|
|
void paintReplyInfo(Painter &p, QRect &trect, bool selected) const;
|
|
// this method draws "via @bot" if it is not painted in forwarded info or in from name
|
|
void paintViaBotIdInfo(Painter &p, QRect &trect, bool selected) const;
|
|
void paintText(Painter &p, QRect &trect, TextSelection selection) const;
|
|
|
|
bool getStateFromName(
|
|
QPoint point,
|
|
QRect &trect,
|
|
not_null<TextState*> outResult) const;
|
|
bool getStateForwardedInfo(
|
|
QPoint point,
|
|
QRect &trect,
|
|
not_null<TextState*> outResult,
|
|
StateRequest request) const;
|
|
bool getStateReplyInfo(
|
|
QPoint point,
|
|
QRect &trect,
|
|
not_null<TextState*> outResult) const;
|
|
bool getStateViaBotIdInfo(
|
|
QPoint point,
|
|
QRect &trect,
|
|
not_null<TextState*> outResult) const;
|
|
bool getStateText(
|
|
QPoint point,
|
|
QRect &trect,
|
|
not_null<TextState*> outResult,
|
|
StateRequest request) const;
|
|
|
|
void updateMediaInBubbleState();
|
|
QRect countGeometry() const;
|
|
|
|
int resizeContentGetHeight(int newWidth);
|
|
QSize performCountOptimalSize() override;
|
|
QSize performCountCurrentSize(int newWidth) override;
|
|
bool hasVisibleText() const override;
|
|
|
|
bool displayFastShare() const;
|
|
bool displayGoToOriginal() const;
|
|
ClickHandlerPtr fastReplyLink() const;
|
|
const HistoryMessageEdited *displayedEditBadge() const;
|
|
HistoryMessageEdited *displayedEditBadge();
|
|
void initTime();
|
|
int timeLeft() const;
|
|
int plainMaxWidth() const;
|
|
|
|
WebPage *logEntryOriginal() const;
|
|
|
|
mutable ClickHandlerPtr _rightActionLink;
|
|
mutable ClickHandlerPtr _fastReplyLink;
|
|
|
|
};
|
|
|
|
} // namespace HistoryView
|