-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathIRIndexDocumentController.h
42 lines (36 loc) · 1.15 KB
/
IRIndexDocumentController.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
39
40
41
//
// IRIndexDocumentController.h
// Cindex
//
// Created by PL on 1/8/05.
// Copyright 2005 Indexing Research. All rights reserved.
//
extern NSString * CIOpenFolder;
extern NSString * CIIndexFolder;
extern NSString * CIStyleSheetFolder;
extern NSString * CIBackupFolder;
extern NSString * CIAbbreviations;
extern NSString * CILastIndex;
extern NSString * CIXMLTagSet;
extern NSString * CISGMLTagSet;
@class FindController;
@class ReplaceController;
@class SpellController;
@class IRIndexDocument;
@interface IRIndexDocumentController : NSDocumentController <NSApplicationDelegate>{
FindController * _findWindow;
ReplaceController * _replaceWindow;
SpellController * _spellWindow;
NSWindow * _lastKeyWindow;
}
@property (weak) IRIndexDocument * IRrevertsource;
- (BOOL)loadStyleSheet:(STYLESHEET *)sp;
- (void)setAbbreviations:(NSMutableDictionary *)abbrev;
- (NSMutableDictionary *)abbreviations;
- (NSArray *)fonts;
- (NSPanel *)findPanel;
- (NSPanel *)replacePanel;
- (NSWindow *)lastKeyWindow;
@end
extern IRIndexDocumentController * IRdc; // global for doc controller
//extern IRIndexDocument * IRrevertsource; // source for reverting current document