2012-06-18 14:31:42 -07:00
|
|
|
//
|
|
|
|
// FontPopover.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 6/18/12.
|
2015-10-31 16:35:32 -07:00
|
|
|
// Copyright (c) 2012-2015 NewsBlur. All rights reserved.
|
2012-06-18 14:31:42 -07:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2015-10-31 16:35:32 -07:00
|
|
|
@interface FontSettingsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
|
2012-06-18 14:31:42 -07:00
|
|
|
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
2012-10-15 14:57:20 -07:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *fontSizeSegment;
|
2014-05-15 18:06:56 -07:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *lineSpacingSegment;
|
2018-09-05 13:51:33 -07:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *scrollOrientationSegment;
|
2019-02-27 13:33:38 -08:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *fullscreenSegment;
|
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *autoscrollSegment;
|
2015-12-07 16:09:49 -08:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *themeSegment;
|
2012-10-15 09:16:01 -07:00
|
|
|
@property (nonatomic) IBOutlet UITableView *menuTableView;
|
2012-06-18 14:31:42 -07:00
|
|
|
|
|
|
|
- (IBAction)changeFontSize:(id)sender;
|
2015-12-07 16:09:49 -08:00
|
|
|
- (IBAction)changeLineSpacing:(id)sender;
|
2018-09-05 13:51:33 -07:00
|
|
|
- (IBAction)changeScrollOrientation:(id)sender;
|
2019-02-27 13:33:38 -08:00
|
|
|
- (IBAction)changeFullscreen:(id)sender;
|
|
|
|
- (IBAction)changeAutoscroll:(id)sender;
|
2015-12-07 16:09:49 -08:00
|
|
|
- (IBAction)changeTheme:(id)sender;
|
2012-06-18 14:31:42 -07:00
|
|
|
|
|
|
|
@end
|