123456789101112131415 |
- 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"
- /* In Zori, the GUI is paginated. This means that on any
- * screen, only a single GUI page can be active. The intent is to
- * support different GUI modes such as startup screen, status view,
- * settings, HUD, and so on between which can be switched easily. */
- type PageWidget struct {
- Basic
- }
|