summaryrefslogtreecommitdiff
path: root/macosx/plugins/PeopsXgl/macsrc/PluginWindow.h
blob: ddeae10b2bec8d7bc39383f291917ed5b984d4e8 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/***************************************************************************
    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>
#import <AppKit/NSMenu.h>

@interface NetSfPeopsOpenGLGPUPluginWindow : NSWindow
{
    NSWindow* myParent; 
    NSPoint initialLocation;
}

- (id) initWithContentRect: (NSRect) contentRect
                 styleMask: (NSUInteger) aStyle
                   backing: (NSBackingStoreType) bufferingType
                     defer: (BOOL) flag ;


- (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;

@end

@interface NetSfPeopsOpenGLGPUPluginWindow (NSMenuValidation) 
- (BOOL)validateMenuItem:(NSMenuItem*) item;
@end