forked from glebd/bwtoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBWHyperlinkButton.m
55 lines (44 loc) · 1.05 KB
/
BWHyperlinkButton.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// BWHyperlinkButton.m
// BWToolkit
//
// Created by Brandon Walkin (www.brandonwalkin.com)
// All code is provided under the New BSD license.
//
#import "BWHyperlinkButton.h"
#import "BWHyperlinkButtonCell.h"
@implementation BWHyperlinkButton
@synthesize urlString;
-(void)awakeFromNib
{
[self setTarget:self];
[self setAction:@selector(openURLInBrowser:)];
}
- (id)initWithCoder:(NSCoder *)decoder
{
if ((self = [super initWithCoder:decoder]) != nil)
{
[self setUrlString:[decoder decodeObjectForKey:@"BWHBUrlString"]];
}
return self;
}
- (void)encodeWithCoder:(NSCoder *)coder
{
[super encodeWithCoder:coder];
[coder encodeObject:[self urlString] forKey:@"BWHBUrlString"];
}
- (void)openURLInBrowser:(id)sender
{
if (![self respondsToSelector:@selector(ibDidAddToDesignableDocument:)])
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:self.urlString]];
}
- (void)resetCursorRects
{
[self addCursorRect:[self bounds] cursor:[NSCursor pointingHandCursor]];
}
- (void)dealloc
{
[urlString release];
[super dealloc];
}
@end