mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 11:12:49 +00:00
3c8c93d774
This commit adds a new widget for the bar: A Microphone widget. It is disabled by default and can can be enabled with AudioInput: true. Implements a flyin as well. https://github.com/scorpion-26/gBar/issues/5 for the ping
13 lines
209 B
C++
13 lines
209 B
C++
#pragma once
|
|
#include "Widget.h"
|
|
#include "Window.h"
|
|
|
|
namespace AudioFlyin
|
|
{
|
|
enum class Type
|
|
{
|
|
Speaker,
|
|
Microphone
|
|
};
|
|
void Create(Window& window, int32_t monitor, Type type);
|
|
}
|