reworking xgb. cleaned up connection stuff a little. making new xid generation cleaner and use goroutines for it.

This commit is contained in:
Andrew Gallant (Ocelot)
2012-05-03 22:47:50 -04:00
parent 5cdae5950c
commit a5d4ad6c9d
5 changed files with 316 additions and 174 deletions

27
nexgb/examples/atom.go Normal file
View File

@@ -0,0 +1,27 @@
package main
import (
// "fmt"
"log"
"github.com/BurntSushi/xgb"
)
func init() {
log.SetFlags(0)
}
func main() {
X, err := xgb.NewConn()
if err != nil {
log.Fatal(err)
}
aname := "_NET_ACTIVE_WINDOW"
atom, err := X.InternAtom(true, uint16(len(aname)), aname)
if err != nil {
log.Fatal(err)
}
log.Printf("%d", atom.Atom)
}

View File

@@ -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))
}