diff options
Diffstat (limited to 'nexgb/auto_xfixes.go')
-rw-r--r-- | nexgb/auto_xfixes.go | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/nexgb/auto_xfixes.go b/nexgb/auto_xfixes.go index 9f1d105..aae1afb 100644 --- a/nexgb/auto_xfixes.go +++ b/nexgb/auto_xfixes.go @@ -1,7 +1,7 @@ package xgb /* - This file was generated by xfixes.xml on May 6 2012 3:00:44am EDT. + This file was generated by xfixes.xml on May 6 2012 5:48:48pm EDT. This file is automatically generated. Edit at your peril! */ @@ -11,6 +11,30 @@ package xgb // import "render" // import "shape" +// XfixesInit must be called before using the XFIXES extension. +func (c *Conn) XfixesInit() error { + reply, err := c.QueryExtension(6, "XFIXES").Reply() + switch { + case err != nil: + return err + case !reply.Present: + return newError("No extension named XFIXES could be found on on the server.") + } + + c.extLock.Lock() + c.extensions["XFIXES"] = reply.MajorOpcode + for evNum, fun := range newExtEventFuncs["XFIXES"] { + newEventFuncs[int(reply.FirstEvent)+evNum] = fun + } + c.extLock.Unlock() + + return nil +} + +func init() { + newExtEventFuncs["XFIXES"] = make(map[int]newEventFun) +} + // Skipping definition for base type 'Card8' // Skipping definition for base type 'Int16' @@ -178,7 +202,7 @@ func (v XfixesSelectionNotifyEvent) String() string { } func init() { - newEventFuncs[0] = NewXfixesSelectionNotifyEvent + newExtEventFuncs["XFIXES"][0] = NewXfixesSelectionNotifyEvent } // Event definition XfixesCursorNotify (1) @@ -273,7 +297,7 @@ func (v XfixesCursorNotifyEvent) String() string { } func init() { - newEventFuncs[1] = NewXfixesCursorNotifyEvent + newExtEventFuncs["XFIXES"][1] = NewXfixesCursorNotifyEvent } // Error definition XfixesBadRegion (0) |