quakeforge/tools/Forge/Controller.m

278 lines
7.0 KiB
Mathematica
Raw Normal View History

/*
Controller.m
Controller class for Forge
Copyright (C) 2001 Jeff Teunissen <deek@quakeforge.net>
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:
Free Software Foundation, Inc.
59 Temple Place - Suite 330
Boston, MA 02111-1307, USA
$Id$
*/
#import <AppKit/NSApplication.h>
#import <AppKit/NSMenu.h>
#import "Controller.h"
#import "Preferences.h"
@implementation Controller
- (BOOL) application: (NSApplication *) app openFile: (NSString *) filename;
{
return NO;
}
- (BOOL) application: (NSApplication *) app openTempFile: (NSString *) filename;
{
return NO;
}
- (BOOL) applicationOpenUntitledFile: (NSApplication *) app;
{
return NO;
}
- (BOOL) applicationShouldOpenUntitledFile: (NSApplication *) app;
{
return NO;
}
- (BOOL) applicationShouldTerminate: (NSApplication *) app;
{
return YES;
}
- (BOOL) applicationShouldTerminateAfterLastWindowClosed: (NSApplication *) app;
{
return YES;
}
/*
Action methods
*/
- (void) createNew: (id) sender;
{
NSLog (@"This _would_ create a new file, but it doesn't.");
}
- (void) createNewProject: (id) sender;
{
NSLog (@"This _would_ create a new project, but it doesn't.");
}
- (void) infoPanel: (id) sender;
{
[NSApp orderFrontStandardAboutPanel: self];
}
- (void) open: (id) sender;
{
NSLog (@"This _would_ open a file, but it doesn't.");
}
- (void) openProject: (id) sender;
{
NSLog (@"This _would_ open a project, but it doesn't.");
}
- (void) saveAll: (id) sender;
{
NSLog (@"This _would_ save, but it doesn't.");
}
/*
Notifications
*/
/*
applicationDidFinishLaunching:
Sent when the app has finished starting up
*/
- (void) applicationDidFinishLaunching: (NSNotification *) not;
{
}
/*
applicationWillFinishLaunching:
Sent when the app is just about to complete its startup
*/
- (void) applicationWillFinishLaunching: (NSNotification *) not;
{
NSMenu *menu = [[[NSMenu alloc] init] autorelease];
NSMenu *info;
NSMenu *project;
NSMenu *file;
NSMenu *edit;
NSMenu *bsp;
NSMenu *brush;
NSMenu *windows;
NSMenu *services;
[menu addItemWithTitle: _(@"Info") action: NULL keyEquivalent: @""];
[menu addItemWithTitle: _(@"Project") action: NULL keyEquivalent: @""];
[menu addItemWithTitle: _(@"File") action: NULL keyEquivalent: @""];
[menu addItemWithTitle: _(@"Edit") action: NULL keyEquivalent: @""];
[menu addItemWithTitle: _(@"BSP") action: NULL keyEquivalent: @""];
[menu addItemWithTitle: _(@"Brush") action: NULL keyEquivalent: @""];
[menu addItemWithTitle: _(@"Windows") action: NULL keyEquivalent: @""];
[menu addItemWithTitle: _(@"Services") action: NULL keyEquivalent: @""];
[menu addItemWithTitle: _(@"Hide") action: @selector(hide:) keyEquivalent: @"h"];
[menu addItemWithTitle: _(@"Quit") action: @selector(terminate:) keyEquivalent: @"q"];
/*
Info
*/
info = [[[NSMenu alloc] init] autorelease];
[menu setSubmenu: info forItem: [menu itemWithTitle: _(@"Info")]];
[info addItemWithTitle: _(@"Info Panel...")
action: @selector (orderFrontStandardAboutPanel:)
keyEquivalent: @""];
[info addItemWithTitle: _(@"Preferences...")
action: @selector (orderFrontPreferencesPanel:)
keyEquivalent: @""];
[info addItemWithTitle: _(@"Help")
action: @selector (orderFrontHelpPanel:)
keyEquivalent: @"?"];
/*
Project
*/
project = [[[NSMenu alloc] init] autorelease];
[menu setSubmenu: project forItem: [menu itemWithTitle: _(@"Project")]];
[project addItemWithTitle: _(@"Open...")
action: @selector (openProject:)
keyEquivalent: @"~o"];
[project addItemWithTitle: _(@"New")
action: @selector (createNewProject:)
keyEquivalent: @"~n"];
[project addItemWithTitle: _(@"Save...")
action: @selector (saveProject:)
keyEquivalent: @"~s"];
[project addItemWithTitle: _(@"Save As...")
action: @selector (saveProjectAs:)
keyEquivalent: @"~S"];
[project addItemWithTitle: _(@"Close")
action: @selector (closeProject:)
keyEquivalent: @""];
/*
File
*/
file = [[[NSMenu alloc] init] autorelease];
[menu setSubmenu: file forItem: [menu itemWithTitle: _(@"File")]];
[file addItemWithTitle: _(@"Open...")
action: @selector (open:)
keyEquivalent: @"o"];
[file addItemWithTitle: _(@"New")
action: @selector (createNew:)
keyEquivalent: @"n"];
[file addItemWithTitle: _(@"Save...")
action: @selector (save:)
keyEquivalent: @"s"];
[file addItemWithTitle: _(@"Save As...")
action: @selector (saveAs:)
keyEquivalent: @"S"];
[file addItemWithTitle: _(@"Save All")
action: @selector (saveAll:)
keyEquivalent: @""];
[file addItemWithTitle: _(@"Revert to Saved")
action: @selector (revertToSaved:)
keyEquivalent: @""];
[file addItemWithTitle: _(@"Close")
action: @selector (close:)
keyEquivalent: @""];
/*
Edit
*/
edit = [[[NSMenu alloc] init] autorelease];
[menu setSubmenu: edit forItem: [menu itemWithTitle: _(@"Edit")]];
[edit addItemWithTitle: _(@"Undo")
action: @selector (undo:)
keyEquivalent: @"z"];
[edit addItemWithTitle: _(@"Redo")
action: @selector (redo:)
keyEquivalent: @"Z"];
[edit addItemWithTitle: _(@"Cut")
action: @selector (cut:)
keyEquivalent: @"x"];
[edit addItemWithTitle: _(@"Copy")
action: @selector (copy:)
keyEquivalent: @"c"];
[edit addItemWithTitle: _(@"Paste")
action: @selector (paste:)
keyEquivalent: @"v"];
[edit addItemWithTitle: _(@"Delete")
action: @selector (delete:)
keyEquivalent: @""];
[edit addItemWithTitle: _(@"Select All")
action: @selector (selectAll:)
keyEquivalent: @"a"];
/*
BSP
*/
bsp = [[[NSMenu alloc] init] autorelease];
[menu setSubmenu: bsp forItem: [menu itemWithTitle: _(@"BSP")]];
[bsp addItemWithTitle: _(@"None") action: @selector(nothing:) keyEquivalent: @""];
/*
Brush
*/
brush = [[[NSMenu alloc] init] autorelease];
[menu setSubmenu: brush forItem: [menu itemWithTitle: _(@"Brush")]];
[brush addItemWithTitle: _(@"none") action: @selector(nothing:) keyEquivalent: @""];
/*
Windows
*/
windows = [[[NSMenu alloc] init] autorelease];
[NSApp setWindowsMenu: windows];
[menu setSubmenu: windows forItem: [menu itemWithTitle: _(@"Windows")]];
/*
Services
*/
services = [[[NSMenu alloc] init] autorelease];
[NSApp setServicesMenu: services];
[menu setSubmenu: services forItem: [menu itemWithTitle: _(@"Services")]];
[NSApp setMainMenu: menu];
}
/*
applicationWillTerminate:
Sort of like SIGQUIT. App is about to die, but has a chance to clean up
*/
- (void) applicationWillTerminate: (NSNotification *) not;
{
}