blob: 93a290a2498efbd0e54acfb72826fb4b7e23808f (
plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
//
// World.h
// Moxie
//
// Created by Brian Cully on Wed Dec 24 2003.
// Copyright (c) 2003 Brian Cully. All rights reserved.
//
#import "LispREPLController.h"
#import "MxWorldSettings.h"
enum parsemode_t {
DESC, LOOK, NEW, CONTENTS, EXITS, EXAMINE, EXITLIST
};
enum _statusmode_t {
MxRecentActivity, MxConnected, MxDisconnected
};
typedef enum _statusmode_t MxWorldStatus;
@interface World : NSDocument
{
IBOutlet ScrollingTextView *theOutputView;
IBOutlet ScrollingTextView *theInputView;
IBOutlet NSSplitView *theSplitView;
IBOutlet NSProgressIndicator *theProgressIndicator;
IBOutlet NSTextField *theRoomField;
IBOutlet NSButton *theConnectButton;
id theID;
MxWorldStatus theStatus;
NSString *theQueuedRoomString;
NSMutableArray *theInputHistory;
unsigned theHistoryLevel;
BOOL theInputViewIsDirty;
id closeDelegate;
SEL didCloseSelector;
void *closeContext;
MxWorldSettings *theSettings;
NSTimer *theTimer;
}
- (IBAction)open: (id)sender;
- (IBAction)close: (id)sender;
- (void)startProgressBar;
- (void)stopProgressBar;
- (NSString *)statusBuffer;
- (void)setStatusBuffer: (NSString *)aString;
- (id)identifier;
- (void)setIdentifier: (id)anID;
- (NSDictionary *)defaultTextAttributes;
- (void)redisplay;
- (void)sendWindowEvent: (NSString *)anEvent;
- (void)sendWindowEvent: (NSString *)anEvent withArg: (id)anArg;
-(void)sendWindowEventWithArgs: (NSString *)anEvent, ...;
@end
@interface World (Accessors)
- (NSWindow *)window;
- (NSString *)queuedRoomString;
- (void)setQueuedRoomString: (NSString *)aString;
- (MxWorldStatus)status;
- (void)setStatus: (MxWorldStatus)aStatus;
- (NSMutableString *)outputBuffer;
- (NSMutableString *)inputBuffer;
- (NSMutableArray *)inputHistory;
- (void)setInputHistory: (NSMutableArray *)aHistory;
- (MxWorldSettings *)settings;
- (void)setSettings: (MxWorldSettings *)someSettings;
- (NSTimer *)timer;
- (void)setTimer: (NSTimer *)aTimer;
@end
|