]> git.saurik.com Git - iphone-api.git/blob - UIKit/UILabel.h
Commit the Preferences folder (for WinterBoard).
[iphone-api.git] / UIKit / UILabel.h
1 /*
2 * Generated by class-dump 3.1.2.
3 *
4 * class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2007 by Steve Nygard.
5 */
6
7 #import <UIKit/UIView.h>
8
9 @class NSString, UIColor, UIFont;
10
11 @interface UILabel : UIView <NSCoding>
12 {
13 struct CGSize _size;
14 NSString *_text;
15 UIColor *_color;
16 UIColor *_highlightedColor;
17 UIColor *_shadowColor;
18 UIFont *_font;
19 struct CGSize _shadowOffset;
20 float _minFontSize;
21 float _actualFontSize;
22 int _numberOfLines;
23 struct {
24 unsigned int lineBreakMode:3;
25 unsigned int highlighted:1;
26 unsigned int autosizeTextToFit:1;
27 unsigned int baselineAdjustment:2;
28 unsigned int alignment:2;
29 unsigned int enabled:1;
30 unsigned int wordRoundingEnabled:1;
31 unsigned int reserved:21;
32 } _textLabelFlags;
33 }
34
35 + (id)defaultFont;
36 - (void)_commonInit;
37 - (id)initWithFrame:(struct CGRect)fp8;
38 - (void)setFrame:(struct CGRect)fp8;
39 - (id)initWithCoder:(id)fp8;
40 - (void)encodeWithCoder:(id)fp8;
41 - (void)dealloc;
42 - (BOOL)ignoresMouseEvents;
43 - (struct CGSize)textSize;
44 - (struct CGRect)textRectForBounds:(struct CGRect)fp8 limitedToNumberOfLines:(int)fp24;
45 - (void)_invalidateTextSize;
46 - (void)setText:(id)fp8;
47 - (id)text;
48 - (void)setUserInteractionEnabled:(BOOL)fp8;
49 - (void)setEnabled:(BOOL)fp8;
50 - (BOOL)isEnabled;
51 - (void)setTextColor:(id)fp8;
52 - (id)textColor;
53 - (void)setAdjustsFontSizeToFitWidth:(BOOL)fp8;
54 - (BOOL)adjustsFontSizeToFitWidth;
55 - (void)setMinimumFontSize:(float)fp8;
56 - (float)minimumFontSize;
57 - (void)setActualFontSize:(float)fp8;
58 - (float)actualFontSize;
59 - (void)setTextAlignment:(int)fp8;
60 - (int)textAlignment;
61 - (void)setHighlightedTextColor:(id)fp8;
62 - (id)highlightedTextColor;
63 - (id)_disabledFontColor;
64 - (id)currentTextColor;
65 - (void)setFont:(id)fp8;
66 - (id)font;
67 - (void)setShadowColor:(id)fp8;
68 - (id)shadowColor;
69 - (void)setShadowOffset:(struct CGSize)fp8;
70 - (struct CGSize)shadowOffset;
71 - (void)setHighlighted:(BOOL)fp8;
72 - (BOOL)isHighlighted;
73 - (void)setLineBreakMode:(int)fp8;
74 - (int)lineBreakMode;
75 - (void)setNumberOfLines:(int)fp8;
76 - (int)numberOfLines;
77 - (void)setBaselineAdjustment:(int)fp8;
78 - (int)baselineAdjustment;
79 - (struct CGSize)sizeThatFits:(struct CGSize)fp8;
80 - (void)drawTextInRect:(struct CGRect)fp8;
81 - (void)drawRect:(struct CGRect)fp8;
82 - (void)_setWordRoundingEnabled:(BOOL)fp8;
83
84 @end
85