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

Side by Side Diff: ui/gfx/render_text_pango.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_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
11 #include "ui/gfx/render_text.h" 11 #include "ui/gfx/render_text.h"
12 12
13 namespace gfx { 13 namespace gfx {
14 14
15 // RenderTextPango is the Linux implementation of RenderText using Pango. 15 // RenderTextPango is the Linux implementation of RenderText using Pango.
16 class RenderTextPango : public RenderText { 16 class RenderTextPango : public RenderText {
17 public: 17 public:
18 RenderTextPango(); 18 RenderTextPango();
19 ~RenderTextPango() override; 19 ~RenderTextPango() override;
20 20
21 // Overridden from RenderText: 21 // Overridden from RenderText:
22 scoped_ptr<RenderText> CreateInstanceOfSameType() const override;
22 Size GetStringSize() override; 23 Size GetStringSize() override;
23 SelectionModel FindCursorPosition(const Point& point) override; 24 SelectionModel FindCursorPosition(const Point& point) override;
24 std::vector<FontSpan> GetFontSpansForTesting() override; 25 std::vector<FontSpan> GetFontSpansForTesting() override;
25 26
26 protected: 27 protected:
27 // Overridden from RenderText: 28 // Overridden from RenderText:
28 int GetLayoutTextBaseline() override; 29 int GetLayoutTextBaseline() override;
29 SelectionModel AdjacentCharSelectionModel( 30 SelectionModel AdjacentCharSelectionModel(
30 const SelectionModel& selection, 31 const SelectionModel& selection,
31 VisualCursorDirection direction) override; 32 VisualCursorDirection direction) override;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 80
80 // The text in the |layout_|. 81 // The text in the |layout_|.
81 const char* layout_text_; 82 const char* layout_text_;
82 83
83 DISALLOW_COPY_AND_ASSIGN(RenderTextPango); 84 DISALLOW_COPY_AND_ASSIGN(RenderTextPango);
84 }; 85 };
85 86
86 } // namespace gfx 87 } // namespace gfx
87 88
88 #endif // UI_GFX_RENDER_TEXT_PANGO_H_ 89 #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