/* 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 "ui/rp_widget.h" #include "ui/effects/animations.h" #include "ui/effects/panel_animation.h" #include "mtproto/sender.h" #include "main/main_session.h" #include "base/object_ptr.h" namespace InlineBots { class Result; } // namespace InlineBots namespace Ui { class PlainShadow; class ScrollArea; class SettingsSlider; class FlatLabel; } // namesapce Ui namespace Window { class SessionController; } // namespace Window namespace ChatHelpers { enum class SelectorTab { Emoji, Stickers, Gifs, }; class EmojiListWidget; class StickersListWidget; class GifsListWidget; class TabbedSelector : public Ui::RpWidget, private base::Subscriber { public: struct InlineChosen { not_null result; not_null bot; }; enum class Mode { Full, EmojiOnly }; TabbedSelector( QWidget *parent, not_null controller, Mode mode = Mode::Full); ~TabbedSelector(); Main::Session &session() const; rpl::producer emojiChosen() const; rpl::producer> fileChosen() const; rpl::producer> photoChosen() const; rpl::producer inlineResultChosen() const; rpl::producer<> cancelled() const; rpl::producer<> checkForHide() const; rpl::producer<> slideFinished() const; void setRoundRadius(int radius); void refreshStickers(); void setCurrentPeer(PeerData *peer); void hideFinished(); void showStarted(); void beforeHiding(); void afterShown(); int marginTop() const; int marginBottom() const; int scrollTop() const; bool preventAutoHide() const; bool isSliding() const { return _a_slide.animating(); } void setAfterShownCallback(Fn callback) { _afterShownCallback = std::move(callback); } void setBeforeHidingCallback(Fn callback) { _beforeHidingCallback = std::move(callback); } // Float player interface. bool wheelEventFromFloatPlayer(QEvent *e); QRect rectForFloatPlayer() 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: static constexpr auto kCount = 3; Tab(SelectorTab type, object_ptr widget); object_ptr takeWidget(); void returnWidget(object_ptr widget); SelectorTab type() const { return _type; } Inner *widget() const { return _weak; } not_null footer() const { return _footer; } void saveScrollTop(); void saveScrollTop(int scrollTop) { _scrollTop = scrollTop; } int getScrollTop() const { return _scrollTop; } private: SelectorTab _type = SelectorTab::Emoji; object_ptr _widget = { nullptr }; QPointer _weak; object_ptr _footer; int _scrollTop = 0; }; bool full() const; Tab createTab(SelectorTab type); void paintSlideFrame(Painter &p); void paintContent(Painter &p); void checkRestrictedPeer(); bool isRestrictedView(); void updateRestrictedLabelGeometry(); void handleScroll(); QImage grabForAnimation(); void scrollToY(int y); void showAll(); void hideForSliding(); bool hasSectionIcons() const; void setWidgetToScrollArea(); void createTabsSlider(); void switchTab(); not_null getTab(SelectorTab type) { return &_tabs[static_cast(type)]; } not_null getTab(SelectorTab type) const { return &_tabs[static_cast(type)]; } not_null currentTab() { return getTab(_currentTabType); } not_null currentTab() const { return getTab(_currentTabType); } not_null emoji() const; not_null stickers() const; not_null gifs() const; const not_null _controller; Mode _mode = Mode::Full; int _roundRadius = 0; int _footerTop = 0; PeerData *_currentPeer = nullptr; class SlideAnimation; std::unique_ptr _slideAnimation; Ui::Animations::Simple _a_slide; object_ptr _tabsSlider = { nullptr }; object_ptr _topShadow; object_ptr _bottomShadow; object_ptr _scroll; object_ptr _restrictedLabel = { nullptr }; std::array _tabs; SelectorTab _currentTabType = SelectorTab::Emoji; Fn _afterShownCallback; Fn _beforeHidingCallback; rpl::event_stream<> _showRequests; rpl::event_stream<> _slideFinished; }; class TabbedSelector::Inner : public Ui::RpWidget { public: Inner(QWidget *parent, not_null controller); not_null controller() const { return _controller; } int getVisibleTop() const { return _visibleTop; } int getVisibleBottom() const { return _visibleBottom; } void setMinimalHeight(int newWidth, int newMinimalHeight); virtual void refreshRecent() = 0; virtual void preloadImages() { } void hideFinished(); void panelHideFinished(); virtual void clearSelection() = 0; virtual void afterShown() { } virtual void beforeHiding() { } rpl::producer scrollToRequests() const; rpl::producer disableScrollRequests() const; virtual object_ptr createFooter() = 0; protected: void visibleTopBottomUpdated( int visibleTop, int visibleBottom) override; int minimalHeight() 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); private: not_null _controller; int _visibleTop = 0; int _visibleBottom = 0; int _minimalHeight = 0; rpl::event_stream _scrollToRequests; rpl::event_stream _disableScrollRequests; }; class TabbedSelector::InnerFooter : public TWidget { public: InnerFooter(QWidget *parent); protected: virtual void processHideFinished() { } virtual void processPanelHideFinished() { } friend class Inner; }; } // namespace ChatHelpers