Controller.m
/* |
File: Controller.m |
Abstract: The primary window controller of this application. |
Version: 1.1 |
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple |
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 terms. If you do |
not agree with these terms, please do not use, 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'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 Inc. may |
be used to endorse or promote products derived from the Apple Software |
without specific prior written permission from Apple. Except 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. |
Copyright (C) 2012 Apple Inc. All Rights Reserved. |
*/ |
#import "Controller.h" |
#import "ControllerBrowsing.h" |
@implementation Controller |
- (void)updateScreenOptions:(NSScreen *)screen |
{ |
if (screen != nil) |
{ |
NSDictionary *screenOptions = |
[[NSWorkspace sharedWorkspace] desktopImageOptionsForScreen:curScreen]; |
// the value is an NSNumber containing an NSImageScaling (scaling factor) |
NSNumber *scalingFactor = [screenOptions objectForKey:NSWorkspaceDesktopImageScalingKey]; |
// select the proper menu item that matches it's representedObject value |
for (NSMenuItem *item in [scalingPopup itemArray]) |
{ |
if ([[item representedObject] integerValue] == [scalingFactor integerValue]) |
{ |
[scalingPopup selectItem:item]; |
break; |
} |
} |
// the value is an NSNumber containing a BOOL (allow clipping) |
NSNumber *allowClipping = [screenOptions objectForKey:NSWorkspaceDesktopImageAllowClippingKey]; |
[[clippingCheckbox cell] setState:[allowClipping boolValue]]; |
// the value is an NSColor (fill color) |
NSColor *fillColorValue = [screenOptions objectForKey:NSWorkspaceDesktopImageFillColorKey]; |
if (fillColorValue) |
[fillColor setColor:fillColorValue]; |
} |
} |
- (void)awakeFromNib |
{ |
[self setupBrowsing]; // setup our image browser and initially point it to: /Library/Desktop Pictures/ |
// build the screens popup menu |
NSMenu *screensMenu = [[NSMenu alloc] initWithTitle:@"screens"]; |
NSArray *screens = [NSScreen screens]; |
// apply represented object values to each menu item the scaling popup button |
// |
// here are the values used in the popupButton's menu items: |
// |
// NSImageScaleAxesIndependently - |
// scale each dimension to exactly fit destination. Do not preserve aspect ratio. |
// NSImageScaleNone - |
// Do not scale |
// NSImageScaleProportionallyUpOrDown - |
// scale image to maximum possible dimensions while (1) staying within destination |
// area (2) preserving aspect ratio |
// |
NSInteger value = NSImageScaleAxesIndependently; |
NSArray *menuItems = [scalingPopup itemArray]; |
for (NSMenuItem *item in menuItems) |
{ |
[item setRepresentedObject:[NSNumber numberWithInteger:value++]]; |
} |
NSScreen *iterScreen; |
NSUInteger screenIndex = 1; |
for (iterScreen in screens) |
{ |
NSMenuItem *item; |
NSString *menuTitle; |
if (iterScreen == [NSScreen mainScreen]) |
{ |
menuTitle = @"Main Screen"; |
} |
else |
{ |
menuTitle = [NSString stringWithFormat:@"Screen %ld", (long)screenIndex]; |
} |
item = [[NSMenuItem alloc] initWithTitle:menuTitle |
action:@selector(screensMenuAction:) |
keyEquivalent:@""]; |
[item setRepresentedObject:iterScreen]; |
[screensMenu addItem:item]; |
if (iterScreen == [NSScreen mainScreen]) |
{ |
// select and remember the main screen at startup |
[screenPopup selectItem:item]; |
curScreen = iterScreen; |
} |
[item release]; |
screenIndex++; |
} |
[screenPopup setMenu:screensMenu]; |
[screensMenu release]; |
[self updateScreenOptions:curScreen]; |
} |
- (void)dealloc |
{ |
[images release]; |
[super dealloc]; |
} |
- (IBAction)screensMenuAction:(id)sender |
{ |
NSMenuItem *chosenItem = (NSMenuItem *)sender; |
NSScreen *screen = [chosenItem representedObject]; |
curScreen = screen; // keep track of the current screen selection |
[self updateScreenOptions:screen]; |
} |
- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication |
{ |
// app will quit if our primary window is closed |
return YES; |
} |
#pragma mark - Actions |
- (IBAction)scalingAction:(id)sender |
{ |
// get the current screen options |
NSMutableDictionary *screenOptions = |
[[[NSWorkspace sharedWorkspace] desktopImageOptionsForScreen:curScreen] mutableCopy]; |
// the value is the representedObject of the menu item describing the NSNumber |
// containing an NSImageScaling (scaling factor) |
NSPopUpButton *popupButton = sender; |
NSNumber *scalingFactor = [[popupButton selectedItem] representedObject]; |
// replace out the old scaling factor with the new |
[screenOptions setObject:scalingFactor forKey:NSWorkspaceDesktopImageScalingKey]; |
NSError *error = nil; |
NSURL *imageURL = [[NSWorkspace sharedWorkspace] desktopImageURLForScreen:curScreen]; |
if (![[NSWorkspace sharedWorkspace] setDesktopImageURL:imageURL |
forScreen:curScreen |
options:screenOptions |
error:&error]) |
{ |
[self presentError:error]; |
} |
[screenOptions release]; |
} |
- (IBAction)allowClippingAction:(id)sender |
{ |
// get the current screen options |
NSMutableDictionary *screenOptions = |
[[[NSWorkspace sharedWorkspace] desktopImageOptionsForScreen:curScreen] mutableCopy]; |
// the value is an NSNumber containing a BOOL (allow clipping) |
NSButton *checkbox = sender; |
NSNumber *allowClipping = [NSNumber numberWithBool:[checkbox state]]; |
// replace out the old clip value with the new |
[screenOptions setObject:allowClipping forKey:NSWorkspaceDesktopImageAllowClippingKey]; |
NSError *error = nil; |
NSURL *imageURL = [[NSWorkspace sharedWorkspace] desktopImageURLForScreen:curScreen]; |
if (![[NSWorkspace sharedWorkspace] setDesktopImageURL:imageURL |
forScreen:curScreen |
options:screenOptions |
error:&error]) |
{ |
[self presentError:error]; |
} |
[screenOptions release]; |
} |
- (IBAction)fillColorAction:(id)sender |
{ |
// get the current screen options |
NSMutableDictionary *screenOptions = |
[[[NSWorkspace sharedWorkspace] desktopImageOptionsForScreen:curScreen] mutableCopy]; |
// the value is an NSColor (fill color) |
NSColorWell *colorWell = sender; |
NSColor *fillColorValue = [colorWell color]; |
// replace out the old fill color with the new |
[screenOptions setObject:fillColorValue forKey:NSWorkspaceDesktopImageFillColorKey]; |
NSError *error = nil; |
NSURL *imageURL = [[NSWorkspace sharedWorkspace] desktopImageURLForScreen:curScreen]; |
if (![[NSWorkspace sharedWorkspace] setDesktopImageURL:imageURL |
forScreen:curScreen |
options:screenOptions |
error:&error]) |
{ |
[self presentError:error]; |
} |
[screenOptions release]; |
} |
@end |
Copyright © 2012 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2012-08-29