tdesktop/Telegram/SourceFiles/history/view/history_view_replies_section.h

360 lines
9.8 KiB
C
Raw Normal View History

2020-08-28 10:01:55 +00:00
/*
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 "window/section_widget.h"
#include "window/section_memento.h"
#include "history/view/history_view_list_widget.h"
#include "data/data_messages.h"
2020-09-08 11:19:44 +00:00
#include "base/timer.h"
2020-08-28 10:01:55 +00:00
class History;
enum class SendMediaType;
struct SendingAlbum;
namespace SendMenu {
enum class Type;
} // namespace SendMenu
namespace Api {
struct SendOptions;
2021-11-09 15:24:13 +00:00
struct SendAction;
2020-08-28 10:01:55 +00:00
} // namespace Api
namespace Storage {
} // namespace Storage
namespace Ui {
class ScrollArea;
class PlainShadow;
class FlatButton;
class HistoryDownButton;
2020-10-13 07:16:16 +00:00
class PinnedBar;
struct PreparedList;
2020-10-17 09:51:55 +00:00
class SendFilesWay;
2020-08-28 10:01:55 +00:00
} // namespace Ui
namespace Profile {
class BackButton;
} // namespace Profile
namespace InlineBots {
class Result;
} // namespace InlineBots
namespace Data {
class RepliesList;
} // namespace Data
namespace HistoryView {
namespace Controls {
struct VoiceToSend;
} // namespace Controls
2020-08-28 10:01:55 +00:00
class Element;
class TopBarWidget;
class RepliesMemento;
class ComposeControls;
class SendActionPainter;
2020-08-28 10:01:55 +00:00
class RepliesWidget final
: public Window::SectionWidget
, private ListDelegate {
public:
RepliesWidget(
QWidget *parent,
not_null<Window::SessionController*> controller,
not_null<History*> history,
MsgId rootId);
~RepliesWidget();
[[nodiscard]] not_null<History*> history() const;
Dialogs::RowDescriptor activeChat() const override;
bool preventsClose(Fn<void()> &&continueCallback) const override;
2020-08-28 10:01:55 +00:00
bool hasTopBarShadow() const override {
return true;
}
QPixmap grabForShowAnimation(
const Window::SectionSlideParams &params) override;
bool showInternal(
not_null<Window::SectionMemento*> memento,
const Window::SectionShow &params) override;
2020-12-14 14:48:10 +00:00
std::shared_ptr<Window::SectionMemento> createMemento() override;
bool showMessage(
PeerId peerId,
const Window::SectionShow &params,
MsgId messageId) override;
2020-08-28 10:01:55 +00:00
2021-07-26 23:18:11 +00:00
Window::SectionActionResult sendBotCommand(
Bot::SendCommandRequest request) override;
2020-08-28 10:01:55 +00:00
void setInternalState(
const QRect &geometry,
not_null<RepliesMemento*> memento);
// Tabbed selector management.
bool pushTabbedSelectorToThirdSection(
not_null<PeerData*> peer,
const Window::SectionShow &params) override;
bool returnTabbedSelector() override;
// Float player interface.
bool floatPlayerHandleWheelEvent(QEvent *e) override;
QRect floatPlayerAvailableRect() override;
// ListDelegate interface.
Context listContext() override;
void listScrollTo(int top) override;
void listCancelRequest() override;
void listDeleteRequest() override;
rpl::producer<Data::MessagesSlice> listSource(
Data::MessagePosition aroundId,
int limitBefore,
int limitAfter) override;
bool listAllowsMultiSelect() override;
bool listIsItemGoodForSelection(not_null<HistoryItem*> item) override;
bool listIsLessInOrder(
not_null<HistoryItem*> first,
not_null<HistoryItem*> second) override;
void listSelectionChanged(SelectedItems &&items) override;
void listVisibleItemsChanged(HistoryItemsList &&items) override;
2020-09-15 15:30:34 +00:00
MessagesBarData listMessagesBar(
2020-08-28 10:01:55 +00:00
const std::vector<not_null<Element*>> &elements) override;
void listContentRefreshed() override;
ClickHandlerPtr listDateLink(not_null<Element*> view) override;
bool listElementHideReply(not_null<const Element*> view) override;
bool listElementShownUnread(not_null<const Element*> view) override;
bool listIsGoodForAroundPosition(not_null<const Element*> view) override;
void listSendBotCommand(
const QString &command,
const FullMsgId &context) override;
void listHandleViaClick(not_null<UserData*> bot) override;
not_null<Ui::ChatTheme*> listChatTheme() override;
CopyRestrictionType listCopyRestrictionType(HistoryItem *item) override;
2021-11-05 17:37:01 +00:00
CopyRestrictionType listSelectRestrictionType() override;
2020-08-28 10:01:55 +00:00
protected:
void resizeEvent(QResizeEvent *e) override;
void paintEvent(QPaintEvent *e) override;
void showAnimatedHook(
const Window::SectionSlideParams &params) override;
void showFinishedHook() override;
void doSetInnerFocus() override;
private:
void onScroll();
void updateInnerVisibleArea();
void updateControlsGeometry();
void updateAdaptiveLayout();
void saveState(not_null<RepliesMemento*> memento);
void restoreState(not_null<RepliesMemento*> memento);
void showAtStart();
void showAtEnd();
2020-08-31 13:41:24 +00:00
void showAtPosition(
Data::MessagePosition position,
HistoryItem *originItem = nullptr);
bool showAtPositionNow(
Data::MessagePosition position,
HistoryItem *originItem,
anim::type animated = anim::type::normal);
void finishSending();
2020-08-28 10:01:55 +00:00
void setupComposeControls();
2020-09-03 07:19:02 +00:00
void setupRoot();
void setupRootView();
2020-08-28 10:01:55 +00:00
void setupDragArea();
2020-09-08 11:19:44 +00:00
void sendReadTillRequest();
2020-09-15 15:30:34 +00:00
void readTill(not_null<HistoryItem*> item);
[[nodiscard]] std::optional<int> computeUnreadCountLocally(
MsgId afterId) const;
2020-08-28 10:01:55 +00:00
void setupScrollDownButton();
void scrollDownClicked();
void scrollDownAnimationFinish();
void updateScrollDownVisibility();
void updateScrollDownPosition();
void updatePinnedVisibility();
2020-08-28 10:01:55 +00:00
void confirmDeleteSelected();
void confirmForwardSelected();
2020-08-28 10:01:55 +00:00
void clearSelected();
void setPinnedVisibility(bool shown);
2020-08-28 10:01:55 +00:00
2021-11-09 15:24:13 +00:00
[[nodiscard]] Api::SendAction prepareSendAction(
Api::SendOptions options) const;
2020-08-28 10:01:55 +00:00
void send();
void send(Api::SendOptions options);
void sendVoice(Controls::VoiceToSend &&data);
2020-08-28 10:01:55 +00:00
void edit(
not_null<HistoryItem*> item,
Api::SendOptions options,
mtpRequestId *const saveEditMsgRequestId);
void chooseAttach();
[[nodiscard]] SendMenu::Type sendMenuType() const;
2020-09-01 06:07:37 +00:00
[[nodiscard]] MsgId replyToId() const;
2020-09-03 07:19:02 +00:00
[[nodiscard]] HistoryItem *lookupRoot() const;
[[nodiscard]] bool computeAreComments() const;
[[nodiscard]] std::optional<int> computeUnreadCount() const;
void orderWidgets();
2020-08-28 10:01:55 +00:00
2020-08-31 13:41:24 +00:00
void pushReplyReturn(not_null<HistoryItem*> item);
void computeCurrentReplyReturn();
void calculateNextReplyReturn();
void restoreReplyReturns(const std::vector<MsgId> &list);
void checkReplyReturns();
2020-09-22 16:16:36 +00:00
void recountChatWidth();
2020-11-11 20:47:40 +00:00
void replyToMessage(FullMsgId itemId);
void refreshTopBarActiveChat();
void refreshUnreadCountBadge();
void reloadUnreadCountIfNeeded();
2020-08-31 13:41:24 +00:00
2020-08-28 10:01:55 +00:00
void uploadFile(const QByteArray &fileContent, SendMediaType type);
bool confirmSendingFiles(
QImage &&image,
QByteArray &&content,
2020-10-15 14:27:16 +00:00
std::optional<bool> overrideSendImagesAsPhotos = std::nullopt,
2020-08-28 10:01:55 +00:00
const QString &insertTextOnCancel = QString());
bool confirmSendingFiles(
Ui::PreparedList &&list,
2020-08-28 10:01:55 +00:00
const QString &insertTextOnCancel = QString());
bool confirmSendingFiles(
not_null<const QMimeData*> data,
2020-10-15 14:27:16 +00:00
std::optional<bool> overrideSendImagesAsPhotos = std::nullopt,
2020-08-28 10:01:55 +00:00
const QString &insertTextOnCancel = QString());
bool showSendingFilesError(const Ui::PreparedList &list) const;
2020-10-17 09:51:55 +00:00
void sendingFilesConfirmed(
Ui::PreparedList &&list,
2020-10-17 09:51:55 +00:00
Ui::SendFilesWay way,
2020-08-28 10:01:55 +00:00
TextWithTags &&caption,
Api::SendOptions options,
2020-10-17 09:51:55 +00:00
bool ctrlShiftEnter);
2020-08-28 10:01:55 +00:00
void sendExistingDocument(not_null<DocumentData*> document);
bool sendExistingDocument(
not_null<DocumentData*> document,
Api::SendOptions options);
void sendExistingPhoto(not_null<PhotoData*> photo);
bool sendExistingPhoto(
not_null<PhotoData*> photo,
Api::SendOptions options);
void sendInlineResult(
not_null<InlineBots::Result*> result,
not_null<UserData*> bot);
void sendInlineResult(
not_null<InlineBots::Result*> result,
not_null<UserData*> bot,
Api::SendOptions options);
[[nodiscard]] bool showSlowmodeError();
[[nodiscard]] std::optional<QString> writeRestriction() const;
2020-08-28 10:01:55 +00:00
const not_null<History*> _history;
const MsgId _rootId = 0;
std::shared_ptr<Ui::ChatTheme> _theme;
2020-09-03 07:19:02 +00:00
HistoryItem *_root = nullptr;
2020-08-28 10:01:55 +00:00
std::shared_ptr<Data::RepliesList> _replies;
2020-09-03 07:19:02 +00:00
rpl::variable<bool> _areComments = false;
std::shared_ptr<SendActionPainter> _sendAction;
2020-08-28 10:01:55 +00:00
QPointer<ListWidget> _inner;
object_ptr<TopBarWidget> _topBar;
object_ptr<Ui::PlainShadow> _topBarShadow;
std::unique_ptr<ComposeControls> _composeControls;
bool _skipScrollEvent = false;
2020-10-13 07:16:16 +00:00
std::unique_ptr<Ui::PinnedBar> _rootView;
int _rootViewHeight = 0;
bool _rootViewInited = false;
2020-10-13 07:16:16 +00:00
rpl::variable<bool> _rootVisible = false;
std::unique_ptr<Ui::ScrollArea> _scroll;
2020-08-31 13:41:24 +00:00
std::vector<MsgId> _replyReturns;
HistoryItem *_replyReturn = nullptr;
2020-08-28 10:01:55 +00:00
Ui::Animations::Simple _scrollDownShown;
bool _scrollDownIsShown = false;
object_ptr<Ui::HistoryDownButton> _scrollDown;
bool _choosingAttach = false;
2020-09-08 11:19:44 +00:00
base::Timer _readRequestTimer;
bool _readRequestPending = false;
2020-09-08 11:19:44 +00:00
mtpRequestId _readRequestId = 0;
mtpRequestId _reloadUnreadCountRequestId = 0;
bool _loaded = false;
2020-08-28 10:01:55 +00:00
};
2020-09-08 11:19:44 +00:00
2020-08-28 10:01:55 +00:00
class RepliesMemento : public Window::SectionMemento {
public:
RepliesMemento(
not_null<History*> history,
MsgId rootId,
MsgId highlightId = 0)
2020-08-28 10:01:55 +00:00
: _history(history)
, _rootId(rootId)
, _highlightId(highlightId) {
2020-08-28 10:01:55 +00:00
}
explicit RepliesMemento(
not_null<HistoryItem*> commentsItem,
MsgId commentId = 0);
2020-08-28 10:01:55 +00:00
object_ptr<Window::SectionWidget> createWidget(
QWidget *parent,
not_null<Window::SessionController*> controller,
Window::Column column,
const QRect &geometry) override;
[[nodiscard]] not_null<History*> getHistory() const {
return _history;
}
[[nodiscard]] MsgId getRootId() const {
return _rootId;
}
void setReplies(std::shared_ptr<Data::RepliesList> replies) {
_replies = std::move(replies);
}
[[nodiscard]] std::shared_ptr<Data::RepliesList> getReplies() const {
return _replies;
}
2020-08-31 13:41:24 +00:00
void setReplyReturns(const std::vector<MsgId> &list) {
_replyReturns = list;
}
const std::vector<MsgId> &replyReturns() const {
return _replyReturns;
}
2020-08-28 10:01:55 +00:00
[[nodiscard]] not_null<ListMemento*> list() {
return &_list;
}
[[nodiscard]] MsgId getHighlightId() const {
return _highlightId;
}
2020-08-28 10:01:55 +00:00
private:
const not_null<History*> _history;
const MsgId _rootId = 0;
const MsgId _highlightId = 0;
2020-08-28 10:01:55 +00:00
ListMemento _list;
std::shared_ptr<Data::RepliesList> _replies;
2020-08-31 13:41:24 +00:00
std::vector<MsgId> _replyReturns;
2020-08-28 10:01:55 +00:00
};
} // namespace HistoryView