Home
last modified time | relevance | path

Searched refs:ParameterColor (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
H A DParameterColor.java23 public class ParameterColor implements Parameter { class
39 public ParameterColor(int id, int defaultColor) { in ParameterColor() method in ParameterColor
60 if (!(src instanceof ParameterColor)) { in copyFrom()
63 ParameterColor p = (ParameterColor) src; in copyFrom()
104 public void copyPalletFrom(ParameterColor parameterColor) { in copyPalletFrom()
H A DColorChooser.java24 protected ParameterColor mParameter;
54 mParameter = (ParameterColor) parameter; in setUp()
137 mParameter = (ParameterColor) parameter; in setPrameter()
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditorColorBorderTabletUI.java38 import com.android.gallery3d.filtershow.controller.ParameterColor;
82 ParameterColor color; in setColorBorderRepresentation()
83 color = (ParameterColor) mRep.getParam(FilterColorBorderRepresentation.PARAM_COLOR); in setColorBorderRepresentation()
189 ParameterColor pram = (ParameterColor) mRep.getParam(type); in setupColor()
232 ParameterColor pram; in setupColor()
233 pram = (ParameterColor) mRep.getParam(FilterColorBorderRepresentation.PARAM_COLOR); in setupColor()
H A DEditorDrawTabletUI.java42 import com.android.gallery3d.filtershow.controller.ParameterColor;
81 ParameterColor color; in setDrawRepresentation()
82 color = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR); in setDrawRepresentation()
197 ParameterColor pram; in EditorDrawTabletUI()
198 pram = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR); in EditorDrawTabletUI()
243 ParameterColor pram; in EditorDrawTabletUI()
244 pram = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR); in EditorDrawTabletUI()
H A DParametricEditor.java39 import com.android.gallery3d.filtershow.controller.ParameterColor;
78 portraitMap.put(ParameterColor.sParameterType, ColorChooser.class); in portraitMap.put()
79 landscapeMap.put(ParameterColor.sParameterType, ColorChooser.class); in landscapeMap.put()
H A DEditorDraw.java49 import com.android.gallery3d.filtershow.controller.ParameterColor;
/aosp12/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterColorBorderRepresentation.java26 import com.android.gallery3d.filtershow.controller.ParameterColor;
45 private ParameterColor mParamColor = new ParameterColor(PARAM_COLOR, DEFAULT_MENU_COLOR1);
H A DFilterDrawRepresentation.java31 import com.android.gallery3d.filtershow.controller.ParameterColor;
55 ParameterColor mParamColor = new ParameterColor(PARAM_COLOR,DEFAULT_MENU_COLOR1);
146 val = ((ParameterColor) mAllParam[mParamMode]).getValue(); in getValueString()