AddCheckBox adds a checkbox to the control folder's tree
(text string)
| 71 | |
| 72 | // AddCheckBox adds a checkbox to the control folder's tree |
| 73 | func (f *ControlFolder) AddCheckBox(text string) *CheckRadio { |
| 74 | |
| 75 | cb := NewCheckBox(text) |
| 76 | f.tree.Add(cb) |
| 77 | return cb |
| 78 | } |
| 79 | |
| 80 | // AddSlider adds a slider to the control folder's tree |
| 81 | func (f *ControlFolder) AddSlider(text string, sf, v float32) *Slider { |
nothing calls this directly
no test coverage detected