1.1 --- a/src/video/uikit/SDL_uikitview.h Tue Jul 22 23:05:40 2008 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,40 +0,0 @@
1.4 -/*
1.5 - SDL - Simple DirectMedia Layer
1.6 - Copyright (C) 1997-2006 Sam Lantinga
1.7 -
1.8 - This library is free software; you can redistribute it and/or
1.9 - modify it under the terms of the GNU Lesser General Public
1.10 - License as published by the Free Software Foundation; either
1.11 - version 2.1 of the License, or (at your option) any later version.
1.12 -
1.13 - This library is distributed in the hope that it will be useful,
1.14 - but WITHOUT ANY WARRANTY; without even the implied warranty of
1.15 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1.16 - Lesser General Public License for more details.
1.17 -
1.18 - You should have received a copy of the GNU Lesser General Public
1.19 - License along with this library; if not, write to the Free Software
1.20 - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1.21 -
1.22 - Sam Lantinga
1.23 - slouken@libsdl.org
1.24 - */
1.25 -
1.26 -#import <UIKit/UIKit.h>
1.27 -#include "SDL_stdinc.h"
1.28 -#include "SDL_mouse.h"
1.29 -#include "SDL_mouse_c.h"
1.30 -#include "SDL_events.h"
1.31 -
1.32 -#define MAX_SIMULTANEOUS_TOUCHES 5
1.33 -
1.34 -@interface SDL_uikitview : UIView {
1.35 -
1.36 - SDL_Mouse mice[MAX_SIMULTANEOUS_TOUCHES];
1.37 -
1.38 -}
1.39 -- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
1.40 -- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
1.41 -- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
1.42 -
1.43 -@end