2017-09-25 09:02:55 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-09-25 09:02:55 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-09-25 09:02:55 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui/wrap/padding_wrap.h"
|
|
|
|
#include "ui/widgets/checkbox.h"
|
2017-11-24 15:51:47 +00:00
|
|
|
#include "base/timer.h"
|
2017-09-25 09:02:55 +00:00
|
|
|
|
|
|
|
namespace style {
|
|
|
|
struct InfoToggle;
|
|
|
|
} // namespace style
|
|
|
|
|
|
|
|
namespace Ui {
|
2017-11-13 15:50:10 +00:00
|
|
|
class UserpicButton;
|
2017-09-25 09:02:55 +00:00
|
|
|
class FlatLabel;
|
|
|
|
template <typename Widget>
|
|
|
|
class SlideWrap;
|
|
|
|
} // namespace Ui
|
|
|
|
|
2017-11-13 15:50:10 +00:00
|
|
|
namespace Info {
|
|
|
|
class Controller;
|
|
|
|
} // namespace Info
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
namespace Info {
|
|
|
|
namespace Profile {
|
|
|
|
|
2017-09-25 16:06:53 +00:00
|
|
|
class SectionWithToggle : public Ui::FixedHeightWidget {
|
|
|
|
public:
|
|
|
|
using FixedHeightWidget::FixedHeightWidget;
|
|
|
|
|
|
|
|
SectionWithToggle *setToggleShown(rpl::producer<bool> &&shown);
|
2017-11-12 17:46:20 +00:00
|
|
|
void toggle(bool toggled, anim::type animated);
|
2017-10-03 17:41:44 +00:00
|
|
|
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 {
|
2017-09-25 09:02:55 +00:00
|
|
|
public:
|
2017-11-13 15:50:10 +00:00
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
2018-01-22 19:51:38 +00:00
|
|
|
not_null<Controller*> controller);
|
2017-09-25 09:02:55 +00:00
|
|
|
|
|
|
|
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)));
|
|
|
|
}
|
2017-09-25 09:02:55 +00:00
|
|
|
|
2017-10-25 16:32:22 +00:00
|
|
|
~Cover();
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
private:
|
|
|
|
void setupChildGeometry();
|
|
|
|
void initViewers();
|
|
|
|
void refreshNameText();
|
|
|
|
void refreshStatusText();
|
|
|
|
void refreshNameGeometry(int newWidth);
|
|
|
|
void refreshStatusGeometry(int newWidth);
|
2017-11-13 17:12:36 +00:00
|
|
|
void refreshUploadPhotoOverlay();
|
2017-11-06 14:13:56 +00:00
|
|
|
void setVerified(bool verified);
|
2017-09-25 09:02:55 +00:00
|
|
|
|
2017-11-17 17:02:49 +00:00
|
|
|
not_null<Controller*> _controller;
|
2017-09-25 09:02:55 +00:00
|
|
|
not_null<PeerData*> _peer;
|
|
|
|
int _onlineCount = 0;
|
|
|
|
|
2017-11-13 15:50:10 +00:00
|
|
|
object_ptr<Ui::UserpicButton> _userpic;
|
2017-09-25 09:02:55 +00:00
|
|
|
object_ptr<Ui::FlatLabel> _name = { nullptr };
|
2017-11-06 14:13:56 +00:00
|
|
|
object_ptr<Ui::RpWidget> _verifiedCheck = { nullptr };
|
2017-09-25 09:02:55 +00:00
|
|
|
object_ptr<Ui::FlatLabel> _status = { nullptr };
|
|
|
|
//object_ptr<CoverDropArea> _dropArea = { nullptr };
|
2017-11-24 15:51:47 +00:00
|
|
|
base::Timer _refreshStatusTimer;
|
2017-09-25 09:02:55 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2017-09-25 16:06:53 +00:00
|
|
|
class SharedMediaCover : public SectionWithToggle {
|
2017-09-25 09:02:55 +00:00
|
|
|
public:
|
|
|
|
SharedMediaCover(QWidget *parent);
|
|
|
|
|
2017-11-21 09:20:56 +00:00
|
|
|
SharedMediaCover *setToggleShown(rpl::producer<bool> &&shown);
|
2017-09-25 09:02:55 +00:00
|
|
|
|
|
|
|
QMargins getMargins() const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void createLabel();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Profile
|
|
|
|
} // namespace Info
|