mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-04-15 13:47:05 +02:00
Copy code blocks on header click.
This commit is contained in:
parent
575684670c
commit
66f73a5a64
11 changed files with 19 additions and 3 deletions
BIN
Telegram/Resources/icons/chat/mini_copy.png
Normal file
BIN
Telegram/Resources/icons/chat/mini_copy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 324 B |
BIN
Telegram/Resources/icons/chat/mini_copy@2x.png
Normal file
BIN
Telegram/Resources/icons/chat/mini_copy@2x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 484 B |
BIN
Telegram/Resources/icons/chat/mini_copy@3x.png
Normal file
BIN
Telegram/Resources/icons/chat/mini_copy@3x.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 623 B |
|
@ -2686,6 +2686,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
"lng_formatting_link_create" = "Create";
|
||||
|
||||
"lng_text_copied" = "Text copied to clipboard.";
|
||||
"lng_code_copied" = "Code copied to clipboard.";
|
||||
|
||||
"lng_spellchecker_submenu" = "Spelling";
|
||||
"lng_spellchecker_add" = "Add to Dictionary";
|
||||
|
|
|
@ -243,6 +243,16 @@ bool UiIntegration::handleUrlClick(
|
|||
return true;
|
||||
}
|
||||
|
||||
bool UiIntegration::copyPreOnClick(const QVariant &context) {
|
||||
const auto my = context.value<ClickHandlerContext>();
|
||||
if (const auto window = my.sessionWindow.get()) {
|
||||
window->showToast(tr::lng_code_copied(tr::now));
|
||||
} else if (my.show) {
|
||||
my.show->showToast(tr::lng_code_copied(tr::now));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
std::unique_ptr<Ui::Text::CustomEmoji> UiIntegration::createCustomEmoji(
|
||||
const QString &data,
|
||||
const std::any &context) {
|
||||
|
|
|
@ -53,6 +53,7 @@ public:
|
|||
bool handleUrlClick(
|
||||
const QString &url,
|
||||
const QVariant &context) override;
|
||||
bool copyPreOnClick(const QVariant &context) override;
|
||||
rpl::producer<> forcePopupMenuHideRequests() override;
|
||||
const Ui::Emoji::One *defaultEmojiVariant(
|
||||
const Ui::Emoji::One *emoji) override;
|
||||
|
|
|
@ -56,6 +56,8 @@ messageTextStyle: TextStyle(defaultTextStyle) {
|
|||
header: 20px;
|
||||
headerPosition: point(10px, 2px);
|
||||
scrollable: true;
|
||||
icon: icon{{ "chat/mini_copy", windowFg }};
|
||||
iconPosition: point(4px, 2px);
|
||||
}
|
||||
}
|
||||
msgDateTextStyle: defaultTextStyle;
|
||||
|
|
|
@ -60,6 +60,8 @@ void EnsurePreCache(
|
|||
cache->outline.setAlphaF(0.9);
|
||||
cache->header = color->c;
|
||||
cache->header.setAlphaF(0.25);
|
||||
cache->icon = cache->outline;
|
||||
cache->icon.setAlphaF(0.6);
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
|
2
Telegram/ThirdParty/libprisma
vendored
2
Telegram/ThirdParty/libprisma
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 7f62494bb8cb6478a7cb6053ad7b5668fa013366
|
||||
Subproject commit 629dc69fbffa5d63954c8e8909a26efdd98573b0
|
|
@ -1 +1 @@
|
|||
Subproject commit 5227bec65b6cb8c2b3172747ecb5f3468580de10
|
||||
Subproject commit c97b3fe73ddfbc80c9ecacfbf2cda824e5b05ff5
|
|
@ -1 +1 @@
|
|||
Subproject commit 9eb9fcf043276bb3a73f1fc25531e4f4862d6fc9
|
||||
Subproject commit 17d73a5c0cb7350a2330b85347a919ad639ad1cf
|
Loading…
Add table
Reference in a new issue