Unpacked project archives to get individual file history in subversion

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402564
This commit is contained in:
Sam Lantinga 2007-07-21 17:09:01 +00:00
parent 98ce0f8871
commit 316a61731f
199 changed files with 90702 additions and 16 deletions

View file

@ -0,0 +1,34 @@
//
// MyCustomView.m
// SDL Custom View App
//
// Created by Darrell Walisser on Fri Jul 18 2003.
// Copyright (c) 2003 __MyCompanyName__. All rights reserved.
//
#import "MyCustomView.h"
@implementation MyCustomView
- (id)initWithFrame:(NSRect)frame
{
self = [ super initWithFrame:frame ];
if (self) {
// Initialization code here.
}
return self;
}
- (void)drawRect:(NSRect)rect
{
// Drawing code here.
}
- (BOOL)mouseDownCanMoveWindow
{
// If you use textured windows, this disables
// moving the window by dragging in the view
return NO;
}
@end