2012-10-12 13:58:26 -04:00
|
|
|
//
|
|
|
|
// FeedDetailMenuViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Samuel Clay on 10/10/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
|
|
|
@interface FeedDetailMenuViewController : UIViewController
|
|
|
|
<UITableViewDelegate,
|
|
|
|
UITableViewDataSource> {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic, strong) NSArray *menuOptions;
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic) IBOutlet UITableView *menuTableView;
|
2012-10-30 17:05:39 -07:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *orderSegmentedControl;
|
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *readFilterSegmentedControl;
|
2019-02-05 21:05:34 -08:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *previewSizeSegment;
|
2019-02-12 20:43:44 -08:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *imageSizeSegment;
|
2017-10-04 16:34:30 -07:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *fontSizeSegment;
|
2017-11-08 21:21:06 -08:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *infrequentSegmentedControl;
|
2016-02-05 13:59:01 -08:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *themeSegmentedControl;
|
2012-10-12 13:58:26 -04:00
|
|
|
|
2012-10-14 19:39:24 -04:00
|
|
|
- (void)buildMenuOptions;
|
2012-10-30 17:05:39 -07:00
|
|
|
- (UITableViewCell *)makeOrderCell;
|
|
|
|
- (UITableViewCell *)makeReadFilterCell;
|
|
|
|
- (IBAction)changeOrder:(id)sender;
|
|
|
|
- (IBAction)changeReadFilter:(id)sender;
|
2019-02-05 21:05:34 -08:00
|
|
|
- (IBAction)changePreviewSize:(id)sender;
|
2019-02-12 20:43:44 -08:00
|
|
|
- (IBAction)changeImageSize:(id)sender;
|
2017-10-04 16:34:30 -07:00
|
|
|
- (IBAction)changeFontSize:(id)sender;
|
2017-11-08 21:21:06 -08:00
|
|
|
- (IBAction)changeInfrequent:(id)sender;
|
2016-02-05 13:59:01 -08:00
|
|
|
- (IBAction)changeTheme:(id)sender;
|
2012-10-14 19:39:24 -04:00
|
|
|
|
2012-10-12 13:58:26 -04:00
|
|
|
@end
|