| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655 |
- /*
- 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 "base/flags.h"
- #include "base/object_ptr.h"
- #include "base/timer.h"
- #include "dialogs/dialogs_key.h"
- #include "dialogs/ui/dialogs_quick_action_context.h"
- #include "data/data_messages.h"
- #include "ui/dragging_scroll_manager.h"
- #include "ui/effects/animations.h"
- #include "ui/rp_widget.h"
- #include "ui/userpic_view.h"
- namespace style {
- struct DialogRow;
- } // namespace style
- namespace MTP {
- class Error;
- } // namespace MTP
- namespace Lottie {
- class Icon;
- } // namespace Lottie
- namespace Main {
- class Session;
- } // namespace Main
- namespace Ui {
- class IconButton;
- class PopupMenu;
- class FlatLabel;
- struct ScrollToRequest;
- namespace Controls {
- enum class QuickDialogAction;
- } // namespace Controls
- } // namespace Ui
- namespace Window {
- class SessionController;
- } // namespace Window
- namespace Data {
- class ChatFilter;
- class Thread;
- class Folder;
- class Forum;
- struct ReactionId;
- } // namespace Data
- namespace Dialogs::Ui {
- using namespace ::Ui;
- class VideoUserpic;
- struct PaintContext;
- struct TopicJumpCache;
- } // namespace Dialogs::Ui
- namespace Dialogs {
- class Row;
- class FakeRow;
- class IndexedList;
- class SearchTags;
- class SearchEmpty;
- class ChatSearchIn;
- enum class HashOrCashtag : uchar;
- struct RightButton;
- enum class ChatTypeFilter : uchar;
- struct ChosenRow {
- Key key;
- Data::MessagePosition message;
- bool userpicClick : 1 = false;
- bool filteredRow : 1 = false;
- bool newWindow : 1 = false;
- };
- struct SearchRequestType {
- bool migrated : 1 = false;
- bool posts : 1 = false;
- bool start : 1 = false;
- bool peer : 1 = false;
- friend inline constexpr auto operator<=>(
- SearchRequestType a,
- SearchRequestType b) = default;
- friend inline constexpr bool operator==(
- SearchRequestType a,
- SearchRequestType b) = default;
- };
- enum class SearchRequestDelay : uchar {
- InCache,
- Instant,
- Delayed,
- };
- enum class WidgetState {
- Default,
- Filtered,
- };
- class InnerWidget final : public Ui::RpWidget {
- public:
- using ChatsFilterTagsKey = int64;
- struct ChildListShown {
- PeerId peerId = 0;
- float64 shown = 0.;
- };
- InnerWidget(
- QWidget *parent,
- not_null<Window::SessionController*> controller,
- rpl::producer<ChildListShown> childListShown);
- void searchReceived(
- std::vector<not_null<HistoryItem*>> result,
- HistoryItem *inject,
- SearchRequestType type,
- int fullCount);
- void peerSearchReceived(
- const QString &query,
- const QVector<MTPPeer> &my,
- const QVector<MTPPeer> &result);
- [[nodiscard]] FilterId filterId() const;
- void clearSelection();
- void changeOpenedFolder(Data::Folder *folder);
- void changeOpenedForum(Data::Forum *forum);
- void showSavedSublists();
- void selectSkip(int32 direction);
- void selectSkipPage(int32 pixels, int32 direction);
- void dragLeft();
- void setNarrowRatio(float64 narrowRatio);
- void clearFilter();
- void refresh(bool toTop = false);
- void refreshEmpty();
- void resizeEmpty();
- void showPeerMenu();
- [[nodiscard]] bool isUserpicPress() const;
- [[nodiscard]] bool isUserpicPressOnWide() const;
- void cancelChatPreview();
- bool scheduleChatPreview(QPoint positionOverride);
- bool showChatPreview();
- void chatPreviewShown(bool shown, RowDescriptor row = {});
- bool chooseRow(
- Qt::KeyboardModifiers modifiers = {},
- MsgId pressedTopicRootId = {});
- void scrollToEntry(const RowDescriptor &entry);
- [[nodiscard]] Data::Folder *shownFolder() const;
- [[nodiscard]] Data::Forum *shownForum() const;
- [[nodiscard]] WidgetState state() const;
- [[nodiscard]] not_null<const style::DialogRow*> st() const {
- return _st;
- }
- [[nodiscard]] bool hasFilteredResults() const;
- void searchRequested(bool loading);
- void applySearchState(SearchState state);
- [[nodiscard]] auto searchTagsChanges() const
- -> rpl::producer<std::vector<Data::ReactionId>>;
- void onHashtagFilterUpdate(QStringView newFilter);
- void appendToFiltered(Key key);
- Data::Thread *updateFromParentDrag(QPoint globalPosition);
- void setLoadMoreCallback(Fn<void()> callback);
- void setLoadMoreFilteredCallback(Fn<void()> callback);
- [[nodiscard]] rpl::producer<> listBottomReached() const;
- [[nodiscard]] auto changeSearchTabRequests() const
- -> rpl::producer<ChatSearchTab>;
- [[nodiscard]] auto changeSearchFilterRequests() const
- -> rpl::producer<ChatTypeFilter>;
- [[nodiscard]] rpl::producer<> cancelSearchRequests() const;
- [[nodiscard]] rpl::producer<> cancelSearchFromRequests() const;
- [[nodiscard]] rpl::producer<> changeSearchFromRequests() const;
- [[nodiscard]] rpl::producer<ChosenRow> chosenRow() const;
- [[nodiscard]] rpl::producer<> updated() const;
- [[nodiscard]] rpl::producer<int> scrollByDeltaRequests() const;
- [[nodiscard]] rpl::producer<Ui::ScrollToRequest> mustScrollTo() const;
- [[nodiscard]] rpl::producer<Ui::ScrollToRequest> dialogMoved() const;
- [[nodiscard]] rpl::producer<SearchRequestDelay> searchRequests() const;
- [[nodiscard]] rpl::producer<QString> completeHashtagRequests() const;
- [[nodiscard]] rpl::producer<> refreshHashtagsRequests() const;
- [[nodiscard]] RowDescriptor resolveChatNext(RowDescriptor from = {}) const;
- [[nodiscard]] RowDescriptor resolveChatPrevious(RowDescriptor from = {}) const;
- ~InnerWidget();
- void parentGeometryChanged();
- bool processTouchEvent(not_null<QTouchEvent*> e);
- [[nodiscard]] rpl::producer<> touchCancelRequests() const {
- return _touchCancelRequests.events();
- }
- [[nodiscard]] rpl::producer<UserId> openBotMainAppRequests() const;
- void setSwipeContextData(
- int64 key,
- std::optional<Ui::Controls::SwipeContextData> data);
- [[nodiscard]] int64 calcSwipeKey(int top);
- void prepareQuickAction(int64 key, Dialogs::Ui::QuickDialogAction);
- protected:
- void visibleTopBottomUpdated(
- int visibleTop,
- int visibleBottom) override;
- void paintEvent(QPaintEvent *e) override;
- void mouseMoveEvent(QMouseEvent *e) override;
- void mousePressEvent(QMouseEvent *e) override;
- void mouseReleaseEvent(QMouseEvent *e) override;
- void resizeEvent(QResizeEvent *e) override;
- void enterEventHook(QEnterEvent *e) override;
- void leaveEventHook(QEvent *e) override;
- void contextMenuEvent(QContextMenuEvent *e) override;
- private:
- struct CollapsedRow;
- struct HashtagResult;
- struct PeerSearchResult;
- struct TagCache;
- enum class JumpSkip {
- PreviousOrBegin,
- NextOrEnd,
- PreviousOrOriginal,
- NextOrOriginal,
- };
- enum class EmptyState : uchar {
- None,
- Loading,
- NoContacts,
- EmptyFolder,
- EmptyForum,
- EmptySavedSublists,
- };
- struct PinnedRow {
- anim::value yadd;
- crl::time animStartTime = 0;
- };
- struct FilterResult {
- FilterResult(not_null<Row*> row) : row(row) {
- }
- not_null<Row*> row;
- int top = 0;
- [[nodiscard]] Key key() const;
- [[nodiscard]] int bottom() const;
- };
- Main::Session &session() const;
- void dialogRowReplaced(Row *oldRow, Row *newRow);
- void setState(WidgetState state);
- void editOpenedFilter();
- void repaintCollapsedFolderRow(not_null<Data::Folder*> folder);
- void refreshWithCollapsedRows(bool toTop = false);
- bool needCollapsedRowsRefresh() const;
- bool chooseCollapsedRow(Qt::KeyboardModifiers modifiers);
- void switchToFilter(FilterId filterId);
- bool chooseHashtag();
- ChosenRow computeChosenRow() const;
- bool isRowActive(not_null<Row*> row, const RowDescriptor &entry) const;
- bool isSearchResultActive(
- not_null<FakeRow*> result,
- const RowDescriptor &entry) const;
- void repaintDialogRow(FilterId filterId, not_null<Row*> row);
- void repaintDialogRow(RowDescriptor row);
- void refreshDialogRow(RowDescriptor row);
- bool updateEntryHeight(not_null<Entry*> entry);
- void clearMouseSelection(bool clearSelection = false);
- void mousePressReleased(
- QPoint globalPosition,
- Qt::MouseButton button,
- Qt::KeyboardModifiers modifiers);
- void processGlobalForceClick(QPoint globalPosition);
- void clearIrrelevantState();
- void selectByMouse(QPoint globalPosition);
- void preloadRowsData();
- void scrollToItem(int top, int height);
- void scrollToDefaultSelected();
- void setCollapsedPressed(int pressed);
- void setPressed(Row *pressed, bool pressedTopicJump, bool pressedBotApp);
- void clearPressed();
- void setHashtagPressed(int pressed);
- void setFilteredPressed(
- int pressed,
- bool pressedTopicJump,
- bool pressedBotApp);
- void setPeerSearchPressed(int pressed);
- void setPreviewPressed(int pressed);
- void setSearchedPressed(int pressed);
- bool isPressed() const {
- return (_collapsedPressed >= 0)
- || _pressed
- || (_hashtagPressed >= 0)
- || (_filteredPressed >= 0)
- || (_peerSearchPressed >= 0)
- || (_previewPressed >= 0)
- || (_searchedPressed >= 0)
- || _pressedMorePosts
- || _pressedChatTypeFilter;
- }
- bool isSelected() const {
- return (_collapsedSelected >= 0)
- || _selected
- || (_hashtagSelected >= 0)
- || (_filteredSelected >= 0)
- || (_peerSearchSelected >= 0)
- || (_previewSelected >= 0)
- || (_searchedSelected >= 0)
- || _selectedMorePosts
- || _selectedChatTypeFilter;
- }
- bool uniqueSearchResults() const;
- bool hasHistoryInResults(not_null<History*> history) const;
- int defaultRowTop(not_null<Row*> row) const;
- void setupOnlineStatusCheck();
- void jumpToTop();
- void updateRowCornerStatusShown(not_null<History*> history);
- void repaintDialogRowCornerStatus(not_null<History*> history);
- bool addBotAppRipple(QPoint origin, Fn<void()> updateCallback);
- bool addQuickActionRipple(not_null<Row*> row, Fn<void()> updateCallback);
- void setupShortcuts();
- RowDescriptor computeJump(
- const RowDescriptor &to,
- JumpSkip skip) const;
- bool jumpToDialogRow(RowDescriptor to);
- RowDescriptor chatListEntryBefore(const RowDescriptor &which) const;
- RowDescriptor chatListEntryAfter(const RowDescriptor &which) const;
- RowDescriptor chatListEntryFirst() const;
- RowDescriptor chatListEntryLast() const;
- void itemRemoved(not_null<const HistoryItem*> item);
- enum class UpdateRowSection {
- Default = (1 << 0),
- Filtered = (1 << 1),
- PeerSearch = (1 << 2),
- MessageSearch = (1 << 3),
- All = Default | Filtered | PeerSearch | MessageSearch,
- };
- using UpdateRowSections = base::flags<UpdateRowSection>;
- friend inline constexpr auto is_flag_type(UpdateRowSection) { return true; };
- void updateSearchResult(not_null<PeerData*> peer);
- void updateDialogRow(
- RowDescriptor row,
- QRect updateRect = QRect(),
- UpdateRowSections sections = UpdateRowSection::All);
- void fillSupportSearchMenu(not_null<Ui::PopupMenu*> menu);
- void fillArchiveSearchMenu(not_null<Ui::PopupMenu*> menu);
- void refreshShownList();
- [[nodiscard]] int skipTopHeight() const;
- [[nodiscard]] int collapsedRowsOffset() const;
- [[nodiscard]] int dialogsOffset() const;
- [[nodiscard]] int shownHeight(int till = -1) const;
- [[nodiscard]] int fixedOnTopCount() const;
- [[nodiscard]] int pinnedOffset() const;
- [[nodiscard]] int filteredOffset() const;
- [[nodiscard]] int filteredIndex(int y) const;
- [[nodiscard]] int filteredHeight(int till = -1) const;
- [[nodiscard]] int peerSearchOffset() const;
- [[nodiscard]] int searchInChatOffset() const;
- [[nodiscard]] int previewOffset() const;
- [[nodiscard]] int searchedOffset() const;
- [[nodiscard]] int searchInChatSkip() const;
- [[nodiscard]] int hashtagsOffset() const;
- void paintCollapsedRows(
- Painter &p,
- QRect clip) const;
- void paintCollapsedRow(
- Painter &p,
- not_null<const CollapsedRow*> row,
- bool selected) const;
- void paintPeerSearchResult(
- Painter &p,
- not_null<const PeerSearchResult*> result,
- const Ui::PaintContext &context);
- void paintSearchTags(
- Painter &p,
- const Ui::PaintContext &context) const;
- //void paintSearchInChat(
- // Painter &p,
- // const Ui::PaintContext &context) const;
- //void paintSearchInPeer(
- // Painter &p,
- // not_null<PeerData*> peer,
- // Ui::PeerUserpicView &userpic,
- // int top,
- // const Ui::Text::String &text) const;
- //void paintSearchInSaved(
- // Painter &p,
- // int top,
- // const Ui::Text::String &text) const;
- //void paintSearchInReplies(
- // Painter &p,
- // int top,
- // const Ui::Text::String &text) const;
- //void paintSearchInTopic(
- // Painter &p,
- // const Ui::PaintContext &context,
- // not_null<Data::ForumTopic*> topic,
- // Ui::PeerUserpicView &userpic,
- // int top,
- // const Ui::Text::String &text) const;
- //template <typename PaintUserpic>
- //void paintSearchInFilter(
- // Painter &p,
- // PaintUserpic paintUserpic,
- // int top,
- // const style::icon *icon,
- // const Ui::Text::String &text) const;
- void updateSearchIn();
- void repaintSearchResult(int index);
- void repaintPreviewResult(int index);
- [[nodiscard]] bool computeSearchWithPostsPreview() const;
- Ui::VideoUserpic *validateVideoUserpic(not_null<Row*> row);
- Ui::VideoUserpic *validateVideoUserpic(not_null<History*> history);
- Row *shownRowByKey(Key key);
- void clearSearchResults(bool clearPeerSearchResults = true);
- void clearPreviewResults();
- void updateSelectedRow(Key key = Key());
- void trackResultsHistory(not_null<History*> history);
- [[nodiscard]] QBrush currentBg() const;
- [[nodiscard]] RowDescriptor computeChatPreviewRow() const;
- [[nodiscard]] const std::vector<Key> &pinnedChatsOrder() const;
- void checkReorderPinnedStart(QPoint localPosition);
- void startReorderPinned(QPoint localPosition);
- int updateReorderIndexGetCount();
- bool updateReorderPinned(QPoint localPosition);
- void finishReorderPinned();
- bool finishReorderOnRelease();
- void stopReorderPinned();
- int countPinnedIndex(Row *ofRow);
- void savePinnedOrder();
- bool pinnedShiftAnimationCallback(crl::time now);
- void handleChatListEntryRefreshes();
- void moveSearchIn();
- void dragPinnedFromTouch();
- [[nodiscard]] bool hasChatTypeFilter() const;
- void saveChatsFilterScrollState(FilterId filterId);
- void restoreChatsFilterScrollState(FilterId filterId);
- [[nodiscard]] not_null<Ui::QuickActionContext*> ensureQuickAction(
- int64 key);
- [[nodiscard]] bool lookupIsInBotAppButton(
- Row *row,
- QPoint localPosition);
- [[nodiscard]] RightButton *maybeCacheRightButton(Row *row);
- [[nodiscard]] QImage *cacheChatsFilterTag(
- const Data::ChatFilter &filter,
- uint8 more,
- bool active);
- const not_null<Window::SessionController*> _controller;
- not_null<IndexedList*> _shownList;
- FilterId _filterId = 0;
- bool _mouseSelection = false;
- std::optional<QPoint> _lastMousePosition;
- int _lastRowLocalMouseX = -1;
- Qt::MouseButton _pressButton = Qt::LeftButton;
- Data::Folder *_openedFolder = nullptr;
- Data::Forum *_openedForum = nullptr;
- rpl::lifetime _openedForumLifetime;
- std::vector<std::unique_ptr<CollapsedRow>> _collapsedRows;
- not_null<const style::DialogRow*> _st;
- mutable std::unique_ptr<Ui::TopicJumpCache> _topicJumpCache;
- bool _selectedChatTypeFilter = false;
- bool _pressedChatTypeFilter = false;
- bool _selectedMorePosts = false;
- bool _pressedMorePosts = false;
- int _collapsedSelected = -1;
- int _collapsedPressed = -1;
- bool _skipTopDialog = false;
- Row *_selected = nullptr;
- Row *_pressed = nullptr;
- MsgId _pressedTopicJumpRootId;
- bool _selectedTopicJump = false;
- bool _pressedTopicJump = false;
- RightButton *_pressedBotAppData = nullptr;
- bool _selectedBotApp = false;
- bool _pressedBotApp = false;
- Row *_dragging = nullptr;
- int _draggingIndex = -1;
- int _aboveIndex = -1;
- QPoint _dragStart;
- std::vector<PinnedRow> _pinnedRows;
- Ui::Animations::Basic _pinnedShiftAnimation;
- base::flat_set<Key> _pinnedOnDragStart;
- // Remember the last currently dragged row top shift for updating area.
- int _aboveTopShift = -1;
- int _narrowWidth = 0;
- int _visibleTop = 0;
- int _visibleBottom = 0;
- QString _filter, _hashtagFilter;
- std::vector<std::unique_ptr<HashtagResult>> _hashtagResults;
- int _hashtagSelected = -1;
- int _hashtagPressed = -1;
- bool _hashtagDeleteSelected = false;
- bool _hashtagDeletePressed = false;
- std::vector<FilterResult> _filterResults;
- base::flat_map<Key, std::unique_ptr<Row>> _filterResultsGlobal;
- int _filteredSelected = -1;
- int _filteredPressed = -1;
- EmptyState _emptyState = EmptyState::None;
- base::flat_set<not_null<History*>> _trackedHistories;
- rpl::lifetime _trackedLifetime;
- QString _peerSearchQuery;
- std::vector<std::unique_ptr<PeerSearchResult>> _peerSearchResults;
- int _peerSearchSelected = -1;
- int _peerSearchPressed = -1;
- std::vector<std::unique_ptr<FakeRow>> _previewResults;
- int _previewCount = 0;
- int _previewSelected = -1;
- int _previewPressed = -1;
- int _morePostsWidth = 0;
- int _chatTypeFilterWidth = 0;
- std::vector<std::unique_ptr<FakeRow>> _searchResults;
- int _searchedCount = 0;
- int _searchedMigratedCount = 0;
- int _searchedSelected = -1;
- int _searchedPressed = -1;
- WidgetState _state = WidgetState::Default;
- std::unique_ptr<ChatSearchIn> _searchIn;
- rpl::event_stream<ChatSearchTab> _changeSearchTabRequests;
- rpl::event_stream<ChatTypeFilter> _changeSearchFilterRequests;
- rpl::event_stream<> _cancelSearchRequests;
- rpl::event_stream<> _cancelSearchFromRequests;
- rpl::event_stream<> _changeSearchFromRequests;
- object_ptr<Ui::RpWidget> _loadingAnimation = { nullptr };
- object_ptr<SearchEmpty> _searchEmpty = { nullptr };
- SearchState _searchEmptyState;
- object_ptr<Ui::FlatLabel> _empty = { nullptr };
- Ui::DraggingScrollManager _draggingScroll;
- SearchState _searchState;
- HashOrCashtag _searchHashOrCashtag = {};
- bool _searchWithPostsPreview = false;
- History *_searchInMigrated = nullptr;
- PeerData *_searchFromShown = nullptr;
- Ui::Text::String _searchFromUserText;
- std::unique_ptr<SearchTags> _searchTags;
- int _searchTagsLeft = 0;
- RowDescriptor _menuRow;
- base::flat_map<
- not_null<PeerData*>,
- std::unique_ptr<Ui::VideoUserpic>> _videoUserpics;
- base::flat_map<FilterId, int> _chatsFilterScrollStates;
- std::unordered_map<ChatsFilterTagsKey, TagCache> _chatsFilterTags;
- bool _waitingAllChatListEntryRefreshesForTags = false;
- rpl::lifetime _handleChatListEntryTagRefreshesLifetime;
- std::unordered_map<PeerId, RightButton> _rightButtons;
- Fn<void()> _loadMoreCallback;
- Fn<void()> _loadMoreFilteredCallback;
- rpl::event_stream<> _listBottomReached;
- rpl::event_stream<ChosenRow> _chosenRow;
- rpl::event_stream<> _updated;
- rpl::event_stream<Ui::ScrollToRequest> _mustScrollTo;
- rpl::event_stream<Ui::ScrollToRequest> _dialogMoved;
- rpl::event_stream<SearchRequestDelay> _searchRequests;
- rpl::event_stream<QString> _completeHashtagRequests;
- rpl::event_stream<> _refreshHashtagsRequests;
- rpl::event_stream<UserId> _openBotMainAppRequests;
- using QuickActionPtr = std::unique_ptr<Ui::QuickActionContext>;
- base::flat_map<int64, QuickActionPtr> _quickActions;
- RowDescriptor _chatPreviewRow;
- bool _chatPreviewScheduled = false;
- std::optional<QPoint> _chatPreviewTouchGlobal;
- base::Timer _touchDragPinnedTimer;
- std::optional<QPoint> _touchDragStartGlobal;
- std::optional<QPoint> _touchDragNowGlobal;
- rpl::event_stream<> _touchCancelRequests;
- rpl::variable<ChildListShown> _childListShown;
- float64 _narrowRatio = 0.;
- bool _geometryInited = false;
- bool _savedSublists = false;
- bool _searchLoading = false;
- bool _searchWaiting = false;
- base::unique_qptr<Ui::PopupMenu> _menu;
- };
- } // namespace Dialogs
|