tcell/attr.go

39 lines
1.3 KiB
Go
Raw Normal View History

// 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.
2015-09-27 14:37:54 +08:00
type AttrMask int
// Attributes are not colors, but affect the display of text. They can
// 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 (
AttrBold AttrMask = 1 << iota
2015-09-27 14:37:54 +08:00
AttrBlink
AttrReverse
AttrUnderline
AttrDim
2020-03-27 01:09:10 +08:00
AttrItalic
2020-08-31 23:28:45 +08:00
AttrStrikeThrough
AttrDoubleUnderline
AttrCurlyUnderline
AttrDottedUnderline
AttrDashedUnderline
AttrInvalid AttrMask = 1 << 31 // Mark the style or attributes invalid
AttrNone AttrMask = 0 // Just normal text.
2015-09-27 14:37:54 +08:00
)