openclonk/src/platform/C4AppDelegate+MainMenuActio...

42 lines
1.4 KiB
C
Raw Normal View History

/*
* OpenClonk, http://www.openclonk.org
*
2016-04-03 18:18:29 +00:00
* Copyright (c) 2009-2016, The OpenClonk Team and contributors
*
* Distributed under the terms of the ISC license; see accompanying file
* "COPYING" for details.
*
* "Clonk" is a registered trademark of Matthes Bender, used with permission.
* See accompanying file "TRADEMARK" for details.
*
* To redistribute this file separately, substitute the full license texts
* for the above references.
*/
2010-12-27 03:49:02 +00:00
#import <Cocoa/Cocoa.h>
#import "platform/C4AppDelegate.h"
2010-12-27 03:49:02 +00:00
@interface C4AppDelegate (MainMenuActions)
2010-12-27 03:49:02 +00:00
- (IBAction) openScenario:(id)sender;
- (IBAction) openScenarioWithPlayers:(id)sender;
- (IBAction) closeScenario:(id)sender;
- (IBAction) saveGameAs:(id)sender;
- (IBAction) saveScenario:(id)sender;
- (IBAction) saveScenarioAs:(id)sender;
- (IBAction) record:(id)sender;
- (IBAction) newViewport:(id)sender;
- (IBAction) openPropTools:(id)sender;
- (IBAction) newViewportForPlayer:(id)sender;
- (IBAction) joinPlayer:(id)sender;
- (IBAction) showAbout:(id)sender;
2012-03-22 23:03:05 +00:00
- (IBAction) toggleFullScreen:(id)sender;
2010-12-27 03:49:02 +00:00
- (IBAction) togglePause:(id)sender;
- (IBAction) setConsoleMode:(id)sender;
- (IBAction) setDrawingTool:(id)sender;
- (IBAction) suggestQuitting:(id)sender;
- (IBAction) simulateKeyPressed:(C4KeyCode)key;
- (IBAction) visitWebsite:(id)sender;
- (IBAction) makeScreenshot:(id)sender;
- (IBAction) makeScreenshotOfWholeMap:(id)sender;
2010-12-27 03:49:02 +00:00
@end