| 191 | } |
| 192 | |
| 193 | bool Window::IsTextEmpty() const { |
| 194 | if (!IsEnabled()) { |
| 195 | return true; |
| 196 | } |
| 197 | int len = GetWindowTextLength(handle_); |
| 198 | |
| 199 | return (len <= 0); |
| 200 | } |
| 201 | |
| 202 | void Window::ListAddColumn(const std::wstring& name, int index, int width) { |
| 203 | LVCOLUMN lvc; |
no test coverage detected