TextElision.h 200 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Gfx {
  8. enum class TextElision {
  9. None,
  10. Right,
  11. };
  12. }