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

Side by Side Diff: ui/message_center/views/bounded_label.h

Issue 24084003: Clean-up: Replaces Font with FontList in ui/message_center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removes comments at the ending of namespaces. Created 7 years, 3 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/message_center/views/bounded_label.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_MESSAGE_CENTER_BOUNDED_LABEL_H_ 5 #ifndef UI_MESSAGE_CENTER_BOUNDED_LABEL_H_
6 #define UI_MESSAGE_CENTER_BOUNDED_LABEL_H_ 6 #define UI_MESSAGE_CENTER_BOUNDED_LABEL_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 10
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "third_party/skia/include/core/SkColor.h" 12 #include "third_party/skia/include/core/SkColor.h"
13 #include "ui/message_center/message_center_export.h" 13 #include "ui/message_center/message_center_export.h"
14 #include "ui/views/view.h" 14 #include "ui/views/view.h"
15 15
16 namespace gfx { 16 namespace gfx {
17 class Font; 17 class FontList;
18 } 18 }
19 19
20 namespace message_center { 20 namespace message_center {
21 21
22 class InnerBoundedLabel; 22 class InnerBoundedLabel;
23 23
24 namespace test { 24 namespace test {
25 class BoundedLabelTest; 25 class BoundedLabelTest;
26 } 26 }
27 27
28 // BoundedLabels display left aligned text up to a maximum number of lines, with 28 // BoundedLabels display left aligned text up to a maximum number of lines, with
29 // ellipsis at the end of the last line for any omitted text. BoundedLabel is a 29 // ellipsis at the end of the last line for any omitted text. BoundedLabel is a
30 // direct subclass of views::Views rather than a subclass of views::Label 30 // direct subclass of views::Views rather than a subclass of views::Label
31 // to avoid exposing some of views::Label's methods that can't be made to work 31 // to avoid exposing some of views::Label's methods that can't be made to work
32 // with BoundedLabel. See the description of InnerBoundedLabel in the 32 // with BoundedLabel. See the description of InnerBoundedLabel in the
33 // bounded_label.cc file for details. 33 // bounded_label.cc file for details.
34 class MESSAGE_CENTER_EXPORT BoundedLabel : public views::View { 34 class MESSAGE_CENTER_EXPORT BoundedLabel : public views::View {
35 public: 35 public:
36 BoundedLabel(const string16& text, gfx::Font font); 36 BoundedLabel(const string16& text, const gfx::FontList& font_list);
37 BoundedLabel(const string16& text); 37 BoundedLabel(const string16& text);
38 virtual ~BoundedLabel(); 38 virtual ~BoundedLabel();
39 39
40 void SetColors(SkColor textColor, SkColor backgroundColor); 40 void SetColors(SkColor textColor, SkColor backgroundColor);
41 void SetLineHeight(int height); // Pass in 0 for default height. 41 void SetLineHeight(int height); // Pass in 0 for default height.
42 void SetLineLimit(int lines); // Pass in -1 for no limit. 42 void SetLineLimit(int lines); // Pass in -1 for no limit.
43 43
44 int GetLineHeight() const; 44 int GetLineHeight() const;
45 int GetLineLimit() const; 45 int GetLineLimit() const;
46 46
(...skipping 21 matching lines...) Expand all
68 68
69 scoped_ptr<InnerBoundedLabel> label_; 69 scoped_ptr<InnerBoundedLabel> label_;
70 int line_limit_; 70 int line_limit_;
71 71
72 DISALLOW_COPY_AND_ASSIGN(BoundedLabel); 72 DISALLOW_COPY_AND_ASSIGN(BoundedLabel);
73 }; 73 };
74 74
75 } // namespace message_center 75 } // namespace message_center
76 76
77 #endif // UI_MESSAGE_CENTER_BOUNDED_LABEL_H_ 77 #endif // UI_MESSAGE_CENTER_BOUNDED_LABEL_H_
OLDNEW
« no previous file with comments | « no previous file | ui/message_center/views/bounded_label.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698