forked from radix1980/Mac-Linux-USB-Loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RHAboutViewController.m
executable file
·42 lines (33 loc) · 1004 Bytes
/
RHAboutViewController.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
//
// RHAboutViewController.m
// RHPreferencesTester
//
// Originally created by Richard Heard on 23/05/12. Subsequently modified by SevenBits.
// Copyright (c) 2012-2013 SevenBits. All rights reserved.
//
#import "RHAboutViewController.h"
@interface RHAboutViewController ()
@end
@implementation RHAboutViewController
@synthesize emailTextField = emailTextField;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{
self = [super initWithNibName:@"RHAboutViewController" bundle:nibBundleOrNil];
if (self) {
// Initialization code here.
}
return self;
}
#pragma mark - RHPreferencesViewControllerProtocol
- (NSString*)identifier {
return NSStringFromClass(self.class);
}
- (NSImage*)toolbarItemImage {
return [NSImage imageNamed:@"AboutPreferences"];
}
- (NSString*)toolbarItemLabel {
return NSLocalizedString(@"Acknowledgements", @"AboutToolbarItemLabel");
}
- (NSView*)initialKeyView{
return self.emailTextField;
}
@end