From 6a12ad70df5da5052a8381e2cdda79e6a314cee9 Mon Sep 17 00:00:00 2001 From: Yuli Huang Date: Mon, 12 Sep 2011 22:25:30 +0800 Subject: Fix b/4643148: Make PhotoEditor integrated into Gallery. 1. Move PhotoEditor code/resources into Gallery for single apk. 2. Change PhotoEditor package to com.android.gallery3d.photoeditor. 3. Rename PhotoEditor resources to avoid mess up Gallery resources. 4. Move Doodle effect from fix-effects to color-effects. 5. Update PhotoEditor bottom action-bar background. Change-Id: I1a2f7d27d89a14fe6a0435575b993ed8b75e6bf4 --- .../photoeditor/actions/RedEyeAction.java | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 src/com/android/gallery3d/photoeditor/actions/RedEyeAction.java (limited to 'src/com/android/gallery3d/photoeditor/actions/RedEyeAction.java') diff --git a/src/com/android/gallery3d/photoeditor/actions/RedEyeAction.java b/src/com/android/gallery3d/photoeditor/actions/RedEyeAction.java new file mode 100644 index 000000000..a472ad985 --- /dev/null +++ b/src/com/android/gallery3d/photoeditor/actions/RedEyeAction.java @@ -0,0 +1,55 @@ +/* + * Copyright (C) 2010 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.gallery3d.photoeditor.actions; + +import android.content.Context; +import android.graphics.PointF; +import android.util.AttributeSet; + +import com.android.gallery3d.photoeditor.filters.RedEyeFilter; + +/** + * An action handling red-eye removal. + */ +public class RedEyeAction extends EffectAction { + + private TouchView touchView; + + public RedEyeAction(Context context, AttributeSet attrs) { + super(context, attrs); + } + + @Override + public void doBegin() { + final RedEyeFilter filter = new RedEyeFilter(); + + touchView = factory.createTouchView(); + touchView.setSingleTapListener(new TouchView.SingleTapListener() { + + @Override + public void onSingleTap(PointF point) { + filter.addRedEyePosition(point); + notifyFilterChanged(filter, true); + } + }); + } + + @Override + public void doEnd() { + touchView.setSingleTapListener(null); + } +} -- cgit v1.2.3