Moved MacVim project to src/MacVim and removed runtime folder
[MacVim/jjgod.git] / src / MacVim / PSMTabBarControl / source / PSMTabBarControlPalette.m
blobbb5851aa1808dd65dc9e99059ac3d13065c71a2a
1 //
2 //  PSMTabBarControlPalette.m
3 //  PSMTabBarControl
4 //
5 //  Created by John Pannell on 12/21/05.
6 //  Copyright Positive Spin Media 2005 . All rights reserved.
7 //
9 #import "PSMTabBarControlPalette.h"
11 @implementation PSMTabBarControlPalette
13 - (void)finishInstantiate
15     // associate representative image with actual control
16     _customControl = [[PSMTabBarControl alloc] initWithFrame:NSMakeRect(0,0,180,22)];
17     [self associateObject:_customControl ofType:IBViewPboardType withView:repImage];
20 - (void)dealloc
22     [_customControl release];
23     [super dealloc];
26 @end
28 @implementation PSMTabBarControl (PSMTabBarControlPaletteInspector)
30 - (NSString *)inspectorClassName
32     return @"PSMTabBarControlInspector";
35 @end