bwidgets/inc/basic_widgets/vertical_layout.hpp

19 lines
357 B
C++
Raw Normal View History

2021-06-08 14:30:38 +02:00
#ifndef VERTICAL_LAYOUT_HPP
#define VERTICAL_LAYOUT_HPP
2021-07-09 13:50:17 +02:00
#include <basic_widgets/abstract/layout.hpp>
2021-06-08 14:30:38 +02:00
2021-07-10 19:55:53 +02:00
namespace bwidgets::widget
2021-06-08 14:30:38 +02:00
{
class Vertical_Layout final : public abstract::Layout
2021-07-10 19:55:53 +02:00
{
private:
void _update_layout() noexcept override;
public:
Widget::Size size() const noexcept override;
2021-07-10 19:55:53 +02:00
};
}
2021-06-08 14:30:38 +02:00
#endif