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

Latest commit

 

History

History
21 lines (19 loc) · 723 Bytes

File metadata and controls

21 lines (19 loc) · 723 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
Jul 24, 2007
Jul 24, 2007
14
@ interface SDL_QuartzWindow:NSWindow @ end
15
16
17
18
// 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
Jul 24, 2007
Jul 24, 2007
19
@ interface SDL_QuartzWindowDelegate:NSObject @ end
20
// Declare our custom class
Jul 24, 2007
Jul 24, 2007
21
@ interface MyCustomWindow:SDL_QuartzWindow @ end