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

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

Issue 2589803002: Upstream Chrome on iOS source code [6/11]. (Closed)
Patch Set: Created 4 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_
6 #define IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_
7
8 #import <CoreText/CoreText.h>
9 #import <QuartzCore/QuartzCore.h>
10 #import <UIKit/UIKit.h>
11
12 #include "base/mac/scoped_nsobject.h"
13
14 typedef enum {
15 OmniboxPopupTruncatingTail = 0x1,
16 OmniboxPopupTruncatingHead = 0x2,
17 OmniboxPopupTruncatingHeadAndTail =
18 OmniboxPopupTruncatingHead | OmniboxPopupTruncatingTail
19 } OmniboxPopupTruncatingMode;
20
21 // This is a copy of GTMFadeTruncatingLabel that supports
22 // NSMutableAttributedString to change font (face and size), and color by using
23 // CATextLayer. Unlike GTMFadeTruncatingLabel, it's not based on a UILabel, so
24 // it does not support shadowOffset and shadowColor, baselineAdjustment,
25 // highlighted, minimumFontSize, and numberOfLines.
26 @interface OmniboxPopupTruncatingLabel : UIView
27
28 // Which side(s) to truncate.
29 @property(nonatomic, assign) OmniboxPopupTruncatingMode truncateMode;
30
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
44
45 #endif // IOS_CHROME_BROWSER_UI_OMNIBOX_TRUNCATING_ATTRIBUTED_LABEL_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/omnibox/preload_provider.h ('k') | ios/chrome/browser/ui/omnibox/truncating_attributed_label.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698