| 24 | } |
| 25 | |
| 26 | type TabWidget struct { |
| 27 | WidgetBase |
| 28 | hWndTab win.HWND |
| 29 | tabOrigWndProcPtr uintptr |
| 30 | imageList *ImageList |
| 31 | pages *TabPageList |
| 32 | currentIndex int |
| 33 | currentIndexChangedPublisher EventPublisher |
| 34 | nonClientSizePixels Size |
| 35 | persistent bool |
| 36 | } |
| 37 | |
| 38 | func NewTabWidget(parent Container) (*TabWidget, error) { |
| 39 | tw := &TabWidget{currentIndex: -1} |
nothing calls this directly
no outgoing calls
no test coverage detected