]> git.saurik.com Git - iphone-api.git/blob - UIKit/UIControl.h
Commit the Preferences folder (for WinterBoard).
[iphone-api.git] / UIKit / UIControl.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 NSMutableArray;
10
11 @interface UIControl : UIView
12 {
13 NSMutableArray *_targetActions;
14 struct CGPoint _previousPoint;
15 double _downTime;
16 struct {
17 unsigned int disabled:1;
18 unsigned int tracking:1;
19 unsigned int touchInside:1;
20 unsigned int touchDragged:1;
21 unsigned int requiresDisplayOnTracking:1;
22 unsigned int highlighted:1;
23 unsigned int dontHighlightOnTouchDown:1;
24 unsigned int delayActions:1;
25 unsigned int allowActionsToQueue:1;
26 unsigned int pendingUnhighlight:1;
27 unsigned int selected:1;
28 unsigned int verticalAlignment:2;
29 unsigned int horizontalAlignment:2;
30 } _controlFlags;
31 }
32
33 - (id)initWithFrame:(struct CGRect)fp8;
34 - (id)initWithCoder:(id)fp8;
35 - (void)encodeWithCoder:(id)fp8;
36 - (void)dealloc;
37 - (void)setEnabled:(BOOL)fp8;
38 - (BOOL)isEnabled;
39 - (BOOL)isTracking;
40 - (unsigned int)state;
41 - (BOOL)isTouchInside;
42 - (BOOL)cancelMouseTracking;
43 - (BOOL)cancelTouchTracking;
44 - (BOOL)beginTrackingWithTouch:(id)fp8 withEvent:(id)fp12;
45 - (BOOL)continueTrackingWithTouch:(id)fp8 withEvent:(id)fp12;
46 - (void)endTrackingWithTouch:(id)fp8 withEvent:(id)fp12;
47 - (void)cancelTrackingWithEvent:(id)fp8;
48 - (void)setHighlighted:(BOOL)fp8;
49 - (BOOL)isHighlighted;
50 - (void)setContentVerticalAlignment:(int)fp8;
51 - (int)contentVerticalAlignment;
52 - (void)setContentHorizontalAlignment:(int)fp8;
53 - (int)contentHorizontalAlignment;
54 - (void)setSelected:(BOOL)fp8;
55 - (BOOL)isSelected;
56 - (id)hitTest:(struct CGPoint)fp8 withEvent:(id)fp16;
57 - (id)hitTest:(struct CGPoint)fp8 forEvent:(struct __GSEvent *)fp16;
58 - (void)mouseDown:(struct __GSEvent *)fp8;
59 - (void)mouseDragged:(struct __GSEvent *)fp8;
60 - (void)mouseUp:(struct __GSEvent *)fp8;
61 - (void)touchesBegan:(id)fp8 withEvent:(id)fp12;
62 - (void)touchesMoved:(id)fp8 withEvent:(id)fp12;
63 - (void)touchesEnded:(id)fp8 withEvent:(id)fp12;
64 - (void)touchesCancelled:(id)fp8 withEvent:(id)fp12;
65 - (void)_didMoveFromWindow:(id)fp8 toWindow:(id)fp12;
66 - (void)addTarget:(id)fp8 action:(SEL)fp12 forControlEvents:(unsigned int)fp16;
67 - (void)removeTarget:(id)fp8 action:(SEL)fp12 forControlEvents:(unsigned int)fp16;
68 - (id)allTargets;
69 - (unsigned int)allControlEvents;
70 - (id)actionsForTarget:(id)fp8 forControlEvent:(unsigned int)fp12;
71 - (void)sendAction:(SEL)fp8 to:(id)fp12 forEvent:(id)fp16;
72 - (void)sendActionsForControlEvents:(unsigned int)fp8;
73
74 @end
75