page.go 510 B

123456789101112131415
  1. package widget
  2. // import . "gitlab.com/beoran/ebsgo/zori/types"
  3. // import _ "gitlab.com/beoran/ebsgo/zori/backend"
  4. // import "gitlab.com/beoran/ebsgo/zori/state"
  5. // import "gitlab.com/beoran/ebsgo/zori/style"
  6. /* In Zori, the GUI is paginated. This means that on any
  7. * screen, only a single GUI page can be active. The intent is to
  8. * support different GUI modes such as startup screen, status view,
  9. * settings, HUD, and so on between which can be switched easily. */
  10. type PageWidget struct {
  11. Basic
  12. }