2012-06-18 14:31:42 -07:00
|
|
|
//
|
|
|
|
// FontPopover.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 6/18/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2012-10-15 09:16:01 -07:00
|
|
|
@interface FontSettingsViewController : UIViewController
|
|
|
|
<UITableViewDelegate,
|
|
|
|
UITableViewDataSource> {
|
2012-06-18 14:31:42 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
|
|
|
|
IBOutlet UILabel *smallFontSizeLabel;
|
|
|
|
IBOutlet UILabel *largeFontSizeLabel;
|
|
|
|
}
|
|
|
|
|
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 *fontStyleSegment;
|
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *fontSizeSegment;
|
2014-05-15 18:06:56 -07:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *lineSpacingSegment;
|
2012-10-15 09:16:01 -07:00
|
|
|
@property (nonatomic) IBOutlet UITableView *menuTableView;
|
2012-06-18 14:31:42 -07:00
|
|
|
|
|
|
|
- (IBAction)changeFontStyle:(id)sender;
|
|
|
|
- (IBAction)changeFontSize:(id)sender;
|
2012-10-15 09:16:01 -07:00
|
|
|
- (UITableViewCell *)makeFontSelectionTableCell;
|
|
|
|
- (UITableViewCell *)makeFontSizeTableCell;
|
2012-06-18 14:31:42 -07:00
|
|
|
|
|
|
|
@end
|