2012-07-10 12:34:58 -07:00
|
|
|
//
|
|
|
|
// DashboardViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/10/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2017-10-03 18:51:27 -07:00
|
|
|
#import "NBDashboardNavigationBar.h"
|
2012-07-10 12:34:58 -07:00
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
2012-07-12 10:59:17 -07:00
|
|
|
@class InteractionsModule;
|
|
|
|
@class ActivityModule;
|
2012-07-21 18:56:25 -07:00
|
|
|
@class FeedbackModule;
|
2014-02-10 19:21:53 -08:00
|
|
|
@class FeedDetailViewController;
|
2012-07-10 12:34:58 -07:00
|
|
|
|
2020-02-23 15:21:32 -08:00
|
|
|
@interface DashboardViewController : UIViewController <UIPopoverControllerDelegate> {
|
2012-07-10 12:34:58 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
2012-07-12 10:59:17 -07:00
|
|
|
InteractionsModule *interactionsModule;
|
|
|
|
ActivityModule *activitiesModule;
|
2012-07-21 15:59:10 -07:00
|
|
|
UIToolbar *toolbar;
|
2017-10-03 18:51:27 -07:00
|
|
|
NBDashboardNavigationBar *topToolbar;
|
2012-07-21 15:59:10 -07:00
|
|
|
UISegmentedControl *segmentedButton;
|
2012-07-10 12:34:58 -07:00
|
|
|
}
|
|
|
|
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic) IBOutlet InteractionsModule *interactionsModule;
|
|
|
|
@property (nonatomic) IBOutlet ActivityModule *activitiesModule;
|
2012-07-21 18:56:25 -07:00
|
|
|
|
2017-10-03 18:51:27 -07:00
|
|
|
@property (nonatomic) IBOutlet NBDashboardNavigationBar *topToolbar;
|
2012-07-21 15:59:10 -07:00
|
|
|
@property (nonatomic) IBOutlet UIToolbar *toolbar;
|
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *segmentedButton;
|
2015-12-07 16:09:49 -08:00
|
|
|
@property (nonatomic) IBOutlet UIImageView *logoImageView;
|
2012-07-10 12:34:58 -07:00
|
|
|
|
|
|
|
- (IBAction)doLogout:(id)sender;
|
2012-07-10 16:48:05 -07:00
|
|
|
- (void)refreshInteractions;
|
2012-07-11 18:08:07 -07:00
|
|
|
- (void)refreshActivity;
|
2012-07-21 15:59:10 -07:00
|
|
|
- (IBAction)tapSegmentedButton:(id)sender;
|
2015-12-07 16:09:49 -08:00
|
|
|
- (void)updateTheme;
|
|
|
|
|
2012-07-10 12:34:58 -07:00
|
|
|
@end
|