Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/Classes/GraphicFloatingView.m

Parent Directory Parent Directory | Revision Log Revision Log


Revision 4 - (show annotations) (download)
Sat Sep 3 06:22:57 2011 UTC (12 years, 8 months ago) by toshinagata1964
File size: 960 byte(s)
initial import
1 //
2 // GraphicFloatingView.m
3 // Created by Toshi Nagata on Thu Apr 24 2003.
4 //
5 /*
6 Copyright (c) 2003-2011 Toshi Nagata. All rights reserved.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation version 2 of the License.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16 */
17
18 #import "GraphicFloatingView.h"
19 #import "GraphicWindowController.h"
20
21 @implementation GraphicFloatingView
22
23 - (id)initWithFrame:(NSRect)frame {
24 self = [super initWithFrame:frame];
25 if (self) {
26 // Initialization code here.
27 }
28 return self;
29 }
30
31 - (NSView *)hitTest: (NSPoint)aPoint
32 {
33 // Ignore any mouse down events inside this view
34 return nil;
35 }
36
37 @end

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26