Flutter Engine
Loading...
Searching...
No Matches
text_decoration.h
Go to the documentation of this file.
1
// Copyright 2013 The Flutter Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
#ifndef FLUTTER_TXT_SRC_TXT_TEXT_DECORATION_H_
6
#define FLUTTER_TXT_SRC_TXT_TEXT_DECORATION_H_
7
8
namespace
txt
{
9
10
// Multiple decorations can be applied at once. Ex: Underline and overline is
11
// (0x1 | 0x2)
12
enum
TextDecoration
{
13
kNone
= 0x0,
14
kUnderline
= 0x1,
15
kOverline
= 0x2,
16
kLineThrough
= 0x4,
17
};
18
19
enum
TextDecorationStyle
{
kSolid
,
kDouble
,
kDotted
,
kDashed
,
kWavy
};
20
21
}
// namespace txt
22
23
#endif
// FLUTTER_TXT_SRC_TXT_TEXT_DECORATION_H_
flutter::kNone
@ kNone
Definition
layer.h:43
txt
Definition
paragraph_builder_skia.cc:15
txt::TextDecoration
TextDecoration
Definition
text_decoration.h:12
txt::kUnderline
@ kUnderline
Definition
text_decoration.h:14
txt::kLineThrough
@ kLineThrough
Definition
text_decoration.h:16
txt::kOverline
@ kOverline
Definition
text_decoration.h:15
txt::TextDecorationStyle
TextDecorationStyle
Definition
text_decoration.h:19
txt::kDotted
@ kDotted
Definition
text_decoration.h:19
txt::kDashed
@ kDashed
Definition
text_decoration.h:19
txt::kSolid
@ kSolid
Definition
text_decoration.h:19
txt::kDouble
@ kDouble
Definition
text_decoration.h:19
txt::kWavy
@ kWavy
Definition
text_decoration.h:19
txt
src
txt
text_decoration.h
Generated on Thu Nov 6 2025 16:11:30 for Flutter Engine by
1.9.8