// // StoryDetailViewController.h // NewsBlur // // Created by Samuel Clay on 6/24/10. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import @class NewsBlurAppDelegate; @interface StoryDetailViewController : UIViewController { NewsBlurAppDelegate *appDelegate; NSString *activeStoryId; UIProgressView *progressView; UIWebView *webView; UIToolbar *toolbar; UIBarButtonItem *buttonPrevious; UIBarButtonItem *buttonNext; UIBarButtonItem *activity; UIActivityIndicatorView *loadingIndicator; } @property (nonatomic, retain) NSString *activeStoryId; @property (nonatomic, retain) IBOutlet UIProgressView *progressView; @property (nonatomic, retain) IBOutlet UIWebView *webView; @property (nonatomic, retain) IBOutlet UIToolbar *toolbar; @property (nonatomic, retain) IBOutlet UIBarButtonItem *buttonPrevious; @property (nonatomic, retain) IBOutlet UIBarButtonItem *buttonNext; @property (nonatomic, retain) IBOutlet UIBarButtonItem *activity; @property (nonatomic, retain) UIActivityIndicatorView *loadingIndicator; @property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate; @property (nonatomic, retain) IBOutlet UIView *feedTitleGradient; - (void)setNextPreviousButtons; - (void)markStoryAsRead; - (void)showStory; - (void)showOriginalSubview:(id)sender; - (IBAction)doNextUnreadStory; - (IBAction)doPreviousStory; - (void)markedAsRead; - (void)setActiveStory; @end