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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 namespace panel { | 71 namespace panel { |
72 const char kServicePath[] = "/org/freedesktop/IBus/Panel"; | 72 const char kServicePath[] = "/org/freedesktop/IBus/Panel"; |
73 const char kServiceInterface[] = "org.freedesktop.IBus.Panel"; | 73 const char kServiceInterface[] = "org.freedesktop.IBus.Panel"; |
74 const char kUpdateLookupTableMethod[] = "UpdateLookupTable"; | 74 const char kUpdateLookupTableMethod[] = "UpdateLookupTable"; |
75 const char kHideLookupTableMethod[] = "HideLookupTable"; | 75 const char kHideLookupTableMethod[] = "HideLookupTable"; |
76 const char kUpdateAuxiliaryTextMethod[] = "UpdateAuxiliaryText"; | 76 const char kUpdateAuxiliaryTextMethod[] = "UpdateAuxiliaryText"; |
77 const char kHideAuxiliaryTextMethod[] = "HideAuxiliaryText"; | 77 const char kHideAuxiliaryTextMethod[] = "HideAuxiliaryText"; |
78 const char kUpdatePreeditTextMethod[] = "UpdatePreeditText"; | 78 const char kUpdatePreeditTextMethod[] = "UpdatePreeditText"; |
79 const char kHidePreeditTextMethod[] = "HidePreeditText"; | 79 const char kHidePreeditTextMethod[] = "HidePreeditText"; |
80 const char kRegisterPropertiesMethod[] = "RegisterProperties"; | 80 const char kRegisterPropertiesMethod[] = "RegisterProperties"; |
81 const char kUpdatePropertiesMethod[] = "UpdateProperties"; | 81 const char kUpdatePropertyMethod[] = "UpdateProperty"; |
82 const char kCandidateClickedSignal[] = "CandidateClicked"; | 82 const char kCandidateClickedSignal[] = "CandidateClicked"; |
83 const char kCursorUpSignal[] = "CursorUp"; | 83 const char kCursorUpSignal[] = "CursorUp"; |
84 const char kCursorDownSignal[] = "CursorDown"; | 84 const char kCursorDownSignal[] = "CursorDown"; |
85 const char kPageUpSignal[] = "PageUp"; | 85 const char kPageUpSignal[] = "PageUp"; |
86 const char kPageDownSignal[] = "PageDown"; | 86 const char kPageDownSignal[] = "PageDown"; |
87 } // namespace panel | 87 } // namespace panel |
88 | 88 |
89 // Following variables indicate state of IBusProperty. | 89 // Following variables indicate state of IBusProperty. |
90 enum IBusPropertyState { | 90 enum IBusPropertyState { |
91 IBUS_PROPERTY_STATE_UNCHECKED = 0, | 91 IBUS_PROPERTY_STATE_UNCHECKED = 0, |
(...skipping 12 matching lines...) Expand all Loading... |
104 namespace config { | 104 namespace config { |
105 const char kServicePath[] = "/org/freedesktop/IBus/Config"; | 105 const char kServicePath[] = "/org/freedesktop/IBus/Config"; |
106 const char kServiceInterface[] = "org.freedesktop.IBus.Config"; | 106 const char kServiceInterface[] = "org.freedesktop.IBus.Config"; |
107 const char kSetValueMethod[] = "SetValue"; | 107 const char kSetValueMethod[] = "SetValue"; |
108 } // namespace config | 108 } // namespace config |
109 | 109 |
110 } // namespace ibus | 110 } // namespace ibus |
111 } // namespace chromeos | 111 } // namespace chromeos |
112 | 112 |
113 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ | 113 #endif // CHROMEOS_DBUS_IBUS_IBUS_CONSTANTS_H_ |
OLD | NEW |