2009-12-25 17:45:35 +00:00
|
|
|
/* All Rights reserved */
|
|
|
|
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
#include "IWADLocation.h"
|
|
|
|
|
|
|
|
static id WAD_TYPES[] = {
|
|
|
|
@"wad", @"WAD"
|
|
|
|
};
|
|
|
|
|
|
|
|
@implementation IWADLocation
|
|
|
|
|
|
|
|
- (void) setLocation: (id)sender
|
|
|
|
{
|
|
|
|
NSArray *wadTypes = [NSArray arrayWithObjects: WAD_TYPES count: 2];
|
|
|
|
NSOpenPanel *openPanel;
|
2009-12-25 19:31:48 +00:00
|
|
|
NSString *filename;
|
2009-12-25 17:45:35 +00:00
|
|
|
NSArray *filenames;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
[wadTypes retain];
|
|
|
|
|
|
|
|
// Open a file selector for the new file.
|
|
|
|
|
|
|
|
openPanel = [NSOpenPanel openPanel];
|
|
|
|
[openPanel setTitle: @"Add IWAD file"];
|
|
|
|
[openPanel setCanChooseFiles: YES];
|
|
|
|
[openPanel setCanChooseDirectories: NO];
|
|
|
|
|
|
|
|
result = [openPanel runModalForTypes: wadTypes];
|
|
|
|
|
|
|
|
// If the "OK" button was clicked, add the new IWAD file to the list.
|
|
|
|
|
|
|
|
if (result == NSOKButton)
|
|
|
|
{
|
|
|
|
filenames = [openPanel filenames];
|
2009-12-25 19:31:48 +00:00
|
|
|
filename = [filenames lastObject];
|
|
|
|
[self->locationConfigBox setStringValue: filename];
|
2009-12-25 17:45:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) getLocation
|
|
|
|
{
|
|
|
|
return [self->locationConfigBox stringValue];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|