| 302 | } |
| 303 | |
| 304 | bool Window::IsChecked() const { |
| 305 | return IsEnabled() && Button_GetCheck(handle_) == BST_CHECKED; |
| 306 | } |
| 307 | |
| 308 | void Window::SetChecked(bool state) { |
| 309 | Button_SetCheck(handle_, state ? BST_CHECKED : BST_UNCHECKED); |
no test coverage detected