-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some much nicer UI for icon setting. Now includes a select button…
…, drag/drop and paste
- Loading branch information
Michael Gorbach
committed
Mar 21, 2008
1 parent
0cddf55
commit 240aeb1
Showing
14 changed files
with
706 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// MFAdvancedViewController.h | ||
// MacFusion2 | ||
// | ||
// Created by Michael Gorbach on 3/20/08. | ||
// Copyright 2008 Michael Gorbach. All rights reserved. | ||
// | ||
|
||
#import <Cocoa/Cocoa.h> | ||
|
||
@class MFIconSettingImageView; | ||
@interface MFAdvancedViewController : NSViewController { | ||
IBOutlet MFIconSettingImageView* iconView; | ||
} | ||
|
||
- (IBAction)chooseIcon:(id)sender; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// | ||
// MFAdvancedViewController.m | ||
// MacFusion2 | ||
// | ||
// Created by Michael Gorbach on 3/20/08. | ||
// Copyright 2008 Michael Gorbach. All rights reserved. | ||
// | ||
|
||
#import "MFAdvancedViewController.h" | ||
#import "MFClientFS.h" | ||
|
||
@implementation MFAdvancedViewController | ||
- (void)awakeFromNib | ||
{ | ||
[iconView bind:@"fs" toObject:self withKeyPath:@"representedObject" options:nil]; | ||
} | ||
|
||
- (IBAction)chooseIcon:(id)sender | ||
{ | ||
NSOpenPanel* panel = [NSOpenPanel openPanel]; | ||
[panel setAllowsMultipleSelection: NO]; | ||
[panel setAllowedFileTypes: [NSArray arrayWithObject: @"icns"]]; | ||
NSInteger returnValue = [panel runModalForTypes: [NSArray arrayWithObject: @"icns"]]; | ||
if (returnValue == NSOKButton && [[panel filenames] count] > 0) | ||
{ | ||
NSString* filename = [[panel filenames] objectAtIndex: 0]; | ||
NSImage* iconImage = [[NSImage alloc] initWithContentsOfFile: filename]; | ||
if (iconImage) | ||
[(MFClientFS*)[self representedObject] setIconImage: iconImage]; | ||
} | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
Copyright (c) 2001-2006 Troy N. Stephens | ||
Use and distribution of this source code is governed by the MIT License, whose terms are as follows. | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <Carbon/Carbon.h> | ||
|
||
@interface NSString (CarbonFSRefCreation) | ||
|
||
// Fills in the given FSRef struct so it specifies the file whose path is in this string. | ||
// If the file doesn't exist, and "createFile" is YES, this method will attempt to create | ||
// an empty file with the specified path. (The caller should insure that the directory | ||
// the file is to be placed in already exists.) | ||
|
||
- (BOOL) getFSRef:(FSRef*)fsRef createFileIfNecessary:(BOOL)createFile; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
Copyright (c) 2001-2006 Troy N. Stephens | ||
Use and distribution of this source code is governed by the MIT License, whose terms are as follows. | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
#import "NSString+CarbonFSRefCreation.h" | ||
|
||
@implementation NSString (CarbonFSRefCreation) | ||
|
||
- (BOOL) getFSRef:(FSRef*)fsRef createFileIfNecessary:(BOOL)createFile | ||
{ | ||
NSFileManager* fileManager = [NSFileManager defaultManager]; | ||
CFURLRef urlRef; | ||
Boolean gotFSRef; | ||
|
||
// Check whether the file exists already. If not, create an empty file if requested. | ||
if (![fileManager fileExistsAtPath:self]) { | ||
if (createFile) { | ||
if (![@"" writeToFile:self atomically:YES]) { | ||
return NO; | ||
} | ||
} else { | ||
return NO; | ||
} | ||
} | ||
|
||
// Create a CFURL with the specified POSIX path. | ||
urlRef = CFURLCreateWithFileSystemPath( kCFAllocatorDefault, | ||
(CFStringRef) self, | ||
kCFURLPOSIXPathStyle, | ||
FALSE /* isDirectory */ ); | ||
if (urlRef == NULL) { | ||
// printf( "** Couldn't make a CFURLRef for the file.\n" ); | ||
return NO; | ||
} | ||
|
||
// Try to create an FSRef from the URL. (If the specified file doesn't exist, this | ||
// function will return false, but if we've reached this code we've already insured | ||
// that the file exists.) | ||
gotFSRef = CFURLGetFSRef( urlRef, fsRef ); | ||
CFRelease( urlRef ); | ||
|
||
if (!gotFSRef) { | ||
// printf( "** Couldn't get an FSRef for the file.\n" ); | ||
return NO; | ||
} | ||
|
||
return YES; | ||
} | ||
|
||
@end |
Oops, something went wrong.