2007-05-26 14:43:31 +00:00
|
|
|
|
/*
|
|
|
|
|
File: OpenURLPanel.m
|
|
|
|
|
|
|
|
|
|
Originally introduced at WWDC 2004 at
|
|
|
|
|
Session 214, "Programming QuickTime with Cocoa."
|
|
|
|
|
Sample code is explained in detail in
|
|
|
|
|
"QTKit Programming Guide" documentation.
|
|
|
|
|
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
Copyright: <20> Copyright 2004, 2005 Apple Computer, Inc.
|
2007-05-26 14:43:31 +00:00
|
|
|
|
All rights reserved.
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
Disclaimer: IMPORTANT: This Apple software is supplied to you by
|
2007-05-26 14:43:31 +00:00
|
|
|
|
Apple Computer, Inc. ("Apple") in consideration of your agreement to the
|
|
|
|
|
following terms, and your use, installation, modification or
|
|
|
|
|
redistribution of this Apple software constitutes acceptance of these
|
2007-05-26 14:49:05 +00:00
|
|
|
|
terms. If you do not agree with these terms, please do not use,
|
2007-05-26 14:43:31 +00:00
|
|
|
|
install, modify or redistribute this Apple software.
|
|
|
|
|
|
|
|
|
|
In consideration of your agreement to abide by the following terms, and
|
|
|
|
|
subject to these terms, Apple grants you a personal, non-exclusive
|
|
|
|
|
license, under Apple<EFBFBD>s copyrights in this original Apple software (the
|
|
|
|
|
"Apple Software"), to use, reproduce, modify and redistribute the Apple
|
|
|
|
|
Software, with or without modifications, in source and/or binary forms;
|
|
|
|
|
provided that if you redistribute the Apple Software in its entirety and
|
|
|
|
|
without modifications, you must retain this notice and the following
|
|
|
|
|
text and disclaimers in all such redistributions of the Apple Software.
|
|
|
|
|
Neither the name, trademarks, service marks or logos of Apple Computer,
|
|
|
|
|
Inc. may be used to endorse or promote products derived from the Apple
|
2007-05-26 14:49:05 +00:00
|
|
|
|
Software without specific prior written permission from Apple. Except
|
2007-05-26 14:43:31 +00:00
|
|
|
|
as expressly stated in this notice, no other rights or licenses, express
|
|
|
|
|
or implied, are granted by Apple herein, including but not limited to
|
|
|
|
|
any patent rights that may be infringed by your derivative works or by
|
|
|
|
|
other works in which the Apple Software may be incorporated.
|
|
|
|
|
|
|
|
|
|
The Apple Software is provided by Apple on an "AS IS" basis. APPLE
|
|
|
|
|
MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
|
|
|
|
|
THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
|
|
|
|
|
FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
|
|
|
|
|
OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
|
|
|
|
|
|
|
|
|
|
IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
|
|
|
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
|
INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
|
|
|
|
|
MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
|
|
|
|
|
AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
|
|
|
|
|
STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
|
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#import "OpenURLPanel.h"
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// user defaults keys
|
|
|
|
|
#define kUserDefaultURLsKey @"UserDefaultURLsKey"
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// maximum urls
|
2007-05-26 14:43:31 +00:00
|
|
|
|
#define kMaximumURLs 15
|
|
|
|
|
|
|
|
|
|
@implementation OpenURLPanel
|
|
|
|
|
|
|
|
|
|
static OpenURLPanel *openURLPanel = nil;
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// class methods
|
2007-05-26 14:43:31 +00:00
|
|
|
|
+ (id)openURLPanel
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
if (openURLPanel == nil)
|
|
|
|
|
openURLPanel = [[self alloc] init];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
return openURLPanel;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (id)init
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
[super init];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// init
|
|
|
|
|
[self setURLArray:[NSMutableArray arrayWithCapacity:10]];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// listen for app termination notifications
|
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(writeURLs:) name:NSApplicationWillTerminateNotification object:NSApp];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
return self;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)dealloc
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
|
|
|
[self setURLArray:nil];
|
|
|
|
|
[super dealloc];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// getters
|
2007-05-26 14:43:31 +00:00
|
|
|
|
- (NSString *)urlString
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
NSString *urlString = nil;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// get the url
|
|
|
|
|
urlString = [mUrlComboBox stringValue];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
if (urlString == nil)
|
|
|
|
|
urlString = [mUrlComboBox objectValueOfSelectedItem];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
if ([urlString length] == 0)
|
|
|
|
|
urlString = nil;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
return urlString;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (NSURL *)url
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
NSURL *url = nil;
|
|
|
|
|
NSString *urlString;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// get the url
|
|
|
|
|
urlString = [self urlString];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
if (urlString)
|
|
|
|
|
url = [NSURL URLWithString:urlString];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
return url;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// setters
|
2007-05-26 14:43:31 +00:00
|
|
|
|
- (void)setURLArray:(NSMutableArray *)urlLArray
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
[urlLArray retain];
|
|
|
|
|
[mUrlArray retain];
|
|
|
|
|
mUrlArray = urlLArray;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// delegates
|
2007-05-26 14:43:31 +00:00
|
|
|
|
- (void)awakeFromNib
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
NSArray *urls;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// restore the previous urls
|
|
|
|
|
urls = [[NSUserDefaults standardUserDefaults] objectForKey:kUserDefaultURLsKey];
|
|
|
|
|
[mUrlArray addObjectsFromArray:urls];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
if (urls)
|
|
|
|
|
[mUrlComboBox addItemsWithObjectValues:urls];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// notifications
|
2007-05-26 14:43:31 +00:00
|
|
|
|
- (void)writeURLs:(NSNotification *)notification
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
NSUserDefaults *userDefaults;
|
|
|
|
|
|
|
|
|
|
if ([mUrlArray count])
|
|
|
|
|
{
|
|
|
|
|
// init
|
|
|
|
|
userDefaults = [NSUserDefaults standardUserDefaults];
|
|
|
|
|
|
|
|
|
|
// write out the urls
|
|
|
|
|
[userDefaults setObject:mUrlArray forKey:kUserDefaultURLsKey];
|
|
|
|
|
[userDefaults synchronize];
|
|
|
|
|
}
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// actions
|
2007-05-26 14:43:31 +00:00
|
|
|
|
- (IBAction)doOpenURL:(id)sender
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
NSString *urlString;
|
|
|
|
|
NSURL *url;
|
|
|
|
|
BOOL informDelegate = YES;
|
|
|
|
|
IMP callback;
|
|
|
|
|
|
|
|
|
|
if ([sender tag] == NSOKButton)
|
|
|
|
|
{
|
|
|
|
|
// validate the URL
|
|
|
|
|
url = [self url];
|
|
|
|
|
urlString = [self urlString];
|
|
|
|
|
|
|
|
|
|
if (url)
|
|
|
|
|
{
|
|
|
|
|
// save the url
|
|
|
|
|
if (![mUrlArray containsObject:urlString])
|
|
|
|
|
{
|
|
|
|
|
// save the url
|
|
|
|
|
[mUrlArray addObject:urlString];
|
|
|
|
|
|
|
|
|
|
// add the url to the combo box
|
|
|
|
|
[mUrlComboBox addItemWithObjectValue:urlString];
|
|
|
|
|
|
|
|
|
|
// remove the oldest url if the maximum has been exceeded
|
|
|
|
|
if ([mUrlArray count] > kMaximumURLs)
|
|
|
|
|
{
|
|
|
|
|
[mUrlArray removeObjectAtIndex:0];
|
|
|
|
|
[mUrlComboBox removeItemAtIndex:0];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// move the url to the bottom of the list
|
|
|
|
|
[mUrlArray removeObject:urlString];
|
|
|
|
|
[mUrlArray addObject:urlString];
|
|
|
|
|
[mUrlComboBox removeItemWithObjectValue:urlString];
|
|
|
|
|
[mUrlComboBox addItemWithObjectValue:urlString];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (mIsSheet)
|
2007-05-28 14:17:47 +00:00
|
|
|
|
NSRunAlertPanel(NSLocalizedString(@"InvalidURLShort", @""), NSLocalizedString(@"InvalidURLLong", @""), nil, nil, nil);
|
2007-05-26 14:49:05 +00:00
|
|
|
|
else
|
2007-05-28 14:17:47 +00:00
|
|
|
|
NSBeginAlertSheet(NSLocalizedString(@"InvalidURLShort", @""), nil, nil, nil, mPanel, nil, nil, nil, nil, NSLocalizedString(@"InvalidURLLong", @""));
|
2007-05-26 14:49:05 +00:00
|
|
|
|
|
|
|
|
|
informDelegate = NO;
|
|
|
|
|
}
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// inform the delegate
|
|
|
|
|
if (informDelegate && mDelegate && mDidEndSelector)
|
|
|
|
|
{
|
|
|
|
|
callback = [mDelegate methodForSelector:mDidEndSelector];
|
|
|
|
|
callback(mDelegate, mDidEndSelector, self, [sender tag], mContextInfo);
|
|
|
|
|
|
2007-05-26 14:43:31 +00:00
|
|
|
|
[self close];
|
2007-05-26 14:49:05 +00:00
|
|
|
|
}
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// methods
|
2007-05-26 14:43:31 +00:00
|
|
|
|
- (void)beginSheetWithWindow:(NSWindow *)window delegate:(id)delegate didEndSelector:(SEL)didEndSelector contextInfo:(void *)contextInfo
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// will this run as a sheet
|
|
|
|
|
mIsSheet = (window ? YES : NO);
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// save the delegate, did end selector, and context info
|
|
|
|
|
mDelegate = delegate;
|
|
|
|
|
mDidEndSelector = (didEndSelector);
|
|
|
|
|
mContextInfo = contextInfo;
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// load the bundle (if necessary)
|
|
|
|
|
if (mPanel == nil)
|
|
|
|
|
[NSBundle loadNibNamed:@"OpenURLPanel" owner:self];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// start the sheet (or window)
|
|
|
|
|
[NSApp beginSheet:mPanel modalForWindow:window modalDelegate:nil didEndSelector:nil contextInfo:nil];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)close
|
|
|
|
|
{
|
2007-05-26 14:49:05 +00:00
|
|
|
|
// close it down
|
|
|
|
|
[NSApp endSheet:mPanel];
|
|
|
|
|
[mPanel close];
|
2007-05-26 14:43:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|