OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium 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_DBUS_IBUS_IBUS_CONSTANTS_H_ | 5 #ifndef CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
6 #define CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ | 6 #define CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
7 | 7 |
8 namespace chromeos { | 8 namespace chromeos { |
9 | 9 |
10 namespace ibus { | 10 namespace ibus { |
(...skipping 13 matching lines...) Expand all Loading... |
24 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; | 24 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; |
25 const char kHidePreeditTextSignal[] = "HidePreeditText"; | 25 const char kHidePreeditTextSignal[] = "HidePreeditText"; |
26 const char kShowPreeditTextSignal[] = "ShowPreeditText"; | 26 const char kShowPreeditTextSignal[] = "ShowPreeditText"; |
27 const char kUpdatePreeditTextSignal[] = "UpdatePreeditText"; | 27 const char kUpdatePreeditTextSignal[] = "UpdatePreeditText"; |
28 const char kFocusInMethod[] = "FocusIn"; | 28 const char kFocusInMethod[] = "FocusIn"; |
29 const char kFocusOutMethod[] = "FocusOut"; | 29 const char kFocusOutMethod[] = "FocusOut"; |
30 const char kResetMethod[] = "Reset"; | 30 const char kResetMethod[] = "Reset"; |
31 const char kSetCapabilitiesMethod[] = "SetCapabilities"; | 31 const char kSetCapabilitiesMethod[] = "SetCapabilities"; |
32 const char kSetCursorLocationMethod[] = "SetCursorLocation"; | 32 const char kSetCursorLocationMethod[] = "SetCursorLocation"; |
33 const char kProcessKeyEventMethod[] = "ProcessKeyEvent"; | 33 const char kProcessKeyEventMethod[] = "ProcessKeyEvent"; |
| 34 const char kSetSurroundingText[] = "SetSurroundingText"; |
34 } // namespace input_context | 35 } // namespace input_context |
35 | 36 |
36 namespace engine_factory { | 37 namespace engine_factory { |
37 const char kServicePath[] = "/org/freedesktop/IBus/Factory"; | 38 const char kServicePath[] = "/org/freedesktop/IBus/Factory"; |
38 const char kServiceInterface[] = "org.freedesktop.IBus.Factory"; | 39 const char kServiceInterface[] = "org.freedesktop.IBus.Factory"; |
39 const char kCreateEngineMethod[] = "CreateEngine"; | 40 const char kCreateEngineMethod[] = "CreateEngine"; |
40 } // namespace engine factory | 41 } // namespace engine factory |
41 | 42 |
42 namespace engine { | 43 namespace engine { |
43 const char kServicePathPrefix[] = "/org/freedesktop/IBus/Engine/"; | 44 const char kServicePathPrefix[] = "/org/freedesktop/IBus/Engine/"; |
(...skipping 17 matching lines...) Expand all Loading... |
61 const char kUpdatePropertySignal[] = "UpdateProperty"; | 62 const char kUpdatePropertySignal[] = "UpdateProperty"; |
62 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; | 63 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; |
63 const char kRequireSurroundingTextSignal[] = "RequireSurroundingText"; | 64 const char kRequireSurroundingTextSignal[] = "RequireSurroundingText"; |
64 const char kCommitTextSignal[] = "CommitText"; | 65 const char kCommitTextSignal[] = "CommitText"; |
65 } // namespace engine | 66 } // namespace engine |
66 | 67 |
67 } // namespace ibus | 68 } // namespace ibus |
68 } // namespace chromeos | 69 } // namespace chromeos |
69 | 70 |
70 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ | 71 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
OLD | NEW |