transmission/macosx/ProgressGradients.m

125 lines
4.9 KiB
Mathematica
Raw Normal View History

2007-09-16 01:02:06 +00:00
/******************************************************************************
* $Id$
*
2009-01-10 23:37:37 +00:00
* Copyright (c) 2007-2009 Transmission authors and contributors
2007-09-16 01:02:06 +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 "ProgressGradients.h"
2007-09-16 01:02:06 +00:00
@implementation ProgressGradients
2007-09-16 01:02:06 +00:00
2008-12-26 05:57:51 +00:00
+ (NSGradient *) progressGradientForRed: (CGFloat) redComponent green: (CGFloat) greenComponent blue: (CGFloat) blueComponent
2007-09-16 01:02:06 +00:00
{
2008-12-26 05:57:51 +00:00
NSColor * baseColor = [NSColor colorWithCalibratedRed: redComponent green: greenComponent blue: blueComponent alpha: 1.0];
2007-09-16 01:02:06 +00:00
2008-12-26 05:57:51 +00:00
NSColor * color2 = [NSColor colorWithCalibratedRed: redComponent * 0.95 green: greenComponent * 0.95 blue: blueComponent * 0.95
alpha: 1.0];
2007-09-16 01:02:06 +00:00
2008-12-26 05:57:51 +00:00
NSColor * color3 = [NSColor colorWithCalibratedRed: redComponent * 0.85 green: greenComponent * 0.85 blue: blueComponent * 0.85
alpha: 1.0];
2007-09-16 01:02:06 +00:00
2008-12-26 05:57:51 +00:00
NSGradient * progressGradient = [[NSGradient alloc] initWithColorsAndLocations: baseColor, 0.0, color2, 0.5, color3, 0.5,
baseColor, 1.0, nil];
return [progressGradient autorelease];
2007-09-16 01:02:06 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressWhiteGradient = nil;
+ (NSGradient *) progressWhiteGradient
{
if (!fProgressWhiteGradient)
2008-10-28 00:08:49 +00:00
fProgressWhiteGradient = [[[self class] progressGradientForRed: 0.95f green: 0.95f blue: 0.95f] retain];
return fProgressWhiteGradient;
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressGrayGradient = nil;
+ (NSGradient *) progressGrayGradient
2007-09-16 01:02:06 +00:00
{
if (!fProgressGrayGradient)
2008-10-28 00:08:49 +00:00
fProgressGrayGradient = [[[self class] progressGradientForRed: 0.7f green: 0.7f blue: 0.7f] retain];
return fProgressGrayGradient;
2007-09-16 01:02:06 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressLightGrayGradient = nil;
+ (NSGradient *) progressLightGrayGradient
2007-09-16 01:02:06 +00:00
{
if (!fProgressLightGrayGradient)
2008-10-28 00:08:49 +00:00
fProgressLightGrayGradient = [[[self class] progressGradientForRed: 0.87f green: 0.87f blue: 0.87f] retain];
return fProgressLightGrayGradient;
2007-09-16 01:02:06 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressBlueGradient = nil;
+ (NSGradient *) progressBlueGradient
2007-09-16 01:02:06 +00:00
{
if (!fProgressBlueGradient)
2008-10-28 00:08:49 +00:00
fProgressBlueGradient = [[[self class] progressGradientForRed: 0.35f green: 0.67f blue: 0.98f] retain];
return fProgressBlueGradient;
2007-09-16 01:02:06 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressDarkBlueGradient = nil;
+ (NSGradient *) progressDarkBlueGradient
2007-09-16 01:02:06 +00:00
{
if (!fProgressDarkBlueGradient)
2008-10-28 00:08:49 +00:00
fProgressDarkBlueGradient = [[[self class] progressGradientForRed: 0.616f green: 0.722f blue: 0.776f] retain];
return fProgressDarkBlueGradient;
2007-09-16 01:02:06 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressGreenGradient = nil;
+ (NSGradient *) progressGreenGradient
2007-09-16 01:02:06 +00:00
{
if (!fProgressGreenGradient)
2008-10-28 00:08:49 +00:00
fProgressGreenGradient = [[[self class] progressGradientForRed: 0.44f green: 0.89f blue: 0.40f] retain];
return fProgressGreenGradient;
2007-09-16 01:02:06 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressLightGreenGradient = nil;
+ (NSGradient *) progressLightGreenGradient
2007-09-16 01:02:06 +00:00
{
if (!fProgressLightGreenGradient)
2008-10-28 00:08:49 +00:00
fProgressLightGreenGradient = [[[self class] progressGradientForRed: 0.62f green: 0.99f blue: 0.58f] retain];
return fProgressLightGreenGradient;
2007-09-16 01:02:06 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressDarkGreenGradient = nil;
+ (NSGradient *) progressDarkGreenGradient
2007-09-16 01:02:06 +00:00
{
if (!fProgressDarkGreenGradient)
2008-10-28 00:08:49 +00:00
fProgressDarkGreenGradient = [[[self class] progressGradientForRed: 0.627f green: 0.714f blue: 0.639f] retain];
return fProgressDarkGreenGradient;
2007-09-16 01:02:06 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressRedGradient = nil;
+ (NSGradient *) progressRedGradient
2007-11-11 21:45:27 +00:00
{
if (!fProgressRedGradient)
2008-10-28 00:08:49 +00:00
fProgressRedGradient = [[[self class] progressGradientForRed: 0.902f green: 0.439f blue: 0.451f] retain];
return fProgressRedGradient;
2007-11-11 21:45:27 +00:00
}
2008-12-26 05:57:51 +00:00
NSGradient * fProgressYellowGradient = nil;
+ (NSGradient *) progressYellowGradient
2007-09-16 01:02:06 +00:00
{
if (!fProgressYellowGradient)
2008-10-28 00:08:49 +00:00
fProgressYellowGradient = [[[self class] progressGradientForRed: 0.933f green: 0.890f blue: 0.243f] retain];
return fProgressYellowGradient;
2007-09-16 01:02:06 +00:00
}
@end