From d9896430dad2f79fd6ef63da106499d4d66e366d Mon Sep 17 00:00:00 2001 From: "SND\\shalma_cp" Date: Tue, 21 Dec 2010 01:05:11 +0000 Subject: macosx - dfsound - plugincontroller-null - (MaddTheSane) Redo files from last bad shalma diff git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@61373 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- .../plugins/DFSound/macsrc/PluginController-Null.m | 158 --------------------- 1 file changed, 158 deletions(-) (limited to 'macosx/plugins/DFSound/macsrc/PluginController-Null.m') diff --git a/macosx/plugins/DFSound/macsrc/PluginController-Null.m b/macosx/plugins/DFSound/macsrc/PluginController-Null.m index 844d0736..b4fc694d 100644 --- a/macosx/plugins/DFSound/macsrc/PluginController-Null.m +++ b/macosx/plugins/DFSound/macsrc/PluginController-Null.m @@ -40,164 +40,6 @@ void DoAbout() } -long DoConfiguration() -{ - NSWindow *window; - - if (pluginController == nil) { - pluginController = [[PluginController alloc] initWithWindowNibName:@"NullSpuPluginMain"]; - } - window = [pluginController window]; - - /* load values */ - //[pluginController loadValues]; - - [window center]; - [window makeKeyAndOrderFront:nil]; - - return 0; -} - -void ReadConfig(void) -{ - iVolume = 1; - iUseTimer = 2; - iSPUIRQWait = 1; - iXAPitch = 0; - iUseReverb = 1; - iUseInterpolation = 0; - -} - -@implementation PluginController - -- (IBAction)ok:(id)sender -{ - [self close]; -} - -@end -#import "PluginController-Null.h" -#include "stdafx.h" -#include "externals.h" - -#define APP_ID @"com.codeplex.pcsxr.null.SPUPlugin" -#define PrefsKey APP_ID @" Settings" - -static PluginController *pluginController; -char * pConfigFile=NULL; - -void DoAbout() -{ - // Get parent application instance - NSApplication *app = [NSApplication sharedApplication]; - NSBundle *bundle = [NSBundle bundleWithIdentifier:APP_ID]; - - // Get Credits.rtf - NSString *path = [bundle pathForResource:@"Credits" ofType:@"rtf"]; - NSAttributedString *credits; - if (path) { - credits = [[[NSAttributedString alloc] initWithPath: path - documentAttributes:NULL] autorelease]; - } else { - credits = [[[NSAttributedString alloc] initWithString:@""] autorelease]; - } - - // Get Application Icon - NSImage *icon = [[NSWorkspace sharedWorkspace] iconForFile:[bundle bundlePath]]; - NSSize size = NSMakeSize(64, 64); - [icon setSize:size]; - - [app orderFrontStandardAboutPanelWithOptions:[NSDictionary dictionaryWithObjectsAndKeys: - [bundle objectForInfoDictionaryKey:@"CFBundleName"], @"ApplicationName", - icon, @"ApplicationIcon", - [bundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"], @"ApplicationVersion", - [bundle objectForInfoDictionaryKey:@"CFBundleVersion"], @"Version", - [bundle objectForInfoDictionaryKey:@"NSHumanReadableCopyright"], @"Copyright", - credits, @"Credits", - nil]]; -} - - -long DoConfiguration() -{ - NSWindow *window; - - if (pluginController == nil) { - pluginController = [[PluginController alloc] initWithWindowNibName:@"NullSpuPluginMain"]; - } - window = [pluginController window]; - - /* load values */ - //[pluginController loadValues]; - - [window center]; - [window makeKeyAndOrderFront:nil]; - - return 0; -} - -void ReadConfig(void) -{ - iVolume = 1; - iUseTimer = 2; - iSPUIRQWait = 1; - iXAPitch = 0; - iUseReverb = 1; - iUseInterpolation = 0; - -} - -@implementation PluginController - -- (IBAction)ok:(id)sender -{ - [self close]; -} - -@end -#import "PluginController-Null.h" -#include "stdafx.h" -#include "externals.h" - -#define APP_ID @"com.codeplex.pcsxr.null.SPUPlugin" -#define PrefsKey APP_ID @" Settings" - -static PluginController *pluginController; -char * pConfigFile=NULL; - -void DoAbout() -{ - // Get parent application instance - NSApplication *app = [NSApplication sharedApplication]; - NSBundle *bundle = [NSBundle bundleWithIdentifier:APP_ID]; - - // Get Credits.rtf - NSString *path = [bundle pathForResource:@"Credits" ofType:@"rtf"]; - NSAttributedString *credits; - if (path) { - credits = [[[NSAttributedString alloc] initWithPath: path - documentAttributes:NULL] autorelease]; - } else { - credits = [[[NSAttributedString alloc] initWithString:@""] autorelease]; - } - - // Get Application Icon - NSImage *icon = [[NSWorkspace sharedWorkspace] iconForFile:[bundle bundlePath]]; - NSSize size = NSMakeSize(64, 64); - [icon setSize:size]; - - [app orderFrontStandardAboutPanelWithOptions:[NSDictionary dictionaryWithObjectsAndKeys: - [bundle objectForInfoDictionaryKey:@"CFBundleName"], @"ApplicationName", - icon, @"ApplicationIcon", - [bundle objectForInfoDictionaryKey:@"CFBundleShortVersionString"], @"ApplicationVersion", - [bundle objectForInfoDictionaryKey:@"CFBundleVersion"], @"Version", - [bundle objectForInfoDictionaryKey:@"NSHumanReadableCopyright"], @"Copyright", - credits, @"Credits", - nil]]; -} - - long DoConfiguration() { NSWindow *window; -- cgit v1.2.3