mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-07 00:30:59 +00:00
18 lines
260 B
C
18 lines
260 B
C
|
|
/*
|
||
|
|
* 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,
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|