79 lines
1.7 KiB
C++
79 lines
1.7 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/slide_wrap.h"
|
|
#include "ui/effects/animations.h"
|
|
#include "base/object_ptr.h"
|
|
|
|
class Painter;
|
|
|
|
namespace Ui {
|
|
|
|
class PlainShadow;
|
|
class RoundButton;
|
|
struct GroupCallUser;
|
|
class GroupCallUserpics;
|
|
|
|
struct GroupCallBarContent {
|
|
int count = 0;
|
|
bool shown = false;
|
|
std::vector<GroupCallUser> users;
|
|
};
|
|
|
|
class GroupCallBar final {
|
|
public:
|
|
GroupCallBar(
|
|
not_null<QWidget*> parent,
|
|
rpl::producer<GroupCallBarContent> content,
|
|
rpl::producer<bool> &&hideBlobs);
|
|
~GroupCallBar();
|
|
|
|
void show();
|
|
void hide();
|
|
void raise();
|
|
void finishAnimating();
|
|
|
|
void setShadowGeometryPostprocess(Fn<QRect(QRect)> postprocess);
|
|
|
|
void move(int x, int y);
|
|
void resizeToWidth(int width);
|
|
[[nodiscard]] int height() const;
|
|
[[nodiscard]] rpl::producer<int> heightValue() const;
|
|
[[nodiscard]] rpl::producer<> barClicks() const;
|
|
[[nodiscard]] rpl::producer<> joinClicks() const;
|
|
|
|
[[nodiscard]] rpl::lifetime &lifetime() {
|
|
return _wrap.lifetime();
|
|
}
|
|
|
|
private:
|
|
using User = GroupCallUser;
|
|
|
|
void updateShadowGeometry(QRect wrapGeometry);
|
|
void updateControlsGeometry(QRect wrapGeometry);
|
|
void updateUserpics();
|
|
void setupInner();
|
|
void paint(Painter &p);
|
|
|
|
SlideWrap<> _wrap;
|
|
not_null<RpWidget*> _inner;
|
|
std::unique_ptr<RoundButton> _join;
|
|
std::unique_ptr<PlainShadow> _shadow;
|
|
rpl::event_stream<> _barClicks;
|
|
Fn<QRect(QRect)> _shadowGeometryPostprocess;
|
|
bool _shouldBeShown = false;
|
|
bool _forceHidden = false;
|
|
|
|
GroupCallBarContent _content;
|
|
std::unique_ptr<GroupCallUserpics> _userpics;
|
|
|
|
};
|
|
|
|
} // namespace Ui
|