mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
48 lines
1.5 KiB
Objective-C
48 lines
1.5 KiB
Objective-C
//
|
|
// StoryDetailViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 6/24/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface StoryDetailViewController : UIViewController
|
|
<UIScrollViewDelegate> {
|
|
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
|