82 lines
1.9 KiB
C++
82 lines
1.9 KiB
C++
/*
|
|
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 "base/timer.h"
|
|
|
|
namespace Window {
|
|
class SessionController;
|
|
} // namespace Window
|
|
|
|
namespace Ui {
|
|
class UserpicButton;
|
|
class FlatLabel;
|
|
template <typename Widget>
|
|
class SlideWrap;
|
|
} // namespace Ui
|
|
|
|
namespace Ui::Text {
|
|
struct CustomEmojiColored;
|
|
} // namespace Ui::Text
|
|
|
|
namespace Info {
|
|
class Controller;
|
|
class Section;
|
|
} // namespace Info
|
|
|
|
namespace Info::Profile {
|
|
|
|
class EmojiStatusPanel;
|
|
class Badge;
|
|
|
|
class Cover final : public Ui::FixedHeightWidget {
|
|
public:
|
|
Cover(
|
|
QWidget *parent,
|
|
not_null<PeerData*> peer,
|
|
not_null<Window::SessionController*> controller);
|
|
Cover(
|
|
QWidget *parent,
|
|
not_null<PeerData*> peer,
|
|
not_null<Window::SessionController*> controller,
|
|
rpl::producer<QString> title);
|
|
~Cover();
|
|
|
|
Cover *setOnlineCount(rpl::producer<int> &&count);
|
|
|
|
[[nodiscard]] rpl::producer<Section> showSection() const {
|
|
return _showSection.events();
|
|
}
|
|
|
|
private:
|
|
void setupChildGeometry();
|
|
void initViewers(rpl::producer<QString> title);
|
|
void refreshStatusText();
|
|
void refreshNameGeometry(int newWidth);
|
|
void refreshStatusGeometry(int newWidth);
|
|
void refreshUploadPhotoOverlay();
|
|
|
|
const not_null<Window::SessionController*> _controller;
|
|
const not_null<PeerData*> _peer;
|
|
const std::unique_ptr<EmojiStatusPanel> _emojiStatusPanel;
|
|
const std::unique_ptr<Badge> _badge;
|
|
int _onlineCount = 0;
|
|
|
|
object_ptr<Ui::UserpicButton> _userpic;
|
|
object_ptr<Ui::FlatLabel> _name = { nullptr };
|
|
object_ptr<Ui::FlatLabel> _status = { nullptr };
|
|
//object_ptr<CoverDropArea> _dropArea = { nullptr };
|
|
base::Timer _refreshStatusTimer;
|
|
|
|
rpl::event_stream<Section> _showSection;
|
|
|
|
};
|
|
|
|
} // namespace Info::Profile
|