NewsBlur/clients/ios/Classes/FontSettingsViewController.h
David Sinclair ba94f4ef8f iOS: #1137 (full screen)
- Removed the tap gesture, as requested. Though I suspect you might change your mind about that one.
- Added a segmented control to toggle full screen in the story detail menu.
- (Also added one for the forthcoming autoscroll feature while I was there, since it’s easier to add both at once.)
- Fixed a bug with full screen when vertically scrolling between stories.
2019-02-27 13:33:38 -08:00

31 lines
1.1 KiB
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 *fullscreenSegment;
@property (nonatomic) IBOutlet UISegmentedControl *autoscrollSegment;
@property (nonatomic) IBOutlet UISegmentedControl *themeSegment;
@property (nonatomic) IBOutlet UITableView *menuTableView;
- (IBAction)changeFontSize:(id)sender;
- (IBAction)changeLineSpacing:(id)sender;
- (IBAction)changeScrollOrientation:(id)sender;
- (IBAction)changeFullscreen:(id)sender;
- (IBAction)changeAutoscroll:(id)sender;
- (IBAction)changeTheme:(id)sender;
@end