Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
27 lines (22 loc) · 726 Bytes

File metadata and controls

27 lines (22 loc) · 726 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
//
// MyCustomWindow.h
// SDL Custom View App
//
// Created by Darrell Walisser on Fri Jul 18 2003.
// Copyright (c) 2003 __MyCompanyName__. All rights reserved.
//
#import <AppKit/AppKit.h>
// Be a subclass of SDL_QuartzWindow so SDL will
// handle the redraw problems when minimizing the window
// This class is defined in SDL.framework
Aug 11, 2007
Aug 11, 2007
14
15
16
@interface SDL_QuartzWindow : NSWindow
@end
17
18
19
20
// Also assign SDL_QuartzWindowDelegate to the window
// to perform other tasks. You can subclass this delegate
// if you want to add your own delegation methods
// This class is defined in SDL.framework
Aug 11, 2007
Aug 11, 2007
21
22
23
@interface SDL_QuartzWindowDelegate : NSObject
@end
24
// Declare our custom class
Aug 11, 2007
Aug 11, 2007
25
26
@interface MyCustomWindow : SDL_QuartzWindow
@end