diff options
| author | Jeff Carr <[email protected]> | 2025-02-02 13:05:42 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-02 15:04:07 -0600 |
| commit | d4b7cd32d47ab0307c650f711f784575ad0d8e2d (patch) | |
| tree | 18f8d174d27623dc55f80984786c8e4c7de0450a /widget.go | |
| parent | ad6bb0f1c1eab46d76d369bfb3453cecff254a96 (diff) | |
goimport lintv1.1.28
Diffstat (limited to 'widget.go')
| -rw-r--r-- | widget.go | 36 |
1 files changed, 18 insertions, 18 deletions
@@ -17,30 +17,30 @@ type WidgetType int // Button, Menu, Checkbox, etc. const ( Unknown WidgetType = iota + 1 - Root // the master 'root' node of the binary tree - Flag // used to send configuration values to plugins - Window // in certain gui's (ncurses), these are tabs - Tab // internally, this is a window - Frame // deprecate? - Grid // like drawers in a chest - Group // like the 'Appetizers' section on a menu - Box // a vertical or horizontal stack of widgets + Root // the master 'root' node of the binary tree + Flag // used to send configuration values to plugins + Window // in certain gui's (ncurses), these are tabs + Tab // internally, this is a window + Frame // deprecate? + Grid // like drawers in a chest + Group // like the 'Appetizers' section on a menu + Box // a vertical or horizontal stack of widgets Button Checkbox // select 'on' or 'off' Dropdown Combobox // dropdown with edit=true Label - Textbox // is this a Label with edit=true - Slider // like a progress bar - Spinner // like setting the oven temperature + Textbox // is this a Label with edit=true + Slider // like a progress bar + Spinner // like setting the oven temperature Separator // TODO - Image // TODO - Area // TODO - Form // TODO - Font // TODO - Color // TODO - Dialog // TODO - Stdout // can be used to capture and display log output + Image // TODO + Area // TODO + Form // TODO + Font // TODO + Color // TODO + Dialog // TODO + Stdout // can be used to capture and display log output ) func (s WidgetType) String() string { |
