summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
Diffstat (limited to 'window.go')
-rw-r--r--window.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/window.go b/window.go
index dc98c1f..92b7080 100644
--- a/window.go
+++ b/window.go
@@ -26,6 +26,11 @@ type Window interface {
// If this handler returns false, the Window is not closed.
OnClosing(func() bool)
+ // Margined and SetMargined get and set whether the contents of the Window have a margin around them.
+ // The size of the margin is platform-dependent.
+ Margined() bool
+ SetMargined(margined bool)
+
windowDialog
}