cocoaTouch/SDLOverrides/SDL_uikitview.h
author koda
Sat, 16 Jan 2010 06:48:56 +0000
changeset 2697 75880595a9f1
parent 2688 174c94b8ea72
child 2714 c85ffe57d971
permissions -rw-r--r--
code cleanup and opengles optimizations
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     1
/*
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     2
 SDL - Simple DirectMedia Layer
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     3
 Copyright (C) 1997-2009 Sam Lantinga
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     4
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     5
 This library is free software; you can redistribute it and/or
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     6
 modify it under the terms of the GNU Lesser General Public
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     7
 License as published by the Free Software Foundation; either
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     8
 version 2.1 of the License, or (at your option) any later version.
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
     9
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    10
 This library is distributed in the hope that it will be useful,
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    11
 but WITHOUT ANY WARRANTY; without even the implied warranty of
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    12
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    13
 Lesser General Public License for more details.
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    14
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    15
 You should have received a copy of the GNU Lesser General Public
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    16
 License along with this library; if not, write to the Free Software
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    17
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    18
 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    19
 Sam Lantinga, mods for Hedgewars by Vittorio Giovara
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    20
 slouken@libsdl.org, vittorio.giovara@gmail.com
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    21
 */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    22
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    23
#import <UIKit/UIKit.h>
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    24
#include "SDL_stdinc.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    25
#include "SDL_mouse.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    26
#include "SDL_mouse_c.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    27
#include "SDL_events.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    28
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    29
#import "CGPointUtils.h"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    30
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    31
#if SDL_IPHONE_MULTIPLE_MICE
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    32
#define MAX_SIMULTANEOUS_TOUCHES 5
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    33
#else
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    34
#define MAX_SIMULTANEOUS_TOUCHES 1
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    35
#endif
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    36
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    37
// constants for telling which input has been received
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    38
#define kMinimumPinchDelta		100
2697
75880595a9f1 code cleanup and opengles optimizations
koda
parents: 2688
diff changeset
    39
#define kMinimumGestureLength	10
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    40
#define kMaximumVariance		4
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    41
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    42
/* *INDENT-OFF* */
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    43
//#if SDL_IPHONE_KEYBOARD
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    44
//@interface SDL_uikitview : UIView<UITextFieldDelegate> {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    45
//#else
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    46
@interface SDL_uikitview : UIView {
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    47
//#endif
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    48
	SDL_Mouse mice[MAX_SIMULTANEOUS_TOUCHES];
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    49
	CGFloat initialDistance;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    50
	CGPoint gestureStartPoint;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    51
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    52
#if SDL_IPHONE_KEYBOARD
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    53
	UITextField *textField;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    54
	BOOL keyboardVisible;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    55
#endif
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    56
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    57
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    58
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    59
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    60
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    61
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    62
// see initWithFrame for why "+"
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    63
+(void) attackButtonPressed;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    64
+(void) attackButtonReleased;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    65
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    66
@property CGFloat initialDistance;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    67
@property CGPoint gestureStartPoint;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    68
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    69
#if SDL_IPHONE_KEYBOARD
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    70
- (void)showKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    71
- (void)hideKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    72
- (void)initializeKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    73
@property (readonly) BOOL keyboardVisible;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    74
#endif 
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    75
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    76
@end
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    77
/* *INDENT-ON* */