| 15 | ) |
| 16 | |
| 17 | type TextEdit struct { |
| 18 | WidgetBase |
| 19 | readOnlyChangedPublisher EventPublisher |
| 20 | textChangedPublisher EventPublisher |
| 21 | textColor Color |
| 22 | compactHeight bool |
| 23 | margins Size // in native pixels |
| 24 | lastHeight int |
| 25 | origWordbreakProcPtr uintptr |
| 26 | } |
| 27 | |
| 28 | func NewTextEdit(parent Container) (*TextEdit, error) { |
| 29 | return NewTextEditWithStyle(parent, 0) |
nothing calls this directly
no outgoing calls
no test coverage detected