| 21 | } |
| 22 | |
| 23 | type ToolButton struct { |
| 24 | tb *Toolbar |
| 25 | |
| 26 | text string |
| 27 | enabled bool |
| 28 | checkable bool |
| 29 | checked bool |
| 30 | image int |
| 31 | |
| 32 | onClick EventManager |
| 33 | } |
| 34 | |
| 35 | func (bt *ToolButton) OnClick() *EventManager { |
| 36 | return &bt.onClick |
nothing calls this directly
no outgoing calls
no test coverage detected