forked from rentzsch/markdownlive
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPreferencesManager.h
38 lines (31 loc) · 1.09 KB
/
PreferencesManager.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// PreferencesManager.h
// MarkdownLive
//
// Created by Akihiro Noguchi on 7/05/11.
// Copyright 2011 Aki. All rights reserved.
//
#import <Foundation/Foundation.h>
#define kEditPaneFontName @"EditPaneFontName"
#define kEditPaneFontSize @"EditPaneFontSize"
#define kEditPaneForegroundColor @"EditPaneForegroundColor"
#define kEditPaneBackgroundColor @"EditPaneBackgroundColor"
#define kEditPaneSelectionColor @"EditPaneSelectionColor"
#define kEditPaneCaretColor @"EditPaneCaretColor"
@interface PreferencesManager : NSObject {
}
+ (void)resetEditPanePreferences;
+ (NSString *)editPaneFontName;
+ (void)setEditPaneFontName:(NSString *)value;
+ (float)editPaneFontSize;
+ (void)setEditPaneFontSize:(float)value;
+ (NSFont *)editPaneFont;
+ (NSColor *)editPaneForegroundColor;
+ (void)setEditPaneForegroundColor:(NSColor *)value;
+ (NSColor *)editPaneBackgroundColor;
+ (void)setEditPaneBackgroundColor:(NSColor *)value;
+ (NSColor *)editPaneSelectionColor;
+ (void)setEditPaneSelectionColor:(NSColor *)value;
+ (NSColor *)editPaneCaretColor;
+ (void)setEditPaneCaretColor:(NSColor *)value;
@end