mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00

- 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.
31 lines
1.1 KiB
Objective-C
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
|