-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHyperManager.h
34 lines (29 loc) · 1 KB
/
HyperManager.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
// HyperText Access method manager Object HyperManager.h
// --------------------------------------
//
//
// History:
// Oct 90 Written TBL
// Jan 92 Changed to include new W3 common code
//
#import "HyperAccess.h"
#import <objc/List.h>
@interface HyperManager : HyperAccess
{
List * accesses;
}
- traceOn:sender; // Diagnostics: Enable output to console
- traceOff:sender; // Disable output to console
- back:sender; // Return whence we came
- next:sender; // Take link after link taken to get here
- previous:sender; // Take link before link taken to get here
- goHome:sender; // Load the home node
- goToBlank:sender; // Load the blank page
- help:sender; // Go to help page
- closeOthers:sender; // Close unedited windows
- save: sender; // Save main window's document
- saveAll:sender; // Save back all modified windows
- print:sender; // Print the main window
- runPagelayout:sender; // Run the page layout panel for the app.
- windowDidBecomeKey:sender; // Window delegate method
@end