]> Dogcows Code - chaz/thecheat/blob - AboutBoxController.m
The Cheat 1.1.2
[chaz/thecheat] / AboutBoxController.m
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: AboutBoxController.m
6 // Created: Mon Nov 24 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #import "AboutBoxController.h"
12
13 #include "cheat_shared.h"
14
15
16 @implementation AboutBoxController
17
18
19 - (id)init
20 {
21 return [super initWithWindowNibName:@"AboutBox"];
22 }
23
24 - (void)windowDidLoad
25 {
26 [nameVersionText setStringValue:[NSString stringWithFormat:@"%@ %@", [CMUpdateCheck appName], [CMUpdateCheck appVersion]]];
27 [aboutWindow center];
28 }
29
30 - (IBAction)launchWebsiteButton:(id)sender
31 {
32 LaunchWebsite();
33 }
34
35 - (IBAction)launchEmailButton:(id)sender
36 {
37 LaunchEmail();
38 }
39
40
41 @end
This page took 0.0378 seconds and 5 git commands to generate.