FilterUserPresetRepresentation.java revision fa474a198019851ecc3824a1dfbac94cd1928efc
1/*
2 * Copyright (C) 2013 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
17package com.android.gallery3d.filtershow.filters;
18
19import com.android.gallery3d.filtershow.editors.ImageOnlyEditor;
20import com.android.gallery3d.filtershow.pipeline.ImagePreset;
21
22public class FilterUserPresetRepresentation extends FilterRepresentation {
23
24    private ImagePreset mPreset;
25    private int mId;
26
27    public FilterUserPresetRepresentation(String name, ImagePreset preset, int id) {
28        super(name);
29        setEditorId(ImageOnlyEditor.ID);
30        setFilterType(FilterRepresentation.TYPE_FX);
31        mPreset = preset;
32        mId = id;
33    }
34
35    public ImagePreset getImagePreset() {
36        return mPreset;
37    }
38
39    public int getId() {
40        return mId;
41    }
42
43    public FilterRepresentation copy(){
44        FilterRepresentation representation = new FilterUserPresetRepresentation(getName(),
45                new ImagePreset(mPreset), mId);
46        return representation;
47    }
48
49    @Override
50    public boolean allowsSingleInstanceOnly() {
51        return true;
52    }
53}
54