| 322 | } |
| 323 | |
| 324 | std::optional<TaskbarAppearanceService::TaskbarInfo> TaskbarAppearanceService::GetTaskbarInfo(HWND taskbar) |
| 325 | { |
| 326 | for (const auto& [handle, info] : m_Taskbars) |
| 327 | { |
| 328 | if (GetAncestor(info.window, GA_PARENT) == taskbar) |
| 329 | { |
| 330 | return info; |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | return std::nullopt; |
| 335 | } |
| 336 | |
| 337 | void TaskbarAppearanceService::RestoreDefaultControlFill(const ControlInfo<wux::Shapes::Shape> &info) |
| 338 | { |
nothing calls this directly
no outgoing calls
no test coverage detected