William Bowling is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this again1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | /*
* Adium is the legal property of its developers, whose names are listed in the copyright file included
* with this source distribution.
*
* This program is free software; you can redistribute it and/or modify it under the terms of the GNU
* General Public License as published by the Free Software Foundation; either version 2 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
* Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program; if not,
* write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#import "ESPanelApplescriptDetailPane.h"
#import "ESApplescriptContactAlertPlugin.h"
#import <Adium/AILocalizationTextField.h>
#import <Adium/AILocalizationButton.h>
#import <AIUtilities/AIStringAdditions.h>
@interface ESPanelApplescriptDetailPane ()
- (void)setScriptPath:(NSString *)inPath;
@end
/*!
* @class ESPanelApplescriptDetailPane
* @brief Details pane for the Run Applescript action
*/
@implementation ESPanelApplescriptDetailPane
/*!
* @brief Nib name
*/
- (NSString *)nibName{
return @"ApplescriptContactAlert";
}
/*!
* @brief Configure the details view
*/
- (void)viewDidLoad
{
[super viewDidLoad];
scriptPath = nil;
[label_applescript setLocalizedString:AILocalizedString(@"AppleScript:",nil)];
[button_browse setLocalizedString:[AILocalizedString(@"Browse",nil) stringByAppendingEllipsis]];
}
/*!
* @brief View will close
*/
- (void)viewWillClose
{
[scriptPath release]; scriptPath = nil;
}
/*!
* @brief Called only when the pane is displayed a result of its action being selected
*
* @param inDetails A previously created details dicionary, or nil if none exists
* @param inObject The object for which to configure
*/
- (void)configureForActionDetails:(NSDictionary *)inDetails listObject:(AIListObject *)inObject
{
[self setScriptPath:[inDetails objectForKey:KEY_APPLESCRIPT_TO_RUN]];
}
/*!
* @brief Return our current configuration
*/
- (NSDictionary *)actionDetails
{
return (scriptPath ?
[NSDictionary dictionaryWithObject:scriptPath forKey:KEY_APPLESCRIPT_TO_RUN] :
nil);
}
/*!
* @brief Choose the applescript to run
*/
- (IBAction)chooseFile:(id)sender
{
NSOpenPanel *openPanel = [NSOpenPanel openPanel];
[openPanel setTitle:AILocalizedString(@"Select an AppleScript",nil)];
if ([openPanel runModalForDirectory:nil
file:nil
types:[NSArray arrayWithObjects:@"applescript",@"scptd",@"scpt",nil]] == NSOKButton) {
[self setScriptPath:[openPanel filename]];
}
}
/*!
* @brief Set the path to the applescript
*
* This also updates our display
*
* @param inPath A full path to an applescript
*/
- (void)setScriptPath:(NSString *)inPath
{
NSString *scriptName;
[scriptPath release];
scriptPath = [inPath retain];
//Update the display for this name
scriptName = [[scriptPath lastPathComponent] stringByDeletingPathExtension];
[textField_scriptName setStringValue:(scriptName ? scriptName : @"")];
[self detailsForHeaderChanged];
}
@end
|