NewsBlur/clients/ios/Classes/FontSettingsViewController.h

34 lines
931 B
C
Raw Normal View History

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