| 32 | ) |
| 33 | |
| 34 | type CustomWidget struct { |
| 35 | WidgetBase |
| 36 | paint PaintFunc // in 1/96" units |
| 37 | paintPixels PaintFunc // in native pixels |
| 38 | invalidatesOnResize bool |
| 39 | paintMode PaintMode |
| 40 | } |
| 41 | |
| 42 | // NewCustomWidget creates and initializes a new custom draw widget. |
| 43 | // |
nothing calls this directly
no outgoing calls
no test coverage detected