OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef UI_METRO_VIEWER_IME_TYPES_H_ |
| 6 #define UI_METRO_VIEWER_IME_TYPES_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/strings/string16.h" |
| 10 |
| 11 namespace metro_viewer { |
| 12 |
| 13 // An equivalent to ui::CompositionUnderline defined in |
| 14 // "ui/base/ime/composition_underline.h". Redefined here to avoid dependency |
| 15 // on ui.gyp from metro_driver.gyp. |
| 16 struct UnderlineInfo { |
| 17 UnderlineInfo() |
| 18 : start_offset(0), end_offset(0), thick(false) {} |
| 19 int32 start_offset; |
| 20 int32 end_offset; |
| 21 bool thick; |
| 22 }; |
| 23 |
| 24 // An equivalent to ui::CompositionText defined in |
| 25 // "ui/base/ime/composition_text.h". Redefined here to avoid dependency |
| 26 // on ui.gyp from metro_driver.gyp. |
| 27 struct Composition { |
| 28 Composition() |
| 29 : selection_start(0), |
| 30 selection_end(0) {} |
| 31 string16 text; |
| 32 int32 selection_start; |
| 33 int32 selection_end; |
| 34 std::vector<UnderlineInfo> underlines; |
| 35 }; |
| 36 |
| 37 // An equivalent to Win32 RECT structure. This can be gfx::Rect but redefined |
| 38 // here to avoid dependency on gfx.gyp from metro_driver.gyp. |
| 39 struct CharacterBounds { |
| 40 CharacterBounds() |
| 41 : left(0), top(0), right(0), bottom(0) {} |
| 42 int32 left; |
| 43 int32 top; |
| 44 int32 right; |
| 45 int32 bottom; |
| 46 }; |
| 47 |
| 48 } // namespace metro_viewer |
| 49 |
| 50 #endif // UI_METRO_VIEWER_IME_TYPES_H_ |
OLD | NEW |