Icon is a bitmap that supports transparency and combining multiple variants of an image in different resolutions.
| 20 | // Icon is a bitmap that supports transparency and combining multiple |
| 21 | // variants of an image in different resolutions. |
| 22 | type Icon struct { |
| 23 | filePath string |
| 24 | index int |
| 25 | res *uint16 |
| 26 | dpi2hIcon map[int]win.HICON |
| 27 | size96dpi Size |
| 28 | isStock bool |
| 29 | hasIndex bool |
| 30 | } |
| 31 | |
| 32 | type ExtractableIcon interface { |
| 33 | FilePath_() string |
nothing calls this directly
no outgoing calls
no test coverage detected