Browse Subversion Repository
Contents of /trunk/Classes/MyWindow.h
Parent Directory
| Revision Log
Revision 60 -
( show annotations)
( download)
( as text)
Wed May 4 05:49:49 2016 UTC
(7 years, 11 months ago)
by toshinagata1964
File MIME type: text/x-chdr
File size: 735 byte(s)
The build script is modified so that the copyright description is updated on Deployment build.
| 1 |
/* MyWindow */ |
| 2 |
|
| 3 |
/* |
| 4 |
Copyright 2000-2016 Toshi Nagata. All rights reserved. |
| 5 |
|
| 6 |
This program is free software; you can redistribute it and/or modify |
| 7 |
it under the terms of the GNU General Public License as published by |
| 8 |
the Free Software Foundation version 2 of the License. |
| 9 |
|
| 10 |
This program is distributed in the hope that it will be useful, |
| 11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 |
GNU General Public License for more details. |
| 14 |
*/ |
| 15 |
|
| 16 |
#import <Cocoa/Cocoa.h> |
| 17 |
|
| 18 |
@interface MyWindow : NSWindow |
| 19 |
{ |
| 20 |
NSPoint lastMouseDownLocation; |
| 21 |
} |
| 22 |
- (NSPoint)lastMouseDownLocation; |
| 23 |
@end |
| 24 |
|
| 25 |
@protocol MyWindow |
| 26 |
- (void)changeFirstResponderWithEvent: (NSEvent *)theEvent; |
| 27 |
@end |
|