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 #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/gfx_export.h" |
14 #include "ui/gfx/render_text.h" | 15 #include "ui/gfx/render_text.h" |
15 | 16 |
16 namespace gfx { | 17 namespace gfx { |
17 | 18 |
18 // RenderTextMac is the Mac implementation of RenderText that uses CoreText for | 19 // RenderTextMac is the Mac implementation of RenderText that uses CoreText for |
19 // layout and Skia for drawing. | 20 // layout and Skia for drawing. |
20 // | 21 // |
21 // Note: The current implementation only supports drawing and sizing the text, | 22 // Note: The current implementation only supports drawing and sizing the text, |
22 // but not text selection or cursor movement. | 23 // but not text selection or cursor movement. |
23 class RenderTextMac : public RenderText { | 24 class GFX_EXPORT RenderTextMac : public RenderText { |
24 public: | 25 public: |
25 RenderTextMac(); | 26 RenderTextMac(); |
26 ~RenderTextMac() override; | 27 ~RenderTextMac() override; |
27 | 28 |
28 // RenderText: | 29 // RenderText: |
29 scoped_ptr<RenderText> CreateInstanceOfSameType() const override; | 30 scoped_ptr<RenderText> CreateInstanceOfSameType() const override; |
30 bool MultilineSupported() const override; | 31 bool MultilineSupported() const override; |
31 const base::string16& GetDisplayText() override; | 32 const base::string16& GetDisplayText() override; |
32 Size GetStringSize() override; | 33 Size GetStringSize() override; |
33 SizeF GetStringSizeF() override; | 34 SizeF GetStringSizeF() override; |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 | 100 |
100 // Indicates that |runs_| are valid, set by |ComputeRuns()|. | 101 // Indicates that |runs_| are valid, set by |ComputeRuns()|. |
101 bool runs_valid_; | 102 bool runs_valid_; |
102 | 103 |
103 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); | 104 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); |
104 }; | 105 }; |
105 | 106 |
106 } // namespace gfx | 107 } // namespace gfx |
107 | 108 |
108 #endif // UI_GFX_RENDER_TEXT_MAC_H_ | 109 #endif // UI_GFX_RENDER_TEXT_MAC_H_ |
OLD | NEW |