NewsBlur/clients/ios/Classes/FontSettingsViewController.h
David Sinclair c95351fb10 iOS: tweaked #1100 (scroll vertically between stories): story detail toggle
Horizontal story scrolling is now the default.  Added a control to the story detail options popover to toggle the orientation.
2018-09-05 13:51:33 -07:00

27 lines
870 B
Objective-C

//
// FontPopover.h
// NewsBlur
//
// Created by Roy Yang on 6/18/12.
// Copyright (c) 2012-2015 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@class NewsBlurAppDelegate;
@interface FontSettingsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic) IBOutlet UISegmentedControl *fontSizeSegment;
@property (nonatomic) IBOutlet UISegmentedControl *lineSpacingSegment;
@property (nonatomic) IBOutlet UISegmentedControl *scrollOrientationSegment;
@property (nonatomic) IBOutlet UISegmentedControl *themeSegment;
@property (nonatomic) IBOutlet UITableView *menuTableView;
- (IBAction)changeFontSize:(id)sender;
- (IBAction)changeLineSpacing:(id)sender;
- (IBAction)changeScrollOrientation:(id)sender;
- (IBAction)changeTheme:(id)sender;
@end