HikoGUI
A low latency retained GUI
Loading...
Searching...
No Matches
src
TTauri
Widgets
ContainerWidget.hpp
1
// Copyright 2020 Pokitec
2
// All rights reserved.
3
4
#pragma once
5
6
#include "TTauri/Widgets/Widget.hpp"
7
8
namespace
tt {
9
10
class
ContainerWidget
:
public
Widget
{
11
public
:
12
ContainerWidget
(
Window
&window,
Widget
*parent)
noexcept
:
13
Widget
(window, parent,
vec
{0.0, 0.0}) {}
14
15
~ContainerWidget
() {}
16
17
ContainerWidget
(
const
ContainerWidget
&) =
delete
;
18
ContainerWidget
&operator=(
const
ContainerWidget
&) =
delete
;
19
ContainerWidget
(
ContainerWidget
&&) =
delete
;
20
ContainerWidget
&operator=(
ContainerWidget
&&) =
delete
;
21
};
22
23
}
tt::vec
A 4D vector.
Definition
vec.hpp:37
tt::Window_vulkan_win32
Definition
Window_vulkan_win32.hpp:15
tt::ContainerWidget
Definition
ContainerWidget.hpp:10
tt::Widget
Definition
Widget.hpp:64
tt::Widget::Widget
Widget(Window &window, Widget *parent, vec defaultExtent) noexcept
Generated on Mon Apr 22 2024 12:53:56 for HikoGUI by
1.10.0