From 31ba2828af957fea804906d2e6ec50f5830a5d21 Mon Sep 17 00:00:00 2001 From: John Preston Date: Mon, 30 Mar 2020 15:21:16 +0400 Subject: [PATCH] Add a tooltip with information about the dice. --- Telegram/Resources/langs/lang.strings | 2 ++ .../history/view/media/history_view_dice.cpp | 16 ++++++++++++++++ .../history/view/media/history_view_dice.h | 2 ++ 3 files changed, 20 insertions(+) diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 6c99f6878..2ef997bdf 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -1329,6 +1329,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_dialogs_skip_archive_in_search" = "Skip results from archive"; "lng_dialogs_show_archive_in_search" = "With results from archive"; +"lng_about_dice" = "Send a 🎲 emoji to any chat to get a random number from Telegram."; + "lng_open_this_link" = "Open this link?"; "lng_open_link" = "Open"; "lng_allow_bot_pass" = "Allow {bot_name} to pass your Telegram name and ID to the web pages you open via this bot?"; diff --git a/Telegram/SourceFiles/history/view/media/history_view_dice.cpp b/Telegram/SourceFiles/history/view/media/history_view_dice.cpp index c4ee34d96..587b0e929 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_dice.cpp +++ b/Telegram/SourceFiles/history/view/media/history_view_dice.cpp @@ -13,6 +13,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL #include "history/history_item.h" #include "history/history_item_components.h" #include "history/view/history_view_element.h" +#include "ui/toast/toast.h" +#include "lang/lang_keys.h" #include "main/main_session.h" namespace HistoryView { @@ -42,6 +44,20 @@ QSize Dice::size() { return _start.size(); } +ClickHandlerPtr Dice::link() { + if (_parent->data()->Has()) { + return nullptr; + } + static auto kHandler = std::make_shared([] { + auto config = Ui::Toast::Config(); + config.multiline = true; + config.minWidth = st::msgMinWidth; + config.text = tr::lng_about_dice(tr::now); + Ui::Toast::Show(config); + }); + return kHandler; +} + void Dice::draw(Painter &p, const QRect &r, bool selected) { if (const auto value = _end ? 0 : _dice->diceValue()) { if (const auto document = Lookup(_parent, value)) { diff --git a/Telegram/SourceFiles/history/view/media/history_view_dice.h b/Telegram/SourceFiles/history/view/media/history_view_dice.h index d8967412f..113c94dba 100644 --- a/Telegram/SourceFiles/history/view/media/history_view_dice.h +++ b/Telegram/SourceFiles/history/view/media/history_view_dice.h @@ -24,6 +24,8 @@ public: QSize size() override; void draw(Painter &p, const QRect &r, bool selected) override; + ClickHandlerPtr link() override; + void clearStickerLoopPlayed() override { } void unloadHeavyPart() override {