/* * This file is part of LaTeXDraw. * Copyright (c) 2005-2017 Arnaud BLOUIN * LaTeXDraw is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later version. * LaTeXDraw is distributed without any warranty; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. */ package net.sf.latexdraw.ui; import com.google.inject.Inject; import java.awt.Dimension; import java.awt.Graphics2D; import java.awt.geom.Line2D; import net.sf.latexdraw.view.jfx.Canvas; /** * An X-scale ruler. * @author Arnaud BLOUIN */ public class XScaleRuler extends ScaleRuler { /** The y rule. used to get information about where the x-scale must be displayed. */ @Inject protected YScaleRuler yruler; /** * Defines a x-scale ruler. * @param canvas The canvas to supervises. * @throws IllegalArgumentException if the given canvas is null. * @since 3.0 */ @Inject public XScaleRuler(final Canvas canvas) { super(canvas); setPreferredSize(new Dimension(500, SIZE)); } @Override protected void drawLine(final Graphics2D g2, final double positionA, final double positionB1, final double positionB2) { g2.draw(new Line2D.Double(positionA, positionB1, positionA, positionB2)); } @Override protected double getLength() { return getSize().getWidth()+getClippingGap(); } @Override protected double getStart() { return yruler==null || !yruler.isVisible() ? 0. : SIZE; } @Override protected void adaptGraphicsToViewpoint(final Graphics2D g) { g.translate((int)-getClippingGap(), 0); } @Override protected double getClippingGap() { return 0.0; // canvas.getVisibleBound().getMinX(); } }