#import <UIKit/UIView.h>
@class UIImageView, UIProgressIndicator, UITextLabel, UIWindow;
@interface UIProgressHUD : UIView
{
UIProgressIndicator *_progressIndicator;
UITextLabel *_progressMessage;
UIImageView *_doneView;
UIWindow *_parentWindow;
struct {
unsigned int isShowing:1;
unsigned int fixedFrame:1;
unsigned int reserved:30;
} _progressHUDFlags;
}
- (id)_progressIndicator;
- (id)initWithFrame:(struct CGRect)fp8;
- (void)setText:(id)fp8;
- (void)setFontSize:(int)fp8;
- (void)drawRect:(struct CGRect)fp8;
- (void)layoutSubviews;
- (void)showInView:(id)fp8;
- (void)hide;
- (void)done;
- (void)dealloc;
@end