summaryrefslogtreecommitdiff
path: root/sysdata.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-03 11:04:07 -0400
committerPietro Gagliardi <[email protected]>2014-07-03 11:04:07 -0400
commit1238936a16170757104879d9593ba9440c70e8cd (patch)
treeeade2af3e7602a986dd7144032c72a18f59c9825 /sysdata.go
parentf7dedc8cb05960134234f242042a4f00d88aaf9e (diff)
Added Post() and implemented it on Windows.
Diffstat (limited to 'sysdata.go')
-rw-r--r--sysdata.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdata.go b/sysdata.go
index 006595c..ccd5935 100644
--- a/sysdata.go
+++ b/sysdata.go
@@ -9,8 +9,9 @@ type cSysData struct {
spaced bool
alternate bool // editable for Combobox, multi-select for listbox, password for lineedit
handler AreaHandler // for Areas; TODO rename to areahandler
- close func() bool // provided by each Window
- event func() // provided by each control
+ close func() bool // provided by each Window
+ post func(interface{}) // provided by each Window
+ event func() // provided by each control
}
// this interface is used to make sure all sysDatas are synced