2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 10:47:11 +00:00
tdesktop/Telegram/SourceFiles/core/ui_integration.h

66 lines
1.9 KiB
C
Raw Normal View History

2019-09-16 14:14:06 +03:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "ui/integration.h"
2019-09-16 14:14:06 +03:00
namespace Core {
class UiIntegration : public Ui::Integration {
public:
2020-06-16 19:10:39 +04:00
enum class HashtagMentionType : uchar {
Telegram,
Twitter,
Instagram,
};
struct Context {
HashtagMentionType type = HashtagMentionType::Telegram;
};
2019-09-16 14:14:06 +03:00
void postponeCall(FnMut<void()> &&callable) override;
void registerLeaveSubscription(not_null<QWidget*> widget) override;
void unregisterLeaveSubscription(not_null<QWidget*> widget) override;
void writeLogEntry(const QString &entry) override;
QString emojiCacheFolder() override;
void textActionsUpdated() override;
void activationFromTopPanel() override;
void startFontsBegin() override;
void startFontsEnd() override;
2019-09-16 14:14:06 +03:00
std::shared_ptr<ClickHandler> createLinkHandler(
2020-06-16 19:10:39 +04:00
const EntityLinkData &data,
const std::any &context) override;
2019-09-16 14:14:06 +03:00
bool handleUrlClick(
const QString &url,
const QVariant &context) override;
rpl::producer<> forcePopupMenuHideRequests() override;
QString convertTagToMimeTag(const QString &tagId) override;
const Ui::Emoji::One *defaultEmojiVariant(
const Ui::Emoji::One *emoji) override;
QString phraseContextCopyText() override;
QString phraseContextCopyEmail() override;
QString phraseContextCopyLink() override;
QString phraseContextCopySelected() override;
QString phraseFormattingTitle() override;
QString phraseFormattingLinkCreate() override;
QString phraseFormattingLinkEdit() override;
QString phraseFormattingClear() override;
QString phraseFormattingBold() override;
QString phraseFormattingItalic() override;
QString phraseFormattingUnderline() override;
QString phraseFormattingStrikeOut() override;
QString phraseFormattingMonospace() override;
};
} // namespace Core