func (err BadContextError) Error() string { fieldVals := make([]string, 0, 1) fieldVals = append(fieldVals, "NiceName: "+err.NiceName) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", err.Sequence)) fieldVals = append(fieldVals, xgb.Sprintf("InvalidRecord: %d", err.InvalidRecord)) return "BadBadContext {" + xgb.StringsJoin(fieldVals, ", ") + "}" }
// Error returns a rudimentary string representation of the BadBadSeg error. func (err BadSegError) Error() string { fieldVals := make([]string, 0, 4) fieldVals = append(fieldVals, "NiceName: "+err.NiceName) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", err.Sequence)) fieldVals = append(fieldVals, xgb.Sprintf("BadValue: %d", err.BadValue)) fieldVals = append(fieldVals, xgb.Sprintf("MinorOpcode: %d", err.MinorOpcode)) fieldVals = append(fieldVals, xgb.Sprintf("MajorOpcode: %d", err.MajorOpcode)) return "BadBadSeg {" + xgb.StringsJoin(fieldVals, ", ") + "}" }
// String is a rudimentary string representation of NotifyEvent. func (v NotifyEvent) String() string { fieldVals := make([]string, 0, 6) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", v.Sequence)) fieldVals = append(fieldVals, xgb.Sprintf("Level: %d", v.Level)) fieldVals = append(fieldVals, xgb.Sprintf("Drawable: %d", v.Drawable)) fieldVals = append(fieldVals, xgb.Sprintf("Damage: %d", v.Damage)) fieldVals = append(fieldVals, xgb.Sprintf("Timestamp: %d", v.Timestamp)) return "Notify {" + xgb.StringsJoin(fieldVals, ", ") + "}" }
// String is a rudimentary string representation of NotifyEvent. func (v NotifyEvent) String() string { fieldVals := make([]string, 0, 9) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", v.Sequence)) fieldVals = append(fieldVals, xgb.Sprintf("ShapeKind: %d", v.ShapeKind)) fieldVals = append(fieldVals, xgb.Sprintf("AffectedWindow: %d", v.AffectedWindow)) fieldVals = append(fieldVals, xgb.Sprintf("ExtentsX: %d", v.ExtentsX)) fieldVals = append(fieldVals, xgb.Sprintf("ExtentsY: %d", v.ExtentsY)) fieldVals = append(fieldVals, xgb.Sprintf("ExtentsWidth: %d", v.ExtentsWidth)) fieldVals = append(fieldVals, xgb.Sprintf("ExtentsHeight: %d", v.ExtentsHeight)) fieldVals = append(fieldVals, xgb.Sprintf("ServerTime: %d", v.ServerTime)) fieldVals = append(fieldVals, xgb.Sprintf("Shaped: %t", v.Shaped)) return "Notify {" + xgb.StringsJoin(fieldVals, ", ") + "}" }
// String is a rudimentary string representation of NotifyEvent. func (v NotifyEvent) String() string { fieldVals := make([]string, 0, 10) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", v.Sequence)) fieldVals = append(fieldVals, xgb.Sprintf("Code: %d", v.Code)) fieldVals = append(fieldVals, xgb.Sprintf("State: %d", v.State)) fieldVals = append(fieldVals, xgb.Sprintf("SequenceNumber: %d", v.SequenceNumber)) fieldVals = append(fieldVals, xgb.Sprintf("Time: %d", v.Time)) fieldVals = append(fieldVals, xgb.Sprintf("Root: %d", v.Root)) fieldVals = append(fieldVals, xgb.Sprintf("Window: %d", v.Window)) fieldVals = append(fieldVals, xgb.Sprintf("Kind: %d", v.Kind)) fieldVals = append(fieldVals, xgb.Sprintf("Forced: %t", v.Forced)) return "Notify {" + xgb.StringsJoin(fieldVals, ", ") + "}" }
// String is a rudimentary string representation of BufferSwapCompleteEvent. func (v BufferSwapCompleteEvent) String() string { fieldVals := make([]string, 0, 9) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", v.Sequence)) fieldVals = append(fieldVals, xgb.Sprintf("EventType: %d", v.EventType)) fieldVals = append(fieldVals, xgb.Sprintf("Drawable: %d", v.Drawable)) fieldVals = append(fieldVals, xgb.Sprintf("UstHi: %d", v.UstHi)) fieldVals = append(fieldVals, xgb.Sprintf("UstLo: %d", v.UstLo)) fieldVals = append(fieldVals, xgb.Sprintf("MscHi: %d", v.MscHi)) fieldVals = append(fieldVals, xgb.Sprintf("MscLo: %d", v.MscLo)) fieldVals = append(fieldVals, xgb.Sprintf("Sbc: %d", v.Sbc)) return "BufferSwapComplete {" + xgb.StringsJoin(fieldVals, ", ") + "}" }
// String is a rudimentary string representation of CompletionEvent. func (v CompletionEvent) String() string { fieldVals := make([]string, 0, 7) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", v.Sequence)) fieldVals = append(fieldVals, xgb.Sprintf("Drawable: %d", v.Drawable)) fieldVals = append(fieldVals, xgb.Sprintf("MinorEvent: %d", v.MinorEvent)) fieldVals = append(fieldVals, xgb.Sprintf("MajorEvent: %d", v.MajorEvent)) fieldVals = append(fieldVals, xgb.Sprintf("Shmseg: %d", v.Shmseg)) fieldVals = append(fieldVals, xgb.Sprintf("Offset: %d", v.Offset)) return "Completion {" + xgb.StringsJoin(fieldVals, ", ") + "}" }
// String is a rudimentary string representation of InvalidateBuffersEvent. func (v InvalidateBuffersEvent) String() string { fieldVals := make([]string, 0, 2) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", v.Sequence)) fieldVals = append(fieldVals, xgb.Sprintf("Drawable: %d", v.Drawable)) return "InvalidateBuffers {" + xgb.StringsJoin(fieldVals, ", ") + "}" }
func (err BadDamageError) Error() string { fieldVals := make([]string, 0, 0) fieldVals = append(fieldVals, "NiceName: "+err.NiceName) fieldVals = append(fieldVals, xgb.Sprintf("Sequence: %d", err.Sequence)) return "BadBadDamage {" + xgb.StringsJoin(fieldVals, ", ") + "}" }