Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: ui/gfx/render_text_pango.h

Issue 252563003: Fix Views inline autocomplete with multi-char graphemes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Extrapolate on the comment. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/gfx/render_text_mac.cc ('k') | ui/gfx/render_text_pango.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 UI_GFX_RENDER_TEXT_PANGO_H_ 5 #ifndef UI_GFX_RENDER_TEXT_PANGO_H_
6 #define UI_GFX_RENDER_TEXT_PANGO_H_ 6 #define UI_GFX_RENDER_TEXT_PANGO_H_
7 7
8 #include <pango/pango.h> 8 #include <pango/pango.h>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 18 matching lines...) Expand all
29 virtual SelectionModel AdjacentCharSelectionModel( 29 virtual SelectionModel AdjacentCharSelectionModel(
30 const SelectionModel& selection, 30 const SelectionModel& selection,
31 VisualCursorDirection direction) OVERRIDE; 31 VisualCursorDirection direction) OVERRIDE;
32 virtual SelectionModel AdjacentWordSelectionModel( 32 virtual SelectionModel AdjacentWordSelectionModel(
33 const SelectionModel& selection, 33 const SelectionModel& selection,
34 VisualCursorDirection direction) OVERRIDE; 34 VisualCursorDirection direction) OVERRIDE;
35 virtual Range GetGlyphBounds(size_t index) OVERRIDE; 35 virtual Range GetGlyphBounds(size_t index) OVERRIDE;
36 virtual std::vector<Rect> GetSubstringBounds(const Range& range) OVERRIDE; 36 virtual std::vector<Rect> GetSubstringBounds(const Range& range) OVERRIDE;
37 virtual size_t TextIndexToLayoutIndex(size_t index) const OVERRIDE; 37 virtual size_t TextIndexToLayoutIndex(size_t index) const OVERRIDE;
38 virtual size_t LayoutIndexToTextIndex(size_t index) const OVERRIDE; 38 virtual size_t LayoutIndexToTextIndex(size_t index) const OVERRIDE;
39 virtual bool IsCursorablePosition(size_t position) OVERRIDE; 39 virtual bool IsValidCursorIndex(size_t index) OVERRIDE;
40 virtual void ResetLayout() OVERRIDE; 40 virtual void ResetLayout() OVERRIDE;
41 virtual void EnsureLayout() OVERRIDE; 41 virtual void EnsureLayout() OVERRIDE;
42 virtual void DrawVisualText(Canvas* canvas) OVERRIDE; 42 virtual void DrawVisualText(Canvas* canvas) OVERRIDE;
43 43
44 private: 44 private:
45 friend class RenderTextTest; 45 friend class RenderTextTest;
46 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, PangoAttributes); 46 FRIEND_TEST_ALL_PREFIXES(RenderTextTest, PangoAttributes);
47 47
48 // Returns the run that contains the character attached to the caret in the 48 // Returns the run that contains the character attached to the caret in the
49 // given selection model. Return NULL if not found. 49 // given selection model. Return NULL if not found.
(...skipping 29 matching lines...) Expand all
79 79
80 // The text in the |layout_|. 80 // The text in the |layout_|.
81 const char* layout_text_; 81 const char* layout_text_;
82 82
83 DISALLOW_COPY_AND_ASSIGN(RenderTextPango); 83 DISALLOW_COPY_AND_ASSIGN(RenderTextPango);
84 }; 84 };
85 85
86 } // namespace gfx 86 } // namespace gfx
87 87
88 #endif // UI_GFX_RENDER_TEXT_PANGO_H_ 88 #endif // UI_GFX_RENDER_TEXT_PANGO_H_
OLDNEW
« no previous file with comments | « ui/gfx/render_text_mac.cc ('k') | ui/gfx/render_text_pango.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698