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
3 // found in the LICENSE file.
5 #ifndef UI_GFX_RENDER_TEXT_H_
6 #define UI_GFX_RENDER_TEXT_H_
14 #include "base/gtest_prod_util.h"
15 #include "base/i18n/rtl.h"
16 #include "base/memory/scoped_ptr.h"
17 #include "base/strings/string16.h"
18 #include "skia/ext/refptr.h"
19 #include "third_party/skia/include/core/SkColor.h"
20 #include "third_party/skia/include/core/SkPaint.h"
21 #include "third_party/skia/include/core/SkRect.h"
22 #include "ui/gfx/break_list.h"
23 #include "ui/gfx/font_list.h"
24 #include "ui/gfx/font_render_params.h"
25 #include "ui/gfx/point.h"
26 #include "ui/gfx/range/range.h"
27 #include "ui/gfx/rect.h"
28 #include "ui/gfx/selection_model.h"
29 #include "ui/gfx/shadow_value.h"
30 #include "ui/gfx/size_f.h"
31 #include "ui/gfx/text_constants.h"
32 #include "ui/gfx/vector2d.h"
48 // Internal helper class used by derived classes to draw text through Skia.
49 class SkiaTextRenderer
{
51 explicit SkiaTextRenderer(Canvas
* canvas
);
54 void SetDrawLooper(SkDrawLooper
* draw_looper
);
55 void SetFontRenderParams(const FontRenderParams
& params
,
56 bool background_is_transparent
);
57 void SetTypeface(SkTypeface
* typeface
);
58 void SetTextSize(SkScalar size
);
59 void SetFontFamilyWithStyle(const std::string
& family
, int font_style
);
60 void SetForegroundColor(SkColor foreground
);
61 void SetShader(SkShader
* shader
, const Rect
& bounds
);
62 // Sets underline metrics to use if the text will be drawn with an underline.
63 // If not set, default values based on the size of the text will be used. The
64 // two metrics must be set together.
65 void SetUnderlineMetrics(SkScalar thickness
, SkScalar position
);
66 void DrawSelection(const std::vector
<Rect
>& selection
, SkColor color
);
67 void DrawPosText(const SkPoint
* pos
,
70 // Draw underline and strike-through text decorations.
71 // Based on |SkCanvas::DrawTextDecorations()| and constants from:
72 // third_party/skia/src/core/SkTextFormatParams.h
73 void DrawDecorations(int x
, int y
, int width
, bool underline
, bool strike
,
74 bool diagonal_strike
);
75 // Finishes any ongoing diagonal strike run.
76 void EndDiagonalStrike();
77 void DrawUnderline(int x
, int y
, int width
);
78 void DrawStrike(int x
, int y
, int width
) const;
81 // Helper class to draw a diagonal line with multiple pieces of different
82 // lengths and colors; to support text selection appearances.
83 class DiagonalStrike
{
85 DiagonalStrike(Canvas
* canvas
, Point start
, const SkPaint
& paint
);
88 void AddPiece(int length
, SkColor color
);
92 typedef std::pair
<int, SkColor
> Piece
;
98 std::vector
<Piece
> pieces_
;
100 DISALLOW_COPY_AND_ASSIGN(DiagonalStrike
);
104 SkCanvas
* canvas_skia_
;
105 bool started_drawing_
;
108 skia::RefPtr
<SkShader
> deferred_fade_shader_
;
109 SkScalar underline_thickness_
;
110 SkScalar underline_position_
;
111 scoped_ptr
<DiagonalStrike
> diagonal_
;
113 DISALLOW_COPY_AND_ASSIGN(SkiaTextRenderer
);
116 // Internal helper class used by derived classes to iterate colors and styles.
117 class StyleIterator
{
119 StyleIterator(const BreakList
<SkColor
>& colors
,
120 const std::vector
<BreakList
<bool> >& styles
);
123 // Get the colors and styles at the current iterator position.
124 SkColor
color() const { return color_
->second
; }
125 bool style(TextStyle s
) const { return style_
[s
]->second
; }
127 // Get the intersecting range of the current iterator set.
128 Range
GetRange() const;
130 // Update the iterator to point to colors and styles applicable at |position|.
131 void UpdatePosition(size_t position
);
134 BreakList
<SkColor
> colors_
;
135 std::vector
<BreakList
<bool> > styles_
;
137 BreakList
<SkColor
>::const_iterator color_
;
138 std::vector
<BreakList
<bool>::const_iterator
> style_
;
140 DISALLOW_COPY_AND_ASSIGN(StyleIterator
);
143 // Line segments are slices of the layout text to be rendered on a single line.
148 // X coordinates of this line segment in text space.
151 // The character range this segment corresponds to.
154 // Index of the text run that generated this segment.
158 // A line of layout text, comprised of a line segment list and some metrics.
163 // Segments that make up this line in visual order.
164 std::vector
<LineSegment
> segments
;
166 // A line size is the sum of segment widths and the maximum of segment
170 // Sum of preceding lines' heights.
171 int preceding_heights
;
173 // Maximum baseline of all segments on this line.
177 // Creates an SkTypeface from a font |family| name and a |gfx::Font::FontStyle|.
178 skia::RefPtr
<SkTypeface
> CreateSkiaTypeface(const std::string
& family
,
181 } // namespace internal
183 // RenderText represents an abstract model of styled text and its corresponding
184 // visual layout. Support is built in for a cursor, a selection, simple styling,
185 // complex scripts, and bi-directional text. Implementations provide mechanisms
186 // for rendering and translation between logical and visual data.
187 class GFX_EXPORT RenderText
{
189 virtual ~RenderText();
191 // Creates a platform-specific or cross-platform RenderText instance.
192 static RenderText
* CreateInstance();
194 const base::string16
& text() const { return text_
; }
195 void SetText(const base::string16
& text
);
197 HorizontalAlignment
horizontal_alignment() const {
198 return horizontal_alignment_
;
200 void SetHorizontalAlignment(HorizontalAlignment alignment
);
202 const FontList
& font_list() const { return font_list_
; }
203 void SetFontList(const FontList
& font_list
);
205 bool cursor_enabled() const { return cursor_enabled_
; }
206 void SetCursorEnabled(bool cursor_enabled
);
208 bool cursor_visible() const { return cursor_visible_
; }
209 void set_cursor_visible(bool visible
) { cursor_visible_
= visible
; }
211 bool insert_mode() const { return insert_mode_
; }
212 void ToggleInsertMode();
214 SkColor
cursor_color() const { return cursor_color_
; }
215 void set_cursor_color(SkColor color
) { cursor_color_
= color
; }
217 SkColor
selection_color() const { return selection_color_
; }
218 void set_selection_color(SkColor color
) { selection_color_
= color
; }
220 SkColor
selection_background_focused_color() const {
221 return selection_background_focused_color_
;
223 void set_selection_background_focused_color(SkColor color
) {
224 selection_background_focused_color_
= color
;
227 bool focused() const { return focused_
; }
228 void set_focused(bool focused
) { focused_
= focused
; }
230 bool clip_to_display_rect() const { return clip_to_display_rect_
; }
231 void set_clip_to_display_rect(bool clip
) { clip_to_display_rect_
= clip
; }
233 // In an obscured (password) field, all text is drawn as asterisks or bullets.
234 bool obscured() const { return obscured_
; }
235 void SetObscured(bool obscured
);
237 // Makes a char in obscured text at |index| to be revealed. |index| should be
238 // a UTF16 text index. If there is a previous revealed index, the previous one
239 // is cleared and only the last set index will be revealed. If |index| is -1
240 // or out of range, no char will be revealed. The revealed index is also
241 // cleared when SetText or SetObscured is called.
242 void SetObscuredRevealIndex(int index
);
244 // TODO(ckocagil): Multiline text rendering is currently only supported on
245 // Windows. Support other platforms.
246 bool multiline() const { return multiline_
; }
247 void SetMultiline(bool multiline
);
249 // Set the maximum length of the displayed layout text, not the actual text.
250 // A |length| of 0 forgoes a hard limit, but does not guarantee proper
251 // functionality of very long strings. Applies to subsequent SetText calls.
252 // WARNING: Only use this for system limits, it lacks complex text support.
253 void set_truncate_length(size_t length
) { truncate_length_
= length
; }
255 // The layout text will be elided to fit |display_rect| using this behavior.
256 // The layout text may be shortened further by the truncate length.
257 void SetElideBehavior(ElideBehavior elide_behavior
);
259 const base::string16
& layout_text() const { return layout_text_
; }
261 const Rect
& display_rect() const { return display_rect_
; }
262 void SetDisplayRect(const Rect
& r
);
264 bool background_is_transparent() const { return background_is_transparent_
; }
265 void set_background_is_transparent(bool transparent
) {
266 background_is_transparent_
= transparent
;
269 const SelectionModel
& selection_model() const { return selection_model_
; }
271 const Range
& selection() const { return selection_model_
.selection(); }
273 size_t cursor_position() const { return selection_model_
.caret_pos(); }
274 void SetCursorPosition(size_t position
);
276 // Moves the cursor left or right. Cursor movement is visual, meaning that
277 // left and right are relative to screen, not the directionality of the text.
278 // If |select| is false, the selection start is moved to the same position.
279 void MoveCursor(BreakType break_type
,
280 VisualCursorDirection direction
,
283 // Set the selection_model_ to the value of |selection|.
284 // The selection range is clamped to text().length() if out of range.
285 // Returns true if the cursor position or selection range changed.
286 // If any index in |selection_model| is not a cursorable position (not on a
287 // grapheme boundary), it is a no-op and returns false.
288 bool MoveCursorTo(const SelectionModel
& selection_model
);
290 // Set the selection_model_ based on |range|.
291 // If the |range| start or end is greater than text length, it is modified
292 // to be the text length.
293 // If the |range| start or end is not a cursorable position (not on grapheme
294 // boundary), it is a NO-OP and returns false. Otherwise, returns true.
295 bool SelectRange(const Range
& range
);
297 // Returns true if the local point is over selected text.
298 bool IsPointInSelection(const Point
& point
);
300 // Selects no text, keeping the current cursor position and caret affinity.
301 void ClearSelection();
303 // Select the entire text range. If |reversed| is true, the range will end at
304 // the logical beginning of the text; this generally shows the leading portion
305 // of text that overflows its display area.
306 void SelectAll(bool reversed
);
308 // Selects the word at the current cursor position. If there is a non-empty
309 // selection, the selection bounds are extended to their nearest word
313 const Range
& GetCompositionRange() const;
314 void SetCompositionRange(const Range
& composition_range
);
316 // Set the text color over the entire text or a logical character range.
317 // The |range| should be valid, non-reversed, and within [0, text().length()].
318 void SetColor(SkColor value
);
319 void ApplyColor(SkColor value
, const Range
& range
);
321 // Set various text styles over the entire text or a logical character range.
322 // The respective |style| is applied if |value| is true, or removed if false.
323 // The |range| should be valid, non-reversed, and within [0, text().length()].
324 void SetStyle(TextStyle style
, bool value
);
325 void ApplyStyle(TextStyle style
, bool value
, const Range
& range
);
327 // Returns whether this style is enabled consistently across the entire
329 bool GetStyle(TextStyle style
) const;
331 // Set or get the text directionality mode and get the text direction yielded.
332 void SetDirectionalityMode(DirectionalityMode mode
);
333 DirectionalityMode
directionality_mode() const {
334 return directionality_mode_
;
336 base::i18n::TextDirection
GetTextDirection();
338 // Returns the visual movement direction corresponding to the logical end
339 // of the text, considering only the dominant direction returned by
340 // |GetTextDirection()|, not the direction of a particular run.
341 VisualCursorDirection
GetVisualDirectionOfLogicalEnd();
343 // Returns the size required to display the current string (which is the
344 // wrapped size in multiline mode). The returned size does not include space
345 // reserved for the cursor or the offset text shadows.
346 virtual Size
GetStringSize() = 0;
348 // This is same as GetStringSize except that fractional size is returned.
349 // The default implementation is same as GetStringSize. Certain platforms that
350 // compute the text size as floating-point values, like Mac, will override
352 // See comment in Canvas::GetStringWidthF for its usage.
353 virtual SizeF
GetStringSizeF();
355 // Returns the width of the content (which is the wrapped width in multiline
356 // mode). Reserves room for the cursor if |cursor_enabled_| is true.
357 float GetContentWidth();
359 // Returns the common baseline of the text. The return value is the vertical
360 // offset from the top of |display_rect_| to the text baseline, in pixels.
361 // The baseline is determined from the font list and display rect, and does
362 // not depend on the text.
365 void Draw(Canvas
* canvas
);
367 // Draws a cursor at |position|.
368 void DrawCursor(Canvas
* canvas
, const SelectionModel
& position
);
370 // Gets the SelectionModel from a visual point in local coordinates.
371 virtual SelectionModel
FindCursorPosition(const Point
& point
) = 0;
373 // Returns true if the position is a valid logical index into text(), and is
374 // also a valid grapheme boundary, which may be used as a cursor position.
375 virtual bool IsValidCursorIndex(size_t index
) = 0;
377 // Returns true if the position is a valid logical index into text(). Indices
378 // amid multi-character graphemes are allowed here, unlike IsValidCursorIndex.
379 virtual bool IsValidLogicalIndex(size_t index
);
381 // Get the visual bounds of a cursor at |caret|. These bounds typically
382 // represent a vertical line if |insert_mode| is true. Pass false for
383 // |insert_mode| to retrieve the bounds of the associated glyph. These bounds
384 // are in local coordinates, but may be outside the visible region if the text
385 // is longer than the textfield. Subsequent text, cursor, or bounds changes
386 // may invalidate returned values. Note that |caret| must be placed at
387 // grapheme boundary, i.e. caret.caret_pos() must be a cursorable position.
388 Rect
GetCursorBounds(const SelectionModel
& caret
, bool insert_mode
);
390 // Compute the current cursor bounds, panning the text to show the cursor in
391 // the display rect if necessary. These bounds are in local coordinates.
392 // Subsequent text, cursor, or bounds changes may invalidate returned values.
393 const Rect
& GetUpdatedCursorBounds();
395 // Given an |index| in text(), return the next or previous grapheme boundary
396 // in logical order (i.e. the nearest cursorable index). The return value is
397 // in the range 0 to text().length() inclusive (the input is clamped if it is
398 // out of that range). Always moves by at least one character index unless the
399 // supplied index is already at the boundary of the string.
400 size_t IndexOfAdjacentGrapheme(size_t index
,
401 LogicalCursorDirection direction
);
403 // Return a SelectionModel with the cursor at the current selection's start.
404 // The returned value represents a cursor/caret position without a selection.
405 SelectionModel
GetSelectionModelForSelectionStart();
407 // Sets shadows to drawn with text.
408 void set_shadows(const ShadowValues
& shadows
) { shadows_
= shadows
; }
410 typedef std::pair
<Font
, Range
> FontSpan
;
411 // For testing purposes, returns which fonts were chosen for which parts of
412 // the text by returning a vector of Font and Range pairs, where each range
413 // specifies the character range for which the corresponding font has been
415 virtual std::vector
<FontSpan
> GetFontSpansForTesting() = 0;
417 // Gets the horizontal bounds (relative to the left of the text, not the view)
418 // of the glyph starting at |index|. If the glyph is RTL then the returned
419 // Range will have is_reversed() true. (This does not return a Rect because a
420 // Rect can't have a negative width.)
421 virtual Range
GetGlyphBounds(size_t index
) = 0;
423 const Vector2d
& GetUpdatedDisplayOffset();
424 void SetDisplayOffset(int horizontal_offset
);
429 const BreakList
<SkColor
>& colors() const { return colors_
; }
430 const std::vector
<BreakList
<bool> >& styles() const { return styles_
; }
432 const std::vector
<internal::Line
>& lines() const { return lines_
; }
433 void set_lines(std::vector
<internal::Line
>* lines
) { lines_
.swap(*lines
); }
435 // Returns the baseline of the current text. The return value depends on
436 // the text and its layout while the return value of GetBaseline() doesn't.
437 // GetAlignmentOffset() takes into account the difference between them.
439 // We'd like a RenderText to show the text always on the same baseline
440 // regardless of the text, so the text does not jump up or down depending
441 // on the text. However, underlying layout engines return different baselines
442 // depending on the text. In general, layout engines determine the minimum
443 // bounding box for the text and return the baseline from the top of the
444 // bounding box. So the baseline changes depending on font metrics used to
447 // For example, suppose there are FontA and FontB and the baseline of FontA
448 // is smaller than the one of FontB. If the text is laid out only with FontA,
449 // then the baseline of FontA may be returned. If the text includes some
450 // characters which are laid out with FontB, then the baseline of FontB may
453 // GetBaseline() returns the fixed baseline regardless of the text.
454 // GetLayoutTextBaseline() returns the baseline determined by the underlying
455 // layout engine, and it changes depending on the text. GetAlignmentOffset()
456 // returns the difference between them.
457 virtual int GetLayoutTextBaseline() = 0;
459 void set_cached_bounds_and_offset_valid(bool valid
) {
460 cached_bounds_and_offset_valid_
= valid
;
463 // Get the selection model that visually neighbors |position| by |break_type|.
464 // The returned value represents a cursor/caret position without a selection.
465 SelectionModel
GetAdjacentSelectionModel(const SelectionModel
& current
,
466 BreakType break_type
,
467 VisualCursorDirection direction
);
469 // Get the selection model visually left/right of |selection| by one grapheme.
470 // The returned value represents a cursor/caret position without a selection.
471 virtual SelectionModel
AdjacentCharSelectionModel(
472 const SelectionModel
& selection
,
473 VisualCursorDirection direction
) = 0;
475 // Get the selection model visually left/right of |selection| by one word.
476 // The returned value represents a cursor/caret position without a selection.
477 virtual SelectionModel
AdjacentWordSelectionModel(
478 const SelectionModel
& selection
,
479 VisualCursorDirection direction
) = 0;
481 // Get the SelectionModels corresponding to visual text ends.
482 // The returned value represents a cursor/caret position without a selection.
483 SelectionModel
EdgeSelectionModel(VisualCursorDirection direction
);
485 // Sets the selection model, the argument is assumed to be valid.
486 virtual void SetSelectionModel(const SelectionModel
& model
);
488 // Get the visual bounds containing the logical substring within the |range|.
489 // If |range| is empty, the result is empty. These bounds could be visually
490 // discontinuous if the substring is split by a LTR/RTL level change.
491 // These bounds are in local coordinates, but may be outside the visible
492 // region if the text is longer than the textfield. Subsequent text, cursor,
493 // or bounds changes may invalidate returned values.
494 virtual std::vector
<Rect
> GetSubstringBounds(const Range
& range
) = 0;
496 // Convert between indices into |text_| and indices into |obscured_text_|,
497 // which differ when the text is obscured. Regardless of whether or not the
498 // text is obscured, the character (code point) offsets always match.
499 virtual size_t TextIndexToLayoutIndex(size_t index
) const = 0;
500 virtual size_t LayoutIndexToTextIndex(size_t index
) const = 0;
502 // Reset the layout to be invalid.
503 virtual void ResetLayout() = 0;
505 // Ensure the text is laid out, lines are computed, and |lines_| is valid.
506 virtual void EnsureLayout() = 0;
509 virtual void DrawVisualText(Canvas
* canvas
) = 0;
511 // Returns the text used for layout, which may be obscured or truncated.
512 const base::string16
& GetLayoutText() const;
514 // Returns layout text positions that are suitable for breaking lines.
515 const BreakList
<size_t>& GetLineBreaks();
517 // Apply (and undo) temporary composition underlines and selection colors.
518 void ApplyCompositionAndSelectionStyles();
519 void UndoCompositionAndSelectionStyles();
521 // Returns the line offset from the origin after applying the text alignment
522 // and the display offset.
523 Vector2d
GetLineOffset(size_t line_number
);
525 // Convert points from the text space to the view space and back. Handles the
526 // display area, display offset, application LTR/RTL mode and multiline.
527 Point
ToTextPoint(const Point
& point
);
528 Point
ToViewPoint(const Point
& point
);
530 // Convert a text space x-coordinate range to rects in view space.
531 std::vector
<Rect
> TextBoundsToViewBounds(const Range
& x
);
533 // Returns the line offset from the origin, accounts for text alignment only.
534 Vector2d
GetAlignmentOffset(size_t line_number
);
536 // Applies fade effects to |renderer|.
537 void ApplyFadeEffects(internal::SkiaTextRenderer
* renderer
);
539 // Applies text shadows to |renderer|.
540 void ApplyTextShadows(internal::SkiaTextRenderer
* renderer
);
542 // A convenience function to check whether the glyph attached to the caret
543 // is within the given range.
544 static bool RangeContainsCaret(const Range
& range
,
546 LogicalCursorDirection caret_affinity
);
549 friend class RenderTextTest
;
550 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, DefaultStyle
);
551 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, SetColorAndStyle
);
552 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, ApplyColorAndStyle
);
553 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, ObscuredText
);
554 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, RevealObscuredText
);
555 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, ElidedText
);
556 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, ElidedObscuredText
);
557 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, TruncatedText
);
558 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, TruncatedObscuredText
);
559 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, GraphemePositions
);
560 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, EdgeSelectionModels
);
561 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, GetTextOffset
);
562 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, GetTextOffsetHorizontalDefaultInRTL
);
563 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, Multiline_MinWidth
);
564 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, Multiline_NormalWidth
);
565 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, Multiline_SufficientWidth
);
566 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, Multiline_Newline
);
567 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, GlyphBounds
);
568 FRIEND_TEST_ALL_PREFIXES(RenderTextTest
, HarfBuzz_GlyphBounds
);
570 // Creates a platform-specific RenderText instance.
571 static RenderText
* CreateNativeInstance();
573 // Set the cursor to |position|, with the caret trailing the previous
574 // grapheme, or if there is no previous grapheme, leading the cursor position.
575 // If |select| is false, the selection start is moved to the same position.
576 // If the |position| is not a cursorable position (not on grapheme boundary),
578 void MoveCursorTo(size_t position
, bool select
);
580 // Updates |layout_text_| if the text is obscured or truncated.
581 void UpdateLayoutText();
583 // Elides |text| as needed to fit in the |available_width| using |behavior|.
584 base::string16
Elide(const base::string16
& text
,
585 float available_width
,
586 ElideBehavior behavior
);
588 // Elides |email| as needed to fit the |available_width|.
589 base::string16
ElideEmail(const base::string16
& email
, float available_width
);
591 // Update the cached bounds and display offset to ensure that the current
592 // cursor is within the visible display area.
593 void UpdateCachedBoundsAndOffset();
595 // Draw the selection.
596 void DrawSelection(Canvas
* canvas
);
598 // Logical UTF-16 string data to be drawn.
599 base::string16 text_
;
601 // Horizontal alignment of the text with respect to |display_rect_|. The
602 // default is to align left if the application UI is LTR and right if RTL.
603 HorizontalAlignment horizontal_alignment_
;
605 // The text directionality mode, defaults to DIRECTIONALITY_FROM_TEXT.
606 DirectionalityMode directionality_mode_
;
608 // The cached text direction, potentially computed from the text or UI locale.
609 // Use GetTextDirection(), do not use this potentially invalid value directly!
610 base::i18n::TextDirection text_direction_
;
612 // A list of fonts used to render |text_|.
615 // Logical selection range and visual cursor position.
616 SelectionModel selection_model_
;
618 // The cached cursor bounds; get these bounds with GetUpdatedCursorBounds.
621 // Specifies whether the cursor is enabled. If disabled, no space is reserved
622 // for the cursor when positioning text.
623 bool cursor_enabled_
;
625 // The cursor visibility and insert mode.
626 bool cursor_visible_
;
629 // The color used for the cursor.
630 SkColor cursor_color_
;
632 // The color used for drawing selected text.
633 SkColor selection_color_
;
635 // The background color used for drawing the selection when focused.
636 SkColor selection_background_focused_color_
;
638 // The focus state of the text.
641 // Composition text range.
642 Range composition_range_
;
644 // Color and style breaks, used to color and stylize ranges of text.
645 // BreakList positions are stored with text indices, not layout indices.
646 // TODO(msw): Expand to support cursor, selection, background, etc. colors.
647 BreakList
<SkColor
> colors_
;
648 std::vector
<BreakList
<bool> > styles_
;
650 // Breaks saved without temporary composition and selection styling.
651 BreakList
<SkColor
> saved_colors_
;
652 BreakList
<bool> saved_underlines_
;
653 bool composition_and_selection_styles_applied_
;
655 // A flag to obscure actual text with asterisks for password fields.
657 // The index at which the char should be revealed in the obscured text.
658 int obscured_reveal_index_
;
660 // The maximum length of text to display, 0 forgoes a hard limit.
661 size_t truncate_length_
;
663 // The behavior for eliding, fading, or truncating.
664 ElideBehavior elide_behavior_
;
666 // The obscured and/or truncated text that will be displayed.
667 base::string16 layout_text_
;
669 // Whether the text should be broken into multiple lines. Uses the width of
670 // |display_rect_| as the width cap.
673 // Is the background transparent (either partially or fully)?
674 bool background_is_transparent_
;
676 // The local display area for rendering the text.
679 // Flag to work around a Skia bug with the PDF path (http://crbug.com/133548)
680 // that results in incorrect clipping when drawing to the document margins.
681 // This field allows disabling clipping to work around the issue.
682 // TODO(asvitkine): Remove this when the underlying Skia bug is fixed.
683 bool clip_to_display_rect_
;
685 // The offset for the text to be drawn, relative to the display area.
686 // Get this point with GetUpdatedDisplayOffset (or risk using a stale value).
687 Vector2d display_offset_
;
689 // The baseline of the text. This is determined from the height of the
690 // display area and the cap height of the font list so the text is vertically
694 // The cached bounds and offset are invalidated by changes to the cursor,
695 // selection, font, and other operations that adjust the visible text bounds.
696 bool cached_bounds_and_offset_valid_
;
698 // Text shadows to be drawn.
699 ShadowValues shadows_
;
701 // A list of valid layout text line break positions.
702 BreakList
<size_t> line_breaks_
;
704 // Lines computed by EnsureLayout. These should be invalidated with
705 // ResetLayout and on |display_rect_| changes.
706 std::vector
<internal::Line
> lines_
;
708 DISALLOW_COPY_AND_ASSIGN(RenderText
);
713 #endif // UI_GFX_RENDER_TEXT_H_