quakespasm/MacOSX/SUUpdaterDelegate.m

68 lines
2.1 KiB
Mathematica
Raw Normal View History

2010-12-17 00:37:07 +00:00
/*
Copyright (C) 2007-2008 Kristian Duske
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#import "SUUpdaterDelegate.h"
@implementation SUUpdaterDelegate
- (id)initWithTabView:(NSTabView *)tabView indicator:(NSProgressIndicator *)indicator button:(NSButton *)button {
if (tabView == nil || indicator == nil || button == nil) {
[self release];
return nil;
}
if (self = [super init]) {
updateTabView = [tabView retain];
updateProgressIndicator = [indicator retain];
updateButton = [button retain];
}
return self;
}
- (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)update {
[updateProgressIndicator stopAnimation:updater];
[updateButton setTitle:[NSString stringWithFormat:@"New version available: %@", [update displayVersionString]]];
NSMutableAttributedString *colorTitle = [[NSMutableAttributedString alloc] initWithAttributedString:[updateButton attributedTitle]];
[colorTitle addAttribute:NSForegroundColorAttributeName
value:[NSColor blueColor]
range:NSMakeRange(0, [colorTitle length])];
[updateButton setAttributedTitle:colorTitle];
[updateButton sizeToFit];
[updateTabView selectTabViewItemAtIndex:1];
}
- (void)updaterDidNotFindUpdate:(SUUpdater *)updater {
[updateProgressIndicator stopAnimation:updater];
[updateTabView selectTabViewItemAtIndex:2];
}
- (void)dealloc {
[updateTabView release];
[updateProgressIndicator release];
[updateButton release];
[super dealloc];
}
@end