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 /state.go | |
| parent | ad6bb0f1c1eab46d76d369bfb3453cecff254a96 (diff) | |
goimport lintv1.1.28
Diffstat (limited to 'state.go')
| -rw-r--r-- | state.go | 28 |
1 files changed, 15 insertions, 13 deletions
@@ -1,5 +1,7 @@ package widget +// TODO: redo this with protocol buffers + // This is the state of the widget // The whole state of the widget is sent @@ -11,14 +13,14 @@ package widget // just makes things more complicated for no good reason type State struct { // This is a unmodifiable string that is displayed to the user. - Label string + Label string // most primitive widgets just store a single thing // it is the default value - DefaultS string - CurrentS string - CurrentI int - NewString string + DefaultS string + CurrentS string + CurrentI int + NewString string // most primitive widgets just store a single thing // it is the default value @@ -64,19 +66,19 @@ type State struct { Strings []string // for widgets that use a range - Range RangeType + Range RangeType - Geom Geom - Size Size + Geom Geom + Size Size - GridSize GridSize + GridSize GridSize GridOffset GridOffset // This is for the grid size & widget position - W int - H int - AtW int - AtH int + W int + H int + AtW int + AtH int // a name useful for programming and the debugger. // It is not intended to be displayed to the user |
