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        setSupportsPartialRendering(true);
32        mPreset = preset;
33        mId = id;
34    }
35
36    public ImagePreset getImagePreset() {
37        return mPreset;
38    }
39
40    public int getId() {
41        return mId;
42    }
43
44    public FilterRepresentation copy(){
45        FilterRepresentation representation = new FilterUserPresetRepresentation(getName(),
46                new ImagePreset(mPreset), mId);
47        return representation;
48    }
49
50    @Override
51    public boolean allowsSingleInstanceOnly() {
52        return true;
53    }
54}
55