summaryrefslogtreecommitdiff
path: root/examples/property.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-05-03 22:47:50 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-05-03 22:47:50 -0400
commit9f44c6226003c93fd8a43bc0e35b433325c894eb (patch)
treef685f8c6fff1b3e6a4e115539c4788fee7988fb8 /examples/property.go
parent9028aaf89872d8d90c65254c17658bfaf8a4918d (diff)
reworking xgb. cleaned up connection stuff a little. making new xid generation cleaner and use goroutines for it.
Diffstat (limited to 'examples/property.go')
-rw-r--r--examples/property.go39
1 files changed, 39 insertions, 0 deletions
diff --git a/examples/property.go b/examples/property.go
new file mode 100644
index 0000000..2477df4
--- /dev/null
+++ b/examples/property.go
@@ -0,0 +1,39 @@
+package main
+
+import (
+ "log"
+
+ "github.com/BurntSushi/xgb"
+)
+
+func init() {
+ log.SetFlags(0)
+}
+
+func get32(buf []byte) uint32 {
+ v := uint32(buf[0])
+ v |= uint32(buf[1]) << 8
+ v |= uint32(buf[2]) << 16
+ v |= uint32(buf[3]) << 24
+ return v
+}
+
+func main() {
+ X, err := xgb.NewConn()
+ if err != nil {
+ log.Fatal(err)
+ }
+
+ root := X.DefaultScreen().Root
+
+ aname := "_NET_ACTIVE_WINDOW"
+ atom, err := X.InternAtom(true, uint16(len(aname)), aname)
+ if err != nil {
+ log.Fatal(err)
+ }
+
+ reply, err := X.GetProperty(false, root, atom.Atom, xgb.GetPropertyTypeAny,
+ 0, (1<<32)-1)
+ log.Printf("%X", get32(reply.Value))
+}
+