| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- /*
- 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 "api/api_common.h"
- #include "chat_helpers/compose/compose_features.h"
- #include "ui/rp_widget.h"
- #include "ui/controls/swipe_handler_data.h"
- #include "ui/effects/animations.h"
- #include "ui/effects/message_sending_animation_common.h"
- #include "ui/effects/panel_animation.h"
- #include "ui/cached_round_corners.h"
- #include "mtproto/sender.h"
- #include "base/object_ptr.h"
- namespace InlineBots {
- struct ResultSelected;
- } // namespace InlineBots
- namespace Main {
- class Session;
- } // namespace Main
- namespace Ui {
- class PlainShadow;
- class PopupMenu;
- class ScrollArea;
- class SettingsSlider;
- class FlatLabel;
- class BoxContent;
- class TabbedSearch;
- } // namespace Ui
- namespace SendMenu {
- struct Details;
- } // namespace SendMenu
- namespace style {
- struct EmojiPan;
- } // namespace style
- namespace ChatHelpers {
- class Show;
- class EmojiListWidget;
- class StickersListWidget;
- class GifsListWidget;
- enum class PauseReason;
- enum class SelectorTab {
- Emoji,
- Stickers,
- Gifs,
- Masks,
- };
- struct FileChosen {
- not_null<DocumentData*> document;
- Api::SendOptions options;
- Ui::MessageSendingAnimationFrom messageSendingFrom;
- std::shared_ptr<Data::EmojiStatusCollectible> collectible;
- TextWithTags caption;
- };
- struct PhotoChosen {
- not_null<PhotoData*> photo;
- Api::SendOptions options;
- };
- struct EmojiChosen {
- EmojiPtr emoji;
- Ui::MessageSendingAnimationFrom messageSendingFrom;
- };
- using InlineChosen = InlineBots::ResultSelected;
- enum class TabbedSelectorMode {
- Full,
- EmojiOnly,
- StickersOnly,
- MediaEditor,
- EmojiStatus,
- ChannelStatus,
- BackgroundEmoji,
- FullReactions,
- RecentReactions,
- PeerTitle,
- ChatIntro,
- };
- struct TabbedSelectorDescriptor {
- std::shared_ptr<Show> show;
- const style::EmojiPan &st;
- PauseReason level = {};
- TabbedSelectorMode mode = TabbedSelectorMode::Full;
- Fn<QColor()> customTextColor;
- ComposeFeatures features;
- };
- enum class TabbedSearchType {
- Emoji,
- Status,
- ProfilePhoto,
- Stickers,
- Greeting,
- };
- [[nodiscard]] std::unique_ptr<Ui::TabbedSearch> MakeSearch(
- not_null<Ui::RpWidget*> parent,
- const style::EmojiPan &st,
- Fn<void(std::vector<QString>&&)> callback,
- not_null<Main::Session*> session,
- TabbedSearchType type);
- class TabbedSelector : public Ui::RpWidget {
- public:
- static constexpr auto kPickCustomTimeId = -1;
- using Mode = TabbedSelectorMode;
- enum class Action {
- Update,
- Cancel,
- };
- TabbedSelector(
- QWidget *parent,
- std::shared_ptr<Show> show,
- PauseReason level,
- Mode mode = Mode::Full);
- TabbedSelector(
- QWidget *parent,
- TabbedSelectorDescriptor &&descriptor);
- ~TabbedSelector();
- [[nodiscard]] const style::EmojiPan &st() const;
- [[nodiscard]] Main::Session &session() const;
- [[nodiscard]] PauseReason level() const;
- [[nodiscard]] rpl::producer<EmojiChosen> emojiChosen() const;
- [[nodiscard]] rpl::producer<FileChosen> customEmojiChosen() const;
- [[nodiscard]] rpl::producer<FileChosen> fileChosen() const;
- [[nodiscard]] rpl::producer<PhotoChosen> photoChosen() const;
- [[nodiscard]] rpl::producer<InlineChosen> inlineResultChosen() const;
- [[nodiscard]] rpl::producer<> cancelled() const;
- [[nodiscard]] rpl::producer<> checkForHide() const;
- [[nodiscard]] rpl::producer<> slideFinished() const;
- [[nodiscard]] rpl::producer<> contextMenuRequested() const;
- [[nodiscard]] rpl::producer<Action> choosingStickerUpdated() const;
- void setAllowEmojiWithoutPremium(bool allow);
- void setRoundRadius(int radius);
- void refreshStickers();
- void setCurrentPeer(PeerData *peer);
- void provideRecentEmoji(
- const std::vector<EmojiStatusId> &customRecentList);
- void hideFinished();
- void showStarted();
- void beforeHiding();
- void afterShown();
- [[nodiscard]] int marginTop() const;
- [[nodiscard]] int marginBottom() const;
- [[nodiscard]] int scrollTop() const;
- [[nodiscard]] int scrollBottom() const;
- bool preventAutoHide() const;
- bool isSliding() const {
- return _a_slide.animating();
- }
- bool hasMenu() const;
- void setAfterShownCallback(Fn<void(SelectorTab)> callback) {
- _afterShownCallback = std::move(callback);
- }
- void setBeforeHidingCallback(Fn<void(SelectorTab)> callback) {
- _beforeHidingCallback = std::move(callback);
- }
- void showMenuWithDetails(SendMenu::Details details);
- void setDropDown(bool dropDown);
- // Float player interface.
- bool floatPlayerHandleWheelEvent(QEvent *e);
- QRect floatPlayerAvailableRect() const;
- auto showRequests() const {
- return _showRequests.events();
- }
- class Inner;
- class InnerFooter;
- protected:
- void paintEvent(QPaintEvent *e) override;
- void resizeEvent(QResizeEvent *e) override;
- private:
- class Tab {
- public:
- Tab(SelectorTab type, int index, object_ptr<Inner> widget);
- object_ptr<Inner> takeWidget();
- void returnWidget(object_ptr<Inner> widget);
- [[nodiscard]] SelectorTab type() const {
- return _type;
- }
- [[nodiscard]] int index() const {
- return _index;
- }
- [[nodiscard]] Inner *widget() const {
- return _weak;
- }
- [[nodiscard]] bool hasFooter() const {
- return _footer != nullptr;
- }
- [[nodiscard]] not_null<InnerFooter*> footer() const {
- return _footer;
- }
- void saveScrollTop();
- void saveScrollTop(int scrollTop) {
- _scrollTop = scrollTop;
- }
- [[nodiscard]] int getScrollTop() const {
- return _scrollTop;
- }
- private:
- const SelectorTab _type;
- const int _index;
- object_ptr<Inner> _widget = { nullptr };
- QPointer<Inner> _weak;
- object_ptr<InnerFooter> _footer;
- int _scrollTop = 0;
- };
- bool full() const;
- bool mediaEditor() const;
- bool tabbed() const;
- bool hasEmojiTab() const;
- bool hasStickersTab() const;
- bool hasGifsTab() const;
- bool hasMasksTab() const;
- Tab createTab(SelectorTab type, int index);
- void paintSlideFrame(QPainter &p);
- void paintBgRoundedPart(QPainter &p);
- void paintContent(QPainter &p);
- void checkRestrictedPeer();
- bool isRestrictedView();
- void updateRestrictedLabelGeometry();
- void updateScrollGeometry(QSize oldSize);
- void updateFooterGeometry();
- void handleScroll();
- QImage grabForAnimation();
- void scrollToY(int y);
- void showAll();
- void hideForSliding();
- SelectorTab typeByIndex(int index) const;
- int indexByType(SelectorTab type) const;
- bool hasSectionIcons() const;
- void setWidgetToScrollArea();
- void createTabsSlider();
- void fillTabsSliderSections();
- void updateTabsSliderGeometry();
- void switchTab();
- not_null<Tab*> getTab(int index);
- not_null<const Tab*> getTab(int index) const;
- not_null<Tab*> currentTab();
- not_null<const Tab*> currentTab() const;
- not_null<EmojiListWidget*> emoji() const;
- not_null<StickersListWidget*> stickers() const;
- not_null<GifsListWidget*> gifs() const;
- not_null<StickersListWidget*> masks() const;
- void reinstallSwipe(not_null<Ui::RpWidget*> widget);
- const style::EmojiPan &_st;
- const ComposeFeatures _features;
- const std::shared_ptr<Show> _show;
- const PauseReason _level = {};
- const Fn<QColor()> _customTextColor;
- Ui::Controls::SwipeBackResult _swipeBackData;
- Mode _mode = Mode::Full;
- int _roundRadius = 0;
- int _footerTop = 0;
- bool _noFooter = false;
- Ui::CornersPixmaps _panelRounding;
- Ui::CornersPixmaps _categoriesRounding;
- PeerData *_currentPeer = nullptr;
- class SlideAnimation;
- std::unique_ptr<SlideAnimation> _slideAnimation;
- Ui::Animations::Simple _a_slide;
- object_ptr<Ui::SettingsSlider> _tabsSlider = { nullptr };
- object_ptr<Ui::PlainShadow> _topShadow;
- object_ptr<Ui::PlainShadow> _bottomShadow;
- object_ptr<Ui::ScrollArea> _scroll;
- object_ptr<Ui::FlatLabel> _restrictedLabel = { nullptr };
- QString _restrictedLabelKey;
- std::vector<Tab> _tabs;
- SelectorTab _currentTabType = SelectorTab::Emoji;
- const bool _hasEmojiTab;
- const bool _hasStickersTab;
- const bool _hasGifsTab;
- const bool _hasMasksTab;
- const bool _tabbed;
- bool _dropDown = false;
- base::unique_qptr<Ui::PopupMenu> _menu;
- Fn<void(SelectorTab)> _afterShownCallback;
- Fn<void(SelectorTab)> _beforeHidingCallback;
- rpl::event_stream<> _showRequests;
- rpl::event_stream<> _slideFinished;
- rpl::lifetime _swipeLifetime;
- };
- class TabbedSelector::Inner : public Ui::RpWidget {
- public:
- Inner(
- QWidget *parent,
- std::shared_ptr<Show> show,
- PauseReason level);
- Inner(
- QWidget *parent,
- const style::EmojiPan &st,
- std::shared_ptr<Show> show,
- Fn<bool()> paused);
- [[nodiscard]] Main::Session &session() const {
- return *_session;
- }
- [[nodiscard]] const style::EmojiPan &st() const {
- return _st;
- }
- [[nodiscard]] Fn<bool()> pausedMethod() const {
- return _paused;
- }
- [[nodiscard]] bool paused() const {
- return _paused();
- }
- [[nodiscard]] int getVisibleTop() const {
- return _visibleTop;
- }
- [[nodiscard]] int getVisibleBottom() const {
- return _visibleBottom;
- }
- void setMinimalHeight(int newWidth, int newMinimalHeight);
- [[nodiscard]] rpl::producer<> checkForHide() const {
- return _checkForHide.events();
- }
- [[nodiscard]] bool preventAutoHide() const {
- return _preventHideWithBox;
- }
- virtual void refreshRecent() = 0;
- virtual void preloadImages() {
- }
- void hideFinished();
- void panelHideFinished();
- virtual void clearSelection() = 0;
- virtual void afterShown() {
- }
- virtual void beforeHiding() {
- }
- [[nodiscard]] virtual base::unique_qptr<Ui::PopupMenu> fillContextMenu(
- const SendMenu::Details &details) {
- return nullptr;
- }
- rpl::producer<int> scrollToRequests() const;
- rpl::producer<bool> disableScrollRequests() const;
- virtual object_ptr<InnerFooter> createFooter() = 0;
- protected:
- void visibleTopBottomUpdated(
- int visibleTop,
- int visibleBottom) override;
- int minimalHeight() const;
- virtual int defaultMinimalHeight() const;
- int resizeGetHeight(int newWidth) override final;
- virtual int countDesiredHeight(int newWidth) = 0;
- virtual InnerFooter *getFooter() const = 0;
- virtual void processHideFinished() {
- }
- virtual void processPanelHideFinished() {
- }
- void scrollTo(int y);
- void disableScroll(bool disabled);
- void checkHideWithBox(object_ptr<Ui::BoxContent> box);
- void paintEmptySearchResults(
- Painter &p,
- const style::icon &icon,
- const QString &text) const;
- private:
- const style::EmojiPan &_st;
- const std::shared_ptr<Show> _show;
- const not_null<Main::Session*> _session;
- const Fn<bool()> _paused;
- int _visibleTop = 0;
- int _visibleBottom = 0;
- std::optional<int> _minimalHeight;
- rpl::event_stream<int> _scrollToRequests;
- rpl::event_stream<bool> _disableScrollRequests;
- rpl::event_stream<> _checkForHide;
- bool _preventHideWithBox = false;
- };
- class TabbedSelector::InnerFooter : public Ui::RpWidget {
- public:
- InnerFooter(QWidget *parent, const style::EmojiPan &st);
- [[nodiscard]] const style::EmojiPan &st() const;
- protected:
- virtual void processHideFinished() {
- }
- virtual void processPanelHideFinished() {
- }
- friend class Inner;
- private:
- const style::EmojiPan &_st;
- };
- } // namespace ChatHelpers
|