2015-12-07 13:05:00 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2016-02-08 10:56:18 +00:00
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
2015-12-07 13:05:00 +00:00
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
2016-05-19 12:03:51 +00:00
|
|
|
#include "profile/profile_section_memento.h"
|
2016-05-24 16:13:07 +00:00
|
|
|
#include "core/vector_of_moveable.h"
|
|
|
|
#include "core/click_handler_types.h"
|
2016-06-01 20:05:37 +00:00
|
|
|
#include "observer_peer.h"
|
2016-04-12 21:31:28 +00:00
|
|
|
#include "mainwindow.h"
|
2015-12-07 13:05:00 +00:00
|
|
|
#include "mainwidget.h"
|
2016-03-19 16:55:15 +00:00
|
|
|
#include "application.h"
|
2016-03-29 17:17:00 +00:00
|
|
|
#include "boxes/confirmbox.h"
|
2015-12-24 20:29:33 +00:00
|
|
|
#include "layerwidget.h"
|
2016-01-11 15:43:29 +00:00
|
|
|
#include "lang.h"
|
2015-12-24 20:29:33 +00:00
|
|
|
|
2016-03-29 17:17:00 +00:00
|
|
|
Q_DECLARE_METATYPE(ClickHandlerPtr);
|
2016-02-16 13:33:33 +00:00
|
|
|
Q_DECLARE_METATYPE(Qt::MouseButton);
|
|
|
|
|
2015-12-07 13:05:00 +00:00
|
|
|
namespace App {
|
|
|
|
|
2016-04-14 19:24:42 +00:00
|
|
|
void sendBotCommand(PeerData *peer, UserData *bot, const QString &cmd, MsgId replyTo) {
|
|
|
|
if (auto m = main()) {
|
|
|
|
m->sendBotCommand(peer, bot, cmd, replyTo);
|
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-03-29 17:17:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool insertBotCommand(const QString &cmd, bool specialGif) {
|
2016-04-14 19:24:42 +00:00
|
|
|
if (auto m = main()) {
|
|
|
|
return m->insertBotCommand(cmd, specialGif);
|
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void activateBotCommand(const HistoryItem *msg, int row, int col) {
|
|
|
|
const HistoryMessageReplyMarkup::Button *button = nullptr;
|
|
|
|
if (auto markup = msg->Get<HistoryMessageReplyMarkup>()) {
|
|
|
|
if (row < markup->rows.size()) {
|
|
|
|
const auto &buttonRow(markup->rows.at(row));
|
|
|
|
if (col < buttonRow.size()) {
|
|
|
|
button = &buttonRow.at(col);
|
2016-04-06 17:02:22 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
|
|
|
if (!button) return;
|
|
|
|
|
|
|
|
switch (button->type) {
|
|
|
|
case HistoryMessageReplyMarkup::Button::Default: {
|
|
|
|
// Copy string before passing it to the sending method
|
|
|
|
// because the original button can be destroyed inside.
|
|
|
|
MsgId replyTo = (msg->id > 0) ? msg->id : 0;
|
2016-04-14 19:24:42 +00:00
|
|
|
sendBotCommand(msg->history()->peer, msg->fromOriginal()->asUser(), QString(button->text), replyTo);
|
2016-04-11 10:59:01 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
case HistoryMessageReplyMarkup::Button::Callback: {
|
|
|
|
if (MainWidget *m = main()) {
|
|
|
|
m->app_sendBotCallback(button, msg, row, col);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case HistoryMessageReplyMarkup::Button::Url: {
|
|
|
|
auto url = QString::fromUtf8(button->data);
|
|
|
|
HiddenUrlClickHandler(url).onClick(Qt::LeftButton);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case HistoryMessageReplyMarkup::Button::RequestLocation: {
|
|
|
|
Ui::showLayer(new InformBox(lang(lng_bot_share_location_unavailable)));
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case HistoryMessageReplyMarkup::Button::RequestPhone: {
|
|
|
|
SharePhoneConfirmBox *box = new SharePhoneConfirmBox(msg->history()->peer);
|
|
|
|
box->connect(box, SIGNAL(confirmed(PeerData*)), App::main(), SLOT(onSharePhoneWithBot(PeerData*)));
|
|
|
|
Ui::showLayer(box);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case HistoryMessageReplyMarkup::Button::SwitchInline: {
|
2016-04-20 12:27:38 +00:00
|
|
|
if (auto m = App::main()) {
|
|
|
|
auto getMessageBot = [msg]() -> UserData* {
|
|
|
|
if (auto bot = msg->viaBot()) {
|
|
|
|
return bot;
|
|
|
|
} else if (auto bot = msg->history()->peer->asUser()) {
|
|
|
|
return bot;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
};
|
|
|
|
if (auto bot = getMessageBot()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
auto tryFastSwitch = [bot, &button]() -> bool {
|
|
|
|
if (bot->botInfo && bot->botInfo->inlineReturnPeerId) {
|
|
|
|
if (Notify::switchInlineBotButtonReceived(QString::fromUtf8(button->data))) {
|
|
|
|
return true;
|
2016-04-10 20:59:07 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
return false;
|
|
|
|
};
|
|
|
|
if (!tryFastSwitch()) {
|
|
|
|
m->inlineSwitchLayer('@' + bot->username + ' ' + QString::fromUtf8(button->data));
|
2016-04-08 14:16:52 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-29 17:17:00 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
} break;
|
2016-03-28 12:51:22 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-03-28 12:51:22 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void searchByHashtag(const QString &tag, PeerData *inPeer) {
|
|
|
|
if (MainWidget *m = main()) m->searchMessages(tag + ' ', (inPeer && inPeer->isChannel() && !inPeer->isMegagroup()) ? inPeer : 0);
|
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void openPeerByName(const QString &username, MsgId msgId, const QString &startToken) {
|
|
|
|
if (MainWidget *m = main()) m->openPeerByName(username, msgId, startToken);
|
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void joinGroupByHash(const QString &hash) {
|
|
|
|
if (MainWidget *m = main()) m->joinGroupByHash(hash);
|
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void stickersBox(const QString &name) {
|
|
|
|
if (MainWidget *m = main()) m->stickersBox(MTP_inputStickerSetShortName(MTP_string(name)));
|
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void openLocalUrl(const QString &url) {
|
|
|
|
if (MainWidget *m = main()) m->openLocalUrl(url);
|
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool forward(const PeerId &peer, ForwardWhatMessages what) {
|
|
|
|
if (MainWidget *m = main()) return m->onForward(peer, what);
|
|
|
|
return false;
|
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void removeDialog(History *history) {
|
|
|
|
if (MainWidget *m = main()) {
|
|
|
|
m->removeDialog(history);
|
2015-12-07 13:05:00 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void showSettings() {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
w->showSettings();
|
2016-02-16 11:21:39 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-02-16 11:21:39 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void activateClickHandler(ClickHandlerPtr handler, Qt::MouseButton button) {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
qRegisterMetaType<ClickHandlerPtr>();
|
|
|
|
qRegisterMetaType<Qt::MouseButton>();
|
|
|
|
QMetaObject::invokeMethod(w, "app_activateClickHandler", Qt::QueuedConnection, Q_ARG(ClickHandlerPtr, handler), Q_ARG(Qt::MouseButton, button));
|
2015-12-07 13:05:00 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void logOutDelayed() {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
QMetaObject::invokeMethod(w, "onLogoutSure", Qt::QueuedConnection);
|
2016-03-31 14:06:40 +00:00
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
}
|
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
} // namespace App
|
|
|
|
|
2015-12-07 13:05:00 +00:00
|
|
|
namespace Ui {
|
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void showMediaPreview(DocumentData *document) {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
w->ui_showMediaPreview(document);
|
2015-12-07 13:05:00 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void showMediaPreview(PhotoData *photo) {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
w->ui_showMediaPreview(photo);
|
2016-04-10 18:18:26 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-04-10 18:18:26 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void hideMediaPreview() {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
w->ui_hideMediaPreview();
|
2015-12-07 13:05:00 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void showLayer(LayeredWidget *box, ShowLayerOptions options) {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
w->ui_showLayer(box, options);
|
|
|
|
} else {
|
|
|
|
delete box;
|
2015-12-07 18:09:05 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2015-12-07 18:09:05 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void hideLayer(bool fast) {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) w->ui_showLayer(0, ShowLayerOptions(CloseOtherLayers) | (fast ? ForceFastShowLayer : AnimatedShowLayer));
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2015-12-07 18:09:05 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool isLayerShown() {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) return w->ui_isLayerShown();
|
2016-04-11 10:59:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-12-07 18:09:05 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool isMediaViewShown() {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) return w->ui_isMediaViewShown();
|
2016-04-11 10:59:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
2015-12-25 13:09:14 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool isInlineItemBeingChosen() {
|
|
|
|
if (MainWidget *m = App::main()) return m->ui_isInlineItemBeingChosen();
|
|
|
|
return false;
|
|
|
|
}
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void repaintHistoryItem(const HistoryItem *item) {
|
|
|
|
if (!item) return;
|
|
|
|
if (MainWidget *m = App::main()) m->ui_repaintHistoryItem(item);
|
|
|
|
}
|
2015-12-27 21:37:48 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void repaintInlineItem(const InlineBots::Layout::ItemBase *layout) {
|
|
|
|
if (!layout) return;
|
|
|
|
if (MainWidget *m = App::main()) m->ui_repaintInlineItem(layout);
|
|
|
|
}
|
2015-12-22 08:01:02 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool isInlineItemVisible(const InlineBots::Layout::ItemBase *layout) {
|
|
|
|
if (MainWidget *m = App::main()) return m->ui_isInlineItemVisible(layout);
|
|
|
|
return false;
|
|
|
|
}
|
2015-12-13 11:17:15 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void autoplayMediaInlineAsync(const FullMsgId &msgId) {
|
|
|
|
if (MainWidget *m = App::main()) {
|
|
|
|
QMetaObject::invokeMethod(m, "ui_autoplayMediaInlineAsync", Qt::QueuedConnection, Q_ARG(qint32, msgId.channel), Q_ARG(qint32, msgId.msg));
|
2016-03-19 16:55:15 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-03-19 16:55:15 +00:00
|
|
|
|
2016-04-30 17:04:14 +00:00
|
|
|
void showPeerProfile(const PeerId &peer) {
|
2016-05-19 12:03:51 +00:00
|
|
|
if (auto m = App::main()) {
|
|
|
|
m->showWideSection(Profile::SectionMemento(App::peer(peer)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void showPeerOverview(const PeerId &peer, MediaOverviewType type) {
|
|
|
|
if (auto m = App::main()) {
|
|
|
|
m->showMediaOverview(App::peer(peer), type);
|
|
|
|
}
|
2016-04-30 17:04:14 +00:00
|
|
|
}
|
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void showPeerHistory(const PeerId &peer, MsgId msgId, bool back) {
|
|
|
|
if (MainWidget *m = App::main()) m->ui_showPeerHistory(peer, msgId, back);
|
|
|
|
}
|
2015-12-12 22:29:33 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void showPeerHistoryAsync(const PeerId &peer, MsgId msgId) {
|
|
|
|
if (MainWidget *m = App::main()) {
|
|
|
|
QMetaObject::invokeMethod(m, "ui_showPeerHistoryAsync", Qt::QueuedConnection, Q_ARG(quint64, peer), Q_ARG(qint32, msgId));
|
2015-12-13 11:17:15 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2015-12-13 11:17:15 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
PeerData *getPeerForMouseAction() {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
return w->ui_getPeerForMouseAction();
|
2016-03-29 17:17:00 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
2016-03-29 17:17:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool hideWindowNoQuit() {
|
|
|
|
if (!App::quitting()) {
|
2016-04-12 21:31:28 +00:00
|
|
|
if (auto w = App::wnd()) {
|
2016-04-11 10:59:01 +00:00
|
|
|
if (cWorkMode() == dbiwmTrayOnly || cWorkMode() == dbiwmWindowAndTray) {
|
|
|
|
return w->minimizeToTray();
|
|
|
|
} else if (cPlatform() == dbipMac || cPlatform() == dbipMacOld) {
|
|
|
|
w->hide();
|
|
|
|
w->updateIsActive(Global::OfflineBlurTimeout());
|
|
|
|
w->updateGlobalMenu();
|
|
|
|
return true;
|
2016-02-10 11:39:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
return false;
|
2015-12-07 13:05:00 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 16:05:20 +00:00
|
|
|
bool skipPaintEvent(QWidget *widget, QPaintEvent *event) {
|
|
|
|
if (auto w = App::wnd()) {
|
|
|
|
if (w->contentOverlapped(widget, event)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
} // namespace Ui
|
|
|
|
|
2015-12-07 13:05:00 +00:00
|
|
|
namespace Notify {
|
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void userIsBotChanged(UserData *user) {
|
|
|
|
if (MainWidget *m = App::main()) m->notify_userIsBotChanged(user);
|
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void userIsContactChanged(UserData *user, bool fromThisApp) {
|
|
|
|
if (MainWidget *m = App::main()) m->notify_userIsContactChanged(user, fromThisApp);
|
|
|
|
}
|
2015-12-13 11:17:15 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void botCommandsChanged(UserData *user) {
|
2016-06-01 20:05:37 +00:00
|
|
|
if (MainWidget *m = App::main()) {
|
|
|
|
m->notify_botCommandsChanged(user);
|
|
|
|
}
|
|
|
|
peerUpdatedDelayed(user, PeerUpdate::Flag::BotCommandsChanged);
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2015-12-07 13:05:00 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void inlineBotRequesting(bool requesting) {
|
|
|
|
if (MainWidget *m = App::main()) m->notify_inlineBotRequesting(requesting);
|
|
|
|
}
|
2016-01-01 09:58:05 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void replyMarkupUpdated(const HistoryItem *item) {
|
|
|
|
if (MainWidget *m = App::main()) {
|
|
|
|
m->notify_replyMarkupUpdated(item);
|
2016-04-01 15:32:26 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-04-01 15:32:26 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void inlineKeyboardMoved(const HistoryItem *item, int oldKeyboardTop, int newKeyboardTop) {
|
|
|
|
if (MainWidget *m = App::main()) {
|
|
|
|
m->notify_inlineKeyboardMoved(item, oldKeyboardTop, newKeyboardTop);
|
2016-04-08 09:20:10 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-04-08 09:20:10 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool switchInlineBotButtonReceived(const QString &query) {
|
|
|
|
if (MainWidget *m = App::main()) {
|
|
|
|
return m->notify_switchInlineBotButtonReceived(query);
|
2016-04-08 14:16:52 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-04-08 14:16:52 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void migrateUpdated(PeerData *peer) {
|
|
|
|
if (MainWidget *m = App::main()) m->notify_migrateUpdated(peer);
|
|
|
|
}
|
2015-12-11 18:11:38 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void clipStopperHidden(ClipStopperType type) {
|
|
|
|
if (MainWidget *m = App::main()) m->notify_clipStopperHidden(type);
|
|
|
|
}
|
2015-12-25 13:09:14 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void historyItemLayoutChanged(const HistoryItem *item) {
|
|
|
|
if (MainWidget *m = App::main()) m->notify_historyItemLayoutChanged(item);
|
|
|
|
}
|
2015-12-12 22:29:33 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void inlineItemLayoutChanged(const InlineBots::Layout::ItemBase *layout) {
|
|
|
|
if (MainWidget *m = App::main()) m->notify_inlineItemLayoutChanged(layout);
|
|
|
|
}
|
2016-04-10 18:18:26 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void historyMuteUpdated(History *history) {
|
|
|
|
if (MainWidget *m = App::main()) m->notify_historyMuteUpdated(history);
|
|
|
|
}
|
2016-03-19 16:55:15 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void handlePendingHistoryUpdate() {
|
|
|
|
if (MainWidget *m = App::main()) {
|
|
|
|
m->notify_handlePendingHistoryUpdate();
|
|
|
|
}
|
|
|
|
for_const (HistoryItem *item, Global::PendingRepaintItems()) {
|
|
|
|
Ui::repaintHistoryItem(item);
|
|
|
|
}
|
|
|
|
Global::RefPendingRepaintItems().clear();
|
2015-12-07 13:05:00 +00:00
|
|
|
}
|
2016-01-09 11:24:16 +00:00
|
|
|
|
2016-04-14 19:24:42 +00:00
|
|
|
void unreadCounterUpdated() {
|
|
|
|
Global::RefHandleUnreadCounterUpdate().call();
|
|
|
|
}
|
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
} // namespace Notify
|
|
|
|
|
2016-02-08 14:54:55 +00:00
|
|
|
#define DefineReadOnlyVar(Namespace, Type, Name) const Type &Name() { \
|
2016-04-02 11:20:53 +00:00
|
|
|
t_assert_full(Namespace##Data != 0, #Namespace "Data != nullptr in " #Namespace "::" #Name, __FILE__, __LINE__); \
|
2016-02-08 14:54:55 +00:00
|
|
|
return Namespace##Data->Name; \
|
|
|
|
}
|
|
|
|
#define DefineRefVar(Namespace, Type, Name) DefineReadOnlyVar(Namespace, Type, Name) \
|
|
|
|
Type &Ref##Name() { \
|
2016-04-02 11:20:53 +00:00
|
|
|
t_assert_full(Namespace##Data != 0, #Namespace "Data != nullptr in " #Namespace "::Ref" #Name, __FILE__, __LINE__); \
|
2016-02-08 14:54:55 +00:00
|
|
|
return Namespace##Data->Name; \
|
|
|
|
}
|
|
|
|
#define DefineVar(Namespace, Type, Name) DefineRefVar(Namespace, Type, Name) \
|
|
|
|
void Set##Name(const Type &Name) { \
|
2016-04-02 11:20:53 +00:00
|
|
|
t_assert_full(Namespace##Data != 0, #Namespace "Data != nullptr in " #Namespace "::Set" #Name, __FILE__, __LINE__); \
|
2016-02-08 14:54:55 +00:00
|
|
|
Namespace##Data->Name = Name; \
|
|
|
|
}
|
|
|
|
|
2016-03-18 19:05:08 +00:00
|
|
|
namespace Sandbox {
|
2016-04-11 10:59:01 +00:00
|
|
|
namespace internal {
|
2016-01-21 06:58:58 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
struct Data {
|
|
|
|
QString LangSystemISO;
|
|
|
|
int32 LangSystem = languageDefault;
|
2016-03-18 19:05:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
QByteArray LastCrashDump;
|
|
|
|
ConnectionProxy PreLaunchProxy;
|
|
|
|
};
|
2016-03-18 19:05:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace Sandbox
|
2016-03-18 19:05:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
Sandbox::internal::Data *SandboxData = nullptr;
|
2016-02-15 15:52:11 +00:00
|
|
|
uint64 SandboxUserTag = 0;
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-02-08 14:54:55 +00:00
|
|
|
namespace Sandbox {
|
2016-01-09 11:24:16 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool CheckBetaVersionDir() {
|
|
|
|
QFile beta(cExeDir() + qsl("TelegramBeta_data/tdata/beta"));
|
|
|
|
if (cBetaVersion()) {
|
|
|
|
cForceWorkingDir(cExeDir() + qsl("TelegramBeta_data/"));
|
|
|
|
QDir().mkpath(cWorkingDir() + qstr("tdata"));
|
|
|
|
if (*BetaPrivateKey) {
|
|
|
|
cSetBetaPrivateKey(QByteArray(BetaPrivateKey));
|
|
|
|
}
|
|
|
|
if (beta.open(QIODevice::WriteOnly)) {
|
|
|
|
QDataStream dataStream(&beta);
|
|
|
|
dataStream.setVersion(QDataStream::Qt_5_3);
|
|
|
|
dataStream << quint64(cRealBetaVersion()) << cBetaPrivateKey();
|
|
|
|
} else {
|
|
|
|
LOG(("FATAL: Could not open '%1' for writing private key!").arg(beta.fileName()));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (beta.exists()) {
|
|
|
|
cForceWorkingDir(cExeDir() + qsl("TelegramBeta_data/"));
|
|
|
|
if (beta.open(QIODevice::ReadOnly)) {
|
|
|
|
QDataStream dataStream(&beta);
|
|
|
|
dataStream.setVersion(QDataStream::Qt_5_3);
|
|
|
|
|
|
|
|
quint64 v;
|
|
|
|
QByteArray k;
|
|
|
|
dataStream >> v >> k;
|
|
|
|
if (dataStream.status() == QDataStream::Ok) {
|
|
|
|
cSetBetaVersion(qMax(v, AppVersion * 1000ULL));
|
|
|
|
cSetBetaPrivateKey(k);
|
|
|
|
cSetRealBetaVersion(v);
|
2016-01-11 15:43:29 +00:00
|
|
|
} else {
|
2016-04-11 10:59:01 +00:00
|
|
|
LOG(("FATAL: '%1' is corrupted, reinstall private beta!").arg(beta.fileName()));
|
2016-01-11 15:43:29 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
} else {
|
|
|
|
LOG(("FATAL: could not open '%1' for reading private key!").arg(beta.fileName()));
|
|
|
|
return false;
|
2016-01-11 15:43:29 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
2016-01-09 11:24:16 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void WorkingDirReady() {
|
|
|
|
if (QFile(cWorkingDir() + qsl("tdata/withtestmode")).exists()) {
|
|
|
|
cSetTestMode(true);
|
|
|
|
}
|
|
|
|
if (!cDebug() && QFile(cWorkingDir() + qsl("tdata/withdebug")).exists()) {
|
|
|
|
cSetDebug(true);
|
|
|
|
}
|
|
|
|
if (cBetaVersion()) {
|
2016-04-27 12:02:17 +00:00
|
|
|
cSetAlphaVersion(false);
|
|
|
|
} else if (!cAlphaVersion() && QFile(cWorkingDir() + qsl("tdata/devversion")).exists()) {
|
|
|
|
cSetAlphaVersion(true);
|
|
|
|
} else if (AppAlphaVersion) {
|
2016-04-11 10:59:01 +00:00
|
|
|
QFile f(cWorkingDir() + qsl("tdata/devversion"));
|
|
|
|
if (!f.exists() && f.open(QIODevice::WriteOnly)) {
|
|
|
|
f.write("1");
|
2016-01-11 15:43:29 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-02-15 15:52:11 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
srand((int32)time(NULL));
|
2016-02-15 15:52:11 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
SandboxUserTag = 0;
|
|
|
|
QFile usertag(cWorkingDir() + qsl("tdata/usertag"));
|
|
|
|
if (usertag.open(QIODevice::ReadOnly)) {
|
|
|
|
if (usertag.read(reinterpret_cast<char*>(&SandboxUserTag), sizeof(uint64)) != sizeof(uint64)) {
|
|
|
|
SandboxUserTag = 0;
|
2016-02-15 15:52:11 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
usertag.close();
|
2016-01-11 15:43:29 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
if (!SandboxUserTag) {
|
|
|
|
do {
|
|
|
|
memsetrnd_bad(SandboxUserTag);
|
|
|
|
} while (!SandboxUserTag);
|
2016-01-09 11:24:16 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
if (usertag.open(QIODevice::WriteOnly)) {
|
|
|
|
usertag.write(reinterpret_cast<char*>(&SandboxUserTag), sizeof(uint64));
|
|
|
|
usertag.close();
|
2016-01-11 15:43:29 +00:00
|
|
|
}
|
2016-01-09 11:24:16 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-01-09 11:24:16 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void start() {
|
|
|
|
SandboxData = new internal::Data();
|
2016-01-09 11:24:16 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
SandboxData->LangSystemISO = psCurrentLanguage();
|
|
|
|
if (SandboxData->LangSystemISO.isEmpty()) SandboxData->LangSystemISO = qstr("en");
|
|
|
|
QByteArray l = LangSystemISO().toLatin1();
|
|
|
|
for (int32 i = 0; i < languageCount; ++i) {
|
|
|
|
if (l.at(0) == LanguageCodes[i][0] && l.at(1) == LanguageCodes[i][1]) {
|
|
|
|
SandboxData->LangSystem = i;
|
|
|
|
break;
|
|
|
|
}
|
2016-02-15 15:52:11 +00:00
|
|
|
}
|
2016-04-11 10:59:01 +00:00
|
|
|
}
|
2016-02-15 15:52:11 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void finish() {
|
|
|
|
delete SandboxData;
|
|
|
|
SandboxData = 0;
|
|
|
|
}
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
uint64 UserTag() {
|
|
|
|
return SandboxUserTag;
|
2016-01-11 15:43:29 +00:00
|
|
|
}
|
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineReadOnlyVar(Sandbox, QString, LangSystemISO);
|
|
|
|
DefineReadOnlyVar(Sandbox, int32, LangSystem);
|
|
|
|
DefineVar(Sandbox, QByteArray, LastCrashDump);
|
|
|
|
DefineVar(Sandbox, ConnectionProxy, PreLaunchProxy);
|
|
|
|
|
|
|
|
} // namespace Sandbox
|
|
|
|
|
2016-03-18 19:05:08 +00:00
|
|
|
namespace Global {
|
2016-04-11 10:59:01 +00:00
|
|
|
namespace internal {
|
2016-02-21 17:01:37 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
struct Data {
|
|
|
|
uint64 LaunchId = 0;
|
|
|
|
SingleDelayedCall HandleHistoryUpdate = { App::app(), "call_handleHistoryUpdate" };
|
2016-04-14 19:24:42 +00:00
|
|
|
SingleDelayedCall HandleUnreadCounterUpdate = { App::app(), "call_handleUnreadCounterUpdate" };
|
2016-05-25 17:59:21 +00:00
|
|
|
SingleDelayedCall HandleFileDialogQueue = { App::app(), "call_handleFileDialogQueue" };
|
2016-02-18 16:36:33 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
Adaptive::Layout AdaptiveLayout = Adaptive::NormalLayout;
|
|
|
|
bool AdaptiveForWide = true;
|
|
|
|
bool DialogsModeEnabled = false;
|
|
|
|
Dialogs::Mode DialogsMode = Dialogs::Mode::All;
|
2016-03-17 18:03:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
int32 DebugLoggingFlags = 0;
|
2016-03-18 19:05:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
// config
|
|
|
|
int32 ChatSizeMax = 200;
|
|
|
|
int32 MegagroupSizeMax = 1000;
|
|
|
|
int32 ForwardedCountMax = 100;
|
|
|
|
int32 OnlineUpdatePeriod = 120000;
|
|
|
|
int32 OfflineBlurTimeout = 5000;
|
|
|
|
int32 OfflineIdleTimeout = 30000;
|
|
|
|
int32 OnlineFocusTimeout = 1000;
|
|
|
|
int32 OnlineCloudTimeout = 300000;
|
|
|
|
int32 NotifyCloudDelay = 30000;
|
|
|
|
int32 NotifyDefaultDelay = 1500;
|
|
|
|
int32 ChatBigSize = 10;
|
|
|
|
int32 PushChatPeriod = 60000;
|
|
|
|
int32 PushChatLimit = 2;
|
|
|
|
int32 SavedGifsLimit = 200;
|
|
|
|
int32 EditTimeLimit = 172800;
|
|
|
|
|
|
|
|
HiddenPinnedMessagesMap HiddenPinnedMessages;
|
|
|
|
|
|
|
|
PendingItemsMap PendingRepaintItems;
|
|
|
|
|
|
|
|
Stickers::Sets StickerSets;
|
|
|
|
Stickers::Order StickerSetsOrder;
|
|
|
|
uint64 LastStickersUpdate = 0;
|
|
|
|
|
|
|
|
MTP::DcOptions DcOptions;
|
|
|
|
|
|
|
|
CircleMasksMap CircleMasks;
|
|
|
|
};
|
2016-03-18 19:05:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace Global
|
2016-03-18 19:05:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
Global::internal::Data *GlobalData = nullptr;
|
2016-03-18 19:05:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
namespace Global {
|
2016-03-19 16:55:15 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
bool started() {
|
|
|
|
return GlobalData != nullptr;
|
|
|
|
}
|
2016-03-19 16:55:15 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void start() {
|
|
|
|
GlobalData = new internal::Data();
|
2016-03-18 19:05:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
memset_rand(&GlobalData->LaunchId, sizeof(GlobalData->LaunchId));
|
2016-03-18 19:05:08 +00:00
|
|
|
}
|
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
void finish() {
|
|
|
|
delete GlobalData;
|
|
|
|
GlobalData = nullptr;
|
|
|
|
}
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineReadOnlyVar(Global, uint64, LaunchId);
|
|
|
|
DefineRefVar(Global, SingleDelayedCall, HandleHistoryUpdate);
|
2016-04-14 19:24:42 +00:00
|
|
|
DefineRefVar(Global, SingleDelayedCall, HandleUnreadCounterUpdate);
|
2016-05-25 17:59:21 +00:00
|
|
|
DefineRefVar(Global, SingleDelayedCall, HandleFileDialogQueue);
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineVar(Global, Adaptive::Layout, AdaptiveLayout);
|
|
|
|
DefineVar(Global, bool, AdaptiveForWide);
|
|
|
|
DefineVar(Global, bool, DialogsModeEnabled);
|
|
|
|
DefineVar(Global, Dialogs::Mode, DialogsMode);
|
2016-01-30 16:31:10 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineVar(Global, int32, DebugLoggingFlags);
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
// config
|
|
|
|
DefineVar(Global, int32, ChatSizeMax);
|
|
|
|
DefineVar(Global, int32, MegagroupSizeMax);
|
|
|
|
DefineVar(Global, int32, ForwardedCountMax);
|
|
|
|
DefineVar(Global, int32, OnlineUpdatePeriod);
|
|
|
|
DefineVar(Global, int32, OfflineBlurTimeout);
|
|
|
|
DefineVar(Global, int32, OfflineIdleTimeout);
|
|
|
|
DefineVar(Global, int32, OnlineFocusTimeout);
|
|
|
|
DefineVar(Global, int32, OnlineCloudTimeout);
|
|
|
|
DefineVar(Global, int32, NotifyCloudDelay);
|
|
|
|
DefineVar(Global, int32, NotifyDefaultDelay);
|
|
|
|
DefineVar(Global, int32, ChatBigSize);
|
|
|
|
DefineVar(Global, int32, PushChatPeriod);
|
|
|
|
DefineVar(Global, int32, PushChatLimit);
|
|
|
|
DefineVar(Global, int32, SavedGifsLimit);
|
|
|
|
DefineVar(Global, int32, EditTimeLimit);
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineVar(Global, HiddenPinnedMessagesMap, HiddenPinnedMessages);
|
2016-01-11 15:43:29 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineRefVar(Global, PendingItemsMap, PendingRepaintItems);
|
2016-02-21 17:01:37 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineVar(Global, Stickers::Sets, StickerSets);
|
|
|
|
DefineVar(Global, Stickers::Order, StickerSetsOrder);
|
|
|
|
DefineVar(Global, uint64, LastStickersUpdate);
|
2016-01-09 11:24:16 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineVar(Global, MTP::DcOptions, DcOptions);
|
2016-03-17 18:03:08 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
DefineRefVar(Global, CircleMasksMap, CircleMasks);
|
2016-03-18 10:18:30 +00:00
|
|
|
|
2016-04-11 10:59:01 +00:00
|
|
|
} // namespace Global
|