| 239 | } |
| 240 | |
| 241 | json::object KWinControlUnitMgr::get_info() const |
| 242 | { |
| 243 | json::object info; |
| 244 | info["type"] = "KWin"; |
| 245 | info["device_node"] = path_to_utf8_string(device_node_); |
| 246 | info["screen_width"] = screen_width_; |
| 247 | info["screen_height"] = screen_height_; |
| 248 | info["use_win32_vk_code"] = use_win32_vk_code_; |
| 249 | return info; |
| 250 | } |
| 251 | |
| 252 | int KWinControlUnitMgr::translate_key(int key) const |
| 253 | { |
nothing calls this directly
no outgoing calls
no test coverage detected