mirror of https://github.com/procxx/kepka.git
Implement notifications settings section.
This commit is contained in:
parent
316d015d23
commit
9af70551f3
|
@ -20,3 +20,8 @@ settingsSlider: SettingsSlider(defaultSettingsSlider) {
|
|||
labelFg: windowSubTextFg;
|
||||
labelFgActive: windowActiveTextFg;
|
||||
}
|
||||
|
||||
settingsNotificationsCheckbox: defaultBoxCheckbox;
|
||||
settingsNotificationsCheckboxPadding: margins(22px, 10px, 10px, 10px);
|
||||
settingsLink: boxLinkButton;
|
||||
settingsAdvancedNotificationsPadding: margins(22px, 20px, 10px, 10px);
|
||||
|
|
|
@ -13,11 +13,25 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include "settings/settings_main.h"
|
||||
#include "settings/settings_notifications.h"
|
||||
#include "settings/settings_privacy_security.h"
|
||||
#include "ui/wrap/padding_wrap.h"
|
||||
#include "ui/wrap/vertical_layout.h"
|
||||
#include "boxes/abstract_box.h"
|
||||
#include "lang/lang_keys.h"
|
||||
#include "mainwindow.h"
|
||||
#include "styles/style_settings.h"
|
||||
|
||||
namespace Settings {
|
||||
|
||||
void AddSkip(not_null<Ui::VerticalLayout*> container) {
|
||||
container->add(object_ptr<Ui::FixedHeightWidget>(
|
||||
container,
|
||||
st::settingsSectionSkip));
|
||||
}
|
||||
|
||||
void AddDivider(not_null<Ui::VerticalLayout*> container) {
|
||||
container->add(object_ptr<BoxContentDivider>(container));
|
||||
}
|
||||
|
||||
object_ptr<Section> CreateSection(
|
||||
Type type,
|
||||
not_null<QWidget*> parent,
|
||||
|
|
|
@ -9,6 +9,10 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
|
||||
#include "ui/rp_widget.h"
|
||||
|
||||
namespace Ui {
|
||||
class VerticalLayout;
|
||||
} // namespace Ui
|
||||
|
||||
namespace Window {
|
||||
class Controller;
|
||||
} // namespace Window
|
||||
|
@ -48,6 +52,9 @@ object_ptr<Section> CreateSection(
|
|||
not_null<Window::Controller*> controller,
|
||||
UserData *self = nullptr);
|
||||
|
||||
void AddSkip(not_null<Ui::VerticalLayout*> container);
|
||||
void AddDivider(not_null<Ui::VerticalLayout*> container);
|
||||
|
||||
using MenuCallback = Fn<QAction*(
|
||||
const QString &text,
|
||||
Fn<void()> handler)>;
|
||||
|
|
|
@ -15,7 +15,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include "boxes/about_box.h"
|
||||
#include "boxes/photo_crop_box.h"
|
||||
#include "ui/wrap/vertical_layout.h"
|
||||
#include "ui/wrap/padding_wrap.h"
|
||||
#include "ui/widgets/labels.h"
|
||||
#include "ui/widgets/discrete_sliders.h"
|
||||
#include "info/profile/info_profile_button.h"
|
||||
|
@ -30,16 +29,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
namespace Settings {
|
||||
namespace {
|
||||
|
||||
void AddSkip(not_null<Ui::VerticalLayout*> container) {
|
||||
container->add(object_ptr<Ui::FixedHeightWidget>(
|
||||
container,
|
||||
st::settingsSectionSkip));
|
||||
}
|
||||
|
||||
void AddDivider(not_null<Ui::VerticalLayout*> container) {
|
||||
container->add(object_ptr<BoxContentDivider>(container));
|
||||
}
|
||||
|
||||
void SetupUploadPhotoButton(
|
||||
not_null<Ui::VerticalLayout*> container,
|
||||
not_null<UserData*> self) {
|
||||
|
|
|
@ -8,12 +8,216 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|||
#include "settings/settings_notifications.h"
|
||||
|
||||
#include "settings/settings_common.h"
|
||||
#include "boxes/abstract_box.h"
|
||||
#include "ui/wrap/vertical_layout.h"
|
||||
#include "ui/wrap/slide_wrap.h"
|
||||
#include "ui/widgets/checkbox.h"
|
||||
#include "ui/widgets/buttons.h"
|
||||
#include "lang/lang_keys.h"
|
||||
#include "storage/localstorage.h"
|
||||
#include "window/notifications_manager.h"
|
||||
#include "boxes/notifications_box.h"
|
||||
#include "platform/platform_notifications_manager.h"
|
||||
#include "mainwindow.h"
|
||||
#include "auth_session.h"
|
||||
#include "styles/style_settings.h"
|
||||
|
||||
namespace Settings {
|
||||
namespace {
|
||||
|
||||
void SetupNotificationsContent(not_null<Ui::VerticalLayout*> container) {
|
||||
const auto checkbox = [&](LangKey label, bool checked) {
|
||||
return object_ptr<Ui::Checkbox>(
|
||||
container,
|
||||
lang(label),
|
||||
checked,
|
||||
st::settingsNotificationsCheckbox);
|
||||
};
|
||||
const auto addCheckbox = [&](LangKey label, bool checked) {
|
||||
return container->add(
|
||||
checkbox(label, checked),
|
||||
st::settingsNotificationsCheckboxPadding);
|
||||
};
|
||||
const auto addSlidingCheckbox = [&](LangKey label, bool checked) {
|
||||
return container->add(
|
||||
object_ptr<Ui::SlideWrap<Ui::Checkbox>>(
|
||||
container,
|
||||
checkbox(label, checked),
|
||||
st::settingsNotificationsCheckboxPadding));
|
||||
};
|
||||
const auto desktop = addCheckbox(
|
||||
lng_settings_desktop_notify,
|
||||
Global::DesktopNotify());
|
||||
const auto name = addSlidingCheckbox(
|
||||
lng_settings_show_name,
|
||||
(Global::NotifyView() <= dbinvShowName));
|
||||
const auto preview = addSlidingCheckbox(
|
||||
lng_settings_show_preview,
|
||||
(Global::NotifyView() <= dbinvShowPreview));
|
||||
const auto sound = addCheckbox(
|
||||
lng_settings_sound_notify,
|
||||
Global::SoundNotify());
|
||||
const auto muted = addCheckbox(
|
||||
lng_settings_include_muted,
|
||||
Global::IncludeMuted());
|
||||
|
||||
const auto nativeNotificationsKey = [&] {
|
||||
if (!Platform::Notifications::Supported()) {
|
||||
return LangKey();
|
||||
} else if (cPlatform() == dbipWindows) {
|
||||
return lng_settings_use_windows;
|
||||
} else if (cPlatform() == dbipLinux32
|
||||
|| cPlatform() == dbipLinux64) {
|
||||
return lng_settings_use_native_notifications;
|
||||
}
|
||||
return LangKey();
|
||||
}();
|
||||
const auto native = nativeNotificationsKey
|
||||
? addCheckbox(nativeNotificationsKey, Global::NativeNotifications())
|
||||
: nullptr;
|
||||
const auto advanced = (cPlatform() != dbipMac)
|
||||
? container->add(
|
||||
object_ptr<Ui::SlideWrap<Ui::LinkButton>>(
|
||||
container,
|
||||
object_ptr<Ui::LinkButton>(
|
||||
container,
|
||||
lang(lng_settings_advanced_notifications),
|
||||
st::settingsLink),
|
||||
st::settingsAdvancedNotificationsPadding))
|
||||
: nullptr;
|
||||
|
||||
if (!name->entity()->checked()) {
|
||||
preview->hide(anim::type::instant);
|
||||
}
|
||||
if (!desktop->checked()) {
|
||||
name->hide(anim::type::instant);
|
||||
preview->hide(anim::type::instant);
|
||||
}
|
||||
if (native && advanced && Global::NativeNotifications()) {
|
||||
advanced->hide(anim::type::instant);
|
||||
}
|
||||
|
||||
const auto lifetime = Ui::AttachAsChild(container, rpl::lifetime());
|
||||
|
||||
using Change = Window::Notifications::ChangeType;
|
||||
const auto changed = [](Change change) {
|
||||
Local::writeUserSettings();
|
||||
Auth().notifications().settingsChanged().notify(change);
|
||||
};
|
||||
base::ObservableViewer(
|
||||
desktop->checkedChanged
|
||||
) | rpl::filter([](bool checked) {
|
||||
return (checked != Global::DesktopNotify());
|
||||
}) | rpl::start_with_next([=](bool checked) {
|
||||
Global::SetDesktopNotify(checked);
|
||||
changed(Change::DesktopEnabled);
|
||||
}, *lifetime);
|
||||
|
||||
base::ObservableViewer(
|
||||
name->entity()->checkedChanged
|
||||
) | rpl::map([=](bool checked) {
|
||||
if (!checked) {
|
||||
return dbinvShowNothing;
|
||||
} else if (!preview->entity()->checked()) {
|
||||
return dbinvShowName;
|
||||
}
|
||||
return dbinvShowPreview;
|
||||
}) | rpl::filter([=](DBINotifyView value) {
|
||||
return (value != Global::NotifyView());
|
||||
}) | rpl::start_with_next([=](DBINotifyView value) {
|
||||
Global::SetNotifyView(value);
|
||||
changed(Change::ViewParams);
|
||||
}, *lifetime);
|
||||
|
||||
base::ObservableViewer(
|
||||
preview->entity()->checkedChanged
|
||||
) | rpl::map([=](bool checked) {
|
||||
if (checked) {
|
||||
return dbinvShowPreview;
|
||||
} else if (name->entity()->checked()) {
|
||||
return dbinvShowName;
|
||||
}
|
||||
return dbinvShowNothing;
|
||||
}) | rpl::filter([=](DBINotifyView value) {
|
||||
return (value != Global::NotifyView());
|
||||
}) | rpl::start_with_next([=](DBINotifyView value) {
|
||||
Global::SetNotifyView(value);
|
||||
changed(Change::ViewParams);
|
||||
}, *lifetime);
|
||||
|
||||
base::ObservableViewer(
|
||||
sound->checkedChanged
|
||||
) | rpl::filter([](bool checked) {
|
||||
return (checked != Global::SoundNotify());
|
||||
}) | rpl::start_with_next([=](bool checked) {
|
||||
Global::SetSoundNotify(checked);
|
||||
changed(Change::SoundEnabled);
|
||||
}, *lifetime);
|
||||
|
||||
base::ObservableViewer(
|
||||
muted->checkedChanged
|
||||
) | rpl::filter([](bool checked) {
|
||||
return (checked != Global::IncludeMuted());
|
||||
}) | rpl::start_with_next([=](bool checked) {
|
||||
Global::SetIncludeMuted(checked);
|
||||
changed(Change::IncludeMuted);
|
||||
}, *lifetime);
|
||||
|
||||
base::ObservableViewer(
|
||||
Auth().notifications().settingsChanged()
|
||||
) | rpl::start_with_next([=](Change change) {
|
||||
if (change == Change::DesktopEnabled) {
|
||||
desktop->setChecked(Global::DesktopNotify());
|
||||
name->toggle(Global::DesktopNotify(), anim::type::normal);
|
||||
preview->toggle(
|
||||
Global::DesktopNotify() && name->entity()->checked(),
|
||||
anim::type::normal);
|
||||
} else if (change == Change::ViewParams) {
|
||||
preview->toggle(name->entity()->checked(), anim::type::normal);
|
||||
} else if (change == Change::SoundEnabled) {
|
||||
sound->setChecked(Global::SoundNotify());
|
||||
}
|
||||
}, *lifetime);
|
||||
|
||||
if (native) {
|
||||
base::ObservableViewer(
|
||||
native->checkedChanged
|
||||
) | rpl::filter([](bool checked) {
|
||||
return (checked != Global::NativeNotifications());
|
||||
}) | rpl::start_with_next([=](bool checked) {
|
||||
Global::SetNativeNotifications(checked);
|
||||
Local::writeUserSettings();
|
||||
|
||||
Auth().notifications().createManager();
|
||||
|
||||
if (advanced) {
|
||||
advanced->toggle(
|
||||
!Global::NativeNotifications(),
|
||||
anim::type::normal);
|
||||
}
|
||||
}, *lifetime);
|
||||
}
|
||||
if (advanced) {
|
||||
advanced->entity()->addClickHandler([=] {
|
||||
Ui::show(Box<NotificationsBox>());
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
void SetupNotifications(not_null<Ui::VerticalLayout*> container) {
|
||||
AddDivider(container);
|
||||
AddSkip(container);
|
||||
|
||||
auto wrap = object_ptr<Ui::VerticalLayout>(container);
|
||||
SetupNotificationsContent(wrap.data());
|
||||
|
||||
container->add(object_ptr<Ui::IgnoreMargins>(
|
||||
container,
|
||||
std::move(wrap)));
|
||||
|
||||
AddSkip(container);
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
Notifications::Notifications(QWidget *parent, not_null<UserData*> self)
|
||||
: Section(parent)
|
||||
|
@ -24,7 +228,7 @@ Notifications::Notifications(QWidget *parent, not_null<UserData*> self)
|
|||
void Notifications::setupContent() {
|
||||
const auto content = Ui::CreateChild<Ui::VerticalLayout>(this);
|
||||
|
||||
content->add(object_ptr<BoxContentDivider>(content));
|
||||
SetupNotifications(content);
|
||||
|
||||
Ui::ResizeFitChild(this, content);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue