]> Dogcows Code - chaz/thecheat/blob - HelpController.m
The Cheat 1.2
[chaz/thecheat] / HelpController.m
1
2 // **********************************************************************
3 // The Cheat - A universal game cheater for Mac OS X
4 // (C) 2003-2005 Chaz McGarvey (BrokenZipper)
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 1, or (at your option)
9 // any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 //
20
21 #import "HelpController.h"
22
23
24 @implementation HelpController
25
26
27 - (id)init
28 {
29 return [super initWithWindowNibName:@"Help"];
30 }
31
32 - (void)windowDidLoad
33 {
34 NSString *filepath = [[NSBundle mainBundle] pathForResource:@"Help" ofType:@"html"];
35 NSURL *url;
36 NSURLRequest *request;
37
38 if ( !filepath ) {
39 return;
40 }
41
42 url = [NSURL fileURLWithPath:filepath];
43 request = [NSURLRequest requestWithURL:url];
44
45 [[webView mainFrame] loadRequest:request];
46 [helpWindow center];
47 }
48
49
50 - (void)webView:(WebView *)sender decidePolicyForNavigationAction:(NSDictionary *)actionInformation request:(NSURLRequest *)request frame:(WebFrame *)frame decisionListener:(id<WebPolicyDecisionListener>)listener
51 {
52 NSURL *url = [request URL];
53
54 // open "http" and "mailto" links in a real browser or email client
55 if ( [[url scheme] isEqualToString:@"http"] || [[url scheme] isEqualToString:@"mailto"] ) {
56 [[NSWorkspace sharedWorkspace] openURL:url];
57 [listener ignore];
58 }
59 [listener use];
60 }
61
62
63 @end
This page took 0.031371 seconds and 4 git commands to generate.