summaryrefslogtreecommitdiff
path: root/window.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-10-18 17:03:07 -0400
committerPietro Gagliardi <[email protected]>2014-10-18 17:03:07 -0400
commit62048303a34f6cac733798651adb53b640e2114a (patch)
treeb03994dfe1d5cfbc94be65075f3345a45166bbef /window.go
parent8c8b642adbed274133b6e9d975c7ca8786300d2c (diff)
Merged new container/sizing stuff.
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
}