Sha256: 01d28f5224bf48f0d693fdbce1b9e573bdc0678fae8d0cc793385df7ab9d875f

Contents?: true

Size: 404 Bytes

Versions: 32

Compression:

Stored size: 404 Bytes

Contents

package com.rhomobile.rhodes.mapview;

public interface MapTouch {
	
	public static class Touch {
		public float x;
		public float y;
		
		public Touch(float x, float y) {
			this.x = x;
			this.y = y;
		}
	};

	public void touchDown(Touch first, Touch second);
	public void touchUp(Touch first, Touch second);
	public void touchMove(Touch first, Touch second);
	public void touchClick(Touch touch);
	
}

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
rhodes-3.0.2 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.2.beta.1 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.1 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.1.beta.8 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.1.beta.7 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.1.beta.6 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.1.beta.5 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.1.beta.4 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.1.beta.3 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.1.beta.2 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.0 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.0.beta.7 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.0.beta.6 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.0.beta.5 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.0.beta.4 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.0.beta.3 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.0.beta.2 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-3.0.0.beta.1 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-2.4.1 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java
rhodes-2.4.1.beta.1 platform/android/Rhodes/src/com/rhomobile/rhodes/mapview/MapTouch.java