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

Horizontal story scrolling is now the default. Added a control to the story detail options popover to toggle the orientation.
27 lines
870 B
Objective-C
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
|