mirror of https://github.com/procxx/kepka.git
Added author of channel post in tooltip.
- Added "const" to vars within HistoryMessageSigned::refresh().
This commit is contained in:
parent
32bc723745
commit
d7dc277003
|
@ -1000,6 +1000,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
"lng_forwarded_via" = "Forwarded from {user} via {inline_bot}";
|
"lng_forwarded_via" = "Forwarded from {user} via {inline_bot}";
|
||||||
"lng_forwarded_channel_via" = "Forwarded from {channel} via {inline_bot}";
|
"lng_forwarded_channel_via" = "Forwarded from {channel} via {inline_bot}";
|
||||||
"lng_forwarded_signed" = "{channel} ({user})";
|
"lng_forwarded_signed" = "{channel} ({user})";
|
||||||
|
"lng_signed_author" = "Author: {user}";
|
||||||
"lng_in_reply_to" = "In reply to";
|
"lng_in_reply_to" = "In reply to";
|
||||||
"lng_edited" = "edited";
|
"lng_edited" = "edited";
|
||||||
"lng_edited_date" = "Edited: {date}";
|
"lng_edited_date" = "Edited: {date}";
|
||||||
|
|
|
@ -3055,6 +3055,11 @@ QString HistoryInner::tooltipText() const {
|
||||||
QLocale::system().dateTimeFormat(
|
QLocale::system().dateTimeFormat(
|
||||||
QLocale::LongFormat)));
|
QLocale::LongFormat)));
|
||||||
}
|
}
|
||||||
|
if (const auto msgsigned = view->data()->Get<HistoryMessageSigned>()) {
|
||||||
|
if (msgsigned->isElided) {
|
||||||
|
dateText += '\n' + lng_signed_author(lt_user, msgsigned->author);
|
||||||
|
}
|
||||||
|
}
|
||||||
return dateText;
|
return dateText;
|
||||||
}
|
}
|
||||||
} else if (_mouseCursorState == CursorState::Forwarded
|
} else if (_mouseCursorState == CursorState::Forwarded
|
||||||
|
|
|
@ -50,11 +50,12 @@ void HistoryMessageVia::resize(int32 availw) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryMessageSigned::refresh(const QString &date) {
|
void HistoryMessageSigned::refresh(const QString &date) {
|
||||||
auto time = qsl(", ") + date;
|
|
||||||
auto name = author;
|
auto name = author;
|
||||||
auto timew = st::msgDateFont->width(time);
|
const auto time = qsl(", ") + date;
|
||||||
auto namew = st::msgDateFont->width(name);
|
const auto timew = st::msgDateFont->width(time);
|
||||||
if (timew + namew > st::maxSignatureSize) {
|
const auto namew = st::msgDateFont->width(name);
|
||||||
|
isElided = (timew + namew > st::maxSignatureSize);
|
||||||
|
if (isElided) {
|
||||||
name = st::msgDateFont->elided(author, st::maxSignatureSize - timew);
|
name = st::msgDateFont->elided(author, st::maxSignatureSize - timew);
|
||||||
}
|
}
|
||||||
signature.setText(
|
signature.setText(
|
||||||
|
|
|
@ -37,6 +37,7 @@ struct HistoryMessageSigned : public RuntimeComponent<HistoryMessageSigned, Hist
|
||||||
void refresh(const QString &date);
|
void refresh(const QString &date);
|
||||||
int maxWidth() const;
|
int maxWidth() const;
|
||||||
|
|
||||||
|
bool isElided = false;
|
||||||
QString author;
|
QString author;
|
||||||
Text signature;
|
Text signature;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue