/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace GUI { class BoxLayout : public Layout { C_OBJECT(BoxLayout); public: virtual ~BoxLayout() override = default; Gfx::Orientation orientation() const { return m_orientation; } virtual void run(Widget&) override; virtual UISize preferred_size() const override; virtual UISize min_size() const override; protected: explicit BoxLayout(Gfx::Orientation); private: Gfx::Orientation m_orientation; }; class VerticalBoxLayout final : public BoxLayout { C_OBJECT(VerticalBoxLayout); private: explicit VerticalBoxLayout() : BoxLayout(Gfx::Orientation::Vertical) { } virtual ~VerticalBoxLayout() override = default; }; class HorizontalBoxLayout final : public BoxLayout { C_OBJECT(HorizontalBoxLayout); private: explicit HorizontalBoxLayout() : BoxLayout(Gfx::Orientation::Horizontal) { } virtual ~HorizontalBoxLayout() override = default; }; }