summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/filtershow/category/CategoryView.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/filtershow/category/CategoryView.java')
-rw-r--r--src/com/android/gallery3d/filtershow/category/CategoryView.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/filtershow/category/CategoryView.java b/src/com/android/gallery3d/filtershow/category/CategoryView.java
index 059eb103d..e045cf452 100644
--- a/src/com/android/gallery3d/filtershow/category/CategoryView.java
+++ b/src/com/android/gallery3d/filtershow/category/CategoryView.java
@@ -34,6 +34,8 @@ import com.android.gallery3d.filtershow.ui.SelectionRenderer;
public class CategoryView extends View implements View.OnClickListener {
private static final String LOGTAG = "CategoryView";
+ public static final int VERTICAL = 0;
+ public static final int HORIZONTAL = 1;
private Paint mPaint = new Paint();
private Action mAction;
private Rect mTextBounds = new Rect();
@@ -46,6 +48,7 @@ public class CategoryView extends View implements View.OnClickListener {
private int mSelectionStroke;
private Paint mBorderPaint;
private int mBorderStroke;
+ private int mOrientation = VERTICAL;
public static void setTextSize(int size) {
sTextSize = size;
@@ -129,4 +132,8 @@ public class CategoryView extends View implements View.OnClickListener {
activity.showRepresentation(mAction.getRepresentation());
mAdapter.setSelected(this);
}
+
+ public void setOrientation(int orientation) {
+ mOrientation = orientation;
+ }
}