summaryrefslogtreecommitdiff
path: root/iPhonePrivate.h
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2014-05-13 19:23:56 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2014-05-13 20:11:20 -0700
commite67ebdad4b0150caeebfa3668b7bf9e2c2150e80 (patch)
tree27090c8d2d87b4a2c26dfdbfef1934d33d1e15ae /iPhonePrivate.h
parent4121c5e002cf039931b67ef2c592783c64f0cc59 (diff)
Remove the dropbar, replace with a loading badge.
Diffstat (limited to 'iPhonePrivate.h')
-rw-r--r--iPhonePrivate.h20
1 files changed, 5 insertions, 15 deletions
diff --git a/iPhonePrivate.h b/iPhonePrivate.h
index 37e73d6..e9806d8 100644
--- a/iPhonePrivate.h
+++ b/iPhonePrivate.h
@@ -29,14 +29,9 @@ typedef enum {
UINavigationButtonStyleDestructive
} UINavigationButtonStyle;
-typedef enum {
- UIProgressIndicatorStyleLargeWhite,
- UIProgressIndicatorStyleMediumWhite,
- UIProgressIndicatorStyleMediumBrown,
- UIProgressIndicatorStyleSmallWhite,
- UIProgressIndicatorStyleSmallBlack,
- UIProgressIndicatorStyleTinyWhite,
-} UIProgressIndicatorStyle;
+static const UIActivityIndicatorViewStyle UIActivityIndicatorViewStyleWhiteSmall(static_cast<UIActivityIndicatorViewStyle>(3));
+static const UIActivityIndicatorViewStyle UIActivityIndicatorViewStyleGraySmall(static_cast<UIActivityIndicatorViewStyle>(4));
+static const UIActivityIndicatorViewStyle UIActivityIndicatorViewStyleWhiteTiny(static_cast<UIActivityIndicatorViewStyle>(5));
// }}}
// #define * * {{{
#define UIDataDetectorTypeAutomatic 0x80000000
@@ -72,13 +67,6 @@ typedef enum {
- (void) showInView:(UIView *)view;
@end
-@interface UIProgressIndicator : UIView
-+ (CGSize) defaultSizeForStyle:(NSUInteger)style;
-- (NSUInteger) activityIndicatorViewStyle;
-- (void) setStyle:(UIProgressIndicatorStyle)style;
-- (void) startAnimation;
-@end
-
@interface UIScroller : UIView
- (CGSize) contentSize;
- (void) setDirectionalScrolling:(BOOL)directional;
@@ -273,6 +261,7 @@ typedef enum {
@interface UITabBarItem (Apple)
- (void) setAnimatedBadge:(BOOL)animated;
+- (UIView *) view;
@end
@interface UITableViewCell (Apple)
@@ -302,6 +291,7 @@ typedef enum {
- (void) setValue:(NSValue *)value forGestureAttribute:(NSInteger)attribute;
- (void) setZoomScale:(float)scale duration:(double)duration;
- (void) _setZoomScale:(float)scale duration:(double)duration;
+- (void) setOrigin:(CGPoint)origin;
@end
@interface UIViewController (Apple)