-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathHeadFootController.h
51 lines (43 loc) · 1.23 KB
/
HeadFootController.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
42
43
44
45
46
47
48
49
50
51
//
// HeadFootController.h
// Cindex
//
// Created by PL on 1/9/05.
// Copyright 2005 Indexing Research. All rights reserved.
//
@interface HeadFootController : NSWindowController {
IBOutlet NSTabView * tab;
IBOutlet NSTextField * lhleft;
IBOutlet NSTextField * lhcenter;
IBOutlet NSTextField * lhright;
IBOutlet NSPopUpButton * lhfont;
IBOutlet NSComboBox * lhcombo;
IBOutlet NSButton * lhstyle;
IBOutlet NSTextField * lfleft;
IBOutlet NSTextField * lfcenter;
IBOutlet NSTextField * lfright;
IBOutlet NSPopUpButton * lffont;
IBOutlet NSComboBox * lfcombo;
IBOutlet NSButton * lfstyle;
IBOutlet NSTextField * rhleft;
IBOutlet NSTextField * rhcenter;
IBOutlet NSTextField * rhright;
IBOutlet NSPopUpButton * rhfont;
IBOutlet NSComboBox * rhcombo;
IBOutlet NSButton * rhstyle;
IBOutlet NSTextField * rfleft;
IBOutlet NSTextField * rfcenter;
IBOutlet NSTextField * rfright;
IBOutlet NSPopUpButton * rffont;
IBOutlet NSComboBox * rfcombo;
IBOutlet NSButton * rfstyle;
IBOutlet NSMatrix * dateformat;
IBOutlet NSButton * addtime;
IBOutlet NSTextField * firstpage;
IBOutlet NSPopUpButton * numberformat;
IBOutlet NSButton * copy;
PAGEFORMAT _hParams;
PAGEFORMAT *_hParamPtr;
}
- (IBAction)copyPageSettings:(id)sender;
@end