1234567891011121314151617181920212223 |
- package widget
- import . "gitlab.com/beoran/ebsgo/zori/types"
- // import _ "gitlab.com/beoran/ebsgo/zori/backend"
- // import "gitlab.com/beoran/ebsgo/zori/state"
- import "gitlab.com/beoran/ebsgo/zori/style"
- /*
- * Root level widget, my spread out over several displays.
- * In Zori, there can only be a single root level widget active.
- * It's ID is always 0;
- */
- type Root struct {
- Basic
- Icons map[string]Bitmap
- Display
- Console
- UITheme style.Theme
- Cursors
- Active *PageWidget
- }
|