mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-05-07 15:19:56 +09:00
Add application audio option
This commit is contained in:
24
include/gui/LineSeparator.hpp
Normal file
24
include/gui/LineSeparator.hpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "Widget.hpp"
|
||||
|
||||
namespace gsr {
|
||||
class LineSeparator : public Widget {
|
||||
public:
|
||||
enum class Type {
|
||||
HORIZONTAL
|
||||
};
|
||||
|
||||
LineSeparator(Type type, float width);
|
||||
LineSeparator(const LineSeparator&) = delete;
|
||||
LineSeparator& operator=(const LineSeparator&) = delete;
|
||||
|
||||
bool on_event(mgl::Event &event, mgl::Window &window, mgl::vec2f offset) override;
|
||||
void draw(mgl::Window &window, mgl::vec2f offset) override;
|
||||
|
||||
mgl::vec2f get_size() override;
|
||||
private:
|
||||
Type type;
|
||||
float width;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user