Home | History | Annotate | Download | only in filtershow

Lines Matching refs:Editor

8 import com.android.gallery3d.filtershow.editors.Editor;
19 private HashMap<Integer, Editor> mEditors = new HashMap<Integer, Editor>();
30 public void addEditor(Editor c) {
41 public Editor showEditor(int type) {
42 Editor editor = mEditors.get(type);
43 if (editor == null) {
47 editor.createEditor(mActivity, mContainer);
48 editor.getImageShow().attach();
51 View eview = editor.getTopLevelView();
60 editor.setVisibility(View.VISIBLE);
61 return editor;
78 public Editor getEditor(int editorId) {