more prefs stuff

This commit is contained in:
asvitkine 2007-07-28 15:46:17 +00:00
parent a70c79b3cb
commit 059540bbb8
2 changed files with 154 additions and 0 deletions

View File

@ -0,0 +1,116 @@
/*
* $Id$
*
* prefs_macosx.mm - Enables access to SheepShaver preferences while
* SheepShaver is running (on Mac OS X).
*
* Copyright (C) 2007 Alexei Svitkine
*
* 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 the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "sysdeps.h"
#include <Cocoa/Cocoa.h>
#include "PrefsEditor.h"
@interface SheepShaverMain : NSObject
NSArray *nibObjects;
NSWindow *prefsWindow;
@end
@implementation SheepShaverMain
- (NSArray*) loadPrefsNibFile
{
NSNib *nib = [[NSNib alloc] initWithNibNamed:@"MainMenu" bundle:nil];
NSArray *objects = nil;
if (![nib instantiateNibWithOwner:self topLevelObjects:&objects]) {
NSLog(@"Could not load Prefs NIB file!\n");
return nil;
}
NSLog(@"%d objects loaded\n", [objects count]);
// Release the raw nib data.
[nib release];
// Release the top-level objects so that they are just owned by the array.
[objects makeObjectsPerformSelector:@selector(release)];
prefsWindow = nil;
for (int i = 0; i < [objects count]; i++) {
NSObject *object = [objects objectAtIndex:i];
NSLog(@"Got %@", object);
if ([object isKindOfClass:[NSWindow class]]) {
prefsWindow = (NSWindow *) object;
break;
}
}
if (prefsWindow == nil) {
NSLog(@"Could not find NSWindow in Prefs NIB file!\n");
return nil;
}
return objects;
}
- (void) openPreferences:(id)sender
{
if (nibObjects == nil) {
nibObjects = [self loadPrefsNibFile];
if (nibObjects == nil)
return;
[nibObjects retain];
}
[NSApp runModalForWindow:prefsWindow];
}
@end
/*
* Initialization
*/
void prefs_init(void)
{
NSMenu *appMenu;
NSMenuItem *menuItem;
appMenu = [[[NSApp mainMenu] itemAtIndex:0] submenu];
menuItem = [[NSMenuItem alloc] initWithTitle:@"Preferences..." action:@selector(openPreferences:) keyEquivalent:@","];
[appMenu insertItem:menuItem atIndex:2];
[appMenu insertItem:[NSMenuItem separatorItem] atIndex:3];
[menuItem release];
[NSApp setDelegate:[[SheepShaverMain alloc] init]];
}
/*
* Deinitialization
*/
void prefs_exit(void)
{
}

View File

@ -0,0 +1,38 @@
/*
* prefs_dummy.cpp - Dummy implementation of prefs_init() and prefs_exit().
*
* Copyright (C) 2007 Alexei Svitkine
*
* 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 the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "sysdeps.h"
/*
* Initialization
*/
void prefs_init(void)
{
}
/*
* Exit Deinitialization
*/
void prefs_exit(void)
{
}