-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathPreferenceController.m
138 lines (107 loc) · 3.17 KB
/
PreferenceController.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
* The Cheat - The legendary universal game trainer for Mac OS X.
* http://www.brokenzipper.com/trac/wiki/TheCheat
*
* Copyright (c) 2003-2011, Charles McGarvey et al.
*
* Distributable under the terms and conditions of the 2-clause BSD
* license; see the file COPYING for the legal text of the license.
*/
#import "PreferenceController.h"
@implementation PreferenceController
- (id)init
{
if ( self = [super initWithWindowNibName:@"Preferences"] )
{
[self setWindowFrameAutosaveName:@"TCPreferencWindowPosition"];
}
return self;
}
- (void)dealloc
{
[_toolbar release];
[_contentView release];
[super dealloc];
}
- (void)windowDidLoad
{
_toolbar = [[NSToolbar alloc] initWithIdentifier:@"TCPreferencesToolbar"];
[_toolbar setDelegate:self];
[_toolbar setVisible:YES];
[[self window] setToolbar:_toolbar];
_contentView = [[[self window] contentView] retain];
[self initialInterfaceSetup];
}
- (void)initialInterfaceSetup
{
[self chooseGeneral:self];
}
- (void)chooseGeneral:(id)object
{
NSWindow *window = [self window];
[self switchToView:ibGeneralView];
[window setTitle:@"General"];
if ( MacOSXVersion() >= 0x1030 ) {
[_toolbar setSelectedItemIdentifier:@"General"];
}
}
- (void)chooseServer:(id)object
{
NSWindow *window = [self window];
[self switchToView:ibServerView];
[window setTitle:@"Server"];
if ( MacOSXVersion() >= 0x1030 ) {
[_toolbar setSelectedItemIdentifier:@"Server"];
}
}
- (void)chooseUpdate:(id)object
{
NSWindow *window = [self window];
[self switchToView:ibUpdateCheckView];
[window setTitle:@"Update Check"];
if ( MacOSXVersion() >= 0x1030 ) {
[_toolbar setSelectedItemIdentifier:@"Update Check"];
}
}
- (void)switchToView:(NSView *)view
{
NSWindow *window = [self window];
NSRect frame = [window frame];
float xdif, ydif;
if ( view == [window contentView] ) {
return;
}
xdif = [view frame].size.width - [[window contentView] frame].size.width;
ydif = [view frame].size.height - [[window contentView] frame].size.height;
frame.size.width += xdif;
frame.size.height += ydif;
frame.origin.y -= ydif;
// switch to the new view
[window setContentView:_contentView];
[window setFrame:frame display:YES animate:YES];
[window setContentView:view];
[window makeFirstResponder:view];
}
- (NSToolbarItem *)toolbar:(NSToolbar *)toolbar itemForItemIdentifier:(NSString *)itemIdentifier willBeInsertedIntoToolbar:(BOOL)flag
{
NSToolbarItem *item = [[NSToolbarItem alloc] initWithItemIdentifier:itemIdentifier];
[item setLabel:itemIdentifier];
[item setPaletteLabel:itemIdentifier];
[item setImage:[NSImage imageNamed:itemIdentifier]];
[item setTarget:self];
[item setAction:NSSelectorFromString( [NSString stringWithFormat:@"choose%@:", itemIdentifier] )];
return [item autorelease];
}
- (NSArray *)toolbarAllowedItemIdentifiers:(NSToolbar*)toolbar
{
return [NSArray arrayWithObjects:@"General", @"Update", @"Server", nil];
}
- (NSArray *)toolbarDefaultItemIdentifiers:(NSToolbar*)toolbar
{
return [NSArray arrayWithObjects:@"General", @"Update", @"Server", nil];
}
- (NSArray *)toolbarSelectableItemIdentifiers:(NSToolbar *)toolbar
{
return [NSArray arrayWithObjects:@"General", @"Update", @"Server", nil];
}
@end