78 lines
2.1 KiB
C++
78 lines
2.1 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 "settings/settings_common.h"
|
|
#include "ui/effects/animations.h"
|
|
#include "base/timer.h"
|
|
|
|
namespace style {
|
|
struct Checkbox;
|
|
struct Radio;
|
|
} // namespace style
|
|
|
|
namespace Calls {
|
|
class Call;
|
|
} // namespace Calls
|
|
|
|
namespace Ui {
|
|
class LevelMeter;
|
|
} // namespace Ui
|
|
|
|
namespace Webrtc {
|
|
class AudioInputTester;
|
|
} // namespace Webrtc
|
|
|
|
class SingleChoiceBox;
|
|
|
|
namespace Settings {
|
|
|
|
class Calls : public Section {
|
|
public:
|
|
Calls(QWidget *parent, not_null<Window::SessionController*> controller);
|
|
~Calls();
|
|
|
|
void sectionSaveChanges(FnMut<void()> done) override;
|
|
|
|
private:
|
|
void setupContent();
|
|
void requestPermissionAndStartTestingMicrophone();
|
|
void startTestingMicrophone();
|
|
|
|
const not_null<Window::SessionController*> _controller;
|
|
rpl::event_stream<QString> _cameraNameStream;
|
|
rpl::event_stream<QString> _outputNameStream;
|
|
rpl::event_stream<QString> _inputNameStream;
|
|
std::unique_ptr<Webrtc::AudioInputTester> _micTester;
|
|
Ui::LevelMeter *_micTestLevel = nullptr;
|
|
float _micLevel = 0.;
|
|
Ui::Animations::Simple _micLevelAnimation;
|
|
base::Timer _levelUpdateTimer;
|
|
|
|
};
|
|
|
|
inline constexpr auto kMicTestUpdateInterval = crl::time(100);
|
|
inline constexpr auto kMicTestAnimationDuration = crl::time(200);
|
|
|
|
[[nodiscard]] QString CurrentAudioOutputName();
|
|
[[nodiscard]] QString CurrentAudioInputName();
|
|
[[nodiscard]] object_ptr<SingleChoiceBox> ChooseAudioOutputBox(
|
|
Fn<void(QString id, QString name)> chosen,
|
|
const style::Checkbox *st = nullptr,
|
|
const style::Radio *radioSt = nullptr);
|
|
[[nodiscard]] object_ptr<SingleChoiceBox> ChooseAudioInputBox(
|
|
Fn<void(QString id, QString name)> chosen,
|
|
const style::Checkbox *st = nullptr,
|
|
const style::Radio *radioSt = nullptr);
|
|
[[nodiscard]] object_ptr<SingleChoiceBox> ChooseAudioBackendBox(
|
|
const style::Checkbox *st = nullptr,
|
|
const style::Radio *radioSt = nullptr);
|
|
|
|
} // namespace Settings
|
|
|