mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-05-04 05:58:13 +09:00
Add option to start replay on fullscreen
This commit is contained in:
@@ -9,7 +9,12 @@
|
||||
namespace gsr {
|
||||
class RadioButton : public Widget {
|
||||
public:
|
||||
RadioButton(mgl::Font *font);
|
||||
enum class Orientation {
|
||||
VERTICAL,
|
||||
HORIZONTAL
|
||||
};
|
||||
|
||||
RadioButton(mgl::Font *font, Orientation orientation);
|
||||
RadioButton(const RadioButton&) = delete;
|
||||
RadioButton& operator=(const RadioButton&) = delete;
|
||||
|
||||
@@ -32,6 +37,7 @@ namespace gsr {
|
||||
};
|
||||
|
||||
mgl::Font *font;
|
||||
Orientation orientation;
|
||||
std::vector<Item> items;
|
||||
size_t selected_item = 0;
|
||||
bool dirty = true;
|
||||
|
||||
Reference in New Issue
Block a user