diff --git a/Telegram/Resources/langs/lang.strings b/Telegram/Resources/langs/lang.strings index 06cc05ecd..c5f460f43 100644 --- a/Telegram/Resources/langs/lang.strings +++ b/Telegram/Resources/langs/lang.strings @@ -650,6 +650,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL "lng_edit_privacy_forwards_exceptions" = "These settings will override the values above."; "lng_edit_privacy_forwards_always_title" = "Always allow"; "lng_edit_privacy_forwards_never_title" = "Never allow"; +"lng_edit_privacy_forwards_sample_message" = "Reinhardt, we need to find you some new tunes 🎶"; +"lng_edit_privacy_forwards_sample_everyone" = "Link to your account."; +"lng_edit_privacy_forwards_sample_contacts" = "Link if allowed by settings below."; +"lng_edit_privacy_forwards_sample_nobody" = "Not a link to your account."; "lng_edit_privacy_profile_photo_title" = "Profile photo privacy"; "lng_edit_privacy_profile_photo_header" = "Who can see my profile photo"; diff --git a/Telegram/SourceFiles/boxes/background_preview_box.cpp b/Telegram/SourceFiles/boxes/background_preview_box.cpp index 6c791bf62..7cd0dda8a 100644 --- a/Telegram/SourceFiles/boxes/background_preview_box.cpp +++ b/Telegram/SourceFiles/boxes/background_preview_box.cpp @@ -390,12 +390,12 @@ BackgroundPreviewBox::BackgroundPreviewBox( QWidget*, const Data::WallPaper &paper) : _text1(GenerateTextItem( - this, + delegate(), Auth().data().history(peerFromUser(PeerData::kServiceNotificationsId)), lang(lng_background_text1), false)) , _text2(GenerateTextItem( - this, + delegate(), Auth().data().history(peerFromUser(PeerData::kServiceNotificationsId)), lang(lng_background_text2), true)) @@ -404,6 +404,10 @@ BackgroundPreviewBox::BackgroundPreviewBox( subscribe(Auth().downloaderTaskFinished(), [=] { update(); }); } +not_null BackgroundPreviewBox::delegate() { + return static_cast(this); +} + void BackgroundPreviewBox::prepare() { setTitle(langFactory(lng_background_header)); @@ -765,7 +769,7 @@ HistoryView::Context BackgroundPreviewBox::elementContext() { std::unique_ptr BackgroundPreviewBox::elementCreate( not_null message) { - return std::make_unique(this, message); + return std::make_unique(delegate(), message); } std::unique_ptr BackgroundPreviewBox::elementCreate( diff --git a/Telegram/SourceFiles/boxes/background_preview_box.h b/Telegram/SourceFiles/boxes/background_preview_box.h index 7ad07f37c..0eedd7710 100644 --- a/Telegram/SourceFiles/boxes/background_preview_box.h +++ b/Telegram/SourceFiles/boxes/background_preview_box.h @@ -20,7 +20,7 @@ class Checkbox; class BackgroundPreviewBox : public BoxContent - , public HistoryView::ElementDelegate { + , private HistoryView::ElementDelegate { public: BackgroundPreviewBox(QWidget*, const Data::WallPaper &paper); @@ -28,7 +28,14 @@ public: const QString &slug, const QMap ¶ms); +protected: + void prepare() override; + + void paintEvent(QPaintEvent *e) override; + +private: using Element = HistoryView::Element; + not_null delegate(); HistoryView::Context elementContext() override; std::unique_ptr elementCreate( not_null message) override; @@ -41,12 +48,6 @@ public: not_null element) override; bool elementInSelectionMode() override; -protected: - void prepare() override; - - void paintEvent(QPaintEvent *e) override; - -private: void apply(); void share(); void step_radial(crl::time ms, bool timer); diff --git a/Telegram/SourceFiles/boxes/edit_privacy_box.cpp b/Telegram/SourceFiles/boxes/edit_privacy_box.cpp index ab550ef1e..bc8172cab 100644 --- a/Telegram/SourceFiles/boxes/edit_privacy_box.cpp +++ b/Telegram/SourceFiles/boxes/edit_privacy_box.cpp @@ -239,12 +239,12 @@ void EditPrivacyBox::setupContent() { const auto group = std::make_shared>( _value.option); - const auto toggle = Ui::CreateChild>(content); - + const auto toggle = Ui::CreateChild>(content); group->setChangedCallback([=](Option value) { _value.option = value; - toggle->fire({}); + toggle->fire_copy(value); }); + auto optionValue = toggle->events_starting_with_copy(_value.option); const auto addOptionRow = [&](Option option) { return (_controller->hasOption(option) || (_value.option == option)) @@ -275,8 +275,8 @@ void EditPrivacyBox::setupContent() { std::move(label), st::settingsButton, text); - button->toggleOn(toggle->events_starting_with( - rpl::empty_value() + button->toggleOn(rpl::duplicate( + optionValue ) | rpl::map([=] { return showExceptionLink(exception); }))->entity()->addClickHandler([=] { @@ -285,6 +285,13 @@ void EditPrivacyBox::setupContent() { return button; }; + auto above = _controller->setupAboveWidget( + content, + std::move(optionValue)); + if (above) { + content->add(std::move(above)); + } + AddSubsectionTitle(content, _controller->optionsTitleKey()); addOptionRow(Option::Everyone); addOptionRow(Option::Contacts); diff --git a/Telegram/SourceFiles/boxes/edit_privacy_box.h b/Telegram/SourceFiles/boxes/edit_privacy_box.h index 2da4ff76a..f0377299f 100644 --- a/Telegram/SourceFiles/boxes/edit_privacy_box.h +++ b/Telegram/SourceFiles/boxes/edit_privacy_box.h @@ -38,21 +38,30 @@ public: public: using Key = ApiWrap::Privacy::Key; - virtual Key key() = 0; - virtual MTPInputPrivacyKey apiKey() = 0; + [[nodiscard]] virtual Key key() = 0; + [[nodiscard]] virtual MTPInputPrivacyKey apiKey() = 0; - virtual QString title() = 0; - virtual bool hasOption(Option option) { + [[nodiscard]] virtual QString title() = 0; + [[nodiscard]] virtual bool hasOption(Option option) { return true; } - virtual LangKey optionsTitleKey() = 0; - virtual LangKey optionLabelKey(Option option); - virtual rpl::producer warning() { + [[nodiscard]] virtual LangKey optionsTitleKey() = 0; + [[nodiscard]] virtual LangKey optionLabelKey(Option option); + [[nodiscard]] virtual rpl::producer warning() { return rpl::never(); } - virtual LangKey exceptionButtonTextKey(Exception exception) = 0; - virtual QString exceptionBoxTitle(Exception exception) = 0; - virtual rpl::producer exceptionsDescription() = 0; + [[nodiscard]] virtual LangKey exceptionButtonTextKey( + Exception exception) = 0; + [[nodiscard]] virtual QString exceptionBoxTitle( + Exception exception) = 0; + [[nodiscard]] virtual auto exceptionsDescription() + -> rpl::producer = 0; + + [[nodiscard]] virtual object_ptr setupAboveWidget( + not_null parent, + rpl::producer