| 86 | } |
| 87 | |
| 88 | void RemoveWindow(ShellWindow* win){ |
| 89 | WindowButton* btn = taskbarWindows[win]; |
| 90 | taskbarWindows.erase(win); |
| 91 | |
| 92 | taskbarWindowsContainer->RemoveWidget(btn); |
| 93 | delete btn; |
| 94 | } |
| 95 | |
| 96 | void OnTaskbarPaint(surface_t* surface){ |
| 97 | Lemon::Graphics::DrawGradientVertical(0,0,surface->width, surface->height, {0x33, 0x2c, 0x29, 255}, {0x2e, 0x29, 0x29, 255},surface); |
no test coverage detected