| 186 | } |
| 187 | |
| 188 | void OnSize(HWND wnd, unsigned int width, unsigned int height) |
| 189 | { |
| 190 | TabbedFilesData *data = GetData(wnd); |
| 191 | data->width = width; |
| 192 | SetWindowPos(data->closeButton, NULL, width - 15, 0, 15, 15, NULL); |
| 193 | (void)height; |
| 194 | } |
| 195 | |
| 196 | void OnMouseLeft(HWND wnd, bool down, unsigned int x, unsigned int y) |
| 197 | { |
no test coverage detected