2008-12-21 14:19:17 +00:00
|
|
|
//
|
|
|
|
// SC3Controller.h
|
|
|
|
// sc3ctrl
|
|
|
|
//
|
|
|
|
// Created by Robin Watson on 21/December/2008.
|
|
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <VVOSC/VVOSC.h>
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
@interface SC3Controller : NSObject {
|
|
|
|
OSCManager *manager;
|
|
|
|
OSCOutPort *outport;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)interpretContentsOfEnvironmentVariable:(const char *)var;
|
|
|
|
- (void)openHelpFile:(NSString *)classname;
|
|
|
|
- (void)openClassFile:(NSString *)classname;
|
|
|
|
- (void)openImplementations:(NSString *)method;
|
|
|
|
- (void)openReferences:(NSString *)method;
|
2008-12-21 18:15:24 +00:00
|
|
|
- (void)stop;
|
|
|
|
- (void)clearPostWindow;
|
2008-12-21 19:00:19 +00:00
|
|
|
- (void)postWindowToFront;
|
|
|
|
- (void)recompile;
|
2008-12-21 14:19:17 +00:00
|
|
|
- (void)close;
|
|
|
|
|
|
|
|
@end
|