OSDN Git Service

Refactoring Geometry handling.
[android-x86/packages-apps-Gallery2.git] / src / com / android / gallery3d / filtershow / editors / Editor.java
1 /*
2  * Copyright (C) 2012 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.android.gallery3d.filtershow.editors;
18
19 import android.content.Context;
20 import android.util.AttributeSet;
21 import android.view.LayoutInflater;
22 import android.view.Menu;
23 import android.view.MenuItem;
24 import android.view.View;
25 import android.view.ViewGroup;
26 import android.widget.Button;
27 import android.widget.FrameLayout;
28 import android.widget.LinearLayout;
29 import android.widget.PopupMenu;
30 import android.widget.SeekBar;
31 import android.widget.SeekBar.OnSeekBarChangeListener;
32
33 import com.android.gallery3d.R;
34 import com.android.gallery3d.filtershow.controller.Control;
35 import com.android.gallery3d.filtershow.filters.FilterRepresentation;
36 import com.android.gallery3d.filtershow.imageshow.ImageShow;
37 import com.android.gallery3d.filtershow.imageshow.MasterImage;
38 import com.android.gallery3d.filtershow.pipeline.ImagePreset;
39
40 import java.util.ArrayList;
41 import java.util.Collection;
42
43 /**
44  * Base class for Editors Must contain a mImageShow and a top level view
45  */
46 public class Editor implements OnSeekBarChangeListener, SwapButton.SwapButtonListener {
47     protected Context mContext;
48     protected View mView;
49     protected ImageShow mImageShow;
50     protected FrameLayout mFrameLayout;
51     protected SeekBar mSeekBar;
52     Button mEditTitle;
53     protected Button mFilterTitle;
54     protected int mID;
55     private final String LOGTAG = "Editor";
56     protected boolean mChangesGeometry = false;
57     protected FilterRepresentation mLocalRepresentation = null;
58     protected byte mShowParameter = SHOW_VALUE_UNDEFINED;
59     private Button mButton;
60     public static byte SHOW_VALUE_UNDEFINED = -1;
61     public static byte SHOW_VALUE_OFF = 0;
62     public static byte SHOW_VALUE_INT = 1;
63
64     public static void hackFixStrings(Menu menu) {
65         int count = menu.size();
66         for (int i = 0; i < count; i++) {
67             MenuItem item = menu.getItem(i);
68             item.setTitle(item.getTitle().toString().toUpperCase());
69         }
70     }
71
72     public String calculateUserMessage(Context context, String effectName, Object parameterValue) {
73         return effectName.toUpperCase() + " " + parameterValue;
74     }
75
76     protected Editor(int id) {
77         mID = id;
78     }
79
80     public int getID() {
81         return mID;
82     }
83
84     public byte showParameterValue() {
85         return mShowParameter;
86     }
87
88     public boolean showsSeekBar() {
89         return true;
90     }
91
92     public void setUpEditorUI(View actionButton, View editControl,
93                               Button editTitle, Button stateButton) {
94         mEditTitle = editTitle;
95         mFilterTitle = stateButton;
96         mButton = editTitle;
97         setMenuIcon(true);
98         setUtilityPanelUI(actionButton, editControl);
99     }
100
101     public boolean showsPopupIndicator() {
102         return true;
103     }
104
105     /**
106      * @param actionButton the would be the area for menu etc
107      * @param editControl this is the black area for sliders etc
108      */
109     public void setUtilityPanelUI(View actionButton, View editControl) {
110
111         AttributeSet aset;
112         Context context = editControl.getContext();
113         LayoutInflater inflater =
114                 (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
115         LinearLayout lp = (LinearLayout) inflater.inflate(
116                 R.layout.filtershow_seekbar, (ViewGroup) editControl, true);
117         mSeekBar = (SeekBar) lp.findViewById(R.id.primarySeekBar);
118         mSeekBar.setOnSeekBarChangeListener(this);
119
120         if (showsSeekBar()) {
121             mSeekBar.setOnSeekBarChangeListener(this);
122             mSeekBar.setVisibility(View.VISIBLE);
123         } else {
124             mSeekBar.setVisibility(View.INVISIBLE);
125         }
126
127         if (mButton != null) {
128             if (showsPopupIndicator()) {
129                 mButton.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0,
130                         R.drawable.filtershow_menu_marker, 0);
131             } else {
132                 mButton.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, 0, 0);
133             }
134         }
135     }
136
137     @Override
138     public void onProgressChanged(SeekBar sbar, int progress, boolean arg2) {
139
140     }
141
142     public void setPanel() {
143
144     }
145
146     public void createEditor(Context context,FrameLayout frameLayout) {
147         mContext = context;
148         mFrameLayout = frameLayout;
149         mLocalRepresentation = null;
150     }
151
152     protected void unpack(int viewid, int layoutid) {
153
154         if (mView == null) {
155             mView = mFrameLayout.findViewById(viewid);
156             if (mView == null) {
157                 LayoutInflater inflater = (LayoutInflater) mContext.getSystemService
158                         (Context.LAYOUT_INFLATER_SERVICE);
159                 mView = inflater.inflate(layoutid, mFrameLayout, false);
160                 mFrameLayout.addView(mView, mView.getLayoutParams());
161             }
162         }
163         mImageShow = findImageShow(mView);
164     }
165
166     private ImageShow findImageShow(View view) {
167         if (view instanceof ImageShow) {
168             return (ImageShow) view;
169         }
170         if (!(view instanceof ViewGroup)) {
171             return null;
172         }
173         ViewGroup vg = (ViewGroup) view;
174         int n = vg.getChildCount();
175         for (int i = 0; i < n; i++) {
176             View v = vg.getChildAt(i);
177             if (v instanceof ImageShow) {
178                 return (ImageShow) v;
179             } else if (v instanceof ViewGroup) {
180                 return findImageShow(v);
181             }
182         }
183         return null;
184     }
185
186     public View getTopLevelView() {
187         return mView;
188     }
189
190     public ImageShow getImageShow() {
191         return mImageShow;
192     }
193
194     public void setVisibility(int visible) {
195         mView.setVisibility(visible);
196     }
197
198     public FilterRepresentation getLocalRepresentation() {
199         if (mLocalRepresentation == null) {
200             ImagePreset preset = MasterImage.getImage().getPreset();
201             FilterRepresentation filterRepresentation = MasterImage.getImage().getCurrentFilterRepresentation();
202             mLocalRepresentation = preset.getFilterRepresentationCopyFrom(filterRepresentation);
203             if (mShowParameter == SHOW_VALUE_UNDEFINED && filterRepresentation != null) {
204                 boolean show = filterRepresentation.showParameterValue();
205                 mShowParameter = show ? SHOW_VALUE_INT : SHOW_VALUE_OFF;
206             }
207
208         }
209         return mLocalRepresentation;
210     }
211
212     /**
213      *  Call this to update the preset in MasterImage with the current representation
214      *  returned by getLocalRepresentation.  This causes the preview bitmap to be
215      *  regenerated.
216      */
217     public void commitLocalRepresentation() {
218         commitLocalRepresentation(getLocalRepresentation());
219     }
220
221     /**
222      *  Call this to update the preset in MasterImage with a given representation.
223      *  This causes the preview bitmap to be regenerated.
224      */
225     public void commitLocalRepresentation(FilterRepresentation rep) {
226         ArrayList<FilterRepresentation> filter = new ArrayList<FilterRepresentation>(1);
227         filter.add(rep);
228         commitLocalRepresentation(filter);
229     }
230
231     /**
232      *  Call this to update the preset in MasterImage with a collection of FilterRepresnations.
233      *  This causes the preview bitmap to be regenerated.
234      */
235     public void commitLocalRepresentation(Collection<FilterRepresentation> reps) {
236         ImagePreset preset = MasterImage.getImage().getPreset();
237         preset.updateFilterRepresentations(reps);
238         if (mButton != null) {
239             updateText();
240         }
241         if (mChangesGeometry) {
242             // Regenerate both the filtered and the geometry-only bitmaps
243             MasterImage.getImage().updatePresets(true);
244         } else {
245             // Regenerate only the filtered bitmap.
246             MasterImage.getImage().invalidateFiltersOnly();
247         }
248         preset.fillImageStateAdapter(MasterImage.getImage().getState());
249     }
250
251     /**
252      * This is called in response to a click to apply and leave the editor.
253      */
254     public void finalApplyCalled() {
255         commitLocalRepresentation();
256     }
257
258     protected void updateText() {
259         String s = "";
260         if (mLocalRepresentation != null) {
261             s = mContext.getString(mLocalRepresentation.getTextId());
262         }
263         mButton.setText(calculateUserMessage(mContext, s, ""));
264     }
265
266     /**
267      * called after the filter is set and the select is called
268      */
269     public void reflectCurrentFilter() {
270         mLocalRepresentation = null;
271         FilterRepresentation representation = getLocalRepresentation();
272         if (representation != null && mFilterTitle != null && representation.getTextId() != 0) {
273             String text = mContext.getString(representation.getTextId()).toUpperCase();
274             mFilterTitle.setText(text);
275             updateText();
276         }
277     }
278
279     public boolean useUtilityPanel() {
280         return true;
281     }
282
283     public void openUtilityPanel(LinearLayout mAccessoryViewList) {
284         setMenuIcon(false);
285         if (mImageShow != null) {
286             mImageShow.openUtilityPanel(mAccessoryViewList);
287         }
288     }
289
290     protected void setMenuIcon(boolean on) {
291         mEditTitle.setCompoundDrawablesRelativeWithIntrinsicBounds(
292                 0, 0, on ? R.drawable.filtershow_menu_marker : 0, 0);
293     }
294
295     protected void createMenu(int[] strId, View button) {
296         PopupMenu pmenu = new PopupMenu(mContext, button);
297         Menu menu = pmenu.getMenu();
298         for (int i = 0; i < strId.length; i++) {
299             menu.add(Menu.NONE, Menu.FIRST + i, 0, mContext.getString(strId[i]));
300         }
301         setMenuIcon(true);
302
303     }
304
305     public Control[] getControls() {
306         return null;
307     }
308     @Override
309     public void onStartTrackingTouch(SeekBar arg0) {
310
311     }
312
313     @Override
314     public void onStopTrackingTouch(SeekBar arg0) {
315
316     }
317
318     @Override
319     public void swapLeft(MenuItem item) {
320
321     }
322
323     @Override
324     public void swapRight(MenuItem item) {
325
326     }
327
328     public void detach() {
329     }
330 }