-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAQTController.h
37 lines (33 loc) · 1001 Bytes
/
AQTController.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
//
// AQTController.h
// AquaTerm
//
// Created by Per Persson on Wed Jun 25 2003.
// Copyright (c) 2003 Aquaterm. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "AQTConnectionProtocol.h"
@class AQTAdapter;
@interface AQTController : NSObject <AQTConnectionProtocol>
{
NSMutableArray *handlerList; /*" Array of client handlers "*/
NSPopUpButton *saveFormatPopup;
NSBox *extendSavePanelView;
NSPoint cascadingPoint;
}
- (AQTAdapter *)sharedAdapter;
- (void)removePlot:(id)aPlot;
- (void)windowDidClose:(NSNotification *)aNotification;
- (void)setWindowPos:(NSWindow *)plotWindow;
-(IBAction)tileWindows:(id)sender;
-(IBAction)cascadeWindows:(id)sender;
-(IBAction)showHelp:(id)sender;
-(IBAction)showAvailableFonts:(id)sender;
-(IBAction)showPrefs:(id)sender;
-(IBAction)debug:(id)sender;
-(IBAction)mailBug:(id)sender;
-(IBAction)mailFeedback:(id)sender;
-(IBAction)testview:(id)sender;
-(IBAction)stringDrawingTest:(id)sender;
-(IBAction)lineDrawingTest:(id)sender;
@end