mirror of https://github.com/procxx/kepka.git
Show Emoji replacement tooltip on hover
When using the mouse, hovering over a emoji causes the corresponding replacement text to appear in a tooltip. This feature is disabled, if the option "Suggest emoji replacements" is disabled. This closes #3739, closes #743 and closes #4211.
This commit is contained in:
parent
e966213ff8
commit
689aed7258
|
@ -11,6 +11,9 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "styles/style_chat_helpers.h"
|
#include "styles/style_chat_helpers.h"
|
||||||
#include "ui/widgets/shadow.h"
|
#include "ui/widgets/shadow.h"
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
|
#include "emoji_suggestions_data.h"
|
||||||
|
#include "emoji_suggestions_helper.h"
|
||||||
|
#include "facades.h"
|
||||||
|
|
||||||
namespace ChatHelpers {
|
namespace ChatHelpers {
|
||||||
|
|
||||||
|
@ -667,6 +670,28 @@ Ui::Emoji::Section EmojiListWidget::currentSection(int yOffset) const {
|
||||||
return static_cast<Section>(sectionInfoByOffset(yOffset).section);
|
return static_cast<Section>(sectionInfoByOffset(yOffset).section);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString EmojiListWidget::tooltipText() const {
|
||||||
|
const auto &replacements = Ui::Emoji::internal::GetAllReplacements();
|
||||||
|
const auto section = (_selected / MatrixRowShift);
|
||||||
|
const auto sel = _selected % MatrixRowShift;
|
||||||
|
if (_selected >= 0 && section < kEmojiSectionCount && sel < _emoji[section].size()) {
|
||||||
|
const auto emoji = _emoji[section][sel];
|
||||||
|
const auto text = emoji->text();
|
||||||
|
// find the replacement belonging to the emoji
|
||||||
|
const auto it = ranges::find_if(replacements, [&text](auto &one) {
|
||||||
|
return text == Ui::Emoji::QStringFromUTF16(one.emoji);
|
||||||
|
});
|
||||||
|
if (it != replacements.end()) {
|
||||||
|
return Ui::Emoji::QStringFromUTF16(it->replacement);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
QPoint EmojiListWidget::tooltipPos() const {
|
||||||
|
return _lastMousePos;
|
||||||
|
}
|
||||||
|
|
||||||
TabbedSelector::InnerFooter *EmojiListWidget::getFooter() const {
|
TabbedSelector::InnerFooter *EmojiListWidget::getFooter() const {
|
||||||
return _footer;
|
return _footer;
|
||||||
}
|
}
|
||||||
|
@ -729,6 +754,10 @@ void EmojiListWidget::setSelected(int newSelected) {
|
||||||
_selected = newSelected;
|
_selected = newSelected;
|
||||||
updateSelected();
|
updateSelected();
|
||||||
|
|
||||||
|
if (_selected >= 0 && Global::SuggestEmoji()) {
|
||||||
|
Ui::Tooltip::Show(1000, this);
|
||||||
|
}
|
||||||
|
|
||||||
setCursor((_selected >= 0) ? style::cur_pointer : style::cur_default);
|
setCursor((_selected >= 0) ? style::cur_pointer : style::cur_default);
|
||||||
if (_selected >= 0 && !_picker->isHidden()) {
|
if (_selected >= 0 && !_picker->isHidden()) {
|
||||||
if (_selected != _pickerSel) {
|
if (_selected != _pickerSel) {
|
||||||
|
|
|
@ -8,6 +8,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "chat_helpers/tabbed_selector.h"
|
#include "chat_helpers/tabbed_selector.h"
|
||||||
|
#include "ui/widgets/tooltip.h"
|
||||||
|
|
||||||
namespace Window {
|
namespace Window {
|
||||||
class Controller;
|
class Controller;
|
||||||
|
@ -74,7 +75,7 @@ private:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class EmojiListWidget : public TabbedSelector::Inner {
|
class EmojiListWidget : public TabbedSelector::Inner, public Ui::AbstractTooltipShower {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
@ -89,6 +90,10 @@ public:
|
||||||
void showEmojiSection(Section section);
|
void showEmojiSection(Section section);
|
||||||
Section currentSection(int yOffset) const;
|
Section currentSection(int yOffset) const;
|
||||||
|
|
||||||
|
// Ui::AbstractTooltipShower interface.
|
||||||
|
QString tooltipText() const override;
|
||||||
|
QPoint tooltipPos() const override;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void onShowPicker();
|
void onShowPicker();
|
||||||
void onPickerHidden();
|
void onPickerHidden();
|
||||||
|
|
Loading…
Reference in New Issue