haven/nexgb
Andrew Gallant (Ocelot) 3e6b354493 add a little more docs for errors 2012-05-11 01:58:52 -04:00
..
bigreq add a little more docs for errors 2012-05-11 01:58:52 -04:00
composite add a little more docs for errors 2012-05-11 01:58:52 -04:00
damage add a little more docs for errors 2012-05-11 01:58:52 -04:00
dpms add a little more docs for errors 2012-05-11 01:58:52 -04:00
dri2 add a little more docs for errors 2012-05-11 01:58:52 -04:00
examples a huge commit. splitting extensions into their own sub-packages. 2012-05-10 17:01:42 -04:00
ge add a little more docs for errors 2012-05-11 01:58:52 -04:00
glx add a little more docs for errors 2012-05-11 01:58:52 -04:00
randr add a little more docs for errors 2012-05-11 01:58:52 -04:00
record add a little more docs for errors 2012-05-11 01:58:52 -04:00
render add a little more docs for errors 2012-05-11 01:58:52 -04:00
res add a little more docs for errors 2012-05-11 01:58:52 -04:00
screensaver add a little more docs for errors 2012-05-11 01:58:52 -04:00
shape add a little more docs for errors 2012-05-11 01:58:52 -04:00
shm add a little more docs for errors 2012-05-11 01:58:52 -04:00
sync add a little more docs for errors 2012-05-11 01:58:52 -04:00
xcmisc add a little more docs for errors 2012-05-11 01:58:52 -04:00
xevie add a little more docs for errors 2012-05-11 01:58:52 -04:00
xf86dri add a little more docs for errors 2012-05-11 01:58:52 -04:00
xf86vidmode add a little more docs for errors 2012-05-11 01:58:52 -04:00
xfixes add a little more docs for errors 2012-05-11 01:58:52 -04:00
xgbgen add a little more docs for errors 2012-05-11 01:58:52 -04:00
xinerama add a little more docs for errors 2012-05-11 01:58:52 -04:00
xinput add a little more docs for errors 2012-05-11 01:58:52 -04:00
xprint add a little more docs for errors 2012-05-11 01:58:52 -04:00
xproto add a little more docs for errors 2012-05-11 01:58:52 -04:00
xselinux add a little more docs for errors 2012-05-11 01:58:52 -04:00
xtest add a little more docs for errors 2012-05-11 01:58:52 -04:00
xv add a little more docs for errors 2012-05-11 01:58:52 -04:00
xvmc add a little more docs for errors 2012-05-11 01:58:52 -04:00
.gitignore last commit before i tear everything down 2012-04-29 14:09:03 -04:00
AUTHORS initial commit. not currently in a working state. 2012-04-28 23:25:57 -04:00
CONTRIBUTORS initial commit. not currently in a working state. 2012-04-28 23:25:57 -04:00
LICENSE initial commit. not currently in a working state. 2012-04-28 23:25:57 -04:00
Makefile a huge commit. splitting extensions into their own sub-packages. 2012-05-10 17:01:42 -04:00
README more clean up. use log instead of fmt.Print to stderr. bug fix for event blocking (a hack fix for now). 2012-05-07 21:58:33 -04:00
auth.go important stuff first please 2012-05-07 04:17:11 -04:00
conn.go a huge commit. splitting extensions into their own sub-packages. 2012-05-10 17:01:42 -04:00
cookie.go a huge commit. splitting extensions into their own sub-packages. 2012-05-10 17:01:42 -04:00
doc.go a huge commit. splitting extensions into their own sub-packages. 2012-05-10 17:01:42 -04:00
sync.go a huge commit. splitting extensions into their own sub-packages. 2012-05-10 17:01:42 -04:00
xgb.go better docs 2012-05-10 23:57:34 -04:00
xgb_help.go a huge commit. splitting extensions into their own sub-packages. 2012-05-10 17:01:42 -04:00

README

XGB is the X Go Binding, which is a low-level API to communicate with the
core X protocol and many of the X extensions. It is closely modeled after
XCB and xpyb.

It is thread safe and gets immediate improvement from parallelism when
GOMAXPROCS > 1. (See the benchmarks in xgb_test.go for evidence.)

Please see doc.go for more info.

Note that unless you know you need XGB, you can probably make your life
easier by using a slightly higher level library: xgbutil.

BurntSushi's Fork
=================
I've forked the XGB repository from Google Code due to inactivty upstream.

Godoc documentation can be found here:
http://godoc.burntsushi.net/pkg/github.com/BurntSushi/xgb/

Much of the code has been rewritten in an effort to support thread safety
and multiple extensions. Namely, go_client.py has been thrown away in favor
of an xgbgen package.

The biggest parts that *haven't* been rewritten by me are the connection and
authentication handshakes. They're inherently messy, and there's really no
reason to re-work them. The rest of XGB has been completely rewritten.

I like to release my code under the WTFPL, but since I'm starting with someone
else's work, I'm leaving the original license/contributor/author information
in tact.

I suppose I can legitimately release xgbgen under the WTFPL. To be fair, it is
at least as complex as XGB itself. *sigh*

What follows is the original README:

XGB README
==========
XGB is the X protocol Go language Binding.

It is the Go equivalent of XCB, the X protocol C-language Binding
(http://xcb.freedesktop.org/).

Unless otherwise noted, the XGB source files are distributed
under the BSD-style license found in the LICENSE file.

Contributions should follow the same procedure as for the Go project:
http://golang.org/doc/contribute.html