cocoaTouch/SDLOverrides/SDL_uikitview.h
author koda
Wed, 17 Mar 2010 00:26:35 +0000
changeset 3006 da6023c2745b
parent 2805 36a8cebb91e8
permissions -rw-r--r--
restore compilation on simulator and device new architecture for implementing controls controls implmented with a joystick (partially done) lotsa code cleanup
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>
2772
1965eba10be6 some code cleanup for the ifrontend
koda
parents: 2754
diff changeset
    24
#import "SDL_stdinc.h"
1965eba10be6 some code cleanup for the ifrontend
koda
parents: 2754
diff changeset
    25
#import "SDL_mouse.h"
1965eba10be6 some code cleanup for the ifrontend
koda
parents: 2754
diff changeset
    26
#import "SDL_mouse_c.h"
1965eba10be6 some code cleanup for the ifrontend
koda
parents: 2754
diff changeset
    27
#import "SDL_events.h"
2688
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
#if SDL_IPHONE_MULTIPLE_MICE
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    30
#define MAX_SIMULTANEOUS_TOUCHES 5
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    31
#else
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    32
#define MAX_SIMULTANEOUS_TOUCHES 1
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    33
#endif
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    34
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    35
/* *INDENT-OFF* */
2724
601158aaa201 redo LANDSCAPE MODE in a saner way with lots of fps
koda
parents: 2714
diff changeset
    36
#if SDL_IPHONE_KEYBOARD
601158aaa201 redo LANDSCAPE MODE in a saner way with lots of fps
koda
parents: 2714
diff changeset
    37
@interface SDL_uikitview : UIView<UITextFieldDelegate> {
601158aaa201 redo LANDSCAPE MODE in a saner way with lots of fps
koda
parents: 2714
diff changeset
    38
#else
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    39
@interface SDL_uikitview : UIView {
2724
601158aaa201 redo LANDSCAPE MODE in a saner way with lots of fps
koda
parents: 2714
diff changeset
    40
#endif
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    41
	SDL_Mouse mice[MAX_SIMULTANEOUS_TOUCHES];
2725
89908847b155 input handling reworked, still a lot of bugs in mouse movement
koda
parents: 2724
diff changeset
    42
	CGFloat initialDistanceForPinching;
2688
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    43
	CGPoint gestureStartPoint;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    44
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    45
#if SDL_IPHONE_KEYBOARD
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    46
	UITextField *textField;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    47
	BOOL keyboardVisible;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    48
#endif
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    49
}
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    50
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    51
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    52
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    53
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    54
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    55
#if SDL_IPHONE_KEYBOARD
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    56
- (void)showKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    57
- (void)hideKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    58
- (void)initializeKeyboard;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    59
@property (readonly) BOOL keyboardVisible;
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    60
#endif 
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
@end
174c94b8ea72 move all sdl source files in a proper directory
koda
parents:
diff changeset
    63
/* *INDENT-ON* */