2012-07-24 11:44:16 -07:00
|
|
|
//
|
|
|
|
// NBContainerViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/24/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2012-07-25 17:29:29 -07:00
|
|
|
@interface NBContainerViewController : UIViewController <UIPopoverControllerDelegate> {
|
2012-07-24 11:44:16 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
}
|
|
|
|
|
2012-07-26 18:07:29 -07:00
|
|
|
@property (readonly) BOOL storyTitlesOnLeft;
|
|
|
|
@property (readonly) int storyTitlesYCoordinate;
|
2012-07-24 11:44:16 -07:00
|
|
|
@property (atomic, strong) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
|
2012-07-24 15:29:01 -07:00
|
|
|
|
2012-07-28 11:49:31 -07:00
|
|
|
- (void)syncNextPreviousButtons;
|
|
|
|
|
2012-07-24 15:29:01 -07:00
|
|
|
- (void)adjustDashboardScreen;
|
|
|
|
- (void)adjustFeedDetailScreen;
|
2012-07-25 17:29:29 -07:00
|
|
|
- (void)adjustFeedDetailScreenForStoryTitles;
|
2012-07-24 15:29:01 -07:00
|
|
|
|
2012-07-24 11:44:16 -07:00
|
|
|
- (void)transitionToFeedDetail;
|
2012-07-24 15:29:01 -07:00
|
|
|
- (void)transitionFromFeedDetail;
|
2012-07-25 20:38:44 -07:00
|
|
|
- (void)transitionToShareView;
|
|
|
|
- (void)transitionFromShareView;
|
2012-07-25 10:50:52 -07:00
|
|
|
|
|
|
|
- (void)dragStoryToolbar:(int)yCoordinate;
|
2012-07-25 17:29:29 -07:00
|
|
|
- (void)showUserProfilePopover:(id)sender;
|
2012-07-31 13:10:26 -07:00
|
|
|
- (void)showFeedMenuPopover:(id)sender;
|
2012-10-12 13:58:26 -04:00
|
|
|
- (void)showFeedDetailMenuPopover:(id)sender;
|
2012-08-02 18:00:48 -07:00
|
|
|
- (void)showFontSettingsPopover:(id)sender;
|
2012-12-27 19:34:05 -08:00
|
|
|
- (void)showTrainingPopover:(id)sender;
|
2013-09-07 02:35:47 -05:00
|
|
|
- (void)showSendToPopover:(id)sender;
|
2012-08-15 17:08:33 -07:00
|
|
|
- (void)showSitePopover:(id)sender;
|
2012-07-31 13:10:26 -07:00
|
|
|
- (void)hidePopover;
|
2012-07-24 11:44:16 -07:00
|
|
|
@end
|