diff options
author | Johannes Thyssen Tishman <johannes@thyssentishman.com> | 2024-03-26 23:00:50 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-04-02 22:22:33 +0200 |
commit | 3d529aa09330f383298a5735a18549b44bc3098f (patch) | |
tree | a075dbdde8c4ecbfda22dc92ce97949a8d6b69b2 /app/dialog.go | |
parent | 1ce82f50d0981a9ee047e75d94c7ab496070bd4a (diff) | |
download | aerc-3d529aa09330f383298a5735a18549b44bc3098f.tar.gz |
config: make popover dialogs configurable
Add the [ui].dialog-{position,width,height} options in aerc.conf to set
the position, width and height of popover dialogs such as the one from
:menu, :envelope or :attach -m relative to the main window.
Changelog-added: Add `[ui].dialog-{position,width,height}` to set
the position, width and height of popover dialogs.
Signed-off-by: Johannes Thyssen Tishman <johannes@thyssentishman.com>
Reviewed-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'app/dialog.go')
-rw-r--r-- | app/dialog.go | 52 |
1 files changed, 35 insertions, 17 deletions
diff --git a/app/dialog.go b/app/dialog.go index 3ed8b469..fba0fd7b 100644 --- a/app/dialog.go +++ b/app/dialog.go @@ -6,47 +6,65 @@ import ( type Dialog interface { ui.DrawableInteractive + ContextWidth() (func(int) int, func(int) int) ContextHeight() (func(int) int, func(int) int) } type dialog struct { ui.DrawableInteractive + x func(int) int y func(int) int + w func(int) int h func(int) int } +func (d *dialog) ContextWidth() (func(int) int, func(int) int) { + return d.x, d.w +} + 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} +func NewDialog( + d ui.DrawableInteractive, + x func(int) int, y func(int) int, + w func(int) int, h func(int) int, +) Dialog { + return &dialog{DrawableInteractive: d, x: x, y: y, w: w, h: h} } // DefaultDialog creates a dialog window spanning half of the screen func DefaultDialog(d ui.DrawableInteractive) Dialog { + position := SelectedAccountUiConfig().DialogPosition + width := SelectedAccountUiConfig().DialogWidth + height := SelectedAccountUiConfig().DialogHeight return NewDialog(d, - // vertical starting position in lines from the top - func(h int) int { - return h / 4 - }, - // dialog height from the starting line - func(h int) int { - return h / 2 + // horizontal starting position in columns from the left + func(w int) int { + return (w * (100 - width)) / 200 }, - ) -} - -// LargeDialog creates a dialog window spanning three quarter of the screen -func LargeDialog(d ui.DrawableInteractive) Dialog { - return NewDialog(d, // vertical starting position in lines from the top func(h int) int { - return h / 8 + switch position { + case "center": + return (h * (100 - height)) / 200 + case "bottom": + return h - (h * height / 100) + default: + return 1 + } + }, + // dialog width from the starting column + func(w int) int { + return w * width / 100 }, // dialog height from the starting line func(h int) int { - return 3 * h / 4 + if position == "bottom" { + return h*height/100 - 1 + } + return h * height / 100 }, ) } |