OSDN Git Service

for OS X 10.10.2
[letter-fix/LetterFix.git] / LFApp.h
1 //
2 //  LFApp.h
3 //  LetterFix2
4 //
5 //  Created by kuri on 10/02/26.
6 //  Copyright 2010-2011 kuri. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 #import <AppKit/AppKit.h>
11 #import "LFMenu.h"
12
13 #define LETTERFIX_VERSION "2.3.2"
14
15 enum LFver {
16     LF_Unknown = -1,
17     LF_Mavericks = 0x1009,
18     LF_Yosemite = 0x1010
19 };
20
21 @interface LFApp : NSObject {
22     BOOL isActive;
23     BOOL isOsDependentFix;
24     BOOL parenSymbolFix;
25     BOOL someParenSymbolNotFix;
26     BOOL isAllLetterFix;
27     int  operationAtOpen;
28     BOOL isCheckSubject;
29     id menu;
30     
31     NSString *version;
32     NSUserDefaults *userDefaults;
33     NSDictionary *infodict;
34     id mailversion;
35     id lastknow;
36     NSInteger ver;
37     NSInteger verm;
38 }
39 - (id) init;
40 @property BOOL isActive;
41 @property BOOL isOsDependentFix;
42 @property BOOL parenSymbolFix;
43 @property BOOL someParenSymbolNotFix;
44 @property BOOL isAllLetterFix;
45 @property int  operationAtOpen;
46 @property BOOL isCheckSubject;
47 @property(readonly) NSInteger ver;
48 @property(readonly) NSInteger verm;
49 @end