Home
last modified time | relevance | path

Searched refs:FilterDrawRepresentation (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
DEditorDraw.java50 import com.android.gallery3d.filtershow.filters.FilterDrawRepresentation;
59 private static final int MODE_SIZE = FilterDrawRepresentation.PARAM_SIZE;
60 private static final int MODE_SIZEE = FilterDrawRepresentation.PARAM_SIZE;
61 private static final int MODE_STYLE = FilterDrawRepresentation.PARAM_STYLE;
62 private static final int MODE_COLOR = FilterDrawRepresentation.PARAM_COLOR;
72 FilterDrawRepresentation.DEFAULT_MENU_COLOR1,
73 FilterDrawRepresentation.DEFAULT_MENU_COLOR2,
74 FilterDrawRepresentation.DEFAULT_MENU_COLOR3,
75 FilterDrawRepresentation.DEFAULT_MENU_COLOR4,
76 FilterDrawRepresentation.DEFAULT_MENU_COLOR5,
[all …]
DEditorDrawTabletUI.java43 import com.android.gallery3d.filtershow.filters.FilterDrawRepresentation;
53 private FilterDrawRepresentation mRep;
74 public void setDrawRepresentation(FilterDrawRepresentation rep) { in setDrawRepresentation()
77 size = (BasicParameterInt) mRep.getParam(FilterDrawRepresentation.PARAM_SIZE); in setDrawRepresentation()
82 color = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR); in setDrawRepresentation()
85 style = (BasicParameterStyle) mRep.getParam(FilterDrawRepresentation.PARAM_STYLE); in setDrawRepresentation()
121 size = (BasicParameterInt) mRep.getParam(FilterDrawRepresentation.PARAM_SIZE); in EditorDrawTabletUI()
149 mRep.getParam(FilterDrawRepresentation.PARAM_STYLE); in EditorDrawTabletUI()
198 pram = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR); in EditorDrawTabletUI()
244 pram = (ParameterColor) mRep.getParam(FilterDrawRepresentation.PARAM_COLOR); in EditorDrawTabletUI()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
DImageFilterDraw.java34 import com.android.gallery3d.filtershow.filters.FilterDrawRepresentation.StrokeData;
50 FilterDrawRepresentation mParameters = new FilterDrawRepresentation();
72 return new FilterDrawRepresentation(); in getDefaultRepresentation()
77 FilterDrawRepresentation parameters = (FilterDrawRepresentation) representation; in useRepresentation()
91 public void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix, in paint()
109 public void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix, in paint()
158 public void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, in paint()
218 void paint(FilterDrawRepresentation.StrokeData sd, Canvas canvas, Matrix toScrMatrix, in paint()
239 for (FilterDrawRepresentation.StrokeData strokeData : mParameters.getDrawing()) { in drawData()
268 Vector<FilterDrawRepresentation.StrokeData> v = mParameters.getDrawing(); in fillBuffer()
[all …]
DFilterDrawRepresentation.java42 public class FilterDrawRepresentation extends FilterRepresentation { class
160 public FilterDrawRepresentation() { in FilterDrawRepresentation() method in FilterDrawRepresentation
188 FilterDrawRepresentation representation = new FilterDrawRepresentation(); in copy()
206 if (a instanceof FilterDrawRepresentation) { in useParametersFrom()
207 FilterDrawRepresentation representation = (FilterDrawRepresentation) a; in useParametersFrom()
238 if (representation instanceof FilterDrawRepresentation) { in equals()
239 FilterDrawRepresentation fdRep = (FilterDrawRepresentation) representation; in equals()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
DImageDraw.java25 import com.android.gallery3d.filtershow.filters.FilterDrawRepresentation;
35 private FilterDrawRepresentation mFRep;
43 private FilterDrawRepresentation.StrokeData mTmpStrokData =
44 new FilterDrawRepresentation.StrokeData();
99 public void setFilterDrawRepresentation(FilterDrawRepresentation fr) { in setFilterDrawRepresentation()
102 new FilterDrawRepresentation.StrokeData(); in setFilterDrawRepresentation()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
DFilterShowActivity.java95 import com.android.gallery3d.filtershow.filters.FilterDrawRepresentation;
481 if (representation instanceof FilterDrawRepresentation) { in fillTools()
486 FilterRepresentation representation = new FilterDrawRepresentation(); in fillTools()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
DAction.java33 import com.android.gallery3d.filtershow.filters.FilterDrawRepresentation;