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"
|
2022-08-11 17:22:21 +00:00
|
|
|
#include "base/flags.h"
|
2017-09-25 09:02:55 +00:00
|
|
|
|
2018-09-05 19:39:35 +00:00
|
|
|
namespace Window {
|
2019-06-06 10:21:40 +00:00
|
|
|
class SessionController;
|
2018-09-05 19:39:35 +00:00
|
|
|
} // namespace Window
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
namespace style {
|
|
|
|
struct InfoToggle;
|
2022-08-11 17:22:21 +00:00
|
|
|
struct InfoPeerBadge;
|
2017-09-25 09:02:55 +00:00
|
|
|
} // namespace style
|
|
|
|
|
2022-08-09 17:15:42 +00:00
|
|
|
namespace ChatHelpers {
|
|
|
|
class TabbedPanel;
|
|
|
|
} // namespace ChatHelpers
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
namespace Ui {
|
2022-06-03 12:11:44 +00:00
|
|
|
class AbstractButton;
|
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;
|
2018-09-05 19:39:35 +00:00
|
|
|
class Section;
|
2017-11-13 15:50:10 +00:00
|
|
|
} // namespace Info
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
namespace Info {
|
|
|
|
namespace Profile {
|
|
|
|
|
2022-08-11 17:22:21 +00:00
|
|
|
enum class Badge {
|
|
|
|
None = 0x00,
|
|
|
|
Verified = 0x01,
|
|
|
|
Premium = 0x02,
|
|
|
|
Scam = 0x04,
|
|
|
|
Fake = 0x08,
|
|
|
|
};
|
|
|
|
inline constexpr bool is_flag_type(Badge) { return true; }
|
|
|
|
|
|
|
|
class BadgeView final {
|
|
|
|
public:
|
|
|
|
BadgeView(
|
|
|
|
not_null<QWidget*> parent,
|
|
|
|
const style::InfoPeerBadge &st,
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
Fn<bool()> animationPaused,
|
|
|
|
base::flags<Badge> allowed = base::flags<Badge>::from_raw(-1));
|
|
|
|
|
|
|
|
[[nodiscard]] Ui::RpWidget *widget() const;
|
|
|
|
|
|
|
|
void setPremiumClickCallback(Fn<void()> callback);
|
|
|
|
[[nodiscrd]] rpl::producer<> updated() const;
|
|
|
|
void move(int left, int top, int bottom);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setBadge(Badge badge, DocumentId emojiStatusId);
|
|
|
|
|
|
|
|
const not_null<QWidget*> _parent;
|
|
|
|
const style::InfoPeerBadge &_st;
|
|
|
|
const not_null<PeerData*> _peer;
|
|
|
|
DocumentId _emojiStatusId = 0;
|
|
|
|
std::unique_ptr<Ui::Text::CustomEmoji> _emojiStatus;
|
|
|
|
base::flags<Badge> _allowed;
|
|
|
|
Badge _badge = Badge();
|
|
|
|
Fn<void()> _premiumClickCallback;
|
|
|
|
Fn<bool()> _animationPaused;
|
|
|
|
object_ptr<Ui::AbstractButton> _view = { nullptr };
|
|
|
|
rpl::event_stream<> _updated;
|
|
|
|
rpl::lifetime _lifetime;
|
2021-01-21 12:39:40 +00:00
|
|
|
|
2022-08-11 17:22:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class EmojiStatusPanel final {
|
|
|
|
public:
|
|
|
|
void show(
|
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<QWidget*> button);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void create(not_null<Window::SessionController*> controller);
|
|
|
|
|
|
|
|
base::unique_qptr<ChatHelpers::TabbedPanel> _panel;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class Cover final : public Ui::FixedHeightWidget {
|
2017-09-25 09:02:55 +00:00
|
|
|
public:
|
2017-11-13 15:50:10 +00:00
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
2018-09-05 19:39:35 +00:00
|
|
|
not_null<PeerData*> peer,
|
2019-06-06 10:21:40 +00:00
|
|
|
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);
|
2017-09-25 09:02:55 +00:00
|
|
|
|
|
|
|
Cover *setOnlineCount(rpl::producer<int> &&count);
|
2017-09-25 16:06:53 +00:00
|
|
|
|
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();
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
private:
|
|
|
|
void setupChildGeometry();
|
2019-06-10 15:47:22 +00:00
|
|
|
void initViewers(rpl::producer<QString> title);
|
2017-09-25 09:02:55 +00:00
|
|
|
void refreshStatusText();
|
|
|
|
void refreshNameGeometry(int newWidth);
|
|
|
|
void refreshStatusGeometry(int newWidth);
|
2017-11-13 17:12:36 +00:00
|
|
|
void refreshUploadPhotoOverlay();
|
2017-09-25 09:02:55 +00:00
|
|
|
|
2022-06-03 12:11:44 +00:00
|
|
|
const not_null<Window::SessionController*> _controller;
|
|
|
|
const not_null<PeerData*> _peer;
|
2022-08-11 17:22:21 +00:00
|
|
|
BadgeView _badge;
|
|
|
|
EmojiStatusPanel _emojiStatusPanel;
|
2017-09-25 09:02:55 +00:00
|
|
|
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 };
|
|
|
|
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
|
|
|
|
2018-09-05 19:39:35 +00:00
|
|
|
rpl::event_stream<Section> _showSection;
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Profile
|
|
|
|
} // namespace Info
|