summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/CustomAppWidget.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher3/CustomAppWidget.java')
-rw-r--r--src/com/android/launcher3/CustomAppWidget.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/com/android/launcher3/CustomAppWidget.java b/src/com/android/launcher3/CustomAppWidget.java
new file mode 100644
index 000000000..1b4ed79c0
--- /dev/null
+++ b/src/com/android/launcher3/CustomAppWidget.java
@@ -0,0 +1,14 @@
+package com.android.launcher3;
+
+public interface CustomAppWidget {
+ public String getLabel();
+ public int getPreviewImage();
+ public int getIcon();
+ public int getWidgetLayout();
+
+ public int getSpanX();
+ public int getSpanY();
+ public int getMinSpanX();
+ public int getMinSpanY();
+ public int getResizeMode();
+}