/* 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 "boxes/peer_list_box.h" #include "base/flat_set.h" #include "base/weak_ptr.h" #include "base/timer.h" #include "mtproto/sender.h" class History; namespace style { struct PeerListItem; } // namespace style namespace Api { struct MessageMoneyRestriction; } // namespace Api namespace Data { class Thread; class Forum; class ForumTopic; } // namespace Data namespace Ui { struct OutlineSegment; } // namespace Ui namespace Window { class SessionController; } // namespace Window [[nodiscard]] object_ptr PrepareContactsBox( not_null sessionController); [[nodiscard]] QBrush PeerListStoriesGradient(const style::PeerList &st); [[nodiscard]] std::vector PeerListStoriesSegments( int count, int unread, const QBrush &unreadBrush); class PeerListRowWithLink : public PeerListRow { public: using PeerListRow::PeerListRow; void setActionLink(const QString &action); void lazyInitialize(const style::PeerListItem &st) override; protected: QSize rightActionSize() const override; QMargins rightActionMargins() const override; void rightActionPaint( Painter &p, int x, int y, int outerWidth, bool selected, bool actionSelected) override; private: void refreshActionLink(); QString _action; int _actionWidth = 0; }; class PeerListGlobalSearchController : public PeerListSearchController { public: explicit PeerListGlobalSearchController(not_null session); void searchQuery(const QString &query) override; bool isLoading() override; bool loadMoreRows() override { return false; } private: bool searchInCache(); void searchOnServer(); void searchDone(const MTPcontacts_Found &result, mtpRequestId requestId); const not_null _session; MTP::Sender _api; base::Timer _timer; QString _query; mtpRequestId _requestId = 0; std::map _cache; std::map _queries; }; struct RecipientMoneyRestrictionError { TextWithEntities text; }; [[nodiscard]] RecipientMoneyRestrictionError WriteMoneyRestrictionError( not_null user); struct RestrictionBadgeCache { int paletteVersion = 0; int stars = 0; QImage badge; }; void PaintRestrictionBadge( Painter &p, not_null st, int stars, RestrictionBadgeCache &cache, int x, int y, int outerWidth, int size); class RecipientRow : public PeerListRow { public: explicit RecipientRow( not_null peer, const style::PeerListItem *maybeLockedSt = nullptr, History *maybeHistory = nullptr); bool refreshLock(not_null maybeLockedSt); [[nodiscard]] static bool ShowLockedError( not_null controller, not_null row, Fn)> error); [[nodiscard]] History *maybeHistory() const { return _maybeHistory; } void paintUserpicOverlay( Painter &p, const style::PeerListItem &st, int x, int y, int outerWidth) override; void preloadUserpic() override; [[nodiscard]] Api::MessageMoneyRestriction restriction() const; void setRestriction(Api::MessageMoneyRestriction restriction); private: struct Restriction; History *_maybeHistory = nullptr; const style::PeerListItem *_maybeLockedSt = nullptr; std::shared_ptr _restriction; }; void TrackMessageMoneyRestrictionsChanges( not_null controller, rpl::lifetime &lifetime); class ChatsListBoxController : public PeerListController { public: class Row : public RecipientRow { public: Row( not_null history, const style::PeerListItem *maybeLockedSt = nullptr); [[nodiscard]] not_null history() const { return maybeHistory(); } }; ChatsListBoxController(not_null session); ChatsListBoxController( std::unique_ptr searchController); void prepare() override final; std::unique_ptr createSearchRow( not_null peer) override final; protected: virtual std::unique_ptr createRow(not_null history) = 0; virtual void prepareViewHook() = 0; virtual void updateRowHook(not_null row) { } virtual QString emptyBoxText() const; private: void rebuildRows(); void checkForEmptyRows(); bool appendRow(not_null history); }; class PeerListStories final { public: PeerListStories( not_null controller, not_null session); void prepare(not_null delegate); void process(not_null row); bool handleClick(not_null peer); private: struct Counts { int count = 0; int unread = 0; }; void updateColors(); void updateFor(uint64 id, int count, int unread); void applyForRow( not_null row, int count, int unread, bool force = false); const not_null _controller; const not_null _session; PeerListDelegate *_delegate = nullptr; QBrush _unreadBrush; base::flat_map _counts; rpl::lifetime _lifetime; }; class ContactsBoxController : public PeerListController { public: explicit ContactsBoxController(not_null session); ContactsBoxController( not_null session, std::unique_ptr searchController); [[nodiscard]] Main::Session &session() const override; void prepare() override final; [[nodiscard]] std::unique_ptr createSearchRow( not_null peer) override final; void rowClicked(not_null row) override; bool trackSelectedList() override { return !_stories; } enum class SortMode { Alphabet, Online, }; void setSortMode(SortMode mode); void setStoriesShown(bool shown); protected: virtual std::unique_ptr createRow(not_null user); virtual void prepareViewHook() { } virtual void updateRowHook(not_null row) { } private: void sort(); void sortByOnline(); void rebuildRows(); void checkForEmptyRows(); bool appendRow(not_null user); const not_null _session; SortMode _sortMode = SortMode::Alphabet; base::Timer _sortByOnlineTimer; rpl::lifetime _sortByOnlineLifetime; std::unique_ptr _stories; }; struct ChooseRecipientArgs { not_null session; FnMut)> callback; Fn)> filter; using MoneyRestrictionError = RecipientMoneyRestrictionError; Fn)> moneyRestrictionError; }; class ChooseRecipientBoxController : public ChatsListBoxController , public base::has_weak_ptr { public: ChooseRecipientBoxController( not_null session, FnMut)> callback, Fn)> filter = nullptr); explicit ChooseRecipientBoxController(ChooseRecipientArgs &&args); Main::Session &session() const override; void rowClicked(not_null row) override; QString savedMessagesChatStatus() const override; protected: void prepareViewHook() override; std::unique_ptr createRow(not_null history) override; bool showLockedError(not_null row); private: const not_null _session; FnMut)> _callback; Fn)> _filter; Fn)> _moneyRestrictionError; }; class ChooseTopicSearchController : public PeerListSearchController { public: explicit ChooseTopicSearchController(not_null forum); void searchQuery(const QString &query) override; bool isLoading() override; bool loadMoreRows() override; private: void searchOnServer(); void searchDone(const MTPcontacts_Found &result, mtpRequestId requestId); const not_null _forum; MTP::Sender _api; base::Timer _timer; QString _query; mtpRequestId _requestId = 0; TimeId _offsetDate = 0; MsgId _offsetId = 0; MsgId _offsetTopicId = 0; bool _allLoaded = false; }; class ChooseTopicBoxController final : public PeerListController , public base::has_weak_ptr { public: ChooseTopicBoxController( not_null forum, FnMut)> callback, Fn)> filter = nullptr); Main::Session &session() const override; void rowClicked(not_null row) override; void prepare() override; void loadMoreRows() override; std::unique_ptr createSearchRow(PeerListRowId id) override; [[nodiscard]] static std::unique_ptr MakeRow( not_null topic); private: class Row final : public PeerListRow { public: explicit Row(not_null topic); [[nodiscard]] not_null topic() const { return _topic; } QString generateName() override; QString generateShortName() override; PaintRoundImageCallback generatePaintUserpicCallback( bool forceRound) override; auto generateNameFirstLetters() const -> const base::flat_set & override; auto generateNameWords() const -> const base::flat_set & override; private: const not_null _topic; }; void refreshRows(bool initial = false); [[nodiscard]] std::unique_ptr createRow( not_null topic); const not_null _forum; FnMut)> _callback; Fn)> _filter; };