TabPosition.h 237 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2023, Andrew Kaster <akaster@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Gfx {
  8. enum TabPosition {
  9. Top,
  10. Bottom,
  11. Left,
  12. Right,
  13. };
  14. }
  15. using Gfx::TabPosition;