mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
* English.lproj/GormPrefPlugins.gorm * GNUmakefile * GormCore/GormPluginManager.m * GormPrefs/GNUmakefile * GormPrefs/GormPalettesPref.h * GormPrefs/GormPluginsPref.h * GormPrefs/GormPluginsPref.m * GormPrefs/GormPrefController.h * GormPrefs/GormPrefController.m: Changes to allow addition of plugins by users. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@26891 72102866-910b-0410-8b05-ffd578937521
100 lines
2.2 KiB
Objective-C
100 lines
2.2 KiB
Objective-C
#include "GormPrefController.h"
|
|
#include "GormGeneralPref.h"
|
|
#include "GormHeadersPref.h"
|
|
#include "GormShelfPref.h"
|
|
#include "GormColorsPref.h"
|
|
#include "GormPalettesPref.h"
|
|
#include "GormPluginsPref.h"
|
|
#include "GormGuidelinePref.h"
|
|
|
|
#include <AppKit/NSBox.h>
|
|
#include <AppKit/NSPopUpButton.h>
|
|
#include <AppKit/NSNibLoading.h>
|
|
#include <AppKit/NSWindow.h>
|
|
|
|
@implementation GormPrefController
|
|
|
|
- (id) init
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
if(![NSBundle loadNibNamed: @"GormPreferences" owner: self])
|
|
{
|
|
return nil;
|
|
}
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void) awakeFromNib
|
|
{
|
|
_generalView = [[GormGeneralPref alloc] init];
|
|
_headersView = [[GormHeadersPref alloc] init];
|
|
_shelfView = [[GormShelfPref alloc] init];
|
|
_colorsView = [[GormColorsPref alloc] init];
|
|
_palettesView = [[GormPalettesPref alloc] init];
|
|
_pluginsView = [[GormPluginsPref alloc] init];
|
|
_guidelineView = [[GormGuidelinePref alloc] init];
|
|
|
|
[prefBox setContentView:[_generalView view]];
|
|
|
|
[[self panel] setFrameUsingName: @"Preferences"];
|
|
[[self panel] setFrameAutosaveName: @"Preferences"];
|
|
[[self panel] center];
|
|
}
|
|
|
|
- (void) popupAction: (id)sender
|
|
{
|
|
int tag = -1;
|
|
|
|
if ( sender != popup )
|
|
return;
|
|
|
|
tag = [[sender selectedItem] tag];
|
|
switch(tag)
|
|
{
|
|
case 0:
|
|
[prefBox setContentView: [_generalView view]];
|
|
break;
|
|
case 1:
|
|
[prefBox setContentView: [_headersView view]];
|
|
break;
|
|
case 2:
|
|
[prefBox setContentView: [_shelfView view]];
|
|
break;
|
|
case 3:
|
|
[prefBox setContentView: [_colorsView view]];
|
|
break;
|
|
case 4:
|
|
[prefBox setContentView: [_palettesView view]];
|
|
break;
|
|
case 5:
|
|
[prefBox setContentView: [_guidelineView view]];
|
|
break;
|
|
case 6:
|
|
[prefBox setContentView: [_pluginsView view]];
|
|
break;
|
|
default:
|
|
NSLog(@"Error Default (GormPrefController.m) : - (void) popupAction: (id)sender, no match for tag %d",tag);
|
|
break;
|
|
}
|
|
}
|
|
|
|
- (void) dealloc
|
|
{
|
|
RELEASE(_generalView);
|
|
RELEASE(_headersView);
|
|
RELEASE(_shelfView);
|
|
RELEASE(_colorsView);
|
|
RELEASE(_palettesView);
|
|
RELEASE(_pluginsView);
|
|
RELEASE(panel);
|
|
[super dealloc];
|
|
}
|
|
|
|
- (id) panel
|
|
{
|
|
return panel;
|
|
}
|
|
@end
|