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 #include "ui/gfx/render_text.h" | 5 #include "ui/gfx/render_text.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/i18n/break_iterator.h" | 9 #include "base/i18n/break_iterator.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
864 // Save the underline and color breaks to undo the temporary styles later. | 864 // Save the underline and color breaks to undo the temporary styles later. |
865 DCHECK(!composition_and_selection_styles_applied_); | 865 DCHECK(!composition_and_selection_styles_applied_); |
866 saved_colors_ = colors_; | 866 saved_colors_ = colors_; |
867 saved_underlines_ = styles_[UNDERLINE]; | 867 saved_underlines_ = styles_[UNDERLINE]; |
868 | 868 |
869 // Apply an underline to the composition range in |underlines|. | 869 // Apply an underline to the composition range in |underlines|. |
870 if (composition_range_.IsValid() && !composition_range_.is_empty()) | 870 if (composition_range_.IsValid() && !composition_range_.is_empty()) |
871 styles_[UNDERLINE].ApplyValue(true, composition_range_); | 871 styles_[UNDERLINE].ApplyValue(true, composition_range_); |
872 | 872 |
873 // Apply the selected text color to the [un-reversed] selection range. | 873 // Apply the selected text color to the [un-reversed] selection range. |
874 if (!selection().is_empty()) { | 874 if (!selection().is_empty() && focused()) { |
875 const Range range(selection().GetMin(), selection().GetMax()); | 875 const Range range(selection().GetMin(), selection().GetMax()); |
876 colors_.ApplyValue(selection_color_, range); | 876 colors_.ApplyValue(selection_color_, range); |
877 } | 877 } |
878 composition_and_selection_styles_applied_ = true; | 878 composition_and_selection_styles_applied_ = true; |
879 } | 879 } |
880 | 880 |
881 void RenderText::UndoCompositionAndSelectionStyles() { | 881 void RenderText::UndoCompositionAndSelectionStyles() { |
882 // Restore the underline and color breaks to undo the temporary styles. | 882 // Restore the underline and color breaks to undo the temporary styles. |
883 DCHECK(composition_and_selection_styles_applied_); | 883 DCHECK(composition_and_selection_styles_applied_); |
884 colors_ = saved_colors_; | 884 colors_ = saved_colors_; |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1127 cursor_bounds_ += delta_offset; | 1127 cursor_bounds_ += delta_offset; |
1128 } | 1128 } |
1129 | 1129 |
1130 void RenderText::DrawSelection(Canvas* canvas) { | 1130 void RenderText::DrawSelection(Canvas* canvas) { |
1131 const std::vector<Rect> sel = GetSubstringBounds(selection()); | 1131 const std::vector<Rect> sel = GetSubstringBounds(selection()); |
1132 for (std::vector<Rect>::const_iterator i = sel.begin(); i < sel.end(); ++i) | 1132 for (std::vector<Rect>::const_iterator i = sel.begin(); i < sel.end(); ++i) |
1133 canvas->FillRect(*i, selection_background_focused_color_); | 1133 canvas->FillRect(*i, selection_background_focused_color_); |
1134 } | 1134 } |
1135 | 1135 |
1136 } // namespace gfx | 1136 } // namespace gfx |
OLD | NEW |