aboutsummaryrefslogtreecommitdiff
path: root/ui/types.go
blob: 14a91c316c9f85a668ef6d2af0ad3c35ab3fdb35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package ui

import (
	tb "github.com/nsf/termbox-go"

	"git.sr.ht/~sircmpwn/aerc2/config"
)

const (
	Valid             = 0
	InvalidateTabList = 1 << iota
	InvalidateTabView
	InvalidateSidebar
	InvalidateStatusBar
)

const (
	InvalidateAll = InvalidateTabList |
		InvalidateTabView |
		InvalidateSidebar |
		InvalidateStatusBar
)

type Geometry struct {
	Row    int
	Col    int
	Width  int
	Height int
}

type AercTab interface {
	Name() string
	Render(at Geometry)
	SetParent(parent *UIState)
}

type UIState struct {
	Config       *config.AercConfig
	Exit         bool
	InvalidPanes uint

	Panes struct {
		TabList   Geometry
		TabView   Geometry
		Sidebar   Geometry
		StatusBar Geometry
	}

	Tabs        []AercTab
	SelectedTab int

	Prompt struct {
		Prompt *string
		Text   *string
		Index  int
		Scroll int
	}

	tbEvents chan tb.Event
}