1
0
mirror of https://github.com/thes3m/XNI synced 2024-12-26 13:26:06 +01:00
2010-11-15 17:23:13 +00:00

42 lines
986 B
Objective-C

//
// TouchPanel.h
// XNI
//
// Created by Matej Jan on 29.9.10.
// Copyright 2010 Retronator. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "Retronator.Xni.Framework.classes.h"
#import "Retronator.Xni.Framework.Input.Touch.classes.h"
@interface TouchPanel : NSObject {
int displayWidth;
int displayHeight;
DisplayOrientation displayOrientation;
GestureType enabledGestures;
NSMutableSet *addTouches;
NSMutableSet *removeTouches;
NSMutableSet *releaseTouches;
NSMutableSet *lateReleaseTouches;
NSMutableDictionary *touchLocations;
}
@property (nonatomic) int displayWidth;
@property (nonatomic) int displayHeight;
@property (nonatomic) DisplayOrientation displayOrientation;
@property (nonatomic) GestureType enabledGestures;
@property (nonatomic, readonly) BOOL isGestureAvailable;
+ (TouchCollection*) getState;
+ (GestureSample*) readGesture;
+ (TouchPanel*) getInstance;
- (TouchCollection*) getState;
- (GestureSample*) readGesture;
@end