Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
// This file is part of Desktop App Toolkit,
|
|
// a set of libraries for developing nice desktop applications.
|
|
//
|
|
// For license and copyright information please follow this link:
|
|
// https://github.com/desktop-app/legal/blob/master/LEGAL
|
|
//
|
|
#pragma once
|
|
|
|
#include "ui/text/text.h"
|
|
|
|
namespace Ui::Text {
|
|
|
|
struct ImageEmoji {
|
|
QImage image;
|
|
QMargins margin;
|
|
bool textColor = true;
|
|
};
|
|
|
|
struct PaletteDependentEmoji {
|
|
Fn<QImage()> factory;
|
|
QMargins margin;
|
|
};
|
|
|
|
class CustomEmojiHelper final {
|
|
public:
|
|
CustomEmojiHelper();
|
|
CustomEmojiHelper(MarkedContext parent);
|
|
|
|
[[nodiscard]] QString imageData(ImageEmoji emoji);
|
|
[[nodiscard]] TextWithEntities image(ImageEmoji emoji);
|
|
|
|
[[nodiscard]] QString paletteDependentData(PaletteDependentEmoji emoji);
|
|
[[nodiscard]] TextWithEntities paletteDependent(
|
|
PaletteDependentEmoji emoji);
|
|
|
|
[[nodiscard]] MarkedContext context(Fn<void()> repaint = nullptr);
|
|
|
|
private:
|
|
struct Data {
|
|
QString prefix;
|
|
std::vector<QImage> images;
|
|
std::vector<Fn<QImage()>> paletteDependent;
|
|
};
|
|
|
|
[[nodiscard]] not_null<Data*> ensureData();
|
|
|
|
MarkedContext _parent;
|
|
std::shared_ptr<Data> _data;
|
|
|
|
};
|
|
|
|
} // namespace Ui::Text
|