123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package widget
- type LongtextState struct {
-
- wait float64
-
- page int
-
- line int
-
- paused bool
-
- total int
-
- position int
-
- animationTimer float64
- }
- type LongtextFlags int
- const (
-
- LONGTEXT_FLAG_STATIC_MARKER = LongtextFlags(1 << 0)
-
- LONGTEXT_FLAG_SHOW_LETTERS = LongtextFlags(1 << 1)
- )
- type LongtextSettings struct {
-
- Lines int
-
- Spacing int
-
- Delay float64
-
- LongtextFlags
- }
- type Longtext struct {
- Captioned
- Text string
- LongtextSettings
- LongtextState
- }
|