tdesktop/Telegram/SourceFiles/calls/calls_top_bar.h

101 lines
2.3 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 "base/weak_ptr.h"
#include "base/timer.h"
2019-09-13 12:22:54 +00:00
#include "base/object_ptr.h"
#include "base/unique_qptr.h"
2020-12-01 11:56:32 +00:00
#include "ui/effects/animations.h"
#include "ui/effects/gradient.h"
2017-09-13 16:57:44 +00:00
#include "ui/rp_widget.h"
namespace Ui {
class IconButton;
class AbstractButton;
class LabelSimple;
class FlatLabel;
struct GroupCallUser;
class GroupCallUserpics;
} // namespace Ui
2019-08-06 16:40:08 +00:00
namespace Main {
class Session;
} // namespace Main
namespace Calls {
class Call;
2020-11-24 14:40:10 +00:00
class GroupCall;
2018-05-27 08:24:47 +00:00
class SignalBars;
class Mute;
2020-12-01 11:56:32 +00:00
enum class MuteState;
enum class BarState;
2020-07-16 16:23:55 +00:00
class TopBar : public Ui::RpWidget {
public:
TopBar(QWidget *parent, const base::weak_ptr<Call> &call);
2020-11-24 14:40:10 +00:00
TopBar(QWidget *parent, const base::weak_ptr<GroupCall> &call);
~TopBar();
2020-12-09 11:43:54 +00:00
void initBlobsUnder(
QWidget *blobsParent,
rpl::producer<QRect> barGeometry);
protected:
void resizeEvent(QResizeEvent *e) override;
void paintEvent(QPaintEvent *e) override;
private:
struct User;
2020-11-24 14:40:10 +00:00
TopBar(
QWidget *parent,
const base::weak_ptr<Call> &call,
const base::weak_ptr<GroupCall> &groupCall);
void initControls();
void updateInfoLabels();
void setInfoLabels();
void updateDurationText();
void updateControlsGeometry();
void startDurationUpdateTimer(crl::time currentDuration);
void setMuted(bool mute);
2020-11-29 13:12:46 +00:00
void subscribeToMembersChanges(not_null<GroupCall*> call);
void updateUserpics();
2020-11-29 13:12:46 +00:00
2019-08-06 16:40:08 +00:00
const base::weak_ptr<Call> _call;
2020-11-24 14:40:10 +00:00
const base::weak_ptr<GroupCall> _groupCall;
bool _muted = false;
std::vector<Ui::GroupCallUser> _users;
std::unique_ptr<Ui::GroupCallUserpics> _userpics;
int _userpicsWidth = 0;
object_ptr<Ui::LabelSimple> _durationLabel;
2018-05-27 08:24:47 +00:00
object_ptr<SignalBars> _signalBars;
object_ptr<Ui::FlatLabel> _fullInfoLabel;
object_ptr<Ui::FlatLabel> _shortInfoLabel;
object_ptr<Ui::LabelSimple> _hangupLabel;
object_ptr<Mute> _mute;
object_ptr<Ui::AbstractButton> _info;
object_ptr<Ui::IconButton> _hangup;
base::unique_qptr<Ui::RpWidget> _blobs;
rpl::variable<bool> _isGroupConnecting = false;
2020-12-01 11:56:32 +00:00
QBrush _groupBrush;
anim::linear_gradients<BarState> _gradients;
2020-12-01 11:56:32 +00:00
Ui::Animations::Simple _switchStateAnimation;
base::Timer _updateDurationTimer;
};
} // namespace Calls