blob: 4e60440e2536c8122b7e386577e56f0d18fe5921 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/***************************************************************************
PluginWindow.h - Specialization of the main game window (borderless)
PeopsSoftGPU
Created by Gil Pedersen on Wed April 21 2004.
Copyright (c) 2004 Gil Pedersen.
***************************************************************************/
/***************************************************************************
* *
* 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. See also the license.txt file for *
* additional informations. *
* *
***************************************************************************/
/* this is a borderless window that can be dragged about. Also, holds a GLView */
#import <Cocoa/Cocoa.h>
@interface NetSfPeopsOpenGLGPUPluginWindow : NSWindow
@property (readonly) BOOL canBecomeKeyWindow; // to stop the beeping
- (void) sendEvent:(NSEvent *)theEvent;
- (void) windowDidResize:(NSNotification*)notice;
- (void) windowDidUpdate: (NSNotification*)notice;
- (void) windowDidMove:(NSNotification *)notice;
- (void) performClose: (id)sender;
- (void) mouseDown:(NSEvent *)theEvent;
- (void) mouseDragged:(NSEvent *)theEvent;
- (void)keyDown:(NSEvent *)theEvent;
- (void)keyUp:(NSEvent *)theEvent;
- (BOOL)validateMenuItem:(NSMenuItem*) item;
@end
|