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 23 matching lines...) Expand all Loading... |
34 } // namespace input_context | 34 } // namespace input_context |
35 | 35 |
36 namespace engine_factory { | 36 namespace engine_factory { |
37 const char kServicePath[] = "/org/freedesktop/IBus/Factory"; | 37 const char kServicePath[] = "/org/freedesktop/IBus/Factory"; |
38 const char kServiceInterface[] = "org.freedesktop.IBus.Factory"; | 38 const char kServiceInterface[] = "org.freedesktop.IBus.Factory"; |
39 const char kCreateEngineMethod[] = "CreateEngine"; | 39 const char kCreateEngineMethod[] = "CreateEngine"; |
40 } // namespace engine factory | 40 } // namespace engine factory |
41 | 41 |
42 namespace engine { | 42 namespace engine { |
43 const char kServicePathPrefix[] = "/org/freedesktop/IBus/Engine/"; | 43 const char kServicePathPrefix[] = "/org/freedesktop/IBus/Engine/"; |
| 44 const char kServiceInterface[] = "org.freedesktop.IBus.Engine"; |
| 45 const char kFocusInMethod[] = "FocusIn"; |
| 46 const char kFocusOutMethod[] = "FocusOut"; |
| 47 const char kEnableMethod[] = "Enable"; |
| 48 const char kDisableMethod[] = "Disable"; |
| 49 const char kPropertyActivateMethod[] = "PropertyActivate"; |
| 50 const char kPropertyShowMethod[] = "PropertyShow"; |
| 51 const char kPropertyHideMethod[] = "PropertyHide"; |
| 52 const char kSetCapabilityMethod[] = "SetCapability"; |
| 53 const char kResetMethod[] = "Reset"; |
| 54 const char kProcessKeyEventMethod[] = "ProcessKeyEvent"; |
| 55 const char kCandidateClickedMethod[] = "CandidateClicked"; |
| 56 const char kSetSurroundingTextMethod[] = "SetSurroundingText"; |
| 57 const char kRegisterPropertiesSignal[] = "RegisterProperties"; |
| 58 const char kUpdatePreeditSignal[] = "UpdatePreedit"; |
| 59 const char kUpdateAuxiliaryTextSignal[] = "UpdateAuxiliaryText"; |
| 60 const char kUpdateLookupTableSignal[] = "UpdateLookupTable"; |
| 61 const char kUpdatePropertySignal[] = "UpdateProperty"; |
| 62 const char kForwardKeyEventSignal[] = "ForwardKeyEvent"; |
| 63 const char kRequireSurroundingTextSignal[] = "RequireSurroundingText"; |
44 } // namespace engine | 64 } // namespace engine |
45 | 65 |
46 } // namespace ibus | 66 } // namespace ibus |
47 } // namespace chromeos | 67 } // namespace chromeos |
48 | 68 |
49 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ | 69 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
OLD | NEW |