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

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorColorBorder.java 40 import com.android.gallery3d.filtershow.filters.FilterColorBorderRepresentation;
50 FilterColorBorderRepresentation.DEFAULT_MENU_COLOR1,
51 FilterColorBorderRepresentation.DEFAULT_MENU_COLOR2,
52 FilterColorBorderRepresentation.DEFAULT_MENU_COLOR3,
53 FilterColorBorderRepresentation.DEFAULT_MENU_COLOR4,
54 FilterColorBorderRepresentation.DEFAULT_MENU_COLOR5,
66 FilterColorBorderRepresentation rep = getColorBorderRep();
88 if (rep != null && getLocalRepresentation() instanceof FilterColorBorderRepresentation) {
89 FilterColorBorderRepresentation cbRep =
90 (FilterColorBorderRepresentation) getLocalRepresentation()
    [all...]
EditorColorBorderTabletUI.java 39 import com.android.gallery3d.filtershow.filters.FilterColorBorderRepresentation;
47 private FilterColorBorderRepresentation mRep;
70 public void setColorBorderRepresentation(FilterColorBorderRepresentation rep) {
73 size = (BasicParameterInt) mRep.getParam(FilterColorBorderRepresentation.PARAM_SIZE);
78 radius = (BasicParameterInt) mRep.getParam(FilterColorBorderRepresentation.PARAM_RADIUS);
83 color = (ParameterColor) mRep.getParam(FilterColorBorderRepresentation.PARAM_COLOR);
120 int type = FilterColorBorderRepresentation.PARAM_SIZE;
140 int type = FilterColorBorderRepresentation.PARAM_RADIUS;
188 int type = FilterColorBorderRepresentation.PARAM_COLOR;
233 pram = (ParameterColor) mRep.getParam(FilterColorBorderRepresentation.PARAM_COLOR)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterColorBorderRepresentation.java 31 public class FilterColorBorderRepresentation extends FilterRepresentation {
32 private static final String LOGTAG = "FilterColorBorderRepresentation";
54 public FilterColorBorderRepresentation(int color, int size, int radius) {
79 FilterColorBorderRepresentation representation =
80 new FilterColorBorderRepresentation(0, 0, 0);
92 if (a instanceof FilterColorBorderRepresentation) {
93 FilterColorBorderRepresentation representation = (FilterColorBorderRepresentation) a;
107 if (representation instanceof FilterColorBorderRepresentation) {
108 FilterColorBorderRepresentation border = (FilterColorBorderRepresentation) representation
    [all...]
ImageFilterColorBorder.java 28 private FilterColorBorderRepresentation mParameters = null;
39 return new FilterColorBorderRepresentation(Color.WHITE, 3, 2);
43 FilterColorBorderRepresentation parameters =
44 (FilterColorBorderRepresentation) representation;
48 public FilterColorBorderRepresentation getParameters() {
BaseFiltersManager.java 202 rep = new FilterColorBorderRepresentation(Color.BLACK, mImageBorderSize, 0);
205 rep = new FilterColorBorderRepresentation(Color.BLACK, mImageBorderSize,
209 rep = new FilterColorBorderRepresentation(Color.WHITE, mImageBorderSize, 0);
212 rep = new FilterColorBorderRepresentation(Color.WHITE, mImageBorderSize,
217 rep = new FilterColorBorderRepresentation(creamColor, mImageBorderSize, 0);
220 rep = new FilterColorBorderRepresentation(creamColor, mImageBorderSize,

Completed in 5354 milliseconds