/* 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 #include "base/observer.h" #include "ui/rp_widget.h" #include "styles/style_boxes.h" namespace Ui { class Checkbox; class RadiobuttonGroup; class Radiobutton; class LinkButton; template class RadioenumGroup; template class Radioenum; template class SlideWrap; class VerticalLayout; } // namespace Ui namespace Settings { class BlockWidget : public Ui::RpWidget, protected base::Subscriber { public: BlockWidget(QWidget *parent, UserData *self, const QString &title); void setContentLeft(int contentLeft); QMargins getMargins() const override; protected: void paintEvent(QPaintEvent *e) override; virtual void paintContents(Painter &p) { } // Where does the block content start (after the title). int contentLeft() const { return _contentLeft; } int contentTop() const; // Resizes content and counts natural widget height for the desired width. int resizeGetHeight(int newWidth) override; UserData *self() const { return _self; } bool emptyTitle() const { return _title.isEmpty(); } template void createChildRow( Widget *&child, style::margins margin, Args&&... args) { auto row = object_ptr{ nullptr }; createChildWidget(row, margin, std::forward(args)...); child = static_cast(addCreatedRow( std::move(row), margin)); } private: template void createChildWidget( object_ptr> &child, style::margins &margin, const style::margins &padding, Args&&... args) { object_ptr entity = { nullptr }; createChildWidget(entity, margin, std::forward(args)...); child.create(this, std::move(entity), padding); margin.setLeft(margin.left() - padding.left()); margin.setTop(margin.top() - padding.top()); margin.setRight(margin.right() - padding.right()); margin.setBottom(margin.bottom() - padding.bottom()); } void createChildWidget( object_ptr &child, style::margins &margin, const QString &text, base::lambda callback, bool checked); void createChildWidget( object_ptr &child, style::margins &margin, const QString &text, const char *slot, const style::LinkButton &st = st::boxLinkButton); template void createChildWidget( object_ptr> &child, style::margins &margin, const std::shared_ptr> &group, Enum value, const QString &text) { child.create( this, group, value, text, st::defaultBoxCheckbox); } RpWidget *addCreatedRow( object_ptr row, const style::margins &margin); template struct IsSlideWrap : std::false_type { }; template struct IsSlideWrap> : std::true_type { }; template struct IsRadioenum : std::false_type { }; template struct IsRadioenum> : std::true_type { }; template using NotImplementedYet = std::enable_if_t< !IsSlideWrap::value && !IsRadioenum::value && !std::is_same::value && !std::is_same::value>; template > void createChildWidget(object_ptr &child, style::margins &margin, Args&&... args) { child.create(this, std::forward(args)...); } void paintTitle(Painter &p); object_ptr _content; int _contentLeft = 0; UserData *_self; QString _title; }; } // namespace Settings