1234567891011121314151617 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- namespace Gfx {
- enum class TextWrapping {
- Wrap,
- DontWrap,
- };
- }
|