OLD | NEW |
1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROMEOS_INPUT_METHOD_H_ | 5 #ifndef CHROMEOS_INPUT_METHOD_H_ |
6 #define CHROMEOS_INPUT_METHOD_H_ | 6 #define CHROMEOS_INPUT_METHOD_H_ |
7 | 7 |
8 #include <sstream> | 8 #include <sstream> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 void* language_library, | 253 void* language_library, |
254 LanguageCurrentInputMethodMonitorFunction current_input_method, | 254 LanguageCurrentInputMethodMonitorFunction current_input_method, |
255 LanguageRegisterImePropertiesFunction register_ime_properties, | 255 LanguageRegisterImePropertiesFunction register_ime_properties, |
256 LanguageUpdateImePropertyFunction update_ime_property, | 256 LanguageUpdateImePropertyFunction update_ime_property, |
257 LanguageConnectionChangeMonitorFunction connection_changed); | 257 LanguageConnectionChangeMonitorFunction connection_changed); |
258 | 258 |
259 // Terminates IBus and DBus connections. | 259 // Terminates IBus and DBus connections. |
260 extern void (*DisconnectInputMethodStatus)( | 260 extern void (*DisconnectInputMethodStatus)( |
261 InputMethodStatusConnection* connection); | 261 InputMethodStatusConnection* connection); |
262 | 262 |
| 263 // Stops ibus-daemon. Returns true on success. |
| 264 extern bool (*StopInputMethodProcess)(InputMethodStatusConnection* connection); |
| 265 |
263 // Updates the list of active input methods. This will be returned by | 266 // Updates the list of active input methods. This will be returned by |
264 // GetActiveInputMethods() if an ibus connection is not available. | 267 // GetActiveInputMethods() if an ibus connection is not available. |
265 extern bool (*SetActiveInputMethods)(InputMethodStatusConnection* connection, | 268 extern bool (*SetActiveInputMethods)(InputMethodStatusConnection* connection, |
266 const ImeConfigValue& value); | 269 const ImeConfigValue& value); |
267 | 270 |
268 // Gets all input method engines that are currently active. Caller has to | 271 // Gets all input method engines that are currently active. Caller has to |
269 // delete the returned list. This function might return NULL on error. | 272 // delete the returned list. This function might return NULL on error. |
270 extern InputMethodDescriptors* (*GetActiveInputMethods)( | 273 extern InputMethodDescriptors* (*GetActiveInputMethods)( |
271 InputMethodStatusConnection* connection); | 274 InputMethodStatusConnection* connection); |
272 | 275 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 // Returns true if IBus connection is still alive. | 328 // Returns true if IBus connection is still alive. |
326 // If this function returns false, you might have to discard the current | 329 // If this function returns false, you might have to discard the current |
327 // |connection| by calling DisconnectInputMethodStatus() API above, and create | 330 // |connection| by calling DisconnectInputMethodStatus() API above, and create |
328 // a new connection by calling MonitorInputMethodStatus() API. | 331 // a new connection by calling MonitorInputMethodStatus() API. |
329 extern bool (*InputMethodStatusConnectionIsAlive)( | 332 extern bool (*InputMethodStatusConnectionIsAlive)( |
330 InputMethodStatusConnection* connection); | 333 InputMethodStatusConnection* connection); |
331 | 334 |
332 } // namespace chromeos | 335 } // namespace chromeos |
333 | 336 |
334 #endif // CHROMEOS_INPUT_METHOD_H_ | 337 #endif // CHROMEOS_INPUT_METHOD_H_ |
OLD | NEW |