2017-04-25 20:36:04 +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-04-25 20:36:04 +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-04-25 20:36:04 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-11-30 17:33:27 +00:00
|
|
|
#include "base/weak_ptr.h"
|
2017-04-25 20:36:04 +00:00
|
|
|
#include "base/timer.h"
|
2017-09-13 16:57:44 +00:00
|
|
|
#include "ui/rp_widget.h"
|
2017-04-25 20:36:04 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class IconButton;
|
|
|
|
class AbstractButton;
|
|
|
|
class LabelSimple;
|
2017-05-14 19:44:50 +00:00
|
|
|
class FlatLabel;
|
2017-04-25 20:36:04 +00:00
|
|
|
} // namespace Ui
|
|
|
|
|
|
|
|
namespace Calls {
|
|
|
|
|
|
|
|
class Call;
|
2018-05-27 08:24:47 +00:00
|
|
|
class SignalBars;
|
2017-04-25 20:36:04 +00:00
|
|
|
|
2017-09-13 16:57:44 +00:00
|
|
|
class TopBar : public Ui::RpWidget, private base::Subscriber {
|
2017-04-25 20:36:04 +00:00
|
|
|
public:
|
2017-11-30 17:33:27 +00:00
|
|
|
TopBar(QWidget *parent, const base::weak_ptr<Call> &call);
|
2017-04-25 20:36:04 +00:00
|
|
|
|
|
|
|
~TopBar();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void initControls();
|
2017-05-14 19:44:50 +00:00
|
|
|
void updateInfoLabels();
|
|
|
|
void setInfoLabels();
|
2017-04-25 20:36:04 +00:00
|
|
|
void updateDurationText();
|
|
|
|
void updateControlsGeometry();
|
2019-02-19 06:57:53 +00:00
|
|
|
void startDurationUpdateTimer(crl::time currentDuration);
|
2017-05-02 07:25:20 +00:00
|
|
|
void setMuted(bool mute);
|
2017-04-25 20:36:04 +00:00
|
|
|
|
2017-11-30 17:33:27 +00:00
|
|
|
base::weak_ptr<Call> _call;
|
2017-04-25 20:36:04 +00:00
|
|
|
|
|
|
|
bool _muted = false;
|
|
|
|
object_ptr<Ui::LabelSimple> _durationLabel;
|
2018-05-27 08:24:47 +00:00
|
|
|
object_ptr<SignalBars> _signalBars;
|
2017-05-14 19:44:50 +00:00
|
|
|
object_ptr<Ui::FlatLabel> _fullInfoLabel;
|
|
|
|
object_ptr<Ui::FlatLabel> _shortInfoLabel;
|
2017-04-25 20:36:04 +00:00
|
|
|
object_ptr<Ui::LabelSimple> _hangupLabel;
|
|
|
|
object_ptr<Ui::IconButton> _mute;
|
|
|
|
object_ptr<Ui::AbstractButton> _info;
|
|
|
|
object_ptr<Ui::IconButton> _hangup;
|
|
|
|
|
|
|
|
base::Timer _updateDurationTimer;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Calls
|