2009-12-25 20:40:28 +00:00
|
|
|
/* ... */
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// Copyright(C) 2009 Simon Howard
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
2009-12-25 17:45:35 +00:00
|
|
|
|
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
#include "IWADLocation.h"
|
|
|
|
|
2009-12-25 20:40:28 +00:00
|
|
|
static id WAD_TYPES[] =
|
|
|
|
{
|
2009-12-25 17:45:35 +00:00
|
|
|
@"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
|
|
|
|
|