From d7dc277003c5cca926773b6f2149d068bb12d716 Mon Sep 17 00:00:00 2001 From: 23rd <23rd@vivaldi.net> Date: Sat, 9 Mar 2019 13:14:50 +0300 Subject: [PATCH] Added author of channel post in tooltip. - Added "const" to vars within HistoryMessageSigned::refresh(). --- Telegram/Resources/langs/lang.strings | 1 + Telegram/SourceFiles/history/history_inner_widget.cpp | 5 +++++ Telegram/SourceFiles/history/history_item_components.cpp | 9 +++++---- Telegram/SourceFiles/history/history_item_components.h | 1 + 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 4a3241105..51342a8cc 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -1000,6 +1000,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_forwarded_via" = "Forwarded from {user} via {inline_bot}"; "lng_forwarded_channel_via" = "Forwarded from {channel} via {inline_bot}"; "lng_forwarded_signed" = "{channel} ({user})"; +"lng_signed_author" = "Author: {user}"; "lng_in_reply_to" = "In reply to"; "lng_edited" = "edited"; "lng_edited_date" = "Edited: {date}"; diff --git a/Telegram/SourceFiles/history/history_inner_widget.cpp b/Telegram/SourceFiles/history/history_inner_widget.cpp index 819478d0d..ae09e2a4e 100644 --- a/Telegram/SourceFiles/history/history_inner_widget.cpp +++ b/Telegram/SourceFiles/history/history_inner_widget.cpp @@ -3055,6 +3055,11 @@ QString HistoryInner::tooltipText() const { QLocale::system().dateTimeFormat( QLocale::LongFormat))); } + if (const auto msgsigned = view->data()->Get()) { + if (msgsigned->isElided) { + dateText += '\n' + lng_signed_author(lt_user, msgsigned->author); + } + } return dateText; } } else if (_mouseCursorState == CursorState::Forwarded diff --git a/Telegram/SourceFiles/history/history_item_components.cpp b/Telegram/SourceFiles/history/history_item_components.cpp index 3bc105ec2..adb248661 100644 --- a/Telegram/SourceFiles/history/history_item_components.cpp +++ b/Telegram/SourceFiles/history/history_item_components.cpp @@ -50,11 +50,12 @@ void HistoryMessageVia::resize(int32 availw) const { } void HistoryMessageSigned::refresh(const QString &date) { - auto time = qsl(", ") + date; auto name = author; - auto timew = st::msgDateFont->width(time); - auto namew = st::msgDateFont->width(name); - if (timew + namew > st::maxSignatureSize) { + const auto time = qsl(", ") + date; + const auto timew = st::msgDateFont->width(time); + const auto namew = st::msgDateFont->width(name); + isElided = (timew + namew > st::maxSignatureSize); + if (isElided) { name = st::msgDateFont->elided(author, st::maxSignatureSize - timew); } signature.setText( diff --git a/Telegram/SourceFiles/history/history_item_components.h b/Telegram/SourceFiles/history/history_item_components.h index 4d093e75c..7403c8f7f 100644 --- a/Telegram/SourceFiles/history/history_item_components.h +++ b/Telegram/SourceFiles/history/history_item_components.h @@ -37,6 +37,7 @@ struct HistoryMessageSigned : public RuntimeComponent