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

Side by Side Diff: ios/chrome/browser/ui/omnibox/truncating_attributed_label.h

Issue 2695413003: Change OmniboxPopupTruncatingLabel to be based on UILabel. (Closed)
Patch Set: Created 3 years, 10 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
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 IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_ 5 #ifndef IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_
6 #define IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_ 6 #define IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_
7 7
8 #import <CoreText/CoreText.h>
9 #import <QuartzCore/QuartzCore.h>
10 #import <UIKit/UIKit.h> 8 #import <UIKit/UIKit.h>
11 9
12 #include "base/mac/scoped_nsobject.h" 10 #include "base/mac/scoped_nsobject.h"
13 11
14 typedef enum { 12 typedef enum {
15 OmniboxPopupTruncatingTail = 0x1, 13 OmniboxPopupTruncatingTail = 0x1,
16 OmniboxPopupTruncatingHead = 0x2, 14 OmniboxPopupTruncatingHead = 0x2,
17 OmniboxPopupTruncatingHeadAndTail = 15 OmniboxPopupTruncatingHeadAndTail =
18 OmniboxPopupTruncatingHead | OmniboxPopupTruncatingTail 16 OmniboxPopupTruncatingHead | OmniboxPopupTruncatingTail
19 } OmniboxPopupTruncatingMode; 17 } OmniboxPopupTruncatingMode;
20 18
21 // This is a copy of GTMFadeTruncatingLabel that supports 19 // This is a copy of GTMFadeTruncatingLabel that supports
22 // NSMutableAttributedString to change font (face and size), and color by using 20 // NSMutableAttributedString to change font (face and size) and color.
23 // CATextLayer. Unlike GTMFadeTruncatingLabel, it's not based on a UILabel, so 21 @interface OmniboxPopupTruncatingLabel : UILabel
24 // it does not support shadowOffset and shadowColor, baselineAdjustment,
25 // highlighted, minimumFontSize, and numberOfLines.
26 @interface OmniboxPopupTruncatingLabel : UIView
27 22
28 // Which side(s) to truncate. 23 // Which side(s) to truncate.
29 @property(nonatomic, assign) OmniboxPopupTruncatingMode truncateMode; 24 @property(nonatomic, assign) OmniboxPopupTruncatingMode truncateMode;
30 25
31 // Text alignment.
32 @property(nonatomic, assign) NSTextAlignment textAlignment;
33
34 // For display of an attributed string.
35 @property(nonatomic, retain) NSMutableAttributedString* attributedText;
36
37 // Set the label highlight state.
38 @property(nonatomic, assign) BOOL highlighted;
39
40 // Set the label highlight color.
41 @property(nonatomic, retain) NSMutableAttributedString* highlightedText;
42
43 @end 26 @end
44 27
45 #endif // IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_ 28 #endif // IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698