]> Dogcows Code - chaz/thecheat/blob - AboutBoxController.m
The Cheat 1.1.1
[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 #import <Chaz/CMUpdateCheck.h>
16
17
18 @implementation AboutBoxController
19
20
21 - (id)init
22 {
23 return [super initWithWindowNibName:@"AboutBox"];
24 }
25
26 - (void)windowDidLoad
27 {
28 [nameVersionText setStringValue:[NSString stringWithFormat:@"%@ %@", [CMUpdateCheck appName], [CMUpdateCheck appVersion]]];
29 [aboutWindow center];
30 }
31
32 - (IBAction)launchWebsiteButton:(id)sender
33 {
34 LaunchWebsite();
35 }
36
37 - (IBAction)launchEmailButton:(id)sender
38 {
39 LaunchEmail();
40 }
41
42
43 @end
This page took 0.03129 seconds and 4 git commands to generate.