diff --git a/Telegram/SourceFiles/history/history_inner_widget.cpp b/Telegram/SourceFiles/history/history_inner_widget.cpp index 6c646278e..4491f6009 100644 --- a/Telegram/SourceFiles/history/history_inner_widget.cpp +++ b/Telegram/SourceFiles/history/history_inner_widget.cpp @@ -955,7 +955,7 @@ void HistoryInner::touchScrollUpdated(const QPoint &screenPos) { touchUpdateSpeed(); } -QPoint HistoryInner::mapPointToItem(QPoint p, const Element *view) { +QPoint HistoryInner::mapPointToItem(QPoint p, const Element *view) const { if (view) { const auto top = itemTop(view); p.setY(p.y() - top); @@ -964,7 +964,9 @@ QPoint HistoryInner::mapPointToItem(QPoint p, const Element *view) { return QPoint(); } -QPoint HistoryInner::mapPointToItem(QPoint p, const HistoryItem *item) { +QPoint HistoryInner::mapPointToItem( + QPoint p, + const HistoryItem *item) const { return item ? mapPointToItem(p, item->mainView()) : QPoint(); } @@ -2524,7 +2526,8 @@ void HistoryInner::mouseActionUpdate() { } if (dragState.link || dragState.cursor == CursorState::Date - || dragState.cursor == CursorState::Forwarded) { + || dragState.cursor == CursorState::Forwarded + || dragState.customTooltip) { Ui::Tooltip::Show(1000, this); } @@ -3037,8 +3040,17 @@ QString HistoryInner::tooltipText() const { return forwarded->text.originalText(AllTextSelection, ExpandLinksNone); } } - } else if (auto lnk = ClickHandler::getActive()) { + } else if (const auto lnk = ClickHandler::getActive()) { return lnk->tooltip(); + } else if (const auto view = App::mousedItem()) { + StateRequest request; + const auto local = mapFromGlobal(_mousePosition); + const auto point = _widget->clampMousePosition(local); + request.flags |= Text::StateRequest::Flag::LookupCustomTooltip; + const auto state = view->textState( + mapPointToItem(point, view), + request); + return state.customTooltipText; } return QString(); } diff --git a/Telegram/SourceFiles/history/history_inner_widget.h b/Telegram/SourceFiles/history/history_inner_widget.h index 042885a73..6f4b73a12 100644 --- a/Telegram/SourceFiles/history/history_inner_widget.h +++ b/Telegram/SourceFiles/history/history_inner_widget.h @@ -199,8 +199,8 @@ private: std::unique_ptr prepareDrag(); void performDrag(); - QPoint mapPointToItem(QPoint p, const Element *view); - QPoint mapPointToItem(QPoint p, const HistoryItem *item); + QPoint mapPointToItem(QPoint p, const Element *view) const; + QPoint mapPointToItem(QPoint p, const HistoryItem *item) const; void showContextMenu(QContextMenuEvent *e, bool showFromTouch = false); void cancelContextDownload(not_null document); diff --git a/Telegram/SourceFiles/history/media/history_media_poll.cpp b/Telegram/SourceFiles/history/media/history_media_poll.cpp index 3959e6052..65ccaac7a 100644 --- a/Telegram/SourceFiles/history/media/history_media_poll.cpp +++ b/Telegram/SourceFiles/history/media/history_media_poll.cpp @@ -730,10 +730,11 @@ void HistoryPoll::startAnswersAnimation() const { TextState HistoryPoll::textState(QPoint point, StateRequest request) const { auto result = TextState(_parent); - if (!canVote() || !_poll->sendingVote.isEmpty()) { + if (!_poll->sendingVote.isEmpty()) { return result; } + const auto can = canVote(); const auto padding = st::msgPadding; auto paintw = width(); auto tshift = st::historyPollQuestionTop; @@ -750,8 +751,18 @@ TextState HistoryPoll::textState(QPoint point, StateRequest request) const { for (const auto &answer : _answers) { const auto height = countAnswerHeight(answer, paintw); if (point.y() >= tshift && point.y() < tshift + height) { - _lastLinkPoint = point; - result.link = answer.handler; + if (can) { + _lastLinkPoint = point; + result.link = answer.handler; + } else { + result.customTooltip = true; + using Flag = Text::StateRequest::Flag; + if (request.flags & Flag::LookupCustomTooltip) { + result.customTooltipText = answer.votes + ? lng_polls_votes_count(lt_count, answer.votes) + : lang(lng_polls_votes_none); + } + } return result; } tshift += height; diff --git a/Telegram/SourceFiles/history/view/history_view_cursor_state.h b/Telegram/SourceFiles/history/view/history_view_cursor_state.h index b938f8f04..f2c4174a6 100644 --- a/Telegram/SourceFiles/history/view/history_view_cursor_state.h +++ b/Telegram/SourceFiles/history/view/history_view_cursor_state.h @@ -50,7 +50,9 @@ struct TextState { CursorState cursor = CursorState::None; ClickHandlerPtr link; bool afterSymbol = false; + bool customTooltip = false; uint16 symbol = 0; + QString customTooltipText; }; diff --git a/Telegram/SourceFiles/ui/text/text.h b/Telegram/SourceFiles/ui/text/text.h index 3fb6c3b3e..d6c4a0816 100644 --- a/Telegram/SourceFiles/ui/text/text.h +++ b/Telegram/SourceFiles/ui/text/text.h @@ -115,9 +115,10 @@ public: struct StateRequest { enum class Flag { - BreakEverywhere = (1 << 0), - LookupSymbol = (1 << 1), - LookupLink = (1 << 2), + BreakEverywhere = (1 << 0), + LookupSymbol = (1 << 1), + LookupLink = (1 << 2), + LookupCustomTooltip = (1 << 3), }; using Flags = base::flags; friend inline constexpr auto is_flag_type(Flag) { return true; };