tdesktop/Telegram/SourceFiles/core/ui_integration.h

100 lines
3.0 KiB
C
Raw Normal View History

2019-09-16 13:14:06 +02: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 13:14:06 +02:00
namespace Main {
class Session;
} // namespace Main
namespace HistoryView {
class ElementDelegate;
} // namespace HistoryView
2019-09-16 13:14:06 +02:00
namespace Core {
struct MarkedTextContext {
2020-06-16 17:10:39 +02:00
enum class HashtagMentionType : uchar {
Telegram,
Twitter,
Instagram,
};
Main::Session *session = nullptr;
HashtagMentionType type = HashtagMentionType::Telegram;
Fn<void()> customEmojiRepaint;
int customEmojiLoopLimit = 0;
};
2021-04-20 14:40:54 +02:00
class UiIntegration final : public Ui::Integration {
public:
2019-09-16 13:14:06 +02:00
void postponeCall(FnMut<void()> &&callable) override;
void registerLeaveSubscription(not_null<QWidget*> widget) override;
void unregisterLeaveSubscription(not_null<QWidget*> widget) override;
QString emojiCacheFolder() override;
2021-07-01 09:47:29 +02:00
QString openglCheckFilePath() override;
QString angleBackendFilePath() override;
2021-06-11 21:01:07 +02:00
2019-09-16 13:14:06 +02:00
void textActionsUpdated() override;
void activationFromTopPanel() override;
bool screenIsLocked() override;
2019-09-16 13:14:06 +02:00
std::shared_ptr<ClickHandler> createLinkHandler(
2020-06-16 17:10:39 +02:00
const EntityLinkData &data,
const std::any &context) override;
2019-09-16 13:14:06 +02:00
bool handleUrlClick(
const QString &url,
const QVariant &context) override;
2023-10-20 16:00:28 +02:00
bool copyPreOnClick(const QVariant &context) override;
2019-09-16 13:14:06 +02:00
rpl::producer<> forcePopupMenuHideRequests() override;
const Ui::Emoji::One *defaultEmojiVariant(
const Ui::Emoji::One *emoji) override;
2022-06-23 13:36:06 +02:00
std::unique_ptr<Ui::Text::CustomEmoji> createCustomEmoji(
const QString &data,
const std::any &context) override;
2022-09-16 22:23:27 +02:00
Fn<void()> createSpoilerRepaint(const std::any &context) override;
2023-06-23 18:05:58 +02:00
bool allowClickHandlerActivation(
const std::shared_ptr<ClickHandler> &handler,
const ClickContext &context) override;
2019-09-16 13:14:06 +02:00
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;
2021-12-19 15:07:57 +01:00
QString phraseFormattingSpoiler() override;
QString phraseButtonOk() override;
2022-07-07 06:39:33 +02:00
QString phraseButtonClose() override;
QString phraseButtonCancel() override;
2022-07-07 06:39:33 +02:00
QString phrasePanelCloseWarning() override;
QString phrasePanelCloseUnsaved() override;
QString phrasePanelCloseAnyway() override;
QString phraseBotSharePhone() override;
QString phraseBotSharePhoneTitle() override;
QString phraseBotSharePhoneConfirm() override;
2023-08-29 19:36:12 +02:00
QString phraseBotAllowWrite() override;
QString phraseBotAllowWriteTitle() override;
QString phraseBotAllowWriteConfirm() override;
2019-09-16 13:14:06 +02:00
};
[[nodiscard]] bool OpenGLLastCheckFailed();
2021-06-11 21:01:07 +02:00
2019-09-16 13:14:06 +02:00
} // namespace Core