2015-10-22 05:13:26 +00:00
|
|
|
/*
|
|
|
|
* Apple // emulator for *ix
|
|
|
|
*
|
|
|
|
* This software package is subject to the GNU General Public License
|
|
|
|
* version 3 or later (your choice) as published by the Free Software
|
|
|
|
* Foundation.
|
|
|
|
*
|
|
|
|
* Copyright 2013-2015 Aaron Culliney
|
|
|
|
*
|
|
|
|
*/
|
2014-09-27 18:03:51 +00:00
|
|
|
|
|
|
|
// Based on sample code from https://developer.apple.com/library/mac/samplecode/GLEssentials/Introduction/Intro.html
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "EmulatorGLView.h"
|
|
|
|
|
2014-12-02 06:42:38 +00:00
|
|
|
#define CAPS_LOCK 0x39
|
|
|
|
#define SHIFT_LT 0x38
|
|
|
|
#define SHIFT_RT 0x3c
|
|
|
|
#define CTRL_LT 0x3b
|
|
|
|
#define CTRL_RT 0x3e
|
|
|
|
#define ALT_LT 0x3a
|
|
|
|
#define ALT_RT 0x3d
|
|
|
|
|
2014-11-30 23:35:21 +00:00
|
|
|
extern const NSString *kDrawTimerNotification;
|
|
|
|
|
2014-09-27 18:03:51 +00:00
|
|
|
@interface EmulatorWindowController : NSWindowController
|
|
|
|
|
|
|
|
@end
|