2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2007-04-03 02:22:25 +00:00
|
|
|
* Copyright (c) 2006-2007 Transmission authors and contributors
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
|
|
|
* 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 "BarButton.h"
|
|
|
|
|
2006-07-23 22:23:59 +00:00
|
|
|
@interface BarButton (Private)
|
|
|
|
|
2006-07-23 22:58:04 +00:00
|
|
|
- (void) createButtons;
|
2006-07-23 22:23:59 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
@implementation BarButton
|
|
|
|
|
2006-07-23 14:42:54 +00:00
|
|
|
//height of button should be 17.0
|
2006-07-16 19:39:23 +00:00
|
|
|
- (id) initWithCoder: (NSCoder *) coder
|
|
|
|
{
|
2006-08-06 17:06:05 +00:00
|
|
|
if ((self = [super initWithCoder: coder]))
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
|
|
|
fEnabled = NO;
|
|
|
|
fTrackingTag = 0;
|
|
|
|
|
2006-07-23 22:58:04 +00:00
|
|
|
[self createButtons];
|
2006-07-23 22:23:59 +00:00
|
|
|
|
|
|
|
[self setImage: fButtonNormal];
|
|
|
|
[self setAlternateImage: fButtonPressed];
|
|
|
|
|
2006-08-05 13:22:30 +00:00
|
|
|
NSNotificationCenter * nc = [NSNotificationCenter defaultCenter];
|
|
|
|
|
|
|
|
[nc addObserver: self selector: @selector(setForActive:)
|
2006-09-05 02:12:07 +00:00
|
|
|
name: NSWindowDidBecomeKeyNotification object: [self window]];
|
2006-08-05 13:22:30 +00:00
|
|
|
|
|
|
|
[nc addObserver: self selector: @selector(setForInactive:)
|
2006-09-05 02:12:07 +00:00
|
|
|
name: NSWindowDidResignKeyNotification object: [self window]];
|
2006-08-05 13:22:30 +00:00
|
|
|
|
|
|
|
[nc addObserver: self selector: @selector(resetBounds:)
|
2006-08-07 00:11:07 +00:00
|
|
|
name: NSViewFrameDidChangeNotification object: nil];
|
2006-08-06 17:06:05 +00:00
|
|
|
}
|
|
|
|
return self;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2006-07-30 20:53:25 +00:00
|
|
|
- (void) dealloc
|
|
|
|
{
|
|
|
|
[[NSNotificationCenter defaultCenter] removeObserver: self];
|
|
|
|
|
|
|
|
[fButtonNormal release];
|
|
|
|
[fButtonOver release];
|
|
|
|
[fButtonPressed release];
|
|
|
|
[fButtonSelected release];
|
|
|
|
[fButtonSelectedDim release];
|
|
|
|
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
2006-07-23 22:58:04 +00:00
|
|
|
//call only once
|
|
|
|
- (void) createButtons
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2006-07-23 22:58:04 +00:00
|
|
|
NSSize buttonSize = [self frame].size;
|
|
|
|
fButtonNormal = [[NSImage alloc] initWithSize: buttonSize];
|
|
|
|
fButtonNormalDim = [[NSImage alloc] initWithSize: buttonSize];
|
|
|
|
fButtonOver = [[NSImage alloc] initWithSize: buttonSize];
|
|
|
|
fButtonPressed = [[NSImage alloc] initWithSize: buttonSize];
|
|
|
|
fButtonSelected = [[NSImage alloc] initWithSize: buttonSize];
|
|
|
|
fButtonSelectedDim = [[NSImage alloc] initWithSize: buttonSize];
|
|
|
|
|
|
|
|
//rolled over button
|
|
|
|
NSImage * leftOver = [NSImage imageNamed: @"FilterButtonOverLeft.png"],
|
|
|
|
* rightOver = [NSImage imageNamed: @"FilterButtonOverRight.png"],
|
|
|
|
* mainOver = [NSImage imageNamed: @"FilterButtonOverMain.png"];
|
|
|
|
|
|
|
|
NSSize endSize = [leftOver size],
|
|
|
|
mainSize = NSMakeSize(buttonSize.width - endSize.width * 2.0, endSize.height);
|
|
|
|
NSPoint leftPoint = NSMakePoint(0, 0),
|
|
|
|
rightPoint = NSMakePoint(buttonSize.width - endSize.width, 0),
|
|
|
|
mainPoint = NSMakePoint(endSize.width, 0);
|
|
|
|
|
|
|
|
[mainOver setScalesWhenResized: YES];
|
|
|
|
[mainOver setSize: mainSize];
|
|
|
|
|
|
|
|
[fButtonOver lockFocus];
|
|
|
|
[leftOver compositeToPoint: leftPoint operation: NSCompositeSourceOver];
|
|
|
|
[mainOver compositeToPoint: mainPoint operation: NSCompositeSourceOver];
|
|
|
|
[rightOver compositeToPoint: rightPoint operation: NSCompositeSourceOver];
|
|
|
|
[fButtonOver unlockFocus];
|
|
|
|
|
|
|
|
//pressed button
|
|
|
|
NSImage * leftPressed = [NSImage imageNamed: @"FilterButtonPressedLeft.png"],
|
|
|
|
* rightPressed = [NSImage imageNamed: @"FilterButtonPressedRight.png"],
|
|
|
|
* mainPressed = [NSImage imageNamed: @"FilterButtonPressedMain.png"];
|
|
|
|
|
|
|
|
[mainPressed setScalesWhenResized: YES];
|
|
|
|
[mainPressed setSize: mainSize];
|
|
|
|
|
|
|
|
[fButtonPressed lockFocus];
|
|
|
|
[leftPressed compositeToPoint: leftPoint operation: NSCompositeSourceOver];
|
|
|
|
[mainPressed compositeToPoint: mainPoint operation: NSCompositeSourceOver];
|
|
|
|
[rightPressed compositeToPoint: rightPoint operation: NSCompositeSourceOver];
|
|
|
|
[fButtonPressed unlockFocus];
|
|
|
|
|
|
|
|
//selected button
|
|
|
|
NSImage * leftSelected = [NSImage imageNamed: @"FilterButtonSelectedLeft.png"],
|
|
|
|
* rightSelected = [NSImage imageNamed: @"FilterButtonSelectedRight.png"],
|
|
|
|
* mainSelected = [NSImage imageNamed: @"FilterButtonSelectedMain.png"];
|
|
|
|
|
|
|
|
[mainSelected setScalesWhenResized: YES];
|
|
|
|
[mainSelected setSize: mainSize];
|
|
|
|
|
|
|
|
[fButtonSelected lockFocus];
|
|
|
|
[leftSelected compositeToPoint: leftPoint operation: NSCompositeSourceOver];
|
|
|
|
[mainSelected compositeToPoint: mainPoint operation: NSCompositeSourceOver];
|
|
|
|
[rightSelected compositeToPoint: rightPoint operation: NSCompositeSourceOver];
|
|
|
|
[fButtonSelected unlockFocus];
|
|
|
|
|
|
|
|
//selected and dimmed button
|
|
|
|
fButtonSelectedDim = [fButtonSelected copy];
|
|
|
|
|
|
|
|
//create button text
|
2006-07-23 22:23:59 +00:00
|
|
|
NSString * text = [self title];
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
NSFont * boldFont = [[NSFontManager sharedFontManager] convertFont:
|
2006-07-17 04:33:56 +00:00
|
|
|
[NSFont fontWithName: @"Lucida Grande" size: 12.0] toHaveTrait: NSBoldFontMask];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2006-07-19 11:30:05 +00:00
|
|
|
NSSize shadowOffset = NSMakeSize(0.0, -1.0);
|
|
|
|
|
2007-05-25 03:05:49 +00:00
|
|
|
NSShadow * shadowNormal = [NSShadow alloc];
|
|
|
|
[shadowNormal setShadowOffset: shadowOffset];
|
|
|
|
[shadowNormal setShadowBlurRadius: 1.0];
|
|
|
|
[shadowNormal setShadowColor: [NSColor colorWithDeviceWhite: 1.0 alpha: 0.4]];
|
2006-07-19 11:30:05 +00:00
|
|
|
|
2007-05-25 03:05:49 +00:00
|
|
|
NSShadow * shadowNormalDim = [NSShadow alloc];
|
|
|
|
[shadowNormalDim setShadowOffset: shadowOffset];
|
|
|
|
[shadowNormalDim setShadowBlurRadius: 1.0];
|
|
|
|
[shadowNormalDim setShadowColor: [NSColor colorWithDeviceWhite: 1.0 alpha: 0.2]];
|
2006-07-19 11:30:05 +00:00
|
|
|
|
2007-05-25 03:05:49 +00:00
|
|
|
NSShadow * shadowHighlighted = [NSShadow alloc];
|
|
|
|
[shadowHighlighted setShadowOffset: shadowOffset];
|
|
|
|
[shadowHighlighted setShadowBlurRadius: 1.0];
|
|
|
|
[shadowHighlighted setShadowColor: [NSColor colorWithDeviceWhite: 0.0 alpha: 0.4]];
|
2006-07-19 11:30:05 +00:00
|
|
|
|
2006-07-19 00:06:32 +00:00
|
|
|
NSDictionary * normalAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:
|
2006-07-19 11:30:05 +00:00
|
|
|
[NSColor colorWithCalibratedRed: 0.259 green: 0.259 blue: 0.259 alpha: 1.0],
|
|
|
|
NSForegroundColorAttributeName,
|
|
|
|
boldFont, NSFontAttributeName,
|
|
|
|
shadowNormal, NSShadowAttributeName, nil],
|
2006-07-19 00:06:32 +00:00
|
|
|
* normalDimAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:
|
|
|
|
[NSColor disabledControlTextColor], NSForegroundColorAttributeName,
|
2006-07-19 11:30:05 +00:00
|
|
|
boldFont, NSFontAttributeName,
|
|
|
|
shadowNormalDim, NSShadowAttributeName, nil],
|
2006-07-19 00:06:32 +00:00
|
|
|
* highlightedAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:
|
2006-07-16 19:39:23 +00:00
|
|
|
[NSColor whiteColor], NSForegroundColorAttributeName,
|
2006-07-19 11:30:05 +00:00
|
|
|
boldFont, NSFontAttributeName,
|
|
|
|
shadowHighlighted, NSShadowAttributeName, nil],
|
2006-07-19 00:06:32 +00:00
|
|
|
* highlightedDimAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:
|
|
|
|
[NSColor colorWithCalibratedRed: 0.9 green: 0.9 blue: 0.9 alpha: 1.0], NSForegroundColorAttributeName,
|
2006-07-19 11:30:05 +00:00
|
|
|
boldFont, NSFontAttributeName,
|
|
|
|
shadowHighlighted, NSShadowAttributeName, nil];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-05-25 03:05:49 +00:00
|
|
|
NSSize textSizeNormal = [text sizeWithAttributes: normalAttributes];
|
2006-07-19 11:30:05 +00:00
|
|
|
NSRect textRect = NSMakeRect((buttonSize.width - textSizeNormal.width) * 0.5,
|
|
|
|
(buttonSize.height - textSizeNormal.height) * 0.5 + 1.5, textSizeNormal.width, textSizeNormal.height);
|
|
|
|
|
|
|
|
[shadowNormal release];
|
|
|
|
[shadowNormalDim release];
|
|
|
|
[shadowHighlighted release];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
//normal button
|
|
|
|
[fButtonNormal lockFocus];
|
2006-07-19 11:30:05 +00:00
|
|
|
[text drawInRect: textRect withAttributes: normalAttributes];
|
2006-07-16 19:39:23 +00:00
|
|
|
[fButtonNormal unlockFocus];
|
|
|
|
|
2006-07-19 00:06:32 +00:00
|
|
|
//normal and dim button
|
|
|
|
[fButtonNormalDim lockFocus];
|
2006-07-19 11:30:05 +00:00
|
|
|
[text drawInRect: textRect withAttributes: normalDimAttributes];
|
2006-07-19 00:06:32 +00:00
|
|
|
[fButtonNormalDim unlockFocus];
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
//rolled over button
|
|
|
|
[fButtonOver lockFocus];
|
2006-07-19 11:30:05 +00:00
|
|
|
[text drawInRect: textRect withAttributes: highlightedAttributes];
|
2006-07-16 19:39:23 +00:00
|
|
|
[fButtonOver unlockFocus];
|
|
|
|
|
|
|
|
//pressed button
|
|
|
|
[fButtonPressed lockFocus];
|
2006-07-19 11:30:05 +00:00
|
|
|
[text drawInRect: textRect withAttributes: highlightedAttributes];
|
2006-07-16 19:39:23 +00:00
|
|
|
[fButtonPressed unlockFocus];
|
|
|
|
|
|
|
|
//selected button
|
|
|
|
[fButtonSelected lockFocus];
|
2006-07-19 11:30:05 +00:00
|
|
|
[text drawInRect: textRect withAttributes: highlightedAttributes];
|
2006-07-16 19:39:23 +00:00
|
|
|
[fButtonSelected unlockFocus];
|
|
|
|
|
2006-07-19 00:06:32 +00:00
|
|
|
//selected and dim button
|
|
|
|
[fButtonSelectedDim lockFocus];
|
2006-07-19 11:30:05 +00:00
|
|
|
[text drawInRect: textRect withAttributes: highlightedDimAttributes];
|
2006-07-19 00:06:32 +00:00
|
|
|
[fButtonSelectedDim unlockFocus];
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
[normalAttributes release];
|
2006-07-19 00:06:32 +00:00
|
|
|
[normalDimAttributes release];
|
2006-07-16 19:39:23 +00:00
|
|
|
[highlightedAttributes release];
|
2006-07-19 00:06:32 +00:00
|
|
|
[highlightedDimAttributes release];
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) mouseEntered: (NSEvent *) event
|
|
|
|
{
|
|
|
|
if (!fEnabled)
|
|
|
|
[self setImage: fButtonOver];
|
2006-08-07 00:11:07 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
[super mouseEntered: event];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) mouseExited: (NSEvent *) event
|
|
|
|
{
|
|
|
|
if (!fEnabled)
|
|
|
|
[self setImage: fButtonNormal];
|
|
|
|
|
|
|
|
[super mouseExited: event];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setEnabled: (BOOL) enable
|
|
|
|
{
|
|
|
|
fEnabled = enable;
|
|
|
|
[self setImage: fEnabled ? fButtonSelected : fButtonNormal];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) resetBounds: (NSNotification *) notification
|
|
|
|
{
|
|
|
|
if (fTrackingTag)
|
|
|
|
[self removeTrackingRect: fTrackingTag];
|
|
|
|
fTrackingTag = [self addTrackingRect: [self bounds] owner: self userData: nil assumeInside: NO];
|
|
|
|
}
|
|
|
|
|
2006-08-05 13:22:30 +00:00
|
|
|
- (void) setForActive: (NSNotification *) notification
|
2006-07-19 00:06:32 +00:00
|
|
|
{
|
2006-09-05 02:23:54 +00:00
|
|
|
[self setImage: fEnabled ? fButtonSelected : fButtonNormal];
|
2006-07-19 00:06:32 +00:00
|
|
|
[self resetBounds: nil];
|
|
|
|
}
|
|
|
|
|
2006-08-05 13:22:30 +00:00
|
|
|
- (void) setForInactive: (NSNotification *) notification
|
2006-07-19 00:06:32 +00:00
|
|
|
{
|
2006-09-05 02:21:17 +00:00
|
|
|
[self setImage: fEnabled ? fButtonSelectedDim : fButtonNormalDim];
|
2006-07-19 00:06:32 +00:00
|
|
|
|
|
|
|
if (fTrackingTag)
|
2006-09-05 02:12:07 +00:00
|
|
|
{
|
2006-07-19 00:06:32 +00:00
|
|
|
[self removeTrackingRect: fTrackingTag];
|
2006-09-05 02:12:07 +00:00
|
|
|
fTrackingTag = 0;
|
|
|
|
}
|
2006-07-19 00:06:32 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
@end
|