Compare commits

...

27 Commits

Author SHA1 Message Date
PeterNespesny b4d8aa7c2b
Merge 0fe0be699a into 2c4d8418c1 2024-04-26 16:48:28 +08:00
23rd 2c4d8418c1 Removed unused code for sponsored messages. 2024-04-26 11:21:41 +04:00
23rd 9fcb5d6f31 Added emoji button to input field for peer title edit. 2024-04-26 11:21:41 +04:00
23rd 38fc6bfbb9 Added special mode to emoji list widget to exclude non-unicode emoji. 2024-04-26 11:21:41 +04:00
23rd 804991a69c Added universal duration to styles. 2024-04-26 11:21:41 +04:00
23rd 7388f46adf Fixed display of subscribers count in dialogs suggestions. 2024-04-26 11:21:41 +04:00
John Preston 10c427127e Fix accidental search focusing. 2024-04-26 11:10:12 +04:00
John Preston c6d034174b Support separate webview storages. 2024-04-26 08:58:42 +04:00
Ilya Fedin 471831bcd6 Revert "Remove not really needed notification capability checks"
This reverts commit abdfa4f785.
2024-04-25 15:07:51 +04:00
Ilya Fedin b1e64419a5 Fix setting application icon in Linux notifications 2024-04-25 11:31:43 +04:00
Ilya Fedin e2f17f1131 Remove unneeded includes from notifications_manager_linux 2024-04-25 11:31:43 +04:00
John Preston ae4a73a15b Rollback OpenSans to 1.10. 2024-04-24 22:20:22 +04:00
Kolya a84ca00270 fix typo 2024-04-24 19:18:33 +04:00
John Preston c16d820b88 Move OpenSSL probing before crash reporter. 2024-04-24 19:12:46 +04:00
John Preston ef614150d5 Remove dead code in lib_ui. 2024-04-24 17:44:51 +04:00
John Preston b46ca1ec17 Use different font fallback algo on Windows. 2024-04-24 17:44:40 +04:00
John Preston d5a347ede7 Try cancelling the new search by mouse back button. 2024-04-24 17:41:12 +04:00
John Preston 72d5a9b3e0 Toggle search focus by escape. 2024-04-24 16:56:20 +04:00
John Preston e6d72b4861 Un-focus chats search on empty history click. 2024-04-24 16:54:10 +04:00
John Preston 3da51b1bc9 Fix crash on quit in sponsored messages. 2024-04-24 16:37:27 +04:00
John Preston 17b7db6219 Request 64 frequent contacts instead of 32. 2024-04-24 16:37:27 +04:00
John Preston 8353180161 Fix phrase cut-off in QR login. 2024-04-24 16:37:27 +04:00
John Preston f675a8dcf7 Attempt to fix a couple of crashes. 2024-04-24 16:37:27 +04:00
John Preston 493f1d69e2 Fix cancel search button overlap. 2024-04-24 16:37:27 +04:00
PeterNespesny 0fe0be699a
Merge branch 'telegramdesktop:dev' into dev 2023-12-02 17:22:36 +02:00
PeterNespesny 62039ab8f5
Merge branch 'telegramdesktop:dev' into dev 2023-12-01 04:01:19 +02:00
Peter Nespesny 660cfdbb8e Fix embedding for .mkv .webm 2023-11-17 20:35:31 +02:00
66 changed files with 489 additions and 261 deletions

View File

@ -546,7 +546,7 @@ rightsToggle: Toggle(defaultToggle) {
vsize: 5px;
vshift: 1px;
stroke: 2px;
duration: 120;
duration: universalDuration;
}
rightsButton: SettingsButton(defaultSettingsButton) {

View File

@ -12,6 +12,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "api/api_user_names.h"
#include "main/main_session.h"
#include "ui/boxes/confirm_box.h"
#include "base/event_filter.h"
#include "boxes/peers/edit_participants_box.h"
#include "boxes/peers/edit_peer_color_box.h"
#include "boxes/peers/edit_peer_common.h"
@ -27,6 +28,8 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "boxes/stickers_box.h"
#include "boxes/username_box.h"
#include "chat_helpers/emoji_suggestions_widget.h"
#include "chat_helpers/tabbed_panel.h"
#include "chat_helpers/tabbed_selector.h"
#include "core/application.h"
#include "core/core_settings.h"
#include "data/data_channel.h"
@ -47,6 +50,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "main/main_app_config.h"
#include "settings/settings_common.h"
#include "ui/boxes/boost_box.h"
#include "ui/controls/emoji_button.h"
#include "ui/controls/userpic_button.h"
#include "ui/rp_widget.h"
#include "ui/vertical_list.h"
@ -61,6 +65,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "ui/wrap/vertical_layout.h"
#include "window/window_session_controller.h"
#include "api/api_invite_links.h"
#include "styles/style_chat_helpers.h"
#include "styles/style_layers.h"
#include "styles/style_menu_icons.h"
#include "styles/style_boxes.h"
@ -533,7 +538,7 @@ object_ptr<Ui::RpWidget> Controller::createTitleEdit() {
_wrap,
object_ptr<Ui::InputField>(
_wrap,
st::defaultInputField,
st::editPeerTitleField,
(_isBot
? tr::lng_dlg_new_bot_name
: _isGroup
@ -555,6 +560,76 @@ object_ptr<Ui::RpWidget> Controller::createTitleEdit() {
submitTitle();
}, result->entity()->lifetime());
{
const auto field = result->entity();
const auto container = _box->getDelegate()->outerContainer();
using Selector = ChatHelpers::TabbedSelector;
using PanelPtr = base::unique_qptr<ChatHelpers::TabbedPanel>;
const auto emojiPanelPtr = field->lifetime().make_state<PanelPtr>(
base::make_unique_q<ChatHelpers::TabbedPanel>(
container,
ChatHelpers::TabbedPanelDescriptor{
.ownedSelector = object_ptr<Selector>(
nullptr,
ChatHelpers::TabbedSelectorDescriptor{
.show = _navigation->uiShow(),
.st = st::defaultComposeControls.tabbed,
.level = Window::GifPauseReason::Layer,
.mode = Selector::Mode::PeerTitle,
}),
}));
const auto emojiPanel = emojiPanelPtr->get();
emojiPanel->setDesiredHeightValues(
1.,
st::emojiPanMinHeight / 2,
st::emojiPanMinHeight);
emojiPanel->hide();
emojiPanel->selector()->setCurrentPeer(_peer);
emojiPanel->selector()->emojiChosen(
) | rpl::start_with_next([=](ChatHelpers::EmojiChosen data) {
Ui::InsertEmojiAtCursor(field->textCursor(), data.emoji);
field->setFocus();
}, field->lifetime());
emojiPanel->setDropDown(true);
const auto emojiToggle = Ui::CreateChild<Ui::EmojiButton>(
field,
st::defaultComposeControls.files.emoji);
emojiToggle->show();
emojiToggle->installEventFilter(emojiPanel);
emojiToggle->addClickHandler([=] { emojiPanel->toggleAnimated(); });
const auto updateEmojiPanelGeometry = [=] {
const auto parent = emojiPanel->parentWidget();
const auto global = emojiToggle->mapToGlobal({ 0, 0 });
const auto local = parent->mapFromGlobal(global);
emojiPanel->moveTopRight(
local.y() + emojiToggle->height(),
local.x() + emojiToggle->width() * 3);
};
base::install_event_filter(container, [=](not_null<QEvent*> event) {
const auto type = event->type();
if (type == QEvent::Move || type == QEvent::Resize) {
crl::on_main(field, [=] { updateEmojiPanelGeometry(); });
}
return base::EventFilterResult::Continue;
});
field->widthValue() | rpl::start_with_next([=](int width) {
const auto &p = st::editPeerTitleEmojiPosition;
emojiToggle->moveToRight(p.x(), p.y(), width);
updateEmojiPanelGeometry();
}, emojiToggle->lifetime());
base::install_event_filter(emojiToggle, [=](not_null<QEvent*> event) {
if (event->type() == QEvent::Enter) {
updateEmojiPanelGeometry();
}
return base::EventFilterResult::Continue;
});
}
_controls.title = result->entity();
return result;
}

View File

@ -33,6 +33,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "main/main_session.h"
#include "boxes/abstract_box.h"
#include "base/timer.h"
#include "styles/style_basic.h"
#include "styles/style_calls.h"
#include "styles/style_chat_helpers.h" // style::GroupCallUserpics
#include "styles/style_layers.h"
@ -49,7 +50,6 @@ enum class BarState {
namespace {
constexpr auto kUpdateDebugTimeoutMs = crl::time(500);
constexpr auto kSwitchStateDuration = 120;
constexpr auto kMinorBlobAlpha = 76. / 255.;
@ -374,7 +374,7 @@ void TopBar::initControls() {
};
_switchStateAnimation.stop();
const auto duration = (to - from) * kSwitchStateDuration;
const auto duration = (to - from) * st::universalDuration;
_switchStateAnimation.start(
_switchStateCallback,
from,

View File

@ -14,6 +14,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "ui/widgets/checkbox.h"
#include "ui/widgets/fields/input_field.h"
#include "ui/widgets/labels.h"
#include "styles/style_basic.h"
#include "styles/style_calls.h"
#include "styles/style_layers.h"
#include "styles/style_boxes.h"
@ -26,7 +27,6 @@ namespace {
constexpr auto kRoundRadius = 9;
constexpr auto kMaxGroupCallLength = 40;
constexpr auto kSwitchDuration = 200;
constexpr auto kSelectDuration = 120;
class GraphicButton final : public Ui::AbstractButton {
public:
@ -103,7 +103,7 @@ void GraphicButton::setToggled(bool value) {
[=] { update(); },
_toggled ? 0. : 1.,
_toggled ? 1. : 0.,
kSelectDuration);
st::universalDuration);
}
void GraphicButton::paintEvent(QPaintEvent *e) {

View File

@ -1108,8 +1108,6 @@ historyRecordVoiceFgOver: historyComposeIconFgOver;
historyRecordVoiceFgInactive: attentionButtonFg;
historyRecordVoiceFgActive: windowBgActive;
historyRecordVoiceFgActiveIcon: windowFgActive;
historyRecordVoiceShowDuration: 120;
historyRecordVoiceDuration: 120;
historyRecordVoice: icon {{ "chat/input_record", historyRecordVoiceFg }};
historyRecordVoiceOver: icon {{ "chat/input_record", historyRecordVoiceFgOver }};
historyRecordVoiceOnceBg: icon {{ "voice_lock/audio_once_bg", historySendIconFg }};

View File

@ -468,7 +468,8 @@ EmojiListWidget::EmojiListWidget(
std::move(descriptor.paused))
, _show(std::move(descriptor.show))
, _features(descriptor.features)
, _mode(descriptor.mode)
, _onlyUnicodeEmoji(descriptor.mode == Mode::PeerTitle)
, _mode(_onlyUnicodeEmoji ? Mode::Full : descriptor.mode)
, _api(&session().mtp())
, _staticCount(_mode == Mode::Full ? kEmojiSectionCount : 1)
, _premiumIcon(_mode == Mode::EmojiStatus
@ -490,7 +491,8 @@ EmojiListWidget::EmojiListWidget(
if (_mode != Mode::RecentReactions
&& _mode != Mode::BackgroundEmoji
&& _mode != Mode::ChannelStatus) {
&& _mode != Mode::ChannelStatus
&& !_onlyUnicodeEmoji) {
setupSearch();
}
@ -1052,7 +1054,7 @@ void EmojiListWidget::fillRecent() {
const auto test = session().isTestMode();
for (const auto &one : list) {
const auto document = std::get_if<RecentEmojiDocument>(&one.id.data);
if (document && document->test != test) {
if (document && ((document->test != test) || _onlyUnicodeEmoji)) {
continue;
}
_recent.push_back({
@ -2129,7 +2131,9 @@ void EmojiListWidget::refreshCustom() {
auto old = base::take(_custom);
const auto session = &this->session();
const auto premiumPossible = session->premiumPossible();
const auto premiumMayBeBought = premiumPossible
const auto onlyUnicodeEmoji = _onlyUnicodeEmoji || !premiumPossible;
const auto premiumMayBeBought = (!onlyUnicodeEmoji)
&& premiumPossible
&& !session->premium()
&& !_allowWithoutPremium;
const auto owner = &session->data();
@ -2189,7 +2193,7 @@ void EmojiListWidget::refreshCustom() {
}
return true;
}();
if (premium && !premiumPossible) {
if (premium && onlyUnicodeEmoji) {
return;
} else if (valid) {
i->thumbnailDocument = it->second->lookupThumbnailDocument();
@ -2223,7 +2227,7 @@ void EmojiListWidget::refreshCustom() {
}
}
}
if (premium && !premiumPossible) {
if (premium && onlyUnicodeEmoji) {
return;
}
_custom.push_back({

View File

@ -76,6 +76,7 @@ enum class EmojiListMode {
RecentReactions,
UserpicBuilder,
BackgroundEmoji,
PeerTitle,
};
struct EmojiListDescriptor {
@ -379,6 +380,7 @@ private:
const std::shared_ptr<Show> _show;
const ComposeFeatures _features;
const bool _onlyUnicodeEmoji;
Mode _mode = Mode::Full;
std::unique_ptr<Ui::TabbedSearch> _search;
MTP::Sender _api;

View File

@ -38,7 +38,6 @@ namespace {
constexpr auto kShowExactDelay = crl::time(300);
constexpr auto kMaxNonScrolledEmoji = 7;
constexpr auto kAnimationDuration = crl::time(120);
} // namespace
@ -528,7 +527,7 @@ void SuggestionsWidget::setSelected(int selected, anim::type animated) {
[=] { update(); },
_selected,
selected,
kAnimationDuration,
st::universalDuration,
anim::sineInOut);
if (_scrollMax > 0) {
const auto selectedMax = int(_rows.size()) - 3;
@ -560,7 +559,7 @@ void SuggestionsWidget::scrollTo(int value, anim::type animated) {
[=] { update(); },
_scrollValue,
value,
kAnimationDuration,
st::universalDuration,
anim::sineInOut);
}
_scrollValue = value;

View File

@ -540,6 +540,8 @@ TabbedSelector::Tab TabbedSelector::createTab(SelectorTab type, int index) {
? EmojiMode::FullReactions
: _mode == Mode::RecentReactions
? EmojiMode::RecentReactions
: _mode == Mode::PeerTitle
? EmojiMode::PeerTitle
: EmojiMode::Full),
.customTextColor = _customTextColor,
.paused = paused,
@ -958,6 +960,9 @@ void TabbedSelector::beforeHiding() {
_beforeHidingCallback(_currentTabType);
}
}
if (Ui::InFocusChain(this)) {
window()->setFocus();
}
}
void TabbedSelector::afterShown() {

View File

@ -86,6 +86,7 @@ enum class TabbedSelectorMode {
BackgroundEmoji,
FullReactions,
RecentReactions,
PeerTitle,
};
struct TabbedSelectorDescriptor {

View File

@ -243,14 +243,10 @@ Application::~Application() {
Media::Player::finish(_audio.get());
style::stopManager();
ThirdParty::finish();
Instance = nullptr;
}
void Application::run() {
ThirdParty::start();
// Depends on OpenSSL on macOS, so on ThirdParty::start().
// Depends on notifications settings.
_notifications = std::make_unique<Window::Notifications::System>();
@ -1527,14 +1523,14 @@ void Application::closeChatFromWindows(not_null<PeerData*> peer) {
}
}
if (const auto window = windowFor(&peer->account())) {
const auto primary = window->sessionController();
if ((primary->activeChatCurrent().peer() == peer)
&& (&primary->session() == &peer->session())) {
primary->clearSectionStack();
}
if (const auto forum = primary->shownForum().current()) {
if (peer->forum() == forum) {
primary->closeForum();
if (const auto primary = window->sessionController()) {
if (primary->activeChatCurrent().peer() == peer) {
primary->clearSectionStack();
}
if (const auto forum = primary->shownForum().current()) {
if (peer->forum() == forum) {
primary->closeForum();
}
}
}
}

View File

@ -385,6 +385,7 @@ int Launcher::exec() {
// Must be started before Sandbox is created.
Platform::start();
ThirdParty::start();
auto result = executeApplication();
DEBUG_LOG(("Telegram finished, result: %1").arg(result));
@ -400,6 +401,7 @@ int Launcher::exec() {
}
CrashReports::Finish();
ThirdParty::finish();
Platform::finish();
Logs::finish();

View File

@ -117,6 +117,9 @@ MimeType MimeTypeForFile(const QFileInfo &file) {
return MimeType(MimeType::Known::TDesktopTheme);
} else if (path.endsWith(u".tdesktop-palette"_q, Qt::CaseInsensitive)) {
return MimeType(MimeType::Known::TDesktopPalette);
} else if (path.endsWith(u".mkv"_q, Qt::CaseInsensitive)) {
// This will ensure .mkv is detected as a video file by the client when drag-n-dropped
return MimeType(QMimeDatabase().mimeTypeForName("video/mp4"));
}
{

View File

@ -92,8 +92,6 @@ namespace ThirdParty {
FIPS_mode_set(0);
#endif
CONF_modules_unload(1);
Platform::ThirdParty::finish();
}
}

View File

@ -37,9 +37,20 @@ SponsoredMessages::SponsoredMessages(not_null<Main::Session*> session)
}
SponsoredMessages::~SponsoredMessages() {
for (const auto &request : _requests) {
Expects(_data.empty());
Expects(_requests.empty());
Expects(_viewRequests.empty());
}
void SponsoredMessages::clear() {
_lifetime.destroy();
for (const auto &request : base::take(_requests)) {
_session->api().request(request.second.requestId).cancel();
}
for (const auto &request : base::take(_viewRequests)) {
_session->api().request(request.second.requestId).cancel();
}
base::take(_data);
}
void SponsoredMessages::clearOldRequests() {

View File

@ -80,8 +80,6 @@ public:
};
using RandomId = QByteArray;
explicit SponsoredMessages(not_null<Main::Session*> session);
SponsoredMessages(const SponsoredMessages &other) = delete;
SponsoredMessages &operator=(const SponsoredMessages &other) = delete;
~SponsoredMessages();
[[nodiscard]] bool canHaveFor(not_null<History*> history) const;
@ -104,6 +102,8 @@ public:
[[nodiscard]] auto createReportCallback(const FullMsgId &fullId)
-> Fn<void(SponsoredReportResult::Id, Fn<void(SponsoredReportResult)>)>;
void clear();
private:
using OwnedItem = std::unique_ptr<HistoryItem, HistoryItem::Destroyer>;
struct Entry {

View File

@ -21,7 +21,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
namespace Data {
namespace {
constexpr auto kLimit = 32;
constexpr auto kLimit = 64;
constexpr auto kRequestTimeLimit = 10 * crl::time(1000);
[[nodiscard]] float64 RatingDelta(TimeId now, TimeId was, int decay) {

View File

@ -932,6 +932,11 @@ ChatRestriction DocumentData::requiredSendRight() const {
void DocumentData::setFileName(const QString &remoteFileName) {
_filename = remoteFileName;
// Needed in order to force the server to embed the video
if (_filename.toLower().endsWith(".webm")) {
_filename = _filename.replace(_filename.length()-5, 5, "[webm].mp4");
}
// We don't want LTR/RTL mark/embedding/override/isolate chars
// in filenames, because they introduce a security issue, when
// an executable "Fil[x]gepj.exe" may look like "Filexe.jpeg".
@ -1521,7 +1526,12 @@ bool DocumentData::hasMimeType(const QString &mime) const {
}
void DocumentData::setMimeString(const QString &mime) {
_mimeString = mime;
// Needed to embed a .webm
if (mime == "video/webm") {
_mimeString = "video/mp4";
} else {
_mimeString = mime;
}
_mimeString = std::move(_mimeString).toLower();
}

View File

@ -41,6 +41,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "data/business/data_business_info.h"
#include "data/business/data_shortcut_messages.h"
#include "data/components/scheduled_messages.h"
#include "data/components/sponsored_messages.h"
#include "data/stickers/data_stickers.h"
#include "data/notify/data_notify_settings.h"
#include "data/data_bot_app.h"
@ -396,6 +397,7 @@ void Session::clear() {
_histories->unloadAll();
_shortcutMessages = nullptr;
_session->scheduledMessages().clear();
_session->sponsoredMessages().clear();
_dependentMessages.clear();
base::take(_messages);
base::take(_nonChannelMessages);

View File

@ -116,7 +116,7 @@ dialogsSpeakingDenominator: 8.;
dialogsImportantBarHeight: 37px;
dialogsWidthDuration: 120;
dialogsWidthDuration: universalDuration;
dialogsTextWidthMin: 150px;
dialogsTextPalette: TextPalette(defaultTextPalette) {

View File

@ -1107,6 +1107,13 @@ void Widget::updateHasFocus(not_null<QWidget*> focused) {
}
}
bool Widget::cancelSearchByMouseBack() {
return _searchHasFocus
&& !_searchSuggestionsLocked
&& !_searchInChat
&& cancelSearch();
}
void Widget::processSearchFocusChange() {
_searchSuggestionsLocked = _suggestions && _suggestions->persist();
updateCancelSearch();
@ -1788,6 +1795,8 @@ void Widget::escape() {
const auto first = list.empty() ? FilterId() : list.front().id();
if (controller()->activeChatsFilterCurrent() != first) {
controller()->setActiveChatsFilter(first);
} else {
_search->setFocus();
}
}
} else if (!_searchInChat
@ -2575,9 +2584,9 @@ void Widget::listScrollUpdated() {
}
void Widget::updateCancelSearch() {
const auto shown = _searchHasFocus
|| _searchSuggestionsLocked
|| !_search->getLastText().isEmpty();
const auto shown = !_search->getLastText().isEmpty()
|| (!_searchInChat
&& (_searchHasFocus || _searchSuggestionsLocked));
_cancelSearch->toggle(shown, anim::type::normal);
}
@ -2970,12 +2979,14 @@ void Widget::updateLockUnlockVisibility(anim::type animated) {
return;
}
const auto hidden = !session().domain().local().hasLocalPasscode()
|| (_showAnimation != nullptr)
|| _showAnimation
|| _openedForum
|| !_widthAnimationCache.isNull()
|| _childList
|| !_search->getLastText().isEmpty()
|| _searchInChat;
|| _searchHasFocus
|| _searchSuggestionsLocked
|| _searchInChat
|| !_search->getLastText().isEmpty();
if (_lockUnlock->toggled() == hidden) {
const auto stories = _stories && !_stories->empty();
_lockUnlock->toggle(

View File

@ -133,6 +133,7 @@ public:
QRect floatPlayerAvailableRect() override;
bool cancelSearch();
bool cancelSearchByMouseBack();
~Widget();

View File

@ -290,7 +290,10 @@ RecentRow::RecentRow(not_null<PeerData*> peer)
} else if (const auto chat = peer->asChat()) {
if (chat->count > 0) {
setCustomStatus(
tr::lng_chat_status_members(tr::now, lt_count, chat->count));
tr::lng_chat_status_members(
tr::now,
lt_count_decimal,
chat->count));
}
} else if (const auto channel = peer->asChannel()) {
if (channel->membersCountKnown()) {
@ -298,7 +301,7 @@ RecentRow::RecentRow(not_null<PeerData*> peer)
? tr::lng_chat_status_subscribers
: tr::lng_chat_status_members)(
tr::now,
lt_count,
lt_count_decimal,
channel->membersCount()));
}
}
@ -655,7 +658,7 @@ void MyChannelsController::appendRow(not_null<ChannelData*> channel) {
? tr::lng_chat_status_subscribers
: tr::lng_chat_status_members)(
tr::now,
lt_count,
lt_count_decimal,
channel->membersCount()));
}
delegate()->peerListAppendRow(std::move(row));
@ -819,7 +822,7 @@ void RecommendationsController::appendRow(not_null<ChannelData*> channel) {
? tr::lng_chat_status_subscribers
: tr::lng_chat_status_members)(
tr::now,
lt_count,
lt_count_decimal,
channel->membersCount()));
}
delegate()->peerListAppendRow(std::move(row));

View File

@ -810,7 +810,7 @@ HistoryWidget::HistoryWidget(
const auto account = &_peer->account();
closeCurrent();
if (const auto primary = Core::App().windowFor(account)) {
controller->showToast(unavailable);
primary->showToast(unavailable);
}
return;
}
@ -3316,7 +3316,7 @@ void HistoryWidget::messagesFailed(const MTP::Error &error, int requestId) {
auto was = _peer;
closeCurrent();
if (const auto primary = Core::App().windowFor(&was->account())) {
controller()->showToast((was && was->isMegagroup())
primary->showToast((was && was->isMegagroup())
? tr::lng_group_not_accessible(tr::now)
: tr::lng_channel_not_accessible(tr::now));
}
@ -6552,6 +6552,14 @@ bool HistoryWidget::cornerButtonsHas(HistoryView::CornerButtonType type) {
}
void HistoryWidget::mousePressEvent(QMouseEvent *e) {
if (!_list) {
// Remove focus from the chats list search.
setFocus();
// Set it back to the chats list so that typing filter chats.
controller()->widget()->setInnerFocus();
return;
}
const auto isReadyToForward = readyToForward();
if (_inPhotoEdit && _photoEditMedia) {
EditCaptionBox::StartPhotoEdit(

View File

@ -302,7 +302,7 @@ TTLButton::TTLButton(
[=] { update(); },
isActive ? 0. : 1.,
isActive ? 1. : 0.,
st::historyRecordVoiceShowDuration);
st::universalDuration);
});
Ui::RpWidget::shownValue() | rpl::start_with_next([=](bool shown) {
@ -1058,9 +1058,11 @@ void RecordLock::drawProgress(QPainter &p) {
}
void RecordLock::startLockingAnimation(float64 to) {
auto callback = [=](float64 value) { setProgress(value); };
const auto &duration = st::historyRecordVoiceShowDuration;
_lockEnderAnimation.start(std::move(callback), 0., to, duration);
_lockEnderAnimation.start(
[=](float64 value) { setProgress(value); },
0.,
to,
st::universalDuration);
}
void RecordLock::requestPaintProgress(float64 progress) {
@ -1453,7 +1455,7 @@ void VoiceRecordBar::init() {
if (!value) {
_listen = nullptr;
}
}, 1., 0., st::historyRecordVoiceShowDuration * 2);
}, 1., 0., st::universalDuration * 2);
setLevelAsSend();
return;
@ -1473,7 +1475,6 @@ void VoiceRecordBar::init() {
// _lockShowing = false;
const auto to = 1.;
const auto &duration = st::historyRecordVoiceShowDuration;
auto callback = [=](float64 value) {
paintShowListenCallback(value);
if (to == value) {
@ -1481,7 +1482,11 @@ void VoiceRecordBar::init() {
}
};
_showListenAnimation.stop();
_showListenAnimation.start(std::move(callback), 0., to, duration);
_showListenAnimation.start(
std::move(callback),
0.,
to,
st::universalDuration);
}, lifetime());
_lock->locks(
@ -1498,15 +1503,16 @@ void VoiceRecordBar::init() {
setLevelAsSend();
const auto &duration = st::historyRecordVoiceShowDuration;
const auto from = 0.;
const auto to = 1.;
auto callback = [=](float64 value) {
_lock->requestPaintLockToStopProgress(value);
update();
updateTTLGeometry(TTLAnimationType::RightLeft, value);
};
_lockToStopAnimation.start(std::move(callback), from, to, duration);
_lockToStopAnimation.start(
std::move(callback),
0.,
1.,
st::universalDuration);
}, lifetime());
_send->events(
@ -1523,7 +1529,7 @@ void VoiceRecordBar::init() {
return;
}
_recordingTipRequired = true;
_startTimer.callOnce(st::historyRecordVoiceShowDuration);
_startTimer.callOnce(st::universalDuration);
} else if (e->type() == QEvent::MouseButtonRelease) {
if (base::take(_recordingTipRequired)) {
_recordingTipRequests.fire({});
@ -1556,23 +1562,24 @@ void VoiceRecordBar::init() {
void VoiceRecordBar::activeAnimate(bool active) {
const auto to = active ? 1. : 0.;
const auto &duration = st::historyRecordVoiceDuration;
if (_activeAnimation.animating()) {
_activeAnimation.change(to, duration);
_activeAnimation.change(to, st::universalDuration);
} else {
auto callback = [=] {
update(_messageRect);
_level->requestPaintColor(activeAnimationRatio());
};
const auto from = active ? 0. : 1.;
_activeAnimation.start(std::move(callback), from, to, duration);
_activeAnimation.start(
std::move(callback),
active ? 0. : 1.,
to,
st::universalDuration);
}
}
void VoiceRecordBar::visibilityAnimate(bool show, Fn<void()> &&callback) {
const auto to = show ? 1. : 0.;
const auto from = show ? 0. : 1.;
const auto &duration = st::historyRecordVoiceShowDuration;
auto animationCallback = [=, callback = std::move(callback)](auto value) {
if (!_listen) {
_level->requestPaintProgress(value);
@ -1589,7 +1596,11 @@ void VoiceRecordBar::visibilityAnimate(bool show, Fn<void()> &&callback) {
}
}
};
_showAnimation.start(std::move(animationCallback), from, to, duration);
_showAnimation.start(
std::move(animationCallback),
from,
to,
st::universalDuration);
}
void VoiceRecordBar::setStartRecordingFilter(FilterCallback &&callback) {

View File

@ -196,8 +196,8 @@ void VoiceRecordButton::init() {
}
update();
};
const auto duration = st::historyRecordVoiceDuration * 2;
_stateChangedAnimation.start(std::move(callback), 0., to, duration);
constexpr auto kDuration = st::universalDuration * 2;
_stateChangedAnimation.start(std::move(callback), 0., to, kDuration);
}, lifetime());
}

View File

@ -548,8 +548,6 @@ QSize WebPage::countCurrentSize(int newWidth) {
const auto twoTitleLines = 2 * st::webPageTitleFont->height;
const auto descriptionLineHeight = st::webPageDescriptionFont->height;
if (asArticle() || specialRightPix) {
const auto sponsoredUserpic = (_sponsoredData
&& _sponsoredData->peer);
constexpr auto kSponsoredUserpicLines = 2;
_pixh = lineHeight
* (_stickerSet
@ -576,8 +574,7 @@ QSize WebPage::countCurrentSize(int newWidth) {
newHeight += _titleLines * lineHeight;
}
const auto descriptionHeight = _description.countHeight(
sponsoredUserpic ? innerWidth : wleft);
const auto descriptionHeight = _description.countHeight(wleft);
const auto restLines = (linesMax - _siteNameLines - _titleLines);
if (descriptionHeight < restLines * descriptionLineHeight) {
// We have height for all the lines.
@ -677,7 +674,6 @@ void WebPage::ensurePhotoMediaCreated() const {
bool WebPage::hasHeavyPart() const {
return _photoMedia
|| (_sponsoredData && !_sponsoredData->userpicView.null())
|| (_stickerSet)
|| (_attach ? _attach->hasHeavyPart() : false);
}
@ -688,9 +684,6 @@ void WebPage::unloadHeavyPart() {
}
_description.unloadPersistentAnimation();
_photoMedia = nullptr;
if (_sponsoredData) {
_sponsoredData->userpicView = Ui::PeerUserpicView();
}
}
void WebPage::draw(Painter &p, const PaintContext &context) const {
@ -834,21 +827,6 @@ void WebPage::draw(Painter &p, const PaintContext &context) const {
// as its width only affects the title.
paintw -= pw + st::webPagePhotoDelta;
}
} else if (asSponsored && _sponsoredData->peer) {
const auto size = _pixh;
const auto sizeHq = size * style::DevicePixelRatio();
const auto userpicPos = QPoint(inner.left() + paintw - size, tshift);
const auto &peer = _sponsoredData->peer;
auto &view = _sponsoredData->userpicView;
if (const auto cloud = peer->userpicCloudImage(view)) {
Ui::ValidateUserpicCache(view, cloud, nullptr, sizeHq, true);
p.drawImage(QRect(userpicPos, QSize(size, size)), view.cached);
} else {
const auto r = sizeHq * Ui::ForumUserpicRadiusMultiplier();
const auto empty = peer->generateUserpicImage(view, sizeHq, r);
p.drawImage(QRect(userpicPos, QSize(size, size)), empty);
}
// paintw -= size + st::webPagePhotoDelta;
}
if (_siteNameLines) {
p.setPen(cache->icon);

View File

@ -139,8 +139,6 @@ private:
std::unique_ptr<StickerSet> _stickerSet;
struct SponsoredData final {
PeerData *peer = nullptr;
Ui::PeerUserpicView userpicView;
QString buttonText;
bool isLinkInternal = false;

View File

@ -722,6 +722,10 @@ editPeerHistoryVisibilityTopSkip: 8px;
editPeerPhotoMargins: margins(22px, 8px, 22px, 8px);
editPeerTitle: defaultInputField;
editPeerTitleMargins: margins(27px, 13px, 22px, 8px);
editPeerTitleEmojiPosition: point(0px, 23px);
editPeerTitleField: InputField(defaultInputField) {
textMargins: margins(0px, 28px, 30px, 4px);
}
editPeerDescription: InputField(defaultInputField) {
textBg: transparent;
textMargins: margins(0px, 7px, 0px, 7px);

View File

@ -58,7 +58,16 @@ void PickUntilBox(not_null<Ui::GenericBox*> box, Fn<void(TimeId)> callback) {
EmojiStatusPanel::EmojiStatusPanel() = default;
EmojiStatusPanel::~EmojiStatusPanel() = default;
EmojiStatusPanel::~EmojiStatusPanel() {
if (hasFocus()) {
// Panel will try to return focus to the layer widget, the problem is
// we are destroying the layer widget probably right now and focusing
// it will lead to a crash, because it destroys its children (how we
// got here) after it clears focus out of itself. So if you return
// the focus inside a child destructor, it won't be cleared at all.
_panel->window()->setFocus();
}
}
void EmojiStatusPanel::setChooseFilter(Fn<bool(DocumentId)> filter) {
_chooseFilter = std::move(filter);

View File

@ -66,5 +66,3 @@ userpicBuilderEmojiColorPlus: IconButton(userpicBuilderEmojiColorMinus) {
}
userpicBuilderEmojiToggleStickersIcon: icon {{ "menu/stickers", emojiIconFg }};
userpicBuilderEmojiSlideDuration: 120;

View File

@ -137,7 +137,7 @@ void ColorsLine::fillButtons() {
wasChosen->setSelectedProgress(1. - progress);
}
nowChosen->setSelectedProgress(progress);
}, 0., 1., st::userpicBuilderEmojiSlideDuration);
}, 0., 1., st::universalDuration);
});
if (i < _colors->size()) {
button->setBrush((*_colors)[i]);
@ -164,7 +164,7 @@ void ColorsLine::fillButtons() {
setLastChosen();
});
for (const auto &wrap : _wraps) {
wrap->setDuration(st::userpicBuilderEmojiSlideDuration);
wrap->setDuration(st::universalDuration);
}
}
@ -213,7 +213,7 @@ void ColorsLine::processChange(
const auto left = anim::interpolate(wasLeft, nowLeft, value);
_wraps[i]->moveToLeft(left, 0);
}
}, 0., 1., st::userpicBuilderEmojiSlideDuration);
}, 0., 1., st::universalDuration);
}
void ColorsLine::setLastChosen() const {

View File

@ -493,7 +493,7 @@ not_null<Ui::VerticalLayout*> CreateUserpicBuilder(
1. - progress);
}
state->circleButtons[now]->setSelectedProgress(progress);
}, 0., 1., st::userpicBuilderEmojiSlideDuration);
}, 0., 1., st::universalDuration);
state->colorIndex = now;
const auto result = isSpecial

View File

@ -1491,7 +1491,7 @@ void AttachWebView::show(
_catchingCancelInShowCall = true;
_panel = Ui::BotWebView::Show({
.url = url,
.userDataPath = _session->domain().local().webviewDataPath(),
.storageId = _session->local().resolveStorageIdBots(),
.title = std::move(title),
.bottom = rpl::single('@' + _bot->username()),
.delegate = static_cast<Ui::BotWebView::Delegate*>(this),

View File

@ -119,7 +119,6 @@ introCodeDigitFont: font(20px);
introCodeDigitHeight: 50px;
introCodeDigitBorderWidth: 4px;
introCodeDigitSkip: 10px;
introCodeDigitAnimatioDuration: 120;
introPasswordHint: FlatLabel(introDescription) {
textFg: windowFg;
@ -185,7 +184,7 @@ introQrTitle: FlatLabel(defaultFlatLabel) {
introQrErrorTop: 336px;
introQrTitleTop: 196px;
introQrStep: FlatLabel(defaultFlatLabel) {
minWidth: introQrLabelsWidth;
minWidth: 200px;
}
introQrStepsTop: 232px;
introQrStepMargins: margins(20px, 8px, 0px, 0px);

View File

@ -13,6 +13,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "ui/painter.h"
#include "ui/rect.h"
#include "ui/widgets/popup_menu.h"
#include "styles/style_basic.h"
#include "styles/style_intro.h"
#include "styles/style_layers.h" // boxRadius
@ -91,7 +92,6 @@ void CodeDigit::setDigit(int digit) {
}
_dataDigit = digit;
if (_viewDigit != digit) {
constexpr auto kDuration = st::introCodeDigitAnimatioDuration;
_animation.stop();
if (digit == kDigitNone) {
_animation.start([=](float64 value) {
@ -99,10 +99,10 @@ void CodeDigit::setDigit(int digit) {
if (!value) {
_viewDigit = digit;
}
}, 1., 0., kDuration);
}, 1., 0., st::universalDuration);
} else {
_viewDigit = digit;
_animation.start([=] { update(); }, 0., 1., kDuration);
_animation.start([=] { update(); }, 0, 1., st::universalDuration);
}
}
}

View File

@ -224,6 +224,7 @@ void Step::createSession(
account->createSession(user, std::move(settings));
// "this" is already deleted here by creating the main widget.
account->local().enforceModernStorageIdBots();
account->local().writeMtpData();
auto &session = account->session();
session.data().chatsFilters().setPreloaded(filters);

View File

@ -292,12 +292,12 @@ void Controller::initControls() {
}
void Controller::show(
const QString &dataPath,
const Webview::StorageId &storageId,
Prepared page,
base::flat_map<QByteArray, rpl::producer<bool>> inChannelValues) {
page.script = fillInChannelValuesScript(std::move(inChannelValues));
InvokeQueued(_container, [=, page = std::move(page)]() mutable {
showInWindow(dataPath, std::move(page));
showInWindow(storageId, std::move(page));
});
}
@ -389,7 +389,7 @@ void Controller::createWindow() {
window->show();
}
void Controller::createWebview(const QString &dataPath) {
void Controller::createWebview(const Webview::StorageId &storageId) {
Expects(!_webview);
const auto window = _window.get();
@ -397,7 +397,7 @@ void Controller::createWebview(const QString &dataPath) {
_container,
Webview::WindowConfig{
.opaqueBg = st::windowBg->c,
.userDataPath = dataPath,
.storageId = storageId,
});
const auto raw = _webview.get();
@ -558,7 +558,9 @@ void Controller::createWebview(const QString &dataPath) {
raw->init(R"()");
}
void Controller::showInWindow(const QString &dataPath, Prepared page) {
void Controller::showInWindow(
const Webview::StorageId &storageId,
Prepared page) {
Expects(_container != nullptr);
const auto url = page.url;
@ -571,7 +573,7 @@ void Controller::showInWindow(const QString &dataPath, Prepared page) {
const auto index = i->second;
_index = index;
if (!_webview) {
createWebview(dataPath);
createWebview(storageId);
if (_webview && _webview->widget()) {
auto id = u"iv/page%1.html"_q.arg(index);
if (!_hash.isEmpty()) {

View File

@ -13,6 +13,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "iv/iv_delegate.h"
#include "ui/effects/animations.h"
#include "ui/text/text.h"
#include "webview/webview_common.h"
class Painter;
@ -69,7 +70,7 @@ public:
};
void show(
const QString &dataPath,
const Webview::StorageId &storageId,
Prepared page,
base::flat_map<QByteArray, rpl::producer<bool>> inChannelValues);
void update(Prepared page);
@ -90,11 +91,11 @@ public:
private:
void createWindow();
void createWebview(const QString &dataPath);
void createWebview(const Webview::StorageId &storageId);
[[nodiscard]] QByteArray navigateScript(int index, const QString &hash);
[[nodiscard]] QByteArray reloadScript(int index);
void showInWindow(const QString &dataPath, Prepared page);
void showInWindow(const Webview::StorageId &storageId, Prepared page);
[[nodiscard]] QByteArray fillInChannelValuesScript(
base::flat_map<QByteArray, rpl::producer<bool>> inChannelValues);
[[nodiscard]] QByteArray toggleInChannelScript(

View File

@ -31,13 +31,12 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "lang/lang_keys.h"
#include "lottie/lottie_common.h" // Lottie::ReadContent.
#include "main/main_account.h"
#include "main/main_domain.h"
#include "main/main_session.h"
#include "main/session/session_show.h"
#include "media/streaming/media_streaming_loader.h"
#include "media/view/media_view_open_common.h"
#include "storage/file_download.h"
#include "storage/storage_domain.h"
#include "storage/storage_account.h"
#include "ui/boxes/confirm_box.h"
#include "ui/layers/layer_widget.h"
#include "ui/text/text_utilities.h"
@ -348,9 +347,8 @@ void Shown::showWindowed(Prepared result) {
createController();
}
const auto domain = &_session->domain();
_controller->show(
domain->local().webviewDataPath(),
_session->local().resolveStorageIdOther(),
std::move(result),
base::duplicate(_inChannelValues));
}
@ -980,20 +978,16 @@ void Instance::processOpenChannel(const QString &context) {
} else if (const auto channelId = ChannelId(context.toLongLong())) {
const auto channel = _shownSession->data().channel(channelId);
if (channel->isLoaded()) {
if (const auto window = Core::App().windowFor(channel)) {
if (const auto controller = window->sessionController()) {
controller->showPeerHistory(channel);
_shown = nullptr;
}
if (const auto controller = _shownSession->tryResolveWindow(channel)) {
controller->showPeerHistory(channel);
_shown = nullptr;
}
} else if (!channel->username().isEmpty()) {
if (const auto window = Core::App().windowFor(channel)) {
if (const auto controller = window->sessionController()) {
controller->showPeerByLink({
.usernameOrId = channel->username(),
});
_shown = nullptr;
}
if (const auto controller = _shownSession->tryResolveWindow(channel)) {
controller->showPeerByLink({
.usernameOrId = channel->username(),
});
_shown = nullptr;
}
}
}
@ -1008,13 +1002,11 @@ void Instance::processJoinChannel(const QString &context) {
if (channel->isLoaded()) {
_shownSession->api().joinChannel(channel);
} else if (!channel->username().isEmpty()) {
if (const auto window = Core::App().windowFor(channel)) {
if (const auto controller = window->sessionController()) {
controller->showPeerByLink({
.usernameOrId = channel->username(),
.joinChannel = true,
});
}
if (const auto controller = _shownSession->tryResolveWindow(channel)) {
controller->showPeerByLink({
.usernameOrId = channel->username(),
.joinChannel = true,
});
}
}
}

View File

@ -101,7 +101,7 @@ bool ValueParser::readTag() {
auto isTagChar = [](QChar ch) {
if (ch >= 'a' && ch <= 'z') {
return true;
} else if (ch >= 'A' && ch <= 'z') {
} else if (ch >= 'A' && ch <= 'Z') {
return true;
} else if (ch >= '0' && ch <= '9') {
return true;

View File

@ -434,6 +434,10 @@ void Session::uploadsStopWithConfirmation(Fn<void()> done) {
const auto window = message
? Core::App().windowFor(message->history()->peer)
: Core::App().activePrimaryWindow();
if (!window) {
done();
return;
}
auto box = Box([=](not_null<Ui::GenericBox*> box) {
box->addRow(
object_ptr<Ui::FlatLabel>(
@ -476,8 +480,22 @@ auto Session::windows() const
return _windows;
}
Window::SessionController *Session::tryResolveWindow() const {
if (_windows.empty()) {
Window::SessionController *Session::tryResolveWindow(
PeerData *forPeer) const {
if (forPeer) {
auto primary = (Window::SessionController*)nullptr;
for (const auto &window : _windows) {
if (window->singlePeer() == forPeer) {
return window;
} else if (window->isPrimary()) {
primary = window;
}
}
if (primary) {
return primary;
}
}
if (_windows.empty() || forPeer) {
domain().activate(_account);
if (_windows.empty()) {
return nullptr;

View File

@ -164,7 +164,8 @@ public:
void addWindow(not_null<Window::SessionController*> controller);
[[nodiscard]] auto windows() const
-> const base::flat_set<not_null<Window::SessionController*>> &;
[[nodiscard]] Window::SessionController *tryResolveWindow() const;
[[nodiscard]] Window::SessionController *tryResolveWindow(
PeerData *forPeer = nullptr) const;
// Shortcuts.
void notifyDownloaderTaskFinished();

View File

@ -1180,10 +1180,8 @@ void MainWidget::setInnerFocus() {
}
} else if (_mainSection) {
_mainSection->setInnerFocus();
} else if (_history->peer() || !_thirdSection) {
_history->setInnerFocus();
} else {
_thirdSection->setInnerFocus();
_history->setInnerFocus();
}
}
@ -2646,12 +2644,17 @@ bool MainWidget::eventFilter(QObject *o, QEvent *e) {
if (e->type() == QEvent::FocusIn) {
if (widget && relevantForDialogsFocus(widget)) {
_dialogs->updateHasFocus(widget);
} else if (widget == window()) {
crl::on_main(this, [=] {
_controller->widget()->setInnerFocus();
});
}
} else if (e->type() == QEvent::MouseButtonPress) {
if (widget && (widget->window() == window())) {
const auto event = static_cast<QMouseEvent*>(e);
if (event->button() == Qt::BackButton) {
if (!Core::App().hideMediaView()) {
if (!Core::App().hideMediaView()
&& (!_dialogs || !_dialogs->cancelSearchByMouseBack())) {
handleHistoryBack();
}
return true;

View File

@ -1891,16 +1891,12 @@ ClickHandlerPtr MakeChannelPostHandler(
FullMsgId item) {
return std::make_shared<LambdaClickHandler>(crl::guard(session, [=] {
const auto peer = session->data().peer(item.peer);
if (const auto window = Core::App().windowFor(peer)) {
if (const auto controller = window->sessionController()) {
if (&controller->session() == &peer->session()) {
Core::App().hideMediaView();
controller->showPeerHistory(
item.peer,
Window::SectionShow::Way::ClearStack,
item.msg);
}
}
if (const auto controller = session->tryResolveWindow(peer)) {
Core::App().hideMediaView();
controller->showPeerHistory(
peer,
Window::SectionShow::Way::ClearStack,
item.msg);
}
}));
}

View File

@ -11,8 +11,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "payments/ui/payments_panel.h"
#include "main/main_session.h"
#include "main/main_account.h"
#include "main/main_domain.h"
#include "storage/storage_domain.h"
#include "storage/storage_account.h"
#include "history/history_item.h"
#include "history/history.h"
#include "data/data_user.h" // UserData::isBot.
@ -25,7 +24,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "apiwrap.h"
#include "api/api_cloud_password.h"
#include "window/themes/window_theme.h"
#include "webview/webview_interface.h"
#include <QJsonDocument>
#include <QJsonObject>
@ -877,8 +875,8 @@ void CheckoutProcess::performInitialSilentValidation() {
_form->validateInformation(saved);
}
QString CheckoutProcess::panelWebviewDataPath() {
return _session->domain().local().webviewDataPath();
Webview::StorageId CheckoutProcess::panelWebviewStorageId() {
return _session->local().resolveStorageIdOther();
}
Webview::ThemeParams CheckoutProcess::panelWebviewThemeParams() {

View File

@ -7,8 +7,9 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
#include "payments/ui/payments_panel_delegate.h"
#include "base/weak_ptr.h"
#include "payments/ui/payments_panel_delegate.h"
#include "webview/webview_common.h"
class HistoryItem;
class PasscodeBox;
@ -153,7 +154,7 @@ private:
void panelShowBox(object_ptr<Ui::BoxContent> box) override;
QVariant panelClickHandlerContext() override;
QString panelWebviewDataPath() override;
Webview::StorageId panelWebviewStorageId() override;
Webview::ThemeParams panelWebviewThemeParams() override;
std::optional<QDate> panelOverrideExpireDateThreshold() override;

View File

@ -547,7 +547,7 @@ bool Panel::createWebview(const Webview::ThemeParams &params) {
container,
Webview::WindowConfig{
.opaqueBg = params.opaqueBg,
.userDataPath = _delegate->panelWebviewDataPath(),
.storageId = _delegate->panelWebviewStorageId(),
});
const auto raw = &_webview->window;

View File

@ -18,6 +18,7 @@ class BoxContent;
namespace Webview {
struct ThemeParams;
struct StorageId;
} // namespace Webview
namespace Payments::Ui {
@ -59,7 +60,7 @@ public:
virtual void panelShowBox(object_ptr<BoxContent> box) = 0;
virtual QVariant panelClickHandlerContext() = 0;
virtual QString panelWebviewDataPath() = 0;
virtual Webview::StorageId panelWebviewStorageId() = 0;
virtual Webview::ThemeParams panelWebviewThemeParams() = 0;
virtual std::optional<QDate> panelOverrideExpireDateThreshold() = 0;

View File

@ -17,12 +17,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "data/data_forum_topic.h"
#include "history/history.h"
#include "history/history_item.h"
#include "ui/empty_userpic.h"
#include "main/main_session.h"
#include "lang/lang_keys.h"
#include "base/weak_ptr.h"
#include "window/notifications_utilities.h"
#include "styles/style_window.h"
#include <QtCore/QBuffer>
#include <QtCore/QVersionNumber>
@ -302,21 +300,25 @@ bool NotificationData::init(
_body = msg.toStdString();
}
_actions.push_back("default");
_actions.push_back(tr::lng_open_link(tr::now).toStdString());
if (HasCapability("actions")) {
_actions.push_back("default");
_actions.push_back(tr::lng_open_link(tr::now).toStdString());
if (!options.hideMarkAsRead) {
// icon name according to https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
_actions.push_back("mail-mark-read");
_actions.push_back(tr::lng_context_mark_read(tr::now).toStdString());
}
if (!options.hideMarkAsRead) {
// icon name according to https://specifications.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html
_actions.push_back("mail-mark-read");
_actions.push_back(
tr::lng_context_mark_read(tr::now).toStdString());
}
if (HasCapability("inline-reply") && !options.hideReplyButton) {
_actions.push_back("inline-reply");
_actions.push_back(tr::lng_notification_reply(tr::now).toStdString());
if (HasCapability("inline-reply")
&& !options.hideReplyButton) {
_actions.push_back("inline-reply");
_actions.push_back(
tr::lng_notification_reply(tr::now).toStdString());
_notificationRepliedSignalId
= _interface.signal_notification_replied().connect([=](
_notificationRepliedSignalId
= _interface.signal_notification_replied().connect([=](
XdgNotifications::Notifications,
uint id,
std::string text) {
@ -328,51 +330,59 @@ bool NotificationData::init(
}
});
});
}
_actionInvokedSignalId = _interface.signal_action_invoked().connect(
[=](
XdgNotifications::Notifications,
uint id,
std::string actionName) {
Core::Sandbox::Instance().customEnterFromEventLoop([&] {
if (id == _notificationId) {
if (actionName == "default") {
_manager->notificationActivated(_id);
} else if (actionName == "mail-mark-read") {
_manager->notificationReplied(_id, {});
}
}
});
});
_activationTokenSignalId
= _interface.signal_activation_token().connect([=](
XdgNotifications::Notifications,
uint id,
std::string token) {
if (id == _notificationId) {
GLib::setenv("XDG_ACTIVATION_TOKEN", token, true);
}
});
}
_actionInvokedSignalId = _interface.signal_action_invoked().connect([=](
XdgNotifications::Notifications,
uint id,
std::string actionName) {
Core::Sandbox::Instance().customEnterFromEventLoop([&] {
if (id == _notificationId) {
if (actionName == "default") {
_manager->notificationActivated(_id);
} else if (actionName == "mail-mark-read") {
_manager->notificationReplied(_id, {});
}
}
});
});
_activationTokenSignalId = _interface.signal_activation_token().connect(
[=](
XdgNotifications::Notifications,
uint id,
std::string token) {
if (id == _notificationId) {
GLib::setenv("XDG_ACTIVATION_TOKEN", token, true);
}
});
_hints.insert_value("action-icons", GLib::Variant::new_boolean(true));
if (HasCapability("action-icons")) {
_hints.insert_value("action-icons", GLib::Variant::new_boolean(true));
}
// suppress system sound if telegram sound activated,
// otherwise use system sound
if (Core::App().settings().soundNotify()) {
_hints.insert_value(
"suppress-sound",
GLib::Variant::new_boolean(true));
} else {
// sound name according to http://0pointer.de/public/sound-naming-spec.html
_hints.insert_value(
"sound-name",
GLib::Variant::new_string("message-new-instant"));
if (HasCapability("sound")) {
if (Core::App().settings().soundNotify()) {
_hints.insert_value(
"suppress-sound",
GLib::Variant::new_boolean(true));
} else {
// sound name according to http://0pointer.de/public/sound-naming-spec.html
_hints.insert_value(
"sound-name",
GLib::Variant::new_string("message-new-instant"));
}
}
_hints.insert_value(
"x-canonical-append",
GLib::Variant::new_string("true"));
if (HasCapability("x-canonical-append")) {
_hints.insert_value(
"x-canonical-append",
GLib::Variant::new_string("true"));
}
_hints.insert_value("category", GLib::Variant::new_string("im.received"));
@ -438,9 +448,9 @@ void NotificationData::show() {
const auto weak = base::make_weak(this);
StartServiceAsync(_proxy.get_connection(), crl::guard(weak, [=] {
const auto iconName = _imageKey.empty()
|| _hints.lookup_value(_imageKey)
? std::string()
: base::IconName().toStdString();
|| !_hints.lookup_value(_imageKey)
? base::IconName().toStdString()
: std::string();
auto actions = _actions
| ranges::views::transform(&std::string::c_str)

View File

@ -755,9 +755,6 @@ namespace ThirdParty {
void start() {
}
void finish() {
}
} // namespace ThirdParty
} // namespace Platform

View File

@ -53,9 +53,6 @@ namespace ThirdParty {
inline void start() {
}
inline void finish() {
}
} // namespace ThirdParty
} // namespace Platform

View File

@ -55,9 +55,6 @@ namespace ThirdParty {
void start();
inline void finish() {
}
} // namespace ThirdParty
} // namespace Platform

View File

@ -165,16 +165,7 @@ Cover::Cover(
}, _name->lifetime());
}
Cover::~Cover() {
if (_emojiStatusPanel.hasFocus()) {
// Panel will try to return focus to the layer widget, the problem is
// we are destroying the layer widget probably right now and focusing
// it will lead to a crash, because it destroys its children (how we
// got here) after it clears focus out of itself. So if you return
// the focus inside a child destructor, it won't be cleared at all.
window()->setFocus();
}
}
Cover::~Cover() = default;
void Cover::setupChildGeometry() {
using namespace rpl::mappers;

View File

@ -18,6 +18,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "storage/serialize_peer.h"
#include "storage/serialize_document.h"
#include "main/main_account.h"
#include "main/main_domain.h"
#include "main/main_session.h"
#include "mtproto/mtproto_config.h"
#include "mtproto/mtproto_dc_options.h"
@ -35,6 +36,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "data/data_user.h"
#include "data/data_drafts.h"
#include "export/export_settings.h"
#include "webview/webview_interface.h"
#include "window/themes/window_theme.h"
namespace Storage {
@ -91,6 +93,7 @@ enum { // Local Storage Keys
lskMasksKeys = 0x16, // no data
lskCustomEmojiKeys = 0x17, // no data
lskSearchSuggestions = 0x18, // no data
lskWebviewTokens = 0x19, // data: QByteArray bots, QByteArray other
};
auto EmptyMessageDraftSources()
@ -303,6 +306,7 @@ Account::ReadMapResult Account::readMapWith(
quint64 legacyBackgroundKeyDay = 0, legacyBackgroundKeyNight = 0;
quint64 userSettingsKey = 0, recentHashtagsAndBotsKey = 0, exportSettingsKey = 0;
quint64 searchSuggestionsKey = 0;
QByteArray webviewStorageTokenBots, webviewStorageTokenOther;
while (!map.stream.atEnd()) {
quint32 keyType;
map.stream >> keyType;
@ -411,6 +415,11 @@ Account::ReadMapResult Account::readMapWith(
case lskSearchSuggestions: {
map.stream >> searchSuggestionsKey;
} break;
case lskWebviewTokens: {
map.stream
>> webviewStorageTokenBots
>> webviewStorageTokenOther;
} break;
default:
LOG(("App Error: unknown key type in encrypted map: %1").arg(keyType));
return ReadMapResult::Failed;
@ -448,6 +457,8 @@ Account::ReadMapResult Account::readMapWith(
_exportSettingsKey = exportSettingsKey;
_searchSuggestionsKey = searchSuggestionsKey;
_oldMapVersion = mapData.version;
_webviewStorageIdBots.token = webviewStorageTokenBots;
_webviewStorageIdOther.token = webviewStorageTokenOther;
if (_oldMapVersion < AppVersion) {
writeMapDelayed();
@ -553,6 +564,12 @@ void Account::writeMap() {
mapSize += sizeof(quint32) + 3 * sizeof(quint64);
}
if (_searchSuggestionsKey) mapSize += sizeof(quint32) + sizeof(quint64);
if (!_webviewStorageIdBots.token.isEmpty()
|| !_webviewStorageIdOther.token.isEmpty()) {
mapSize += sizeof(quint32)
+ Serialize::bytearraySize(_webviewStorageIdBots.token)
+ Serialize::bytearraySize(_webviewStorageIdOther.token);
}
EncryptedDescriptor mapData(mapSize);
if (!self.isEmpty()) {
@ -616,6 +633,13 @@ void Account::writeMap() {
mapData.stream << quint32(lskSearchSuggestions);
mapData.stream << quint64(_searchSuggestionsKey);
}
if (!_webviewStorageIdBots.token.isEmpty()
|| !_webviewStorageIdOther.token.isEmpty()) {
mapData.stream << quint32(lskWebviewTokens);
mapData.stream
<< _webviewStorageIdBots.token
<< _webviewStorageIdOther.token;
}
map.writeEncrypted(mapData, _localKey);
_mapChanged = false;
@ -655,11 +679,27 @@ void Account::reset() {
_cacheTotalTimeLimit = Database::Settings().totalTimeLimit;
_cacheBigFileTotalSizeLimit = Database::Settings().totalSizeLimit;
_cacheBigFileTotalTimeLimit = Database::Settings().totalTimeLimit;
const auto wvbots = _webviewStorageIdBots.path;
const auto wvother = _webviewStorageIdOther.path;
const auto wvclear = [](Webview::StorageId &storageId) {
Webview::ClearStorageDataByToken(
base::take(storageId).token.toStdString());
};
wvclear(_webviewStorageIdBots);
wvclear(_webviewStorageIdOther);
_mapChanged = true;
writeMap();
writeMtpData();
crl::async([base = _basePath, temp = _tempPath, names = std::move(names)] {
crl::async([
base = _basePath,
temp = _tempPath,
names = std::move(names),
wvbots,
wvother
] {
for (const auto &name : names) {
if (!name.endsWith(u"map0"_q)
&& !name.endsWith(u"map1"_q)
@ -669,6 +709,12 @@ void Account::reset() {
}
}
QDir(LegacyTempDirectory()).removeRecursively();
if (!wvbots.isEmpty()) {
QDir(wvbots).removeRecursively();
}
if (!wvother.isEmpty()) {
QDir(wvother).removeRecursively();
}
QDir(temp).removeRecursively();
});
@ -3080,6 +3126,54 @@ bool Account::isBotTrustedOpenWebView(PeerId botId) {
&& ((i->second & BotTrustFlag::OpenWebView) != 0);
}
void Account::enforceModernStorageIdBots() {
if (_webviewStorageIdBots.token.isEmpty()) {
_webviewStorageIdBots.token = QByteArray::fromStdString(
Webview::GenerateStorageToken());
writeMapDelayed();
}
}
Webview::StorageId Account::resolveStorageIdBots() {
if (!_webviewStorageIdBots) {
auto &token = _webviewStorageIdBots.token;
const auto legacy = Webview::LegacyStorageIdToken();
if (token.isEmpty()) {
auto legacyTaken = false;
const auto &list = _owner->domain().accounts();
for (const auto &[index, account] : list) {
if (account.get() != _owner.get()) {
const auto &id = account->local()._webviewStorageIdBots;
if (id.token == legacy) {
legacyTaken = true;
break;
}
}
}
token = legacyTaken
? QByteArray::fromStdString(Webview::GenerateStorageToken())
: legacy;
writeMapDelayed();
}
_webviewStorageIdBots.path = (token == legacy)
? (BaseGlobalPath() + u"webview"_q)
: (_databasePath + u"wvbots"_q);
}
return _webviewStorageIdBots;
}
Webview::StorageId Account::resolveStorageIdOther() {
if (!_webviewStorageIdOther) {
if (_webviewStorageIdOther.token.isEmpty()) {
_webviewStorageIdOther.token = QByteArray::fromStdString(
Webview::GenerateStorageToken());
writeMapDelayed();
}
_webviewStorageIdOther.path = _databasePath + u"wvother"_q;
}
return _webviewStorageIdOther;
}
bool Account::encrypt(
const void *src,
void *dst,

View File

@ -12,6 +12,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "storage/cache/storage_cache_database.h"
#include "data/stickers/data_stickers_set.h"
#include "data/data_drafts.h"
#include "webview/webview_common.h"
class History;
@ -169,6 +170,10 @@ public:
void markBotTrustedOpenWebView(PeerId botId);
[[nodiscard]] bool isBotTrustedOpenWebView(PeerId botId);
void enforceModernStorageIdBots();
[[nodiscard]] Webview::StorageId resolveStorageIdBots();
[[nodiscard]] Webview::StorageId resolveStorageIdOther();
[[nodiscard]] bool encrypt(
const void *src,
void *dst,
@ -309,6 +314,9 @@ private:
bool _recentHashtagsAndBotsWereRead = false;
bool _searchSuggestionsRead = false;
Webview::StorageId _webviewStorageIdBots;
Webview::StorageId _webviewStorageIdOther;
int _oldMapVersion = 0;
base::Timer _writeMapTimer;

View File

@ -268,10 +268,6 @@ void Domain::clearOldVersion() {
_oldVersion = 0;
}
QString Domain::webviewDataPath() const {
return BaseGlobalPath() + "webview";
}
rpl::producer<> Domain::localPasscodeChanged() const {
return _passcodeKeyChanged.events();
}

View File

@ -44,8 +44,6 @@ public:
[[nodiscard]] int oldVersion() const;
void clearOldVersion();
[[nodiscard]] QString webviewDataPath() const;
[[nodiscard]] rpl::producer<> localPasscodeChanged() const;
[[nodiscard]] bool hasLocalPasscode() const;

View File

@ -313,12 +313,12 @@ Panel::Progress::Progress(QWidget *parent, Fn<QRect()> rect)
}
Panel::Panel(
const QString &userDataPath,
const Webview::StorageId &storageId,
rpl::producer<QString> title,
not_null<Delegate*> delegate,
MenuButtons menuButtons,
bool allowClipboardRead)
: _userDataPath(userDataPath)
: _storageId(storageId)
, _delegate(delegate)
, _menuButtons(menuButtons)
, _widget(std::make_unique<SeparatePanel>())
@ -597,7 +597,7 @@ bool Panel::createWebview(const Webview::ThemeParams &params) {
container,
Webview::WindowConfig{
.opaqueBg = params.opaqueBg,
.userDataPath = _userDataPath,
.storageId = _storageId,
});
const auto raw = &_webview->window;
@ -1339,7 +1339,7 @@ rpl::lifetime &Panel::lifetime() {
std::unique_ptr<Panel> Show(Args &&args) {
auto result = std::make_unique<Panel>(
args.userDataPath,
args.storageId,
std::move(args.title),
args.delegate,
args.menuButtons,

View File

@ -11,6 +11,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "base/object_ptr.h"
#include "base/weak_ptr.h"
#include "base/flags.h"
#include "webview/webview_common.h"
class QJsonObject;
class QJsonValue;
@ -23,7 +24,6 @@ class SeparatePanel;
namespace Webview {
struct Available;
struct ThemeParams;
} // namespace Webview
namespace Ui::BotWebView {
@ -72,7 +72,7 @@ public:
class Panel final : public base::has_weak_ptr {
public:
Panel(
const QString &userDataPath,
const Webview::StorageId &storageId,
rpl::producer<QString> title,
not_null<Delegate*> delegate,
MenuButtons menuButtons,
@ -144,7 +144,7 @@ private:
[[nodiscard]] QRect progressRect() const;
void setupProgressGeometry();
QString _userDataPath;
Webview::StorageId _storageId;
const not_null<Delegate*> _delegate;
bool _closeNeedConfirmation = false;
bool _hasSettingsButton = false;
@ -172,7 +172,7 @@ private:
struct Args {
QString url;
QString userDataPath;
Webview::StorageId storageId;
rpl::producer<QString> title;
rpl::producer<QString> bottom;
not_null<Delegate*> delegate;

View File

@ -632,7 +632,7 @@ historyPollRadio: Radio(defaultRadio) {
diameter: 18px;
thickness: 2px;
skip: 65px; // * 0.1
duration: 120;
duration: universalDuration;
rippleAreaPadding: 8px;
}
historyPollRadioOpacity: 0.7;

View File

@ -40,7 +40,7 @@ void SendButton::setType(Type type) {
[=] { update(); },
0.,
1.,
st::historyRecordVoiceDuration);
st::universalDuration);
setPointerCursor(_type != Type::Slowmode);
update();
}

View File

@ -35,9 +35,9 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "ui/style/style_palette_colorizer.h"
#include "ui/ui_utility.h"
#include "ui/boxes/confirm_box.h"
#include "webview/webview_interface.h"
#include "boxes/background_box.h"
#include "core/application.h"
#include "webview/webview_common.h"
#include "styles/style_widgets.h"
#include "styles/style_chat.h"

View File

@ -435,7 +435,7 @@ if customRunCommand:
stage('patches', """
git clone https://github.com/desktop-app/patches.git
cd patches
git checkout ab24db42b9
git checkout 5d64e21844
""")
stage('msys64', """

@ -1 +1 @@
Subproject commit 27b75347341838cffd1d5a84c66db7241d27d030
Subproject commit 69e474ea775f115afb3e4afeb80d3227325dfcc4

@ -1 +1 @@
Subproject commit 7c346c6b042266b5adb116a2114df1d46b37c03f
Subproject commit 9f9bcaaec922644406faadda4d37014c9dec2dd9