OSDN Git Service

For LetterFix-2.1.1
[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.1.1"
14
15 enum LFver {
16     LF_Unknown = -1,
17     LF_Mavericks = 0x1090
18 };
19
20 @interface LFApp : NSObject {
21     BOOL isActive;
22     BOOL isOsDependentFix;
23     BOOL parenSymbolFix;
24     BOOL someParenSymbolNotFix;
25     BOOL isAllLetterFix;
26     int  operationAtOpen;
27     BOOL isCheckSubject;
28     id menu;
29     
30     NSString *version;
31     NSUserDefaults *userDefaults;
32     NSDictionary *infodict;
33     id mailversion;
34     id lastknow;
35     NSInteger ver;
36     NSInteger verm;
37 }
38 - (id) init;
39 @property BOOL isActive;
40 @property BOOL isOsDependentFix;
41 @property BOOL parenSymbolFix;
42 @property BOOL someParenSymbolNotFix;
43 @property BOOL isAllLetterFix;
44 @property int  operationAtOpen;
45 @property BOOL isCheckSubject;
46 @property(readonly) NSInteger ver;
47 @property(readonly) NSInteger verm;
48 @end