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;
|
|
|
|
|
|
|
|
@interface FontSettingsViewController : UIViewController {
|
|
|
|
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;
|
2012-06-18 14:31:42 -07:00
|
|
|
|
|
|
|
- (IBAction)changeFontStyle:(id)sender;
|
|
|
|
- (IBAction)changeFontSize:(id)sender;
|
2012-06-24 23:02:37 -07:00
|
|
|
- (void)setSanSerif;
|
|
|
|
- (void)setSerif;
|
2012-06-18 14:31:42 -07:00
|
|
|
|
|
|
|
@end
|