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

  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/widget/
Widget.java 157 public RectF getMarginatedRect(RectF widgetRect) {
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) {
320 return PixelUtils.add(new PointF(widgetRect.left, widgetRect.top),
321 getAnchorOffset(widgetRect.width(), widgetRect.height(), anchorPosition));
    [all...]
TextLabelWidget.java 102 * @param widgetRect the size and coordinates of this widget
105 public void doOnDraw(Canvas canvas, RectF widgetRect) {
111 PointF start = getAnchorCoordinates(widgetRect,
EmptyWidget.java 31 protected void doOnDraw(Canvas canvas, RectF widgetRect) throws PlotRenderException {
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
PieWidget.java 41 protected void doOnDraw(Canvas canvas, RectF widgetRect) throws PlotRenderException {
44 renderer.render(canvas, widgetRect);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
LayoutManager.java 99 //RectF widgetRect = new RectF(coords.x, coords.y, coords.x + elementWidth, coords.y + elementHeight);
102 //RectF widgetRect = widgetRects.get(widget);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYLegendWidget.java 145 protected synchronized void doOnDraw(Canvas canvas, RectF widgetRect) {
177 Iterator<RectF> it = tableModel.getIterator(widgetRect, seriesCount);
XYGraphWidget.java 373 protected void doOnDraw(Canvas canvas, RectF widgetRect)
375 gridRect = getGridRect(widgetRect); // used for drawing the background
399 private RectF getGridRect(RectF widgetRect) {
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));
    [all...]
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYLegendWidgetTest.java 56 public void doOnDraw(Canvas canvas, RectF widgetRect) {}

Completed in 846 milliseconds