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 18 matching lines...) Expand all Loading... |
29 const char kExitMethod[] = "Exit"; | 29 const char kExitMethod[] = "Exit"; |
30 } // namespace bus | 30 } // namespace bus |
31 | 31 |
32 namespace input_context { | 32 namespace input_context { |
33 const char kServiceInterface[] = "org.freedesktop.IBus.InputContext"; | 33 const char kServiceInterface[] = "org.freedesktop.IBus.InputContext"; |
34 const char kCommitTextSignal[] = "CommitText"; | 34 const char kCommitTextSignal[] = "CommitText"; |
35 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; | 35 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; |
36 const char kHidePreeditTextSignal[] = "HidePreeditText"; | 36 const char kHidePreeditTextSignal[] = "HidePreeditText"; |
37 const char kShowPreeditTextSignal[] = "ShowPreeditText"; | 37 const char kShowPreeditTextSignal[] = "ShowPreeditText"; |
38 const char kUpdatePreeditTextSignal[] = "UpdatePreeditText"; | 38 const char kUpdatePreeditTextSignal[] = "UpdatePreeditText"; |
| 39 const char kDeleteSurroundingTextSignal[] = "DeleteSurroundingText"; |
39 const char kFocusInMethod[] = "FocusIn"; | 40 const char kFocusInMethod[] = "FocusIn"; |
40 const char kFocusOutMethod[] = "FocusOut"; | 41 const char kFocusOutMethod[] = "FocusOut"; |
41 const char kResetMethod[] = "Reset"; | 42 const char kResetMethod[] = "Reset"; |
42 const char kSetCapabilitiesMethod[] = "SetCapabilities"; | 43 const char kSetCapabilitiesMethod[] = "SetCapabilities"; |
43 const char kSetCursorLocationMethod[] = "SetCursorLocation"; | 44 const char kSetCursorLocationMethod[] = "SetCursorLocation"; |
44 const char kProcessKeyEventMethod[] = "ProcessKeyEvent"; | 45 const char kProcessKeyEventMethod[] = "ProcessKeyEvent"; |
45 const char kSetSurroundingTextMethod[] = "SetSurroundingText"; | 46 const char kSetSurroundingTextMethod[] = "SetSurroundingText"; |
46 const char kPropertyActivateMethod[] = "PropertyActivate"; | 47 const char kPropertyActivateMethod[] = "PropertyActivate"; |
47 } // namespace input_context | 48 } // namespace input_context |
48 | 49 |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 int x; | 137 int x; |
137 int y; | 138 int y; |
138 int width; | 139 int width; |
139 int height; | 140 int height; |
140 }; | 141 }; |
141 | 142 |
142 } // namespace ibus | 143 } // namespace ibus |
143 } // namespace chromeos | 144 } // namespace chromeos |
144 | 145 |
145 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ | 146 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
OLD | NEW |