mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-04-01 23:00:58 +00:00
parent
eb3eef4b80
commit
b697824540
@ -33,7 +33,7 @@ void AboutBox::prepare() {
|
|||||||
|
|
||||||
const auto linkFilter = [](const ClickHandlerPtr &link, auto button) {
|
const auto linkFilter = [](const ClickHandlerPtr &link, auto button) {
|
||||||
if (const auto url = dynamic_cast<UrlClickHandler*>(link.get())) {
|
if (const auto url = dynamic_cast<UrlClickHandler*>(link.get())) {
|
||||||
url->UrlClickHandler::onClick(button);
|
url->UrlClickHandler::onClick({ button });
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
@ -10,6 +10,11 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
class ClickHandler;
|
class ClickHandler;
|
||||||
using ClickHandlerPtr = std::shared_ptr<ClickHandler>;
|
using ClickHandlerPtr = std::shared_ptr<ClickHandler>;
|
||||||
|
|
||||||
|
struct ClickContext {
|
||||||
|
Qt::MouseButton button = Qt::LeftButton;
|
||||||
|
QVariant other;
|
||||||
|
};
|
||||||
|
|
||||||
enum ExpandLinksMode {
|
enum ExpandLinksMode {
|
||||||
ExpandLinksNone,
|
ExpandLinksNone,
|
||||||
ExpandLinksShortened,
|
ExpandLinksShortened,
|
||||||
@ -35,7 +40,7 @@ public:
|
|||||||
virtual ~ClickHandler() {
|
virtual ~ClickHandler() {
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void onClick(Qt::MouseButton) const = 0;
|
virtual void onClick(ClickContext context) const = 0;
|
||||||
|
|
||||||
// What text to show in a tooltip when mouse is over that click handler as a link in Text.
|
// What text to show in a tooltip when mouse is over that click handler as a link in Text.
|
||||||
virtual QString tooltip() const {
|
virtual QString tooltip() const {
|
||||||
@ -159,9 +164,10 @@ private:
|
|||||||
|
|
||||||
class LeftButtonClickHandler : public ClickHandler {
|
class LeftButtonClickHandler : public ClickHandler {
|
||||||
public:
|
public:
|
||||||
void onClick(Qt::MouseButton button) const override final {
|
void onClick(ClickContext context) const override final {
|
||||||
if (button != Qt::LeftButton) return;
|
if (context.button == Qt::LeftButton) {
|
||||||
onClickImpl();
|
onClickImpl();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@ -173,8 +179,8 @@ class LambdaClickHandler : public ClickHandler {
|
|||||||
public:
|
public:
|
||||||
LambdaClickHandler(Fn<void()> handler) : _handler(std::move(handler)) {
|
LambdaClickHandler(Fn<void()> handler) : _handler(std::move(handler)) {
|
||||||
}
|
}
|
||||||
void onClick(Qt::MouseButton button) const override final {
|
void onClick(ClickContext context) const override final {
|
||||||
if (button == Qt::LeftButton && _handler) {
|
if (context.button == Qt::LeftButton && _handler) {
|
||||||
_handler();
|
_handler();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -103,7 +103,7 @@ QString UrlClickHandler::url() const {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
void UrlClickHandler::doOpen(QString url) {
|
void UrlClickHandler::Open(QString url, QVariant context) {
|
||||||
Ui::Tooltip::Hide();
|
Ui::Tooltip::Hide();
|
||||||
|
|
||||||
if (isEmail(url)) {
|
if (isEmail(url)) {
|
||||||
@ -114,7 +114,7 @@ void UrlClickHandler::doOpen(QString url) {
|
|||||||
url = tryConvertUrlToLocal(url);
|
url = tryConvertUrlToLocal(url);
|
||||||
|
|
||||||
if (url.startsWith(qstr("tg://"), Qt::CaseInsensitive)) {
|
if (url.startsWith(qstr("tg://"), Qt::CaseInsensitive)) {
|
||||||
Messenger::Instance().openLocalUrl(url);
|
Messenger::Instance().openLocalUrl(url, context);
|
||||||
} else {
|
} else {
|
||||||
QDesktopServices::openUrl(url);
|
QDesktopServices::openUrl(url);
|
||||||
}
|
}
|
||||||
@ -140,38 +140,52 @@ TextWithEntities UrlClickHandler::getExpandedLinkTextWithEntities(ExpandLinksMod
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
void HiddenUrlClickHandler::doOpen(QString url) {
|
void HiddenUrlClickHandler::Open(QString url, QVariant context) {
|
||||||
auto urlText = tryConvertUrlToLocal(url);
|
auto urlText = tryConvertUrlToLocal(url);
|
||||||
|
|
||||||
if (urlText.startsWith(qstr("tg://"), Qt::CaseInsensitive)) {
|
if (urlText.startsWith(qstr("tg://"), Qt::CaseInsensitive)) {
|
||||||
Messenger::Instance().openLocalUrl(urlText);
|
Messenger::Instance().openLocalUrl(urlText, context);
|
||||||
} else {
|
} else {
|
||||||
|
const auto open = [=] {
|
||||||
|
UrlClickHandler::Open(urlText, context);
|
||||||
|
};
|
||||||
auto parsedUrl = QUrl::fromUserInput(urlText);
|
auto parsedUrl = QUrl::fromUserInput(urlText);
|
||||||
if (UrlRequiresConfirmation(urlText)) {
|
if (UrlRequiresConfirmation(urlText)) {
|
||||||
auto displayUrl = parsedUrl.isValid() ? parsedUrl.toDisplayString() : urlText;
|
auto displayUrl = parsedUrl.isValid()
|
||||||
Ui::show(Box<ConfirmBox>(lang(lng_open_this_link) + qsl("\n\n") + displayUrl, lang(lng_open_link), [urlText] {
|
? parsedUrl.toDisplayString()
|
||||||
Ui::hideLayer();
|
: urlText;
|
||||||
UrlClickHandler::doOpen(urlText);
|
Ui::show(
|
||||||
}), LayerOption::KeepOther);
|
Box<ConfirmBox>(
|
||||||
|
lang(lng_open_this_link) + qsl("\n\n") + displayUrl,
|
||||||
|
lang(lng_open_link),
|
||||||
|
[=] { Ui::hideLayer(); open(); }),
|
||||||
|
LayerOption::KeepOther);
|
||||||
} else {
|
} else {
|
||||||
UrlClickHandler::doOpen(urlText);
|
open();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BotGameUrlClickHandler::onClick(Qt::MouseButton button) const {
|
void BotGameUrlClickHandler::onClick(ClickContext context) const {
|
||||||
auto urlText = tryConvertUrlToLocal(url());
|
auto urlText = tryConvertUrlToLocal(url());
|
||||||
|
|
||||||
|
const auto open = [=] {
|
||||||
|
UrlClickHandler::Open(urlText, context.other);
|
||||||
|
};
|
||||||
if (urlText.startsWith(qstr("tg://"), Qt::CaseInsensitive)) {
|
if (urlText.startsWith(qstr("tg://"), Qt::CaseInsensitive)) {
|
||||||
Messenger::Instance().openLocalUrl(urlText);
|
Messenger::Instance().openLocalUrl(urlText, context.other);
|
||||||
} else if (!_bot || _bot->isVerified() || Local::isBotTrusted(_bot)) {
|
} else if (!_bot || _bot->isVerified() || Local::isBotTrusted(_bot)) {
|
||||||
doOpen(urlText);
|
open();
|
||||||
} else {
|
} else {
|
||||||
Ui::show(Box<ConfirmBox>(lng_allow_bot_pass(lt_bot_name, _bot->name), lang(lng_allow_bot), [bot = _bot, urlText] {
|
const auto callback = [=, bot = _bot] {
|
||||||
Ui::hideLayer();
|
Ui::hideLayer();
|
||||||
Local::makeBotTrusted(bot);
|
Local::makeBotTrusted(bot);
|
||||||
UrlClickHandler::doOpen(urlText);
|
open();
|
||||||
}));
|
};
|
||||||
|
Ui::show(Box<ConfirmBox>(
|
||||||
|
lng_allow_bot_pass(lt_bot_name, _bot->name),
|
||||||
|
lang(lng_allow_bot),
|
||||||
|
callback));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,7 +217,8 @@ QString MentionClickHandler::copyToClipboardContextItemText() const {
|
|||||||
return lang(lng_context_copy_mention);
|
return lang(lng_context_copy_mention);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MentionClickHandler::onClick(Qt::MouseButton button) const {
|
void MentionClickHandler::onClick(ClickContext context) const {
|
||||||
|
const auto button = context.button;
|
||||||
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
||||||
App::openPeerByName(_tag.mid(1), ShowAtProfileMsgId);
|
App::openPeerByName(_tag.mid(1), ShowAtProfileMsgId);
|
||||||
}
|
}
|
||||||
@ -213,7 +228,8 @@ TextWithEntities MentionClickHandler::getExpandedLinkTextWithEntities(ExpandLink
|
|||||||
return simpleTextWithEntity({ EntityInTextMention, entityOffset, textPart.size() });
|
return simpleTextWithEntity({ EntityInTextMention, entityOffset, textPart.size() });
|
||||||
}
|
}
|
||||||
|
|
||||||
void MentionNameClickHandler::onClick(Qt::MouseButton button) const {
|
void MentionNameClickHandler::onClick(ClickContext context) const {
|
||||||
|
const auto button = context.button;
|
||||||
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
||||||
if (auto user = App::userLoaded(_userId)) {
|
if (auto user = App::userLoaded(_userId)) {
|
||||||
Ui::showPeerProfile(user);
|
Ui::showPeerProfile(user);
|
||||||
@ -240,7 +256,8 @@ QString HashtagClickHandler::copyToClipboardContextItemText() const {
|
|||||||
return lang(lng_context_copy_hashtag);
|
return lang(lng_context_copy_hashtag);
|
||||||
}
|
}
|
||||||
|
|
||||||
void HashtagClickHandler::onClick(Qt::MouseButton button) const {
|
void HashtagClickHandler::onClick(ClickContext context) const {
|
||||||
|
const auto button = context.button;
|
||||||
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
||||||
App::searchByHashtag(_tag, Ui::getPeerForMouseAction());
|
App::searchByHashtag(_tag, Ui::getPeerForMouseAction());
|
||||||
}
|
}
|
||||||
@ -254,7 +271,8 @@ QString CashtagClickHandler::copyToClipboardContextItemText() const {
|
|||||||
return lang(lng_context_copy_hashtag);
|
return lang(lng_context_copy_hashtag);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CashtagClickHandler::onClick(Qt::MouseButton button) const {
|
void CashtagClickHandler::onClick(ClickContext context) const {
|
||||||
|
const auto button = context.button;
|
||||||
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
||||||
App::searchByHashtag(_tag, Ui::getPeerForMouseAction());
|
App::searchByHashtag(_tag, Ui::getPeerForMouseAction());
|
||||||
}
|
}
|
||||||
@ -269,7 +287,8 @@ TextWithEntities CashtagClickHandler::getExpandedLinkTextWithEntities(
|
|||||||
|
|
||||||
PeerData *BotCommandClickHandler::_peer = nullptr;
|
PeerData *BotCommandClickHandler::_peer = nullptr;
|
||||||
UserData *BotCommandClickHandler::_bot = nullptr;
|
UserData *BotCommandClickHandler::_bot = nullptr;
|
||||||
void BotCommandClickHandler::onClick(Qt::MouseButton button) const {
|
void BotCommandClickHandler::onClick(ClickContext context) const {
|
||||||
|
const auto button = context.button;
|
||||||
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
||||||
if (auto peer = peerForCommand()) {
|
if (auto peer = peerForCommand()) {
|
||||||
if (auto bot = peer->isUser() ? peer->asUser() : botForCommand()) {
|
if (auto bot = peer->isUser() ? peer->asUser() : botForCommand()) {
|
||||||
|
@ -11,7 +11,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||||||
|
|
||||||
class TextClickHandler : public ClickHandler {
|
class TextClickHandler : public ClickHandler {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
TextClickHandler(bool fullDisplayed = true)
|
TextClickHandler(bool fullDisplayed = true)
|
||||||
: _fullDisplayed(fullDisplayed) {
|
: _fullDisplayed(fullDisplayed) {
|
||||||
}
|
}
|
||||||
@ -56,10 +55,11 @@ public:
|
|||||||
int entityOffset,
|
int entityOffset,
|
||||||
const QStringRef &textPart) const override;
|
const QStringRef &textPart) const override;
|
||||||
|
|
||||||
static void doOpen(QString url);
|
static void Open(QString url, QVariant context = {});
|
||||||
void onClick(Qt::MouseButton button) const override {
|
void onClick(ClickContext context) const override {
|
||||||
|
const auto button = context.button;
|
||||||
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
||||||
doOpen(url());
|
Open(url(), context.other);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -92,10 +92,11 @@ public:
|
|||||||
: UrlClickHandler::copyToClipboardContextItemText();
|
: UrlClickHandler::copyToClipboardContextItemText();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void doOpen(QString url);
|
static void Open(QString url, QVariant context = {});
|
||||||
void onClick(Qt::MouseButton button) const override {
|
void onClick(ClickContext context) const override {
|
||||||
|
const auto button = context.button;
|
||||||
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
if (button == Qt::LeftButton || button == Qt::MiddleButton) {
|
||||||
doOpen(url());
|
Open(url(), context.other);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -115,7 +116,7 @@ public:
|
|||||||
: UrlClickHandler(url, false)
|
: UrlClickHandler(url, false)
|
||||||
, _bot(bot) {
|
, _bot(bot) {
|
||||||
}
|
}
|
||||||
void onClick(Qt::MouseButton button) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
UserData *_bot;
|
UserData *_bot;
|
||||||
@ -127,7 +128,7 @@ public:
|
|||||||
MentionClickHandler(const QString &tag) : _tag(tag) {
|
MentionClickHandler(const QString &tag) : _tag(tag) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void onClick(Qt::MouseButton button) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
QString dragText() const override {
|
QString dragText() const override {
|
||||||
return _tag;
|
return _tag;
|
||||||
@ -158,7 +159,7 @@ public:
|
|||||||
, _accessHash(accessHash) {
|
, _accessHash(accessHash) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void onClick(Qt::MouseButton button) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
TextWithEntities getExpandedLinkTextWithEntities(
|
TextWithEntities getExpandedLinkTextWithEntities(
|
||||||
ExpandLinksMode mode,
|
ExpandLinksMode mode,
|
||||||
@ -179,7 +180,7 @@ public:
|
|||||||
HashtagClickHandler(const QString &tag) : _tag(tag) {
|
HashtagClickHandler(const QString &tag) : _tag(tag) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void onClick(Qt::MouseButton button) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
QString dragText() const override {
|
QString dragText() const override {
|
||||||
return _tag;
|
return _tag;
|
||||||
@ -207,7 +208,7 @@ public:
|
|||||||
CashtagClickHandler(const QString &tag) : _tag(tag) {
|
CashtagClickHandler(const QString &tag) : _tag(tag) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void onClick(Qt::MouseButton button) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
QString dragText() const override {
|
QString dragText() const override {
|
||||||
return _tag;
|
return _tag;
|
||||||
@ -237,7 +238,7 @@ public:
|
|||||||
BotCommandClickHandler(const QString &cmd) : _cmd(cmd) {
|
BotCommandClickHandler(const QString &cmd) : _cmd(cmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void onClick(Qt::MouseButton button) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
QString dragText() const override {
|
QString dragText() const override {
|
||||||
return _cmd;
|
return _cmd;
|
||||||
|
@ -70,8 +70,8 @@ PeerClickHandler::PeerClickHandler(not_null<PeerData*> peer)
|
|||||||
: _peer(peer) {
|
: _peer(peer) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void PeerClickHandler::onClick(Qt::MouseButton button) const {
|
void PeerClickHandler::onClick(ClickContext context) const {
|
||||||
if (button == Qt::LeftButton && App::wnd()) {
|
if (context.button == Qt::LeftButton && App::wnd()) {
|
||||||
auto controller = App::wnd()->controller();
|
auto controller = App::wnd()->controller();
|
||||||
if (_peer
|
if (_peer
|
||||||
&& _peer->isChannel()
|
&& _peer->isChannel()
|
||||||
|
@ -33,7 +33,7 @@ style::color PeerUserpicColor(PeerId peerId);
|
|||||||
class PeerClickHandler : public ClickHandler {
|
class PeerClickHandler : public ClickHandler {
|
||||||
public:
|
public:
|
||||||
PeerClickHandler(not_null<PeerData*> peer);
|
PeerClickHandler(not_null<PeerData*> peer);
|
||||||
void onClick(Qt::MouseButton button) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
not_null<PeerData*> peer() const {
|
not_null<PeerData*> peer() const {
|
||||||
return _peer;
|
return _peer;
|
||||||
|
@ -206,6 +206,8 @@ struct FullMsgId {
|
|||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Q_DECLARE_METATYPE(FullMsgId);
|
||||||
|
|
||||||
using MessageIdsList = std::vector<FullMsgId>;
|
using MessageIdsList = std::vector<FullMsgId>;
|
||||||
|
|
||||||
inline PeerId peerFromMessage(const MTPmessage &msg) {
|
inline PeerId peerFromMessage(const MTPmessage &msg) {
|
||||||
|
@ -100,9 +100,9 @@ void activateBotCommand(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (skipConfirmation) {
|
if (skipConfirmation) {
|
||||||
UrlClickHandler::doOpen(url);
|
UrlClickHandler::Open(url);
|
||||||
} else {
|
} else {
|
||||||
HiddenUrlClickHandler::doOpen(url);
|
HiddenUrlClickHandler::Open(url);
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
@ -177,12 +177,16 @@ void showSettings() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void activateClickHandler(ClickHandlerPtr handler, Qt::MouseButton button) {
|
void activateClickHandler(ClickHandlerPtr handler, ClickContext context) {
|
||||||
crl::on_main(wnd(), [handler, button] {
|
crl::on_main(wnd(), [=] {
|
||||||
handler->onClick(button);
|
handler->onClick(context);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void activateClickHandler(ClickHandlerPtr handler, Qt::MouseButton button) {
|
||||||
|
activateClickHandler(handler, ClickContext{ button });
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace App
|
} // namespace App
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
|
@ -74,6 +74,7 @@ void openPeerByName(
|
|||||||
void joinGroupByHash(const QString &hash);
|
void joinGroupByHash(const QString &hash);
|
||||||
void showSettings();
|
void showSettings();
|
||||||
|
|
||||||
|
void activateClickHandler(ClickHandlerPtr handler, ClickContext context);
|
||||||
void activateClickHandler(ClickHandlerPtr handler, Qt::MouseButton button);
|
void activateClickHandler(ClickHandlerPtr handler, Qt::MouseButton button);
|
||||||
|
|
||||||
} // namespace App
|
} // namespace App
|
||||||
|
@ -1277,8 +1277,9 @@ void HistoryInner::mouseActionFinish(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (App::pressedItem()) {
|
const auto pressedItemView = App::pressedItem();
|
||||||
repaintItem(App::pressedItem());
|
if (pressedItemView) {
|
||||||
|
repaintItem(pressedItemView);
|
||||||
App::pressedItem(nullptr);
|
App::pressedItem(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1286,7 +1287,13 @@ void HistoryInner::mouseActionFinish(
|
|||||||
|
|
||||||
if (activated) {
|
if (activated) {
|
||||||
mouseActionCancel();
|
mouseActionCancel();
|
||||||
App::activateClickHandler(activated, button);
|
const auto pressedItemId = pressedItemView
|
||||||
|
? pressedItemView->data()->fullId()
|
||||||
|
: FullMsgId();
|
||||||
|
App::activateClickHandler(activated, {
|
||||||
|
button,
|
||||||
|
QVariant::fromValue(pressedItemId)
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((_mouseAction == MouseAction::PrepareSelect)
|
if ((_mouseAction == MouseAction::PrepareSelect)
|
||||||
|
@ -26,7 +26,7 @@ QString LocationClickHandler::copyToClipboardContextItemText() const {
|
|||||||
return lang(lng_context_copy_link);
|
return lang(lng_context_copy_link);
|
||||||
}
|
}
|
||||||
|
|
||||||
void LocationClickHandler::onClick(Qt::MouseButton button) const {
|
void LocationClickHandler::onClick(ClickContext context) const {
|
||||||
if (!psLaunchMaps(_coords)) {
|
if (!psLaunchMaps(_coords)) {
|
||||||
QDesktopServices::openUrl(_text);
|
QDesktopServices::openUrl(_text);
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,7 @@ public:
|
|||||||
setup();
|
setup();
|
||||||
}
|
}
|
||||||
|
|
||||||
void onClick(Qt::MouseButton button) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
QString tooltip() const override {
|
QString tooltip() const override {
|
||||||
return QString();
|
return QString();
|
||||||
|
@ -3546,12 +3546,12 @@ void HistoryWidget::botCallbackDone(
|
|||||||
auto url = qs(answerData.vurl);
|
auto url = qs(answerData.vurl);
|
||||||
if (info.game) {
|
if (info.game) {
|
||||||
url = AppendShareGameScoreUrl(url, info.msgId);
|
url = AppendShareGameScoreUrl(url, info.msgId);
|
||||||
BotGameUrlClickHandler(info.bot, url).onClick(Qt::LeftButton);
|
BotGameUrlClickHandler(info.bot, url).onClick({});
|
||||||
if (item) {
|
if (item) {
|
||||||
updateSendAction(item->history(), SendAction::Type::PlayGame);
|
updateSendAction(item->history(), SendAction::Type::PlayGame);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
UrlClickHandler(url).onClick(Qt::LeftButton);
|
UrlClickHandler(url).onClick({});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1979,7 +1979,10 @@ void ListWidget::mouseActionFinish(
|
|||||||
activated = nullptr;
|
activated = nullptr;
|
||||||
} else if (activated) {
|
} else if (activated) {
|
||||||
mouseActionCancel();
|
mouseActionCancel();
|
||||||
App::activateClickHandler(activated, button);
|
App::activateClickHandler(activated, {
|
||||||
|
button,
|
||||||
|
QVariant::fromValue(pressState.itemId)
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (needItemSelectionToggle) {
|
if (needItemSelectionToggle) {
|
||||||
|
@ -29,7 +29,7 @@ public:
|
|||||||
// this type used as a flag, we dynamic_cast<> to it
|
// this type used as a flag, we dynamic_cast<> to it
|
||||||
class SendClickHandler : public ClickHandler {
|
class SendClickHandler : public ClickHandler {
|
||||||
public:
|
public:
|
||||||
void onClick(Qt::MouseButton) const override {
|
void onClick(ClickContext context) const override {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -281,17 +281,17 @@ void Result::forget() {
|
|||||||
|
|
||||||
void Result::openFile() {
|
void Result::openFile() {
|
||||||
if (_document) {
|
if (_document) {
|
||||||
DocumentOpenClickHandler(_document).onClick(Qt::LeftButton);
|
DocumentOpenClickHandler(_document).onClick({});
|
||||||
} else if (_photo) {
|
} else if (_photo) {
|
||||||
PhotoOpenClickHandler(_photo).onClick(Qt::LeftButton);
|
PhotoOpenClickHandler(_photo).onClick({});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Result::cancelFile() {
|
void Result::cancelFile() {
|
||||||
if (_document) {
|
if (_document) {
|
||||||
DocumentCancelClickHandler(_document).onClick(Qt::LeftButton);
|
DocumentCancelClickHandler(_document).onClick({});
|
||||||
} else if (_photo) {
|
} else if (_photo) {
|
||||||
PhotoCancelClickHandler(_photo).onClick(Qt::LeftButton);
|
PhotoCancelClickHandler(_photo).onClick({});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ Locale: ") + Platform::SystemLanguage();
|
|||||||
+ "&body="
|
+ "&body="
|
||||||
+ qthelp::url_encode(body);
|
+ qthelp::url_encode(body);
|
||||||
|
|
||||||
UrlClickHandler::doOpen(url);
|
UrlClickHandler::Open(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
@ -3695,7 +3695,11 @@ bool MainWidget::started() {
|
|||||||
return _started;
|
return _started;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWidget::openPeerByName(const QString &username, MsgId msgId, const QString &startToken) {
|
void MainWidget::openPeerByName(
|
||||||
|
const QString &username,
|
||||||
|
MsgId msgId,
|
||||||
|
const QString &startToken,
|
||||||
|
FullMsgId clickFromMessageId) {
|
||||||
Messenger::Instance().hideMediaView();
|
Messenger::Instance().hideMediaView();
|
||||||
|
|
||||||
PeerData *peer = App::peerByName(username);
|
PeerData *peer = App::peerByName(username);
|
||||||
@ -3736,7 +3740,13 @@ void MainWidget::openPeerByName(const QString &username, MsgId msgId, const QStr
|
|||||||
_history->updateControlsGeometry();
|
_history->updateControlsGeometry();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
InvokeQueued(this, [this, peer, msgId] {
|
const auto returnToId = clickFromMessageId;
|
||||||
|
InvokeQueued(this, [=] {
|
||||||
|
if (const auto returnTo = App::histItemById(returnToId)) {
|
||||||
|
if (returnTo->history()->peer == peer) {
|
||||||
|
pushReplyReturn(returnTo);
|
||||||
|
}
|
||||||
|
}
|
||||||
_controller->showPeerHistory(
|
_controller->showPeerHistory(
|
||||||
peer->id,
|
peer->id,
|
||||||
SectionShow::Way::Forward,
|
SectionShow::Way::Forward,
|
||||||
|
@ -97,7 +97,11 @@ public:
|
|||||||
|
|
||||||
void start(const MTPUser *self = nullptr);
|
void start(const MTPUser *self = nullptr);
|
||||||
|
|
||||||
void openPeerByName(const QString &name, MsgId msgId = ShowAtUnreadMsgId, const QString &startToken = QString());
|
void openPeerByName(
|
||||||
|
const QString &name,
|
||||||
|
MsgId msgId = ShowAtUnreadMsgId,
|
||||||
|
const QString &startToken = QString(),
|
||||||
|
FullMsgId clickFromMessageId = FullMsgId());
|
||||||
void joinGroupByHash(const QString &hash);
|
void joinGroupByHash(const QString &hash);
|
||||||
void stickersBox(const MTPInputStickerSet &set);
|
void stickersBox(const MTPInputStickerSet &set);
|
||||||
|
|
||||||
|
@ -841,13 +841,13 @@ void Messenger::checkStartUrl() {
|
|||||||
if (!cStartUrl().isEmpty() && !locked()) {
|
if (!cStartUrl().isEmpty() && !locked()) {
|
||||||
auto url = cStartUrl();
|
auto url = cStartUrl();
|
||||||
cSetStartUrl(QString());
|
cSetStartUrl(QString());
|
||||||
if (!openLocalUrl(url)) {
|
if (!openLocalUrl(url, {})) {
|
||||||
cSetStartUrl(url);
|
cSetStartUrl(url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Messenger::openLocalUrl(const QString &url) {
|
bool Messenger::openLocalUrl(const QString &url, QVariant context) {
|
||||||
auto urlTrimmed = url.trimmed();
|
auto urlTrimmed = url.trimmed();
|
||||||
if (urlTrimmed.size() > 8192) urlTrimmed = urlTrimmed.mid(0, 8192);
|
if (urlTrimmed.size() > 8192) urlTrimmed = urlTrimmed.mid(0, 8192);
|
||||||
|
|
||||||
@ -936,7 +936,12 @@ bool Messenger::openLocalUrl(const QString &url) {
|
|||||||
startToken = gameParam;
|
startToken = gameParam;
|
||||||
post = ShowAtGameShareMsgId;
|
post = ShowAtGameShareMsgId;
|
||||||
}
|
}
|
||||||
main->openPeerByName(domain, post, startToken);
|
const auto clickFromMessageId = context.value<FullMsgId>();
|
||||||
|
main->openPeerByName(
|
||||||
|
domain,
|
||||||
|
post,
|
||||||
|
startToken,
|
||||||
|
clickFromMessageId);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -151,7 +151,7 @@ public:
|
|||||||
QString createInternalLink(const QString &query) const;
|
QString createInternalLink(const QString &query) const;
|
||||||
QString createInternalLinkFull(const QString &query) const;
|
QString createInternalLinkFull(const QString &query) const;
|
||||||
void checkStartUrl();
|
void checkStartUrl();
|
||||||
bool openLocalUrl(const QString &url);
|
bool openLocalUrl(const QString &url, QVariant context);
|
||||||
|
|
||||||
void uploadProfilePhoto(QImage &&tosend, const PeerId &peerId);
|
void uploadProfilePhoto(QImage &&tosend, const PeerId &peerId);
|
||||||
void regPhotoUpdate(const PeerId &peer, const FullMsgId &msgId);
|
void regPhotoUpdate(const PeerId &peer, const FullMsgId &msgId);
|
||||||
|
@ -2106,7 +2106,7 @@ void FormController::cancelSure() {
|
|||||||
: (_serviceErrorText.isEmpty()
|
: (_serviceErrorText.isEmpty()
|
||||||
? "tg_passport=cancel"
|
? "tg_passport=cancel"
|
||||||
: "tg_passport=error&error=" + _serviceErrorText)));
|
: "tg_passport=error&error=" + _serviceErrorText)));
|
||||||
UrlClickHandler::doOpen(url);
|
UrlClickHandler::Open(url);
|
||||||
}
|
}
|
||||||
const auto timeout = _view->closeGetDuration();
|
const auto timeout = _view->closeGetDuration();
|
||||||
App::CallDelayed(timeout, this, [=] {
|
App::CallDelayed(timeout, this, [=] {
|
||||||
|
@ -101,7 +101,7 @@ void MainWindow::checkLockByTerms() {
|
|||||||
if (AuthSession::Exists()) {
|
if (AuthSession::Exists()) {
|
||||||
Auth().api().acceptTerms(id);
|
Auth().api().acceptTerms(id);
|
||||||
if (!mention.isEmpty()) {
|
if (!mention.isEmpty()) {
|
||||||
MentionClickHandler(mention).onClick(Qt::LeftButton);
|
MentionClickHandler(mention).onClick({});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Messenger::Instance().unlockTerms();
|
Messenger::Instance().unlockTerms();
|
||||||
|
@ -35,7 +35,7 @@ void DateClickHandler::setDate(QDate date) {
|
|||||||
_date = date;
|
_date = date;
|
||||||
}
|
}
|
||||||
|
|
||||||
void DateClickHandler::onClick(Qt::MouseButton) const {
|
void DateClickHandler::onClick(ClickContext context) const {
|
||||||
App::wnd()->controller()->showJumpToDate(_chat, _date);
|
App::wnd()->controller()->showJumpToDate(_chat, _date);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ public:
|
|||||||
DateClickHandler(Dialogs::Key chat, QDate date);
|
DateClickHandler(Dialogs::Key chat, QDate date);
|
||||||
|
|
||||||
void setDate(QDate date);
|
void setDate(QDate date);
|
||||||
void onClick(Qt::MouseButton) const override;
|
void onClick(ClickContext context) const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Dialogs::Key _chat;
|
Dialogs::Key _chat;
|
||||||
|
Loading…
Reference in New Issue
Block a user