| 48 | } |
| 49 | |
| 50 | type 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 | |
| 68 | func NewBuilder(parent walk.Container) *Builder { |
| 69 | var dpi int |
nothing calls this directly
no outgoing calls
no test coverage detected