2017-09-25 12:02:55 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-09-25 12:02:55 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-09-25 12:02:55 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ui/wrap/padding_wrap.h"
|
2022-10-21 17:12:46 +04:00
|
|
|
#include "ui/abstract_button.h"
|
2017-11-24 19:51:47 +04:00
|
|
|
#include "base/timer.h"
|
2017-09-25 12:02:55 +03:00
|
|
|
|
2018-09-05 22:39:35 +03:00
|
|
|
namespace Window {
|
2019-06-06 13:21:40 +03:00
|
|
|
class SessionController;
|
2018-09-05 22:39:35 +03:00
|
|
|
} // namespace Window
|
|
|
|
|
2017-09-25 12:02:55 +03:00
|
|
|
namespace Ui {
|
2017-11-13 19:50:10 +04:00
|
|
|
class UserpicButton;
|
2017-09-25 12:02:55 +03:00
|
|
|
class FlatLabel;
|
|
|
|
template <typename Widget>
|
|
|
|
class SlideWrap;
|
2024-01-11 11:06:30 +04:00
|
|
|
class RoundButton;
|
2017-09-25 12:02:55 +03:00
|
|
|
} // namespace Ui
|
|
|
|
|
2022-10-18 16:38:43 +04:00
|
|
|
namespace HistoryView {
|
|
|
|
class StickerPlayer;
|
|
|
|
} // namespace HistoryView
|
2022-08-31 12:29:09 +04:00
|
|
|
|
2022-10-14 20:53:06 +04:00
|
|
|
namespace Data {
|
|
|
|
class ForumTopic;
|
|
|
|
} // namespace Data
|
|
|
|
|
2017-11-13 19:50:10 +04:00
|
|
|
namespace Info {
|
|
|
|
class Controller;
|
2018-09-05 22:39:35 +03:00
|
|
|
class Section;
|
2017-11-13 19:50:10 +04:00
|
|
|
} // namespace Info
|
|
|
|
|
2022-10-14 20:53:06 +04:00
|
|
|
namespace style {
|
|
|
|
struct InfoProfileCover;
|
|
|
|
} // namespace style
|
|
|
|
|
2022-09-06 20:53:42 +04:00
|
|
|
namespace Info::Profile {
|
2022-08-11 20:22:21 +03:00
|
|
|
|
2022-09-06 20:53:42 +04:00
|
|
|
class EmojiStatusPanel;
|
|
|
|
class Badge;
|
2022-08-11 20:22:21 +03:00
|
|
|
|
2022-10-25 20:40:26 +04:00
|
|
|
class TopicIconView final {
|
2022-10-21 17:12:46 +04:00
|
|
|
public:
|
|
|
|
TopicIconView(
|
2022-10-25 20:40:26 +04:00
|
|
|
not_null<Data::ForumTopic*> topic,
|
|
|
|
Fn<bool()> paused,
|
|
|
|
Fn<void()> update);
|
2022-11-29 18:27:56 +04:00
|
|
|
TopicIconView(
|
|
|
|
not_null<Data::ForumTopic*> topic,
|
|
|
|
Fn<bool()> paused,
|
|
|
|
Fn<void()> update,
|
|
|
|
const style::color &generalIconFg);
|
2022-10-25 20:40:26 +04:00
|
|
|
|
|
|
|
void paintInRect(QPainter &p, QRect rect);
|
2022-10-21 17:12:46 +04:00
|
|
|
|
|
|
|
private:
|
|
|
|
using StickerPlayer = HistoryView::StickerPlayer;
|
|
|
|
|
2022-10-25 20:40:26 +04:00
|
|
|
void setup(not_null<Data::ForumTopic*> topic);
|
2022-10-21 17:12:46 +04:00
|
|
|
void setupPlayer(not_null<Data::ForumTopic*> topic);
|
|
|
|
void setupImage(not_null<Data::ForumTopic*> topic);
|
|
|
|
|
2022-10-25 20:40:26 +04:00
|
|
|
const not_null<Data::ForumTopic*> _topic;
|
2022-11-29 18:27:56 +04:00
|
|
|
const style::color &_generalIconFg;
|
2022-10-25 20:40:26 +04:00
|
|
|
Fn<bool()> _paused;
|
|
|
|
Fn<void()> _update;
|
2022-10-21 17:12:46 +04:00
|
|
|
std::shared_ptr<StickerPlayer> _player;
|
|
|
|
QImage _image;
|
2022-10-25 20:40:26 +04: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;
|
2022-10-21 17:12:46 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-08-11 20:22:21 +03:00
|
|
|
class Cover final : public Ui::FixedHeightWidget {
|
2017-09-25 12:02:55 +03:00
|
|
|
public:
|
2022-12-19 15:48:24 +04:00
|
|
|
enum class Role {
|
|
|
|
Info,
|
|
|
|
EditContact,
|
|
|
|
};
|
|
|
|
|
2017-11-13 19:50:10 +04:00
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
2022-12-19 15:48:24 +04:00
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<PeerData*> peer);
|
2022-10-14 20:53:06 +04:00
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
2022-12-19 15:48:24 +04:00
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<Data::ForumTopic*> topic);
|
2019-06-10 17:47:22 +02:00
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<Window::SessionController*> controller,
|
2022-12-19 15:48:24 +04:00
|
|
|
not_null<PeerData*> peer,
|
|
|
|
Role role,
|
2019-06-10 17:47:22 +02:00
|
|
|
rpl::producer<QString> title);
|
2022-09-06 20:53:42 +04:00
|
|
|
~Cover();
|
2017-09-25 12:02:55 +03:00
|
|
|
|
|
|
|
Cover *setOnlineCount(rpl::producer<int> &&count);
|
2017-09-25 19:06:53 +03:00
|
|
|
|
2022-09-06 20:53:42 +04:00
|
|
|
[[nodiscard]] rpl::producer<Section> showSection() const {
|
2018-09-05 22:39:35 +03:00
|
|
|
return _showSection.events();
|
|
|
|
}
|
2022-12-20 17:12:32 +04:00
|
|
|
[[nodiscard]] std::optional<QImage> updatedPersonalPhoto() const;
|
2018-09-05 22:39:35 +03:00
|
|
|
|
2017-09-25 12:02:55 +03:00
|
|
|
private:
|
2022-10-14 20:53:06 +04:00
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
2022-12-19 15:48:24 +04:00
|
|
|
not_null<Window::SessionController*> controller,
|
2022-10-14 20:53:06 +04:00
|
|
|
not_null<PeerData*> peer,
|
|
|
|
Data::ForumTopic *topic,
|
2022-12-19 15:48:24 +04:00
|
|
|
Role role,
|
2022-10-14 20:53:06 +04:00
|
|
|
rpl::producer<QString> title);
|
|
|
|
|
2024-01-11 11:06:30 +04:00
|
|
|
void setupShowLastSeen();
|
2017-09-25 12:02:55 +03:00
|
|
|
void setupChildGeometry();
|
2019-06-10 17:47:22 +02:00
|
|
|
void initViewers(rpl::producer<QString> title);
|
2017-09-25 12:02:55 +03:00
|
|
|
void refreshStatusText();
|
|
|
|
void refreshNameGeometry(int newWidth);
|
|
|
|
void refreshStatusGeometry(int newWidth);
|
2017-11-13 21:12:36 +04:00
|
|
|
void refreshUploadPhotoOverlay();
|
2022-12-20 17:12:32 +04:00
|
|
|
void setupChangePersonal();
|
2017-09-25 12:02:55 +03:00
|
|
|
|
2022-10-14 20:53:06 +04:00
|
|
|
const style::InfoProfileCover &_st;
|
|
|
|
|
2022-12-19 15:48:24 +04:00
|
|
|
const Role _role = Role::Info;
|
2022-06-03 16:11:44 +04:00
|
|
|
const not_null<Window::SessionController*> _controller;
|
|
|
|
const not_null<PeerData*> _peer;
|
2022-09-06 20:53:42 +04:00
|
|
|
const std::unique_ptr<EmojiStatusPanel> _emojiStatusPanel;
|
|
|
|
const std::unique_ptr<Badge> _badge;
|
2022-12-16 18:22:56 +04:00
|
|
|
rpl::variable<int> _onlineCount;
|
2017-09-25 12:02:55 +03:00
|
|
|
|
2017-11-13 19:50:10 +04:00
|
|
|
object_ptr<Ui::UserpicButton> _userpic;
|
2022-12-20 17:12:32 +04:00
|
|
|
Ui::UserpicButton *_changePersonal = nullptr;
|
|
|
|
std::optional<QImage> _personalChosen;
|
2022-10-25 20:40:26 +04:00
|
|
|
object_ptr<TopicIconButton> _iconButton;
|
2017-09-25 12:02:55 +03:00
|
|
|
object_ptr<Ui::FlatLabel> _name = { nullptr };
|
|
|
|
object_ptr<Ui::FlatLabel> _status = { nullptr };
|
2024-01-11 11:06:30 +04:00
|
|
|
object_ptr<Ui::RoundButton> _showLastSeen = { nullptr };
|
2017-09-25 12:02:55 +03:00
|
|
|
//object_ptr<CoverDropArea> _dropArea = { nullptr };
|
2017-11-24 19:51:47 +04:00
|
|
|
base::Timer _refreshStatusTimer;
|
2017-09-25 12:02:55 +03:00
|
|
|
|
2018-09-05 22:39:35 +03:00
|
|
|
rpl::event_stream<Section> _showSection;
|
|
|
|
|
2017-09-25 12:02:55 +03:00
|
|
|
};
|
|
|
|
|
2022-09-06 20:53:42 +04:00
|
|
|
} // namespace Info::Profile
|