Initial commit.
This commit is contained in:
commit
59c6161fdb
134 changed files with 4751 additions and 0 deletions
18
src/ui_elements/widgets/HorizontalSpacer.h
Normal file
18
src/ui_elements/widgets/HorizontalSpacer.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#pragma once
|
||||
|
||||
#include "Widget.h"
|
||||
|
||||
class HorizontalSpacer : public Widget
|
||||
{
|
||||
|
||||
public:
|
||||
HorizontalSpacer();
|
||||
|
||||
static std::shared_ptr<HorizontalSpacer> Create();
|
||||
|
||||
void AddChildLayers(PaintEventPtr event) override;
|
||||
|
||||
void OnPaintEvent(PaintEventPtr event) override;
|
||||
};
|
||||
|
||||
using HorizontalSpacerPtr = std::shared_ptr<HorizontalSpacer>;
|
Loading…
Add table
Add a link
Reference in a new issue