FontButton is a Control that represents a button that the user can click to select a font.
| 12 | // FontButton is a Control that represents a button that the user can |
| 13 | // click to select a font. |
| 14 | type FontButton struct { |
| 15 | ControlBase |
| 16 | b *C.uiFontButton |
| 17 | onChanged func(*FontButton) |
| 18 | } |
| 19 | |
| 20 | // NewFontButton creates a new FontButton. |
| 21 | func NewFontButton() *FontButton { |
nothing calls this directly
no outgoing calls
no test coverage detected