Home | History | Annotate | Download | only in actions

Lines Matching defs:tools

52     private final ViewGroup tools;
59 public FilterAction(FilterStack filterStack, ViewGroup tools) {
61 this.tools = tools;
63 photoView = (PhotoView) tools.findViewById(R.id.photo_view);
64 scaleWheel = (ScaleWheel) tools.findViewById(R.id.scale_wheel);
65 colorWheel = (ColorWheel) tools.findViewById(R.id.color_wheel);
66 doodleView = (DoodleView) tools.findViewById(R.id.doodle_view);
67 touchView = (TouchView) tools.findViewById(R.id.touch_view);
68 rotateView = (RotateView) tools.findViewById(R.id.rotate_view);
69 cropView = (CropView) tools.findViewById(R.id.crop_view);
72 public FilterAction(FilterStack filterStack, ViewGroup tools, int tooltipId) {
73 this(filterStack, tools);
75 tooltip = Toast.makeText(tools.getContext(), tooltipId, Toast.LENGTH_SHORT);
105 final SpinnerProgressDialog progressDialog = SpinnerProgressDialog.show(tools);