/* 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" class History; enum class SendMediaType; struct SendingAlbum; namespace SendMenu { enum class Type; } // namespace SendMenu namespace Api { struct SendOptions; struct SendAction; } // namespace Api namespace Ui { class ScrollArea; class PlainShadow; class FlatButton; class HistoryDownButton; struct PreparedList; class SendFilesWay; } // namespace Ui namespace Profile { class BackButton; } // namespace Profile namespace InlineBots { class Result; } // namespace InlineBots namespace HistoryView { class Element; class TopBarWidget; class ScheduledMemento; class ComposeControls; class ScheduledWidget final : public Window::SectionWidget , private ListDelegate { public: ScheduledWidget( QWidget *parent, not_null controller, not_null history); ~ScheduledWidget(); not_null history() const; Dialogs::RowDescriptor activeChat() const override; bool preventsClose(Fn &&continueCallback) const override; bool hasTopBarShadow() const override { return true; } QPixmap grabForShowAnimation( const Window::SectionSlideParams ¶ms) override; bool showInternal( not_null memento, const Window::SectionShow ¶ms) override; std::shared_ptr createMemento() override; Window::SectionActionResult sendBotCommand( Bot::SendCommandRequest request) override; void setInternalState( const QRect &geometry, not_null memento); // Tabbed selector management. bool pushTabbedSelectorToThirdSection( not_null peer, const Window::SectionShow ¶ms) 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 listSource( Data::MessagePosition aroundId, int limitBefore, int limitAfter) override; bool listAllowsMultiSelect() override; bool listIsItemGoodForSelection(not_null item) override; bool listIsLessInOrder( not_null first, not_null second) override; void listSelectionChanged(SelectedItems &&items) override; void listVisibleItemsChanged(HistoryItemsList &&items) override; MessagesBarData listMessagesBar( const std::vector> &elements) override; void listContentRefreshed() override; ClickHandlerPtr listDateLink(not_null view) override; bool listElementHideReply(not_null view) override; bool listElementShownUnread(not_null view) override; bool listIsGoodForAroundPosition(not_null view) override; void listSendBotCommand( const QString &command, const FullMsgId &context) override; void listHandleViaClick(not_null bot) override; not_null listChatTheme() override; CopyRestrictionType listCopyRestrictionType(HistoryItem *item) override; CopyRestrictionType listSelectRestrictionType() override; protected: void resizeEvent(QResizeEvent *e) override; void paintEvent(QPaintEvent *e) override; void showAnimatedHook( const Window::SectionSlideParams ¶ms) override; void showFinishedHook() override; void doSetInnerFocus() override; private: void onScroll(); void updateInnerVisibleArea(); void updateControlsGeometry(); void updateAdaptiveLayout(); void saveState(not_null memento); void restoreState(not_null memento); void showAtPosition(Data::MessagePosition position); bool showAtPositionNow(Data::MessagePosition position); void setupComposeControls(); void setupDragArea(); void setupScrollDownButton(); void scrollDownClicked(); void scrollDownAnimationFinish(); void updateScrollDownVisibility(); void updateScrollDownPosition(); void confirmSendNowSelected(); void confirmDeleteSelected(); void clearSelected(); [[nodiscard]] Api::SendAction prepareSendAction( Api::SendOptions options) const; void send(); void send(Api::SendOptions options); void sendVoice(QByteArray bytes, VoiceWaveform waveform, int duration); void sendVoice( QByteArray bytes, VoiceWaveform waveform, int duration, Api::SendOptions options); void edit( not_null item, Api::SendOptions options, mtpRequestId *const saveEditMsgRequestId); void highlightSingleNewMessage(const Data::MessagesSlice &slice); void chooseAttach(); [[nodiscard]] SendMenu::Type sendMenuType() const; void uploadFile(const QByteArray &fileContent, SendMediaType type); bool confirmSendingFiles( QImage &&image, QByteArray &&content, std::optional overrideSendImagesAsPhotos = std::nullopt, const QString &insertTextOnCancel = QString()); bool confirmSendingFiles( Ui::PreparedList &&list, const QString &insertTextOnCancel = QString()); bool confirmSendingFiles( not_null data, std::optional overrideSendImagesAsPhotos = std::nullopt, const QString &insertTextOnCancel = QString()); bool showSendingFilesError(const Ui::PreparedList &list) const; void sendingFilesConfirmed( Ui::PreparedList &&list, Ui::SendFilesWay way, TextWithTags &&caption, Api::SendOptions options, bool ctrlShiftEnter); void sendExistingDocument(not_null document); bool sendExistingDocument( not_null document, Api::SendOptions options); void sendExistingPhoto(not_null photo); bool sendExistingPhoto( not_null photo, Api::SendOptions options); void sendInlineResult( not_null result, not_null bot); void sendInlineResult( not_null result, not_null bot, Api::SendOptions options); const not_null _history; std::shared_ptr _theme; object_ptr _scroll; QPointer _inner; object_ptr _topBar; object_ptr _topBarShadow; std::unique_ptr _composeControls; bool _skipScrollEvent = false; FullMsgId _highlightMessageId; std::optional _nextAnimatedScrollPosition; int _nextAnimatedScrollDelta = 0; Ui::Animations::Simple _scrollDownShown; bool _scrollDownIsShown = false; object_ptr _scrollDown; Data::MessagesSlice _lastSlice; bool _choosingAttach = false; }; class ScheduledMemento : public Window::SectionMemento { public: ScheduledMemento(not_null history) : _history(history) { } object_ptr createWidget( QWidget *parent, not_null controller, Window::Column column, const QRect &geometry) override; not_null getHistory() const { return _history; } not_null list() { return &_list; } private: const not_null _history; ListMemento _list; }; } // namespace HistoryView