MCPcopy Create free account
hub / github.com/lxn/walk / Builder

Struct Builder

declarative/builder.go:50–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48}
49
50type Builder struct {
51 dpi int
52 level int
53 rows int
54 columns int
55 row int
56 col int
57 widgetValue reflect.Value
58 parent walk.Container
59 declWidgets []declWidget
60 name2Window map[string]walk.Window
61 name2DataBinder map[string]*walk.DataBinder
62 deferredFuncs []func() error
63 knownCompositeConditions map[string]walk.Condition
64 expressions map[string]walk.Expression
65 functions map[string]govaluate.ExpressionFunction
66}
67
68func NewBuilder(parent walk.Container) *Builder {
69 var dpi int

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected