mirror of https://github.com/procxx/kepka.git
				
				
				
			
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.2 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 "base/timer.h"
 | 
						|
 | 
						|
namespace Calls {
 | 
						|
class Call;
 | 
						|
} // namespace Calls
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class LevelMeter;
 | 
						|
} // namespace Ui
 | 
						|
 | 
						|
namespace tgvoip {
 | 
						|
class AudioInputTester;
 | 
						|
} // namespace tgvoip
 | 
						|
 | 
						|
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(not_null<Window::SessionController*> controller);
 | 
						|
	void requestPermissionAndStartTestingMicrophone();
 | 
						|
	void startTestingMicrophone();
 | 
						|
	void stopTestingMicrophone();
 | 
						|
 | 
						|
	rpl::event_stream<QString> _outputNameStream;
 | 
						|
	rpl::event_stream<QString> _inputNameStream;
 | 
						|
	rpl::event_stream<QString> _micTestTextStream;
 | 
						|
	bool _needWriteSettings = false;
 | 
						|
	std::unique_ptr<tgvoip::AudioInputTester> _micTester;
 | 
						|
	Ui::LevelMeter *_micTestLevel = nullptr;
 | 
						|
	base::Timer _levelUpdateTimer;
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
} // namespace Settings
 | 
						|
 |