HomeSort by relevance Sort by last modified time
    Searched refs:ParameterColor (Results 1 - 8 of 8) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
ParameterColor.java 23 public class ParameterColor implements Parameter {
24 public static String sParameterType = "ParameterColor";
39 public ParameterColor(int id, int defaultColor) {
60 if (!(src instanceof ParameterColor)) {
63 ParameterColor p = (ParameterColor) src;
104 public void copyPalletFrom(ParameterColor parameterColor) {
105 System.arraycopy(parameterColor.mBasColors,0,mBasColors,0,mBasColors.length);
ColorChooser.java 24 protected ParameterColor mParameter;
54 mParameter = (ParameterColor) parameter;
137 mParameter = (ParameterColor) parameter;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterColorBorderRepresentation.java 26 import com.android.gallery3d.filtershow.controller.ParameterColor;
45 private ParameterColor mParamColor = new ParameterColor(PARAM_COLOR, DEFAULT_MENU_COLOR1);
FilterDrawRepresentation.java 31 import com.android.gallery3d.filtershow.controller.ParameterColor;
55 ParameterColor mParamColor = new ParameterColor(PARAM_COLOR,DEFAULT_MENU_COLOR1);
146 val = ((ParameterColor) mAllParam[mParamMode]).getValue();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorColorBorderTabletUI.java 38 import com.android.gallery3d.filtershow.controller.ParameterColor;
82 ParameterColor color;
83 color = (ParameterColor) mRep.getParam(FilterColorBorderRepresentation.PARAM_COLOR);
189 ParameterColor pram = (ParameterColor) mRep.getParam(type);
232 ParameterColor pram;
233 pram = (ParameterColor) mRep.getParam(FilterColorBorderRepresentation.PARAM_COLOR);
EditorDrawTabletUI.java 42 import com.android.gallery3d.filtershow.controller.ParameterColor;
81 ParameterColor color;
82 color = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR);
197 ParameterColor pram;
198 pram = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR);
243 ParameterColor pram;
244 pram = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR);
ParametricEditor.java 39 import com.android.gallery3d.filtershow.controller.ParameterColor;
78 portraitMap.put(ParameterColor.sParameterType, ColorChooser.class);
79 landscapeMap.put(ParameterColor.sParameterType, ColorChooser.class);
EditorDraw.java 49 import com.android.gallery3d.filtershow.controller.ParameterColor;

Completed in 73 milliseconds