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

163 lines
3.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/abstract_button.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 Ui {
class UserpicButton;
class FlatLabel;
template <typename Widget>
class SlideWrap;
class RoundButton;
} // namespace Ui
namespace HistoryView {
class StickerPlayer;
} // namespace HistoryView
2022-08-31 08:29:09 +00:00
2022-10-14 16:53:06 +00:00
namespace Data {
class ForumTopic;
} // namespace Data
namespace Info {
class Controller;
2018-09-05 19:39:35 +00:00
class Section;
} // namespace Info
2022-10-14 16:53:06 +00:00
namespace style {
struct InfoProfileCover;
} // namespace style
namespace Info::Profile {
class EmojiStatusPanel;
class Badge;
2022-10-25 16:40:26 +00:00
class TopicIconView final {
public:
TopicIconView(
2022-10-25 16:40:26 +00:00
not_null<Data::ForumTopic*> topic,
Fn<bool()> paused,
Fn<void()> update);
TopicIconView(
not_null<Data::ForumTopic*> topic,
Fn<bool()> paused,
Fn<void()> update,
const style::color &generalIconFg);
2022-10-25 16:40:26 +00:00
void paintInRect(QPainter &p, QRect rect);
private:
using StickerPlayer = HistoryView::StickerPlayer;
2022-10-25 16:40:26 +00:00
void setup(not_null<Data::ForumTopic*> topic);
void setupPlayer(not_null<Data::ForumTopic*> topic);
void setupImage(not_null<Data::ForumTopic*> topic);
2022-10-25 16:40:26 +00:00
const not_null<Data::ForumTopic*> _topic;
const style::color &_generalIconFg;
2022-10-25 16:40:26 +00:00
Fn<bool()> _paused;
Fn<void()> _update;
std::shared_ptr<StickerPlayer> _player;
QImage _image;
2022-10-25 16:40:26 +00:00
rpl::lifetime _lifetime;
};
class TopicIconButton final : public Ui::AbstractButton {
public:
TopicIconButton(
QWidget *parent,
not_null<Window::SessionController*> controller,
not_null<Data::ForumTopic*> topic);
private:
TopicIconView _view;
};
class Cover final : public Ui::FixedHeightWidget {
public:
2022-12-19 11:48:24 +00:00
enum class Role {
Info,
EditContact,
};
Cover(
QWidget *parent,
2022-12-19 11:48:24 +00:00
not_null<Window::SessionController*> controller,
not_null<PeerData*> peer);
2022-10-14 16:53:06 +00:00
Cover(
QWidget *parent,
2022-12-19 11:48:24 +00:00
not_null<Window::SessionController*> controller,
not_null<Data::ForumTopic*> topic);
2019-06-10 15:47:22 +00:00
Cover(
QWidget *parent,
not_null<Window::SessionController*> controller,
2022-12-19 11:48:24 +00:00
not_null<PeerData*> peer,
Role role,
2019-06-10 15:47:22 +00:00
rpl::producer<QString> title);
~Cover();
Cover *setOnlineCount(rpl::producer<int> &&count);
2017-09-25 16:06:53 +00:00
[[nodiscard]] rpl::producer<Section> showSection() const {
2018-09-05 19:39:35 +00:00
return _showSection.events();
}
[[nodiscard]] std::optional<QImage> updatedPersonalPhoto() const;
2018-09-05 19:39:35 +00:00
private:
2022-10-14 16:53:06 +00:00
Cover(
QWidget *parent,
2022-12-19 11:48:24 +00:00
not_null<Window::SessionController*> controller,
2022-10-14 16:53:06 +00:00
not_null<PeerData*> peer,
Data::ForumTopic *topic,
2022-12-19 11:48:24 +00:00
Role role,
2022-10-14 16:53:06 +00:00
rpl::producer<QString> title);
void setupShowLastSeen();
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();
void setupChangePersonal();
2022-10-14 16:53:06 +00:00
const style::InfoProfileCover &_st;
2022-12-19 11:48:24 +00:00
const Role _role = Role::Info;
const not_null<Window::SessionController*> _controller;
const not_null<PeerData*> _peer;
const std::unique_ptr<EmojiStatusPanel> _emojiStatusPanel;
const std::unique_ptr<Badge> _badge;
2022-12-16 14:22:56 +00:00
rpl::variable<int> _onlineCount;
object_ptr<Ui::UserpicButton> _userpic;
Ui::UserpicButton *_changePersonal = nullptr;
std::optional<QImage> _personalChosen;
2022-10-25 16:40:26 +00:00
object_ptr<TopicIconButton> _iconButton;
object_ptr<Ui::FlatLabel> _name = { nullptr };
object_ptr<Ui::FlatLabel> _status = { nullptr };
object_ptr<Ui::RoundButton> _showLastSeen = { nullptr };
//object_ptr<CoverDropArea> _dropArea = { nullptr };
base::Timer _refreshStatusTimer;
2018-09-05 19:39:35 +00:00
rpl::event_stream<Section> _showSection;
};
} // namespace Info::Profile