ExtensionSelector.m   [plain text]


/*
 * Copyright © 2011-2012 Apple Inc.  All rights reserved.
 *
 * @APPLE_LICENSE_HEADER_START@
 *
 * This file contains Original Code and/or Modifications of Original Code
 * as defined in and that are subject to the Apple Public Source License
 * Version 2.0 (the 'License'). You may not use this file except in
 * compliance with the License. Please obtain a copy of the License at
 * http://www.opensource.apple.com/apsl/ and read it before using this
 * file.
 *
 * The Original Code and all software distributed under the License are
 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
 * Please see the License for the specific language governing rights and
 * limitations under the License.
 *
 * @APPLE_LICENSE_HEADER_END@
 */

#import "ExtensionSelector.h"

@implementation ExtensionSelector
@synthesize extensionSelectionButton, theSavePanel, itemDictionary;

- (id)initWithFrame:(NSRect)frame
{
    self = [super initWithFrame:frame];
    if (self) 
    {
        // Initialization code here.
        NSPopUpButton *myButtonToBe;
        NSRect newFrame;
        newFrame.origin.x = 10.0;
        newFrame.origin.y = 10.0;
        newFrame.size.height = 22;
        newFrame.size.width = 220;
        myButtonToBe = [[NSPopUpButton alloc] initWithFrame:newFrame];
        self.extensionSelectionButton = [myButtonToBe autorelease];
        [self.extensionSelectionButton setTarget:self];
        [self.extensionSelectionButton setAction:@selector(popupAction:)];
        
    }
    
    return self;
}

- (void)drawRect:(NSRect)dirtyRect
{
    // Drawing code here.
}


- (void)viewDidMoveToSuperview
{
    NSRect currentFrame = self.frame;
    NSRect superViewFrame = [self.superview frame];
    NSRect textViewFrame;
    textViewFrame.origin.x = 10.0;
    textViewFrame.origin.y = 5.0;
    textViewFrame.size.height = 22;
    textViewFrame.size.width = 70;
    NSTextView *theLabel = [[NSTextView alloc] initWithFrame:textViewFrame];
    [theLabel setString:@"File Type:"];
    [theLabel setEditable:NO];
    [theLabel setDrawsBackground:NO];
    [self addSubview:[theLabel autorelease]];
    textViewFrame = [self.extensionSelectionButton frame];
    textViewFrame.origin.x = textViewFrame.origin.x + 75;
    [self.extensionSelectionButton setFrame:textViewFrame];
    currentFrame.size.height = 40;
    currentFrame.size.width = superViewFrame.size.width;
    [self setFrame:currentFrame];
    [self addSubview:self.extensionSelectionButton];
    [[self superview] setAutoresizesSubviews:YES];
    [self setAutoresizingMask:NSViewWidthSizable | NSViewMaxXMargin];
}

-(void)populatePopuButtonWithArray:(NSDictionary *)addItems
{
    [self.extensionSelectionButton removeAllItems];
    [self.extensionSelectionButton addItemsWithTitles:[addItems allKeys]];
    self.itemDictionary = addItems;
}

-(void)setCurrentSelection:(NSString *)currentSelection
{
    [self.extensionSelectionButton setTitle:currentSelection];
}

-(IBAction)popupAction:(id)sender
{
    NSString *nameField = [[self.theSavePanel nameFieldStringValue] stringByDeletingPathExtension];
    [self.theSavePanel setNameFieldStringValue:[nameField stringByAppendingPathExtension:[self.itemDictionary valueForKey:[self.extensionSelectionButton titleOfSelectedItem]]]];
}

-(void)dealloc
{
    self.extensionSelectionButton = nil;
    self.theSavePanel = nil;
    self.itemDictionary = nil;
    [super dealloc];
}

@end