//
//  LOGOSXcontroller.h
//  LOGOSX
//
//  Created by micah aci on Tue May 25 2004.
//  Copyright (c) 2004 __MyCompanyName__. All rights reserved.
//  some example commands
// uf150d[f45[r45]2f45[f1r1]90f50l45f50]10 //flower thing
//  uf50d[f50r45f50[f1r1]360]8 //some cool circles
//  uf50d[f50[r45]3f50[f1r1]360]8 //slight variation
// uf50d[f50[r45]3f50[f1r1]360]8uf200r90f200r90f50duf50d[f50[r45]3f50[f1r1]360]8ur180f200r90f200r90f50duf50duf50d[f50[r45]3f50[f1r1]360]8 //3 of em
// uf150d[f50[r45]3f50[f1r1]360f50L45f50]8
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
#import "logo.h"


@interface LOGOSXcontroller : NSObject {
@private
	IBOutlet logo *logosx; 
	IBOutlet NSTextField *currentStep; //display of current step
	IBOutlet NSTextField *commandString; //input box for commands
	IBOutlet NSTextField *debug; //display of debugging info for current step
	IBOutlet NSTextField *command; //command debugging
}
-(IBAction)save:(id)sender;
-(IBAction)processCommand:(id)sender;
-(IBAction)onward:(id)sender;
-(IBAction)undo:(id)sender;
-(IBAction)clear:(id)sender;
-(IBAction)openWeb:(id)sender;
@end

