-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathUKPrefsPanel.m
More file actions
281 lines (224 loc) · 10.3 KB
/
UKPrefsPanel.m
File metadata and controls
281 lines (224 loc) · 10.3 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/* =============================================================================
FILE: UKPrefsPanel.m
AUTHORS: M. Uli Kusterer (UK), (c) Copyright 2003, all rights reserved.
modified by Dominic Yu (DY), 2006
DIRECTIONS:
UKPrefsPanel is ridiculously easy to use: Create a tabless NSTabView,
where the name of each tab is the name for the toolbar item, and the
identifier of each tab is the identifier to be used for the toolbar
item to represent it. Then create image files with the identifier as
their names to be used as icons in the toolbar.
Finally, drag UKPrefsPanel.h into the NIB with the NSTabView,
instantiate a UKPrefsPanel and connect its tabView outlet to your
NSTabView. When you open the window, the UKPrefsPanel will
automatically add a toolbar to the window with all tabs represented by
a toolbar item, and clicking an item will switch between the tab view's
items.
REVISIONS:
2003-08-13 UK Added auto-save, fixed bug with empty window titles.
2003-07-22 UK Added Panther stuff, documented.
2003-06-30 UK Created.
========================================================================== */
#import "UKPrefsPanel.h"
@interface UKPrefsPanel ()
@property (nonatomic) NSString *autosaveName; ///< Identifier used for saving toolbar state and current selected page of prefs window.
-(IBAction) changePanes:(id)sender;
@end
@implementation UKPrefsPanel
{
NSMutableDictionary* itemsList; ///< Auto-generated from tab view's items.
NSString* baseWindowName; ///< Auto-fetched at awakeFromNib time. We append a colon and the name of the current page to the actual window title.
}
@synthesize tabView, autosaveName;
-(instancetype) init
{
if( self = [super init] )
{
itemsList = [[NSMutableDictionary alloc] init];
baseWindowName = @"";
autosaveName = @"com.ulikusterer";
}
return self;
}
// stuff to resize intelligently -DY
- (void)doResize {
// find optimal dimensions
float maxX=0, maxY=0;
NSRect r;
for (NSView *aView in tabView.selectedTabViewItem.view.subviews) {
r = aView.frame;
if (NSMaxX(r) > maxX)
maxX = NSMaxX(r);
if (NSMaxY(r) > maxY)
maxY = NSMaxY(r);
}
NSWindow *w = tabView.window;
r = w.frame;
r.size.width = maxX + 20;
maxY += 16 + (NSHeight(r) - NSHeight(w.contentView.frame));
r.origin.y -= (maxY - r.size.height);
r.size.height = maxY;
[w setFrame:r display:YES animate:YES];
}
/* -----------------------------------------------------------------------------
awakeFromNib:
This object and all others in the NIB have been created and hooked up.
Fetch the window name so we can modify it to indicate the current
page, and add our toolbar to the window.
This method is the great obstacle to making UKPrefsPanel an NSTabView
subclass. When the tab view's awakeFromNib method is called, the
individual tabs aren't set up yet, meaning mapTabsToToolbar gives us an
empty toolbar. ... bummer.
If anybody knows how to fix this, you're welcome to tell me.
-------------------------------------------------------------------------- */
-(void) awakeFromNib
{
// Generate a string containing the window's title so we can display the original window title plus the selected pane:
NSString *wndTitle = tabView.window.title;
if( wndTitle.length > 0 )
{
baseWindowName = [NSString stringWithFormat:@"%@ : ", wndTitle];
}
// Make sure our autosave-name is based on the one of our prefs window:
self.autosaveName = tabView.window.frameAutosaveName; // defined below -DY
// Select the preferences page the user last had selected when this window was opened:
NSString *key = [NSString stringWithFormat:@"%@.prefspanel.recenttab", autosaveName];
NSInteger index = [NSUserDefaults.standardUserDefaults integerForKey:key];
if (index >= tabView.numberOfTabViewItems) index = 0; // prevent crash if number of items has changed
[tabView selectTabViewItemAtIndex:index];
// Actually hook up our toolbar and the tabs:
[self mapTabsToToolbar];
// remove the toolbar button! -DY 2006.08.06
[tabView.window setShowsToolbarButton:NO];
// and make sure it's tabless -DY
tabView.tabViewType = NSNoTabsBezelBorder;
//[tabView setDrawsBackground:NO];
// and resize
[self doResize];
}
/* -----------------------------------------------------------------------------
mapTabsToToolbar:
Create a toolbar based on our tab control.
Tab title - Name for toolbar item.
Tab identifier - Image file name and toolbar item identifier.
-------------------------------------------------------------------------- */
-(void) mapTabsToToolbar
{
// Create a new toolbar instance, and attach it to our document window
NSToolbar *toolbar =tabView.window.toolbar;
if( toolbar == nil ) // No toolbar yet? Create one!
toolbar = [[NSToolbar alloc] initWithIdentifier:[NSString stringWithFormat:@"%@.prefspanel.toolbar", autosaveName]];
// Set up toolbar properties: Allow customization, give a default display mode, and remember state in user defaults
toolbar.allowsUserCustomization = NO;
toolbar.autosavesConfiguration = NO; // DY: avoid auto-saving list of identifiers, which might change/increase across versions
toolbar.displayMode = NSToolbarDisplayModeIconAndLabel;
// Set up item list based on Tab View:
NSInteger itemCount = tabView.numberOfTabViewItems;
[itemsList removeAllObjects]; // In case we already had a toolbar.
for( NSInteger x = 0; x < itemCount; x++ )
{
NSTabViewItem *theItem = [tabView tabViewItemAtIndex:x];
itemsList[theItem.identifier] = theItem.label;
}
// We are the delegate
toolbar.delegate = self;
// Attach the toolbar to the document window
tabView.window.toolbar = toolbar;
// Set up window title:
NSTabViewItem *currPage = tabView.selectedTabViewItem;
if( currPage == nil )
currPage = [tabView tabViewItemAtIndex:0];
tabView.window.title = [baseWindowName stringByAppendingString:currPage.label];
toolbar.selectedItemIdentifier = currPage.identifier;
}
/* -----------------------------------------------------------------------------
orderFrontPrefsPanel:
IBAction to assign to "Preferences..." menu item.
-------------------------------------------------------------------------- */
-(IBAction) orderFrontPrefsPanel:(id)sender
{
[tabView.window makeKeyAndOrderFront:sender];
}
/* -----------------------------------------------------------------------------
toolbar:itemForItemIdentifier:willBeInsertedIntoToolbar:
Create an item with the proper image and name based on our list
of tabs for the specified identifier.
-------------------------------------------------------------------------- */
-(NSToolbarItem *) toolbar:(NSToolbar *)toolbar itemForItemIdentifier:(NSString *)itemIdent willBeInsertedIntoToolbar:(BOOL)willBeInserted
{
// Required delegate method: Given an item identifier, this method returns an item
// The toolbar will use this method to obtain toolbar items that can be displayed in the customization sheet, or in the toolbar itself
NSToolbarItem *toolbarItem = [[NSToolbarItem alloc] initWithItemIdentifier:itemIdent];
NSString* itemLabel;
if( (itemLabel = itemsList[itemIdent]) != nil )
{
// Set the text label to be displayed in the toolbar and customization palette
toolbarItem.label = itemLabel;
toolbarItem.paletteLabel = itemLabel;
toolbarItem.tag = [tabView indexOfTabViewItemWithIdentifier:itemIdent];
// Set up a reasonable tooltip, and image Note, these aren't localized, but you will likely want to localize many of the item's properties
toolbarItem.toolTip = itemLabel;
toolbarItem.image = [NSImage imageNamed:itemIdent];
// Tell the item what message to send when it is clicked
toolbarItem.target = self;
toolbarItem.action = @selector(changePanes:);
}
else
{
// itemIdent refered to a toolbar item that is not provided or supported by us or cocoa
// Returning nil will inform the toolbar this kind of item is not supported
toolbarItem = nil;
}
return toolbarItem;
}
/* -----------------------------------------------------------------------------
toolbarSelectableItemIdentifiers:
Make sure all our custom items can be selected. NSToolbar will
automagically select the appropriate item when it is clicked.
-------------------------------------------------------------------------- */
-(NSArray*) toolbarSelectableItemIdentifiers:(NSToolbar*)toolbar
{
return itemsList.allKeys;
}
/* -----------------------------------------------------------------------------
changePanes:
Action for our custom toolbar items that causes the window title to
reflect the current pane and the proper pane to be shown in response to
a click.
-------------------------------------------------------------------------- */
-(IBAction) changePanes:(id)sender
{
[tabView selectTabViewItemAtIndex:[sender tag]];
tabView.window.title = [baseWindowName stringByAppendingString:[sender label]];
NSString *key = [NSString stringWithFormat:@"%@.prefspanel.recenttab", autosaveName];
[NSUserDefaults.standardUserDefaults setInteger:[sender tag] forKey:key];
}
/* -----------------------------------------------------------------------------
toolbarDefaultItemIdentifiers:
Return the identifiers for all toolbar items that will be shown by
default.
This is simply a list of all tab view items in order.
-------------------------------------------------------------------------- */
-(NSArray*) toolbarDefaultItemIdentifiers:(NSToolbar *)toolbar
{
NSInteger itemCount = tabView.numberOfTabViewItems;
NSMutableArray *defaultItems = [NSMutableArray array];
for( NSInteger x = 0; x < itemCount; x++ )
{
[defaultItems addObject:[tabView tabViewItemAtIndex:x].identifier];
}
return defaultItems;
}
/* -----------------------------------------------------------------------------
toolbarAllowedItemIdentifiers:
Return the identifiers for all toolbar items that *can* be put in this
toolbar. We allow a couple more items (flexible space, separator lines
etc.) in addition to our custom items.
-------------------------------------------------------------------------- */
-(NSArray*) toolbarAllowedItemIdentifiers:(NSToolbar *)toolbar
{
return [itemsList.allKeys arrayByAddingObjectsFromArray:@[NSToolbarSeparatorItemIdentifier,
NSToolbarSpaceItemIdentifier, NSToolbarFlexibleSpaceItemIdentifier,
NSToolbarCustomizeToolbarItemIdentifier] ];
}
@end