NewsBlur/media/ios/Classes/FontSettingsViewController.h
2012-07-15 15:06:06 -07:00

29 lines
703 B
Objective-C

//
// 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 {
NewsBlurAppDelegate *appDelegate;
IBOutlet UILabel *smallFontSizeLabel;
IBOutlet UILabel *largeFontSizeLabel;
}
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
@property ( nonatomic) IBOutlet UISegmentedControl *fontStyleSegment;
@property ( nonatomic) IBOutlet UISegmentedControl *fontSizeSegment;
- (IBAction)changeFontStyle:(id)sender;
- (IBAction)changeFontSize:(id)sender;
- (void)setSanSerif;
- (void)setSerif;
@end