2001-11-12 14:15:20 +00:00
|
|
|
/*
|
|
|
|
PrefsController.m
|
|
|
|
|
|
|
|
Preferences window controller class
|
|
|
|
|
|
|
|
Copyright (C) 2001 Dusk to Dawn Computing, Inc.
|
|
|
|
|
|
|
|
Author: Jeff Teunissen <deek@d2dc.net>
|
|
|
|
Date: 11 Nov 2001
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public
|
|
|
|
License along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
static const char rcsid[] =
|
|
|
|
"$Id$";
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "Config.h"
|
|
|
|
#endif
|
|
|
|
|
2003-05-06 21:52:58 +00:00
|
|
|
#include <Foundation/NSDebug.h>
|
|
|
|
#include <Foundation/NSUserDefaults.h>
|
2002-05-26 11:24:00 +00:00
|
|
|
|
2003-05-06 21:52:58 +00:00
|
|
|
#include <AppKit/NSApplication.h>
|
|
|
|
#include <AppKit/NSWindow.h>
|
2001-11-12 14:15:20 +00:00
|
|
|
|
2003-05-06 21:52:58 +00:00
|
|
|
#include "PrefsController.h"
|
|
|
|
#include "PrefsView.h"
|
2001-11-12 14:15:20 +00:00
|
|
|
|
|
|
|
@implementation PrefsController
|
|
|
|
|
2001-11-21 18:47:08 +00:00
|
|
|
static PrefsController *sharedInstance = nil;
|
|
|
|
static NSMutableArray *prefsViews = nil;
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
/*
|
|
|
|
sharedPrefsController
|
|
|
|
|
|
|
|
Returns the shared instance
|
|
|
|
*/
|
2001-11-21 18:47:08 +00:00
|
|
|
+ (PrefsController *) sharedPrefsController
|
|
|
|
{
|
|
|
|
return (sharedInstance ? sharedInstance : [[self alloc] init]);
|
|
|
|
}
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
/*
|
|
|
|
init
|
|
|
|
|
|
|
|
Ensures that there is only one global instance of the class
|
|
|
|
*/
|
2001-11-12 14:15:20 +00:00
|
|
|
- (id) init
|
|
|
|
{
|
2001-11-21 18:47:08 +00:00
|
|
|
if (sharedInstance) {
|
|
|
|
[self dealloc];
|
|
|
|
} else {
|
2002-05-26 11:24:00 +00:00
|
|
|
self = [super init];
|
2001-11-21 18:47:08 +00:00
|
|
|
sharedInstance = self;
|
|
|
|
|
|
|
|
prefsViews = [[[NSMutableArray alloc] initWithCapacity: 5] retain];
|
|
|
|
}
|
|
|
|
return sharedInstance;
|
2001-11-12 14:15:20 +00:00
|
|
|
}
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
/*
|
|
|
|
awakeFromNib
|
|
|
|
|
|
|
|
Initialize stuff that can't be set in the nib/gorm file.
|
|
|
|
*/
|
2002-05-26 11:24:00 +00:00
|
|
|
- (void) awakeFromNib
|
|
|
|
{
|
2002-05-29 07:13:42 +00:00
|
|
|
// Let the systen keep track of where it belongs
|
|
|
|
[window setFrameAutosaveName: @"Preferences"];
|
|
|
|
[window setFrameUsingName: @"Preferences"];
|
2002-05-26 11:24:00 +00:00
|
|
|
|
|
|
|
// keep the window out of the menu until it's seen
|
|
|
|
[window setExcludedFromWindowsMenu: YES];
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
if (iconList) // stop processing if we already have an icon list
|
2002-05-26 11:24:00 +00:00
|
|
|
return;
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
/* What is the matrix? :) */
|
2002-05-26 11:24:00 +00:00
|
|
|
iconList = [[NSMatrix alloc] initWithFrame: NSMakeRect (0, 0, 64, 64)];
|
2002-05-29 07:13:42 +00:00
|
|
|
[iconList setCellClass: [NSButtonCell class]];
|
2002-05-26 11:24:00 +00:00
|
|
|
[iconList setCellSize: NSMakeSize (64, 64)];
|
|
|
|
[iconList setMode: NSRadioModeMatrix];
|
|
|
|
|
|
|
|
[scrollView setHasHorizontalScroller: YES];
|
|
|
|
[scrollView setHasVerticalScroller: NO];
|
|
|
|
[scrollView setDocumentView: iconList];
|
|
|
|
}
|
|
|
|
|
2001-11-12 14:15:20 +00:00
|
|
|
- (void) dealloc
|
|
|
|
{
|
|
|
|
NSDebugLog (@"PrefsController -dealloc");
|
|
|
|
|
|
|
|
[prefsViews release];
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
/*
|
|
|
|
orderFrontPreferencesPanel:
|
2001-11-12 14:15:20 +00:00
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
Display our window
|
|
|
|
*/
|
|
|
|
- (IBAction) orderFrontPreferencesPanel: (id) sender
|
2001-11-12 14:15:20 +00:00
|
|
|
{
|
2002-05-26 11:24:00 +00:00
|
|
|
[window setExcludedFromWindowsMenu: NO];
|
|
|
|
[window makeKeyAndOrderFront: self];
|
2001-11-12 14:15:20 +00:00
|
|
|
}
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
- (IBAction) savePreferencesAndCloseWindow: (id) sender
|
2001-11-12 14:15:20 +00:00
|
|
|
{
|
|
|
|
[self savePreferences: self];
|
2002-05-26 11:24:00 +00:00
|
|
|
[window close];
|
2001-11-12 14:15:20 +00:00
|
|
|
}
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
- (IBAction) savePreferences: (id) sender
|
2001-11-12 14:15:20 +00:00
|
|
|
{
|
2001-11-21 18:47:08 +00:00
|
|
|
NSEnumerator *enumerator = [prefsViews objectEnumerator];
|
|
|
|
id <PrefsViewController> current;
|
2001-11-12 14:15:20 +00:00
|
|
|
|
|
|
|
NSDebugLog (@"Saving all preferences...");
|
|
|
|
while ((current = [enumerator nextObject])) {
|
|
|
|
[current savePrefs: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
[[NSUserDefaults standardUserDefaults] synchronize];
|
|
|
|
}
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
- (IBAction) loadPreferences: (id) sender
|
2001-11-21 18:47:08 +00:00
|
|
|
{
|
|
|
|
NSEnumerator *enumerator = [prefsViews objectEnumerator];
|
|
|
|
id <PrefsViewController> current;
|
|
|
|
|
|
|
|
NSDebugLog (@"Loading all preferences from database...");
|
|
|
|
while ((current = [enumerator nextObject])) {
|
|
|
|
[current loadPrefs: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
[[NSUserDefaults standardUserDefaults] synchronize];
|
|
|
|
}
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
- (IBAction) resetToDefaults: (id) sender
|
2001-11-21 18:47:08 +00:00
|
|
|
{
|
|
|
|
NSEnumerator *enumerator = [prefsViews objectEnumerator];
|
|
|
|
id <PrefsViewController> current;
|
|
|
|
|
|
|
|
NSDebugLog (@"Setting all preferences to default values...");
|
|
|
|
while ((current = [enumerator nextObject])) {
|
|
|
|
[current resetPrefsToDefault: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
[[NSUserDefaults standardUserDefaults] synchronize];
|
|
|
|
}
|
|
|
|
|
2002-05-29 07:13:42 +00:00
|
|
|
/*
|
|
|
|
addPrefsViewController:
|
|
|
|
|
|
|
|
Add a prefs view controller to our list, if it hasn't been added already.
|
|
|
|
Also, create an icon for the matrix.
|
|
|
|
*/
|
|
|
|
- (IBAction) addPrefsViewController: (id <PrefsViewController>) aController;
|
2001-11-12 14:15:20 +00:00
|
|
|
{
|
2002-05-26 11:24:00 +00:00
|
|
|
NSButtonCell *button = [[NSButtonCell alloc] init];
|
2001-11-12 14:15:20 +00:00
|
|
|
|
2002-05-26 11:24:00 +00:00
|
|
|
if (! [prefsViews containsObject: aController]) {
|
|
|
|
[prefsViews addObject: aController];
|
2001-11-12 14:15:20 +00:00
|
|
|
}
|
|
|
|
|
2002-05-26 11:24:00 +00:00
|
|
|
[button setTitle: [aController buttonCaption]];
|
|
|
|
[button setFont: [NSFont systemFontOfSize: 9]];
|
|
|
|
[button setImage: [aController buttonImage]];
|
|
|
|
[button setImagePosition: NSImageAbove];
|
|
|
|
[button setTarget: aController];
|
|
|
|
[button setAction: [aController buttonAction]];
|
|
|
|
|
|
|
|
[iconList addColumnWithCells: [NSArray arrayWithObject: button]];
|
|
|
|
[iconList sizeToCells];
|
2002-07-06 03:00:28 +00:00
|
|
|
|
|
|
|
[aController autorelease];
|
2002-05-26 11:24:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (NSBox *) prefsViewBox
|
|
|
|
{
|
|
|
|
return box;
|
2001-11-12 14:15:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|