Clean project structure.
This commit is contained in:
parent
78a4fa99ff
commit
947bf937fd
496 changed files with 206 additions and 137 deletions
15
src/ui/ui_controls/StackWidget.h
Normal file
15
src/ui/ui_controls/StackWidget.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
#include "Widget.h"
|
||||
|
||||
class StackWidget : public Widget
|
||||
{
|
||||
public:
|
||||
StackWidget();
|
||||
|
||||
static std::unique_ptr<StackWidget> Create();
|
||||
|
||||
void showChild(Widget* child);
|
||||
};
|
||||
|
||||
using StackWidgetUPtr = std::unique_ptr<StackWidget>;
|
Loading…
Add table
Add a link
Reference in a new issue