-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathRHAccountsViewController.m
More file actions
executable file
·43 lines (33 loc) · 938 Bytes
/
RHAccountsViewController.m
File metadata and controls
executable file
·43 lines (33 loc) · 938 Bytes
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
//
// RHAccountsViewController.m
// RHPreferencesTester
//
// Created by Richard Heard on 17/04/12.
// Copyright (c) 2012 Richard Heard. All rights reserved.
//
#import "RHAccountsViewController.h"
@interface RHAccountsViewController ()
@end
@implementation RHAccountsViewController
@synthesize usernameTextField;
-(id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{
self = [super initWithNibName:@"RHAccountsViewController" bundle:nibBundleOrNil];
if (self){
// Initialization code here.
}
return self;
}
#pragma mark - RHPreferencesViewControllerProtocol
-(NSString*)identifier{
return NSStringFromClass(self.class);
}
-(NSImage*)toolbarItemImage{
return [NSImage imageNamed:@"Icon"];
}
-(NSString*)toolbarItemLabel{
return NSLocalizedString(@"Application", @"AccountsToolbarItemLabel");
}
-(NSView*)initialKeyView{
return self.usernameTextField;
}
@end