aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/dialog.go
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/dialog.go')
-rw-r--r--widgets/dialog.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/widgets/dialog.go b/widgets/dialog.go
new file mode 100644
index 00000000..1af4456a
--- /dev/null
+++ b/widgets/dialog.go
@@ -0,0 +1,24 @@
+package widgets
+
+import (
+ "git.sr.ht/~rjarry/aerc/lib/ui"
+)
+
+type Dialog interface {
+ ui.DrawableInteractive
+ ContextHeight() (func(int) int, func(int) int)
+}
+
+type dialog struct {
+ ui.DrawableInteractive
+ y func(int) int
+ h func(int) int
+}
+
+func (d *dialog) ContextHeight() (func(int) int, func(int) int) {
+ return d.y, d.h
+}
+
+func NewDialog(d ui.DrawableInteractive, y func(int) int, h func(int) int) Dialog {
+ return &dialog{DrawableInteractive: d, y: y, h: h}
+}