//
//  EXPApplicationDelegate.m
//  Expression
//
//  Created by ashley on 13/12/2008.
//  Copyright 2008 __MyCompanyName__. All rights reserved.
//

#import "EXPApplicationDelegate.h"
#import "EXPToolPaletteController.h"
#import "EXPInspectorController.h"

@implementation EXPApplicationDelegate

- (void)applicationDidFinishLaunching:(NSNotification *)notification 
{
	NSLog(@"applicationDidFinishLaunching:");
    [self showToolPaletteAction:self];
    [self showInspectorAction:self];
}

- (IBAction)showToolPaletteAction:(id)sender 
{
    [[EXPToolPaletteController sharedToolPaletteController] showWindow:sender];
}

- (IBAction)showInspectorAction:(id)sender 
{
	[[EXPInspectorController sharedInspectorController] showWindow:sender];
}

@end