Clean project structure.
This commit is contained in:
parent
78a4fa99ff
commit
947bf937fd
496 changed files with 206 additions and 137 deletions
23
src/ui/ui_controls/ButtonGroup.h
Normal file
23
src/ui/ui_controls/ButtonGroup.h
Normal file
|
@ -0,0 +1,23 @@
|
|||
#pragma once
|
||||
|
||||
#include "Widget.h"
|
||||
|
||||
class ButtonGroup : public Widget
|
||||
{
|
||||
public:
|
||||
|
||||
enum class Orientation
|
||||
{
|
||||
HORIZONTAL,
|
||||
VERTICAL
|
||||
};
|
||||
|
||||
ButtonGroup();
|
||||
|
||||
~ButtonGroup();
|
||||
|
||||
static std::unique_ptr<ButtonGroup> Create();
|
||||
|
||||
private:
|
||||
bool mExclusiveActivation{true};
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue