1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2022, the SerenityOS developers.
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <LibGUI/Forward.h>
- #include <LibGUI/Layout.h>
- #include <LibGfx/Orientation.h>
- 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 Gfx::IntSize preferred_size() const override;
- protected:
- explicit BoxLayout(Gfx::Orientation);
- private:
- int preferred_primary_size() const;
- int preferred_secondary_size() const;
- 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;
- };
- }
|