tdesktop/Telegram/SourceFiles/info/profile/info_profile_cover.h

123 lines
2.7 KiB
C
Raw Normal View History

/*
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 "ui/wrap/padding_wrap.h"
#include "ui/widgets/checkbox.h"
#include "base/timer.h"
2018-09-05 19:39:35 +00:00
namespace Window {
class SessionController;
2018-09-05 19:39:35 +00:00
} // namespace Window
namespace style {
struct InfoToggle;
} // namespace style
namespace Ui {
class UserpicButton;
class FlatLabel;
template <typename Widget>
class SlideWrap;
} // namespace Ui
namespace Info {
class Controller;
2018-09-05 19:39:35 +00:00
class Section;
} // namespace Info
namespace Info {
namespace Profile {
2021-01-21 12:39:40 +00:00
enum class Badge;
2017-09-25 16:06:53 +00:00
class SectionWithToggle : public Ui::FixedHeightWidget {
public:
using FixedHeightWidget::FixedHeightWidget;
SectionWithToggle *setToggleShown(rpl::producer<bool> &&shown);
void toggle(bool toggled, anim::type animated);
bool toggled() const;
2017-09-25 16:06:53 +00:00
rpl::producer<bool> toggledValue() const;
protected:
rpl::producer<bool> toggleShownValue() const;
int toggleSkip() const;
private:
object_ptr<Ui::Checkbox> _toggle = { nullptr };
rpl::event_stream<bool> _toggleShown;
};
class Cover : public SectionWithToggle {
public:
Cover(
QWidget *parent,
2018-09-05 19:39:35 +00:00
not_null<PeerData*> peer,
not_null<Window::SessionController*> controller);
2019-06-10 15:47:22 +00:00
Cover(
QWidget *parent,
not_null<PeerData*> peer,
not_null<Window::SessionController*> controller,
rpl::producer<QString> title);
Cover *setOnlineCount(rpl::producer<int> &&count);
2017-09-25 16:06:53 +00:00
Cover *setToggleShown(rpl::producer<bool> &&shown) {
return static_cast<Cover*>(
SectionWithToggle::setToggleShown(std::move(shown)));
}
2018-09-05 19:39:35 +00:00
rpl::producer<Section> showSection() const {
return _showSection.events();
}
2017-10-25 16:32:22 +00:00
~Cover();
private:
void setupChildGeometry();
2019-06-10 15:47:22 +00:00
void initViewers(rpl::producer<QString> title);
void refreshStatusText();
void refreshNameGeometry(int newWidth);
void refreshStatusGeometry(int newWidth);
void refreshUploadPhotoOverlay();
2021-01-21 12:39:40 +00:00
void setBadge(Badge badge);
not_null<PeerData*> _peer;
int _onlineCount = 0;
2021-01-21 12:39:40 +00:00
Badge _badge = Badge();
object_ptr<Ui::UserpicButton> _userpic;
object_ptr<Ui::FlatLabel> _name = { nullptr };
2017-11-06 14:13:56 +00:00
object_ptr<Ui::RpWidget> _verifiedCheck = { nullptr };
2021-01-21 12:39:40 +00:00
object_ptr<Ui::RpWidget> _scamFakeBadge = { nullptr };
object_ptr<Ui::FlatLabel> _status = { nullptr };
//object_ptr<CoverDropArea> _dropArea = { nullptr };
base::Timer _refreshStatusTimer;
2018-09-05 19:39:35 +00:00
rpl::event_stream<Section> _showSection;
};
2017-09-25 16:06:53 +00:00
class SharedMediaCover : public SectionWithToggle {
public:
SharedMediaCover(QWidget *parent);
2017-11-21 09:20:56 +00:00
SharedMediaCover *setToggleShown(rpl::producer<bool> &&shown);
QMargins getMargins() const override;
private:
void createLabel();
};
} // namespace Profile
} // namespace Info