aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java')
-rw-r--r--main/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java b/main/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java
new file mode 100644
index 0000000..b738e41
--- /dev/null
+++ b/main/src/cgeo/geocaching/mapinterfaces/ItemizedOverlayImpl.java
@@ -0,0 +1,35 @@
+package cgeo.geocaching.mapinterfaces;
+
+import cgeo.geocaching.mapcommon.ItemizedOverlayBase;
+
+import android.graphics.Canvas;
+import android.graphics.Point;
+import android.graphics.drawable.Drawable;
+
+/**
+ * Defines the common functions to access the provider-specific
+ * ItemizedOverlay implementation
+ *
+ * @author rsudev
+ *
+ */
+public interface ItemizedOverlayImpl extends OverlayImpl {
+
+ ItemizedOverlayBase getBase();
+
+ void superPopulate();
+
+ void superSetLastFocusedItemIndex(int i);
+
+ Drawable superBoundCenter(Drawable markerIn);
+
+ Drawable superBoundCenterBottom(Drawable marker);
+
+ boolean superOnTap(int index);
+
+ void superDraw(Canvas canvas, MapViewImpl mapView, boolean shadow);
+
+ void superDrawOverlayBitmap(Canvas canvas, Point drawPosition, MapProjectionImpl projection,
+ byte drawZoomLevel);
+
+}