2024-03-04 09:01:54 +08:00
|
|
|
// Copyright 2024 The TCell Authors
|
2015-09-27 14:37:54 +08:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the license at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package tcell
|
|
|
|
|
2015-10-06 06:46:51 +08:00
|
|
|
// AttrMask represents a mask of text attributes, apart from color.
|
|
|
|
// Note that support for attributes may vary widely across terminals.
|
2024-07-25 05:55:47 +08:00
|
|
|
type AttrMask int64
|
2015-09-27 14:37:54 +08:00
|
|
|
|
2015-11-05 11:18:59 +08:00
|
|
|
// Attributes are not colors, but affect the display of text. They can
|
2024-03-04 09:01:54 +08:00
|
|
|
// be combined, in some cases, but not others. (E.g. you can have Dim Italic,
|
|
|
|
// but only CurlyUnderline cannot be mixed with DottedUnderline.)
|
2015-09-27 14:37:54 +08:00
|
|
|
const (
|
2020-08-26 10:29:11 +08:00
|
|
|
AttrBold AttrMask = 1 << iota
|
2015-09-27 14:37:54 +08:00
|
|
|
AttrBlink
|
|
|
|
AttrReverse
|
2024-03-05 15:56:23 +08:00
|
|
|
AttrUnderline // Deprecated: Use UnderlineStyle
|
2015-09-27 14:37:54 +08:00
|
|
|
AttrDim
|
2020-03-27 01:09:10 +08:00
|
|
|
AttrItalic
|
2020-08-31 23:28:45 +08:00
|
|
|
AttrStrikeThrough
|
2024-03-04 09:01:54 +08:00
|
|
|
AttrInvalid AttrMask = 1 << 31 // Mark the style or attributes invalid
|
|
|
|
AttrNone AttrMask = 0 // Just normal text.
|
2015-09-27 14:37:54 +08:00
|
|
|
)
|