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

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

Issue 779793006: MacViews: Use RenderTextHarfBuzz only for Textfields (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename to CreateInstanceOfSameType Created 6 years 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
« no previous file with comments | « ui/gfx/render_text_harfbuzz.cc ('k') | ui/gfx/render_text_mac.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_MAC_H_ 5 #ifndef UI_GFX_RENDER_TEXT_MAC_H_
6 #define UI_GFX_RENDER_TEXT_MAC_H_ 6 #define UI_GFX_RENDER_TEXT_MAC_H_
7 7
8 #include <ApplicationServices/ApplicationServices.h> 8 #include <ApplicationServices/ApplicationServices.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/mac/scoped_cftyperef.h" 13 #include "base/mac/scoped_cftyperef.h"
14 #include "ui/gfx/render_text.h" 14 #include "ui/gfx/render_text.h"
15 15
16 namespace gfx { 16 namespace gfx {
17 17
18 // RenderTextMac is the Mac implementation of RenderText that uses CoreText for 18 // RenderTextMac is the Mac implementation of RenderText that uses CoreText for
19 // layout and Skia for drawing. 19 // layout and Skia for drawing.
20 // 20 //
21 // Note: The current implementation only supports drawing and sizing the text, 21 // Note: The current implementation only supports drawing and sizing the text,
22 // but not text selection or cursor movement. 22 // but not text selection or cursor movement.
23 class RenderTextMac : public RenderText { 23 class RenderTextMac : public RenderText {
24 public: 24 public:
25 RenderTextMac(); 25 RenderTextMac();
26 ~RenderTextMac() override; 26 ~RenderTextMac() override;
27 27
28 // Overridden from RenderText: 28 // Overridden from RenderText:
29 scoped_ptr<RenderText> CreateInstanceOfSameType() const override;
29 Size GetStringSize() override; 30 Size GetStringSize() override;
30 SizeF GetStringSizeF() override; 31 SizeF GetStringSizeF() override;
31 SelectionModel FindCursorPosition(const Point& point) override; 32 SelectionModel FindCursorPosition(const Point& point) override;
32 std::vector<FontSpan> GetFontSpansForTesting() override; 33 std::vector<FontSpan> GetFontSpansForTesting() override;
33 34
34 protected: 35 protected:
35 // Overridden from RenderText: 36 // Overridden from RenderText:
36 int GetLayoutTextBaseline() override; 37 int GetLayoutTextBaseline() override;
37 SelectionModel AdjacentCharSelectionModel( 38 SelectionModel AdjacentCharSelectionModel(
38 const SelectionModel& selection, 39 const SelectionModel& selection,
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 94
94 // Indicates that |runs_| are valid, set by |ComputeRuns()|. 95 // Indicates that |runs_| are valid, set by |ComputeRuns()|.
95 bool runs_valid_; 96 bool runs_valid_;
96 97
97 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); 98 DISALLOW_COPY_AND_ASSIGN(RenderTextMac);
98 }; 99 };
99 100
100 } // namespace gfx 101 } // namespace gfx
101 102
102 #endif // UI_GFX_RENDER_TEXT_MAC_H_ 103 #endif // UI_GFX_RENDER_TEXT_MAC_H_
OLDNEW
« no previous file with comments | « ui/gfx/render_text_harfbuzz.cc ('k') | ui/gfx/render_text_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698