Searched refs:widgetRect (Results 1 - 7 of 7) sorted by relevance

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
H A DPieWidget.java41 protected void doOnDraw(Canvas canvas, RectF widgetRect) throws PlotRenderException { argument
44 renderer.render(canvas, widgetRect);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/widget/
H A DEmptyWidget.java31 protected void doOnDraw(Canvas canvas, RectF widgetRect) throws PlotRenderException { argument
H A DWidget.java157 public RectF getMarginatedRect(RectF widgetRect) { argument
158 return boxModel.getMarginatedRect(widgetRect);
263 RectF widgetRect = new RectF(coords.x, coords.y,
265 RectF marginatedWidgetRect = getMarginatedRect(widgetRect);
267 widgetDimensions = new DisplayDimensions(widgetRect,
319 public static PointF getAnchorCoordinates(RectF widgetRect, AnchorPosition anchorPosition) { argument
320 return PixelUtils.add(new PointF(widgetRect.left, widgetRect.top),
321 getAnchorOffset(widgetRect.width(), widgetRect
328 draw(Canvas canvas, RectF widgetRect) argument
354 drawBackground(Canvas canvas, RectF widgetRect) argument
362 doOnDraw(Canvas canvas, RectF widgetRect) argument
[all...]
H A DTextLabelWidget.java102 * @param widgetRect the size and coordinates of this widget
105 public void doOnDraw(Canvas canvas, RectF widgetRect) { argument
111 PointF start = getAnchorCoordinates(widgetRect,
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
H A DXYLegendWidgetTest.java56 public void doOnDraw(Canvas canvas, RectF widgetRect) {} argument
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DXYLegendWidget.java145 protected synchronized void doOnDraw(Canvas canvas, RectF widgetRect) { argument
177 Iterator<RectF> it = tableModel.getIterator(widgetRect, seriesCount);
H A DXYGraphWidget.java373 protected void doOnDraw(Canvas canvas, RectF widgetRect) argument
375 gridRect = getGridRect(widgetRect); // used for drawing the background
399 private RectF getGridRect(RectF widgetRect) { argument
400 return new RectF(widgetRect.left + ((rangeAxisLeft)?rangeLabelWidth:1),
401 widgetRect.top + ((domainAxisBottom)?1:domainLabelWidth),
402 widgetRect.right - ((rangeAxisLeft)?1:rangeLabelWidth),
403 widgetRect.bottom - ((domainAxisBottom)?domainLabelWidth:1));

Completed in 1238 milliseconds