2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-08-23 02:37:11 +00:00

199 lines
4.7 KiB
C
Raw Normal View History

2018-09-05 22:05:49 +03:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
*/
#pragma once
2024-02-20 14:33:46 +04:00
#include "ui/text/text_variant.h"
2018-09-05 22:05:49 +03:00
#include "ui/rp_widget.h"
#include "ui/round_rect.h"
2019-09-13 15:22:54 +03:00
#include "base/object_ptr.h"
#include "settings/settings_type.h"
2018-09-05 22:05:49 +03:00
namespace anim {
enum class repeat : uchar;
} // namespace anim
2019-07-24 16:00:30 +02:00
namespace Main {
class Session;
} // namespace Main
namespace Ui {
class VerticalLayout;
2019-09-04 18:59:43 +03:00
class FlatLabel;
class SettingsButton;
class AbstractButton;
2023-01-05 14:48:46 +04:00
class MediaSlider;
} // namespace Ui
namespace Ui::Menu {
struct MenuCallback;
} // namespace Ui::Menu
2018-09-05 22:39:35 +03:00
namespace Window {
class SessionController;
2018-09-05 22:39:35 +03:00
} // namespace Window
2018-09-07 12:40:25 +03:00
namespace style {
struct FlatLabel;
struct SettingsButton;
2023-01-05 14:48:46 +04:00
struct MediaSlider;
2018-09-07 12:40:25 +03:00
} // namespace style
namespace Lottie {
struct IconDescriptor;
} // namespace Lottie
2018-09-05 22:05:49 +03:00
namespace Settings {
using Button = Ui::SettingsButton;
class AbstractSection : public Ui::RpWidget {
2018-09-05 22:05:49 +03:00
public:
using RpWidget::RpWidget;
[[nodiscard]] virtual Type id() const = 0;
[[nodiscard]] virtual rpl::producer<Type> sectionShowOther() {
return nullptr;
2018-09-05 22:05:49 +03:00
}
[[nodiscard]] virtual rpl::producer<> sectionShowBack() {
return nullptr;
}
[[nodiscard]] virtual rpl::producer<std::vector<Type>> removeFromStack() {
return nullptr;
}
[[nodiscard]] virtual rpl::producer<QString> title() = 0;
virtual void sectionSaveChanges(FnMut<void()> done) {
done();
}
virtual void showFinished() {
}
virtual void setInnerFocus() {
2022-05-13 19:38:28 +04:00
setFocus();
}
2022-05-31 21:11:59 +04:00
[[nodiscard]] virtual const Ui::RoundRect *bottomSkipRounding() const {
return nullptr;
}
[[nodiscard]] virtual QPointer<Ui::RpWidget> createPinnedToTop(
not_null<QWidget*> parent) {
return nullptr;
}
[[nodiscard]] virtual QPointer<Ui::RpWidget> createPinnedToBottom(
not_null<Ui::RpWidget*> parent) {
return nullptr;
}
[[nodiscard]] virtual bool hasFlexibleTopBar() const {
return false;
}
virtual void setStepDataReference(std::any &data) {
}
2024-02-23 21:23:15 +04:00
virtual bool paintOuter(
not_null<QWidget*> outer,
int maxVisibleHeight,
QRect clip) {
return false;
}
};
enum class IconType {
Rounded,
Round,
Simple,
};
struct IconDescriptor {
const style::icon *icon = nullptr;
IconType type = IconType::Rounded;
const style::color *background = nullptr;
std::optional<QBrush> backgroundBrush; // Can be useful for gradients.
explicit operator bool() const {
return (icon != nullptr);
}
};
class Icon final {
public:
explicit Icon(IconDescriptor descriptor);
void paint(QPainter &p, QPoint position) const;
void paint(QPainter &p, int x, int y) const;
[[nodiscard]] int width() const;
[[nodiscard]] int height() const;
[[nodiscard]] QSize size() const;
private:
not_null<const style::icon*> _icon;
std::optional<Ui::RoundRect> _background;
std::optional<std::pair<int, QBrush>> _backgroundBrush;
};
void AddButtonIcon(
not_null<Ui::AbstractButton*> button,
const style::SettingsButton &st,
IconDescriptor &&descriptor);
object_ptr<Button> CreateButtonWithIcon(
2020-03-24 11:26:08 +04:00
not_null<QWidget*> parent,
rpl::producer<QString> text,
const style::SettingsButton &st,
IconDescriptor &&descriptor = {});
not_null<Button*> AddButtonWithIcon(
2018-09-13 23:09:26 +03:00
not_null<Ui::VerticalLayout*> container,
rpl::producer<QString> text,
const style::SettingsButton &st,
IconDescriptor &&descriptor = {});
2018-09-07 12:40:25 +03:00
not_null<Button*> AddButtonWithLabel(
not_null<Ui::VerticalLayout*> container,
2019-06-18 14:16:43 +02:00
rpl::producer<QString> text,
2018-09-07 12:40:25 +03:00
rpl::producer<QString> label,
const style::SettingsButton &st,
IconDescriptor &&descriptor = {});
void CreateRightLabel(
not_null<Button*> button,
rpl::producer<QString> label,
const style::SettingsButton &st,
2019-06-18 14:16:43 +02:00
rpl::producer<QString> buttonText);
2024-02-20 14:33:46 +04:00
struct DividerWithLottieDescriptor {
QString lottie;
std::optional<anim::repeat> lottieRepeat;
std::optional<int> lottieSize;
std::optional<QMargins> lottieMargins;
rpl::producer<> showFinished;
rpl::producer<TextWithEntities> about;
std::optional<QMargins> aboutMargins;
RectParts parts = RectPart::Top | RectPart::Bottom;
2024-02-20 14:33:46 +04:00
};
void AddDividerTextWithLottie(
2024-02-20 14:33:46 +04:00
not_null<Ui::VerticalLayout*> container,
DividerWithLottieDescriptor &&descriptor);
struct LottieIcon {
object_ptr<Ui::RpWidget> widget;
Fn<void(anim::repeat repeat)> animate;
};
[[nodiscard]] LottieIcon CreateLottieIcon(
not_null<QWidget*> parent,
Lottie::IconDescriptor &&descriptor,
style::margins padding = {});
2023-01-05 14:48:46 +04:00
struct SliderWithLabel {
object_ptr<Ui::RpWidget> widget;
not_null<Ui::MediaSlider*> slider;
not_null<Ui::FlatLabel*> label;
};
[[nodiscard]] SliderWithLabel MakeSliderWithLabel(
QWidget *parent,
const style::MediaSlider &sliderSt,
const style::FlatLabel &labelSt,
int skip,
int minLabelWidth = 0);
2018-09-05 22:05:49 +03:00
} // namespace Settings