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"
|
2022-10-21 13:12:46 +00:00
|
|
|
#include "ui/abstract_button.h"
|
2017-11-24 15:51:47 +00:00
|
|
|
#include "base/timer.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 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
|
|
|
|
|
2022-10-18 12:38:43 +00:00
|
|
|
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
|
|
|
|
|
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
|
|
|
|
|
2022-10-14 16:53:06 +00:00
|
|
|
namespace style {
|
|
|
|
struct InfoProfileCover;
|
|
|
|
} // namespace style
|
|
|
|
|
2022-09-06 16:53:42 +00:00
|
|
|
namespace Info::Profile {
|
2022-08-11 17:22:21 +00:00
|
|
|
|
2022-09-06 16:53:42 +00:00
|
|
|
class EmojiStatusPanel;
|
|
|
|
class Badge;
|
2022-08-11 17:22:21 +00:00
|
|
|
|
2022-10-21 13:12:46 +00:00
|
|
|
class TopicIconView final : public Ui::AbstractButton {
|
|
|
|
public:
|
|
|
|
TopicIconView(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<Data::ForumTopic*> topic);
|
|
|
|
|
|
|
|
private:
|
|
|
|
using StickerPlayer = HistoryView::StickerPlayer;
|
|
|
|
|
|
|
|
void setup(
|
|
|
|
not_null<Data::ForumTopic*> topic,
|
|
|
|
Fn<bool()> paused);
|
|
|
|
void setupPlayer(not_null<Data::ForumTopic*> topic);
|
|
|
|
void setupImage(not_null<Data::ForumTopic*> topic);
|
|
|
|
|
|
|
|
std::shared_ptr<StickerPlayer> _player;
|
|
|
|
QImage _image;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-08-11 17:22:21 +00:00
|
|
|
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);
|
2022-10-14 16:53:06 +00:00
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<Data::ForumTopic*> topic,
|
|
|
|
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);
|
2022-09-06 16:53:42 +00:00
|
|
|
~Cover();
|
2017-09-25 09:02:55 +00:00
|
|
|
|
|
|
|
Cover *setOnlineCount(rpl::producer<int> &&count);
|
2017-09-25 16:06:53 +00:00
|
|
|
|
2022-09-06 16:53:42 +00:00
|
|
|
[[nodiscard]] rpl::producer<Section> showSection() const {
|
2018-09-05 19:39:35 +00:00
|
|
|
return _showSection.events();
|
|
|
|
}
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
private:
|
2022-10-14 16:53:06 +00:00
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<PeerData*> peer,
|
|
|
|
Data::ForumTopic *topic,
|
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
rpl::producer<QString> title);
|
|
|
|
|
2017-09-25 09:02:55 +00:00
|
|
|
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-10-14 16:53:06 +00:00
|
|
|
const style::InfoProfileCover &_st;
|
|
|
|
|
2022-06-03 12:11:44 +00:00
|
|
|
const not_null<Window::SessionController*> _controller;
|
|
|
|
const not_null<PeerData*> _peer;
|
2022-09-06 16:53:42 +00:00
|
|
|
const std::unique_ptr<EmojiStatusPanel> _emojiStatusPanel;
|
|
|
|
const std::unique_ptr<Badge> _badge;
|
2017-09-25 09:02:55 +00:00
|
|
|
int _onlineCount = 0;
|
|
|
|
|
2017-11-13 15:50:10 +00:00
|
|
|
object_ptr<Ui::UserpicButton> _userpic;
|
2022-10-21 13:12:46 +00:00
|
|
|
object_ptr<TopicIconView> _iconView;
|
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
|
|
|
};
|
|
|
|
|
2022-09-06 16:53:42 +00:00
|
|
|
} // namespace Info::Profile
|