「App:Library:FabGL:Enumerations」の版間の差分
(ページの作成:「== [http://www.fabglib.org/group___enumerations.html Enumerations] == Enumerations (列挙) {| class="wikitable" |enum CharStyle { Bold, ReducedLuminosity, Italic,…」) |
|||
| 2行目: | 2行目: | ||
Enumerations (列挙) | Enumerations (列挙) | ||
{| class="wikitable" | {| class="wikitable" | ||
| − | |enum | + | |enum CharStyle { |
| − | Bold, ReducedLuminosity, Italic, Underline, | + | Bold, ReducedLuminosity, Italic, Underline, |
| − | Blink, Blank, Inverse | + | Blink, Blank, Inverse |
} | } | ||
| 12行目: | 12行目: | ||
This enum defines a character style. More... | This enum defines a character style. More... | ||
|- | |- | ||
| − | | | + | |enum ChipPackage { , ESP32D0WDQ6, ESP32D0WDQ5, ESP32D2WDQ5, ESP32PICOD4 } |
| + | |||
| + | This enum defines ESP32 module types (packages) More... | ||
|- | |- | ||
| − | | | + | |enum Color { |
| + | |||
| + | Black, Red, Green, Yellow, | ||
| + | |||
| + | Blue, Magenta, Cyan, White, | ||
| + | |||
| + | BrightBlack, BrightRed, BrightGreen, BrightYellow, | ||
| + | |||
| + | BrightBlue, BrightMagenta, BrightCyan, BrightWhite | ||
| + | |||
| + | } | ||
| + | |||
| + | This enum defines named colors. More... | ||
|- | |- | ||
| − | | | + | |enum CursorName : uint8_t { |
| + | |||
| + | CursorPointerAmigaLike, CursorPointerSimpleReduced, CursorPointerSimple, CursorPointerShadowed, | ||
| + | |||
| + | CursorPointer, CursorPen, CursorCross1, CursorCross2, | ||
| + | |||
| + | CursorPoint, CursorLeftArrow, CursorRightArrow, CursorDownArrow, | ||
| + | |||
| + | CursorUpArrow, CursorMove, CursorResize1, CursorResize2, | ||
| + | |||
| + | CursorResize3, CursorResize4, CursorTextInput | ||
| + | |||
| + | } | ||
| + | |||
| + | This enum defines a set of predefined mouse cursors. More... | ||
|- | |- | ||
| − | | | + | |enum DisplayControllerType { Textual, Bitmapped } |
| + | |||
| + | This enum defines types of display controllers. More... | ||
|- | |- | ||
| − | | | + | |enum DriveType { None, SPIFFS, SDCard } |
| + | |||
| + | This enum defines drive types (SPIFFS or SD Card) More... | ||
|- | |- | ||
| − | | | + | |enum FlowControl { None, Software, Hardware, Hardsoft } |
| + | |||
| + | This enum defines various serial port flow control methods. More... | ||
|- | |- | ||
| − | | | + | |enum InputResult { |
| + | |||
| + | None = 0, ButtonExt0 = 1, ButtonExt1 = 2, ButtonExt2 = 3, | ||
| + | |||
| + | ButtonExt3 = 4, Cancel = 5, ButtonLeft = 5, Enter = 6, | ||
| + | |||
| + | ButtonRight = 6 | ||
| + | |||
| + | } | ||
| + | |||
| + | Result of InputBox dialogs helper class. More... | ||
|- | |- | ||
| − | | | + | |enum KbdMode { NoVirtualKeys, GenerateVirtualKeys, CreateVirtualKeysQueue } |
| + | |||
| + | This enum defines how handle keyboard virtual keys. More... | ||
|- | |- | ||
| − | | | + | |enum LineEditorSpecialChar { CursorUp, CursorDown } |
| + | |||
| + | Special character specified in on values from LineEditor::onSpecialChar delegate. More... | ||
|- | |- | ||
| | | | ||
2022年3月21日 (月) 14:29時点における版
Enumerations
Enumerations (列挙)
| enum CharStyle {
Bold, ReducedLuminosity, Italic, Underline, Blink, Blank, Inverse } This enum defines a character style. More... |
| enum ChipPackage { , ESP32D0WDQ6, ESP32D0WDQ5, ESP32D2WDQ5, ESP32PICOD4 }
This enum defines ESP32 module types (packages) More... |
| enum Color {
Black, Red, Green, Yellow, Blue, Magenta, Cyan, White, BrightBlack, BrightRed, BrightGreen, BrightYellow, BrightBlue, BrightMagenta, BrightCyan, BrightWhite } This enum defines named colors. More... |
| enum CursorName : uint8_t {
CursorPointerAmigaLike, CursorPointerSimpleReduced, CursorPointerSimple, CursorPointerShadowed, CursorPointer, CursorPen, CursorCross1, CursorCross2, CursorPoint, CursorLeftArrow, CursorRightArrow, CursorDownArrow, CursorUpArrow, CursorMove, CursorResize1, CursorResize2, CursorResize3, CursorResize4, CursorTextInput } This enum defines a set of predefined mouse cursors. More... |
| enum DisplayControllerType { Textual, Bitmapped }
This enum defines types of display controllers. More... |
| enum DriveType { None, SPIFFS, SDCard }
This enum defines drive types (SPIFFS or SD Card) More... |
| enum FlowControl { None, Software, Hardware, Hardsoft }
This enum defines various serial port flow control methods. More... |
| enum InputResult {
None = 0, ButtonExt0 = 1, ButtonExt1 = 2, ButtonExt2 = 3, ButtonExt3 = 4, Cancel = 5, ButtonLeft = 5, Enter = 6, ButtonRight = 6 } Result of InputBox dialogs helper class. More... |
| enum KbdMode { NoVirtualKeys, GenerateVirtualKeys, CreateVirtualKeysQueue }
This enum defines how handle keyboard virtual keys. More... |
| enum LineEditorSpecialChar { CursorUp, CursorDown }
Special character specified in on values from LineEditor::onSpecialChar delegate. More... |