com.hfg.graphics.PaperSize Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.graphics;
import com.hfg.graphics.units.GfxSize2D;
import com.hfg.graphics.units.Inches;
//------------------------------------------------------------------------------
/**
* Paper size definition.
*
* @author J. Alex Taylor, hairyfatguy.com
*/
//------------------------------------------------------------------------------
// com.hfg XML/HTML Coding Library
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// J. Alex Taylor, President, Founder, CEO, COO, CFO, OOPS hairyfatguy.com
// [email protected]
//------------------------------------------------------------------------------
// See http://en.wikipedia.org/wiki/Paper_size
public class PaperSize
{
public static final PaperSize US_LETTER = new PaperSize("US Letter", new GfxSize2D().setWidth(new Inches(8.5f)).setHeight(new Inches(11)));
public static final PaperSize US_LEGAL = new PaperSize("US Legal", new GfxSize2D().setWidth(new Inches(8.5f)).setHeight(new Inches(14)));
public static final PaperSize US_LEDGER = new PaperSize("US Ledger", new GfxSize2D().setWidth(new Inches(17)).setHeight(new Inches(11)));
public static final PaperSize US_TABLOID = new PaperSize("US Tabloid", new GfxSize2D().setWidth(new Inches(11)).setHeight(new Inches(171)));
public static final PaperSize A4 = new PaperSize("A4", new GfxSize2D().setWidth(new Inches(8.27f)).setHeight(new Inches(11.69f)));
private String mName;
private GfxSize2D mSize;
//##########################################################################
// CONSTRUCTORS
//##########################################################################
//--------------------------------------------------------------------------
public PaperSize(String inName, GfxSize2D inSize)
{
mName = inName;
mSize = inSize;
}
//##########################################################################
// PUBLIC METHODS
//##########################################################################
//--------------------------------------------------------------------------
public String getName()
{
return mName;
}
//--------------------------------------------------------------------------
public GfxSize2D getDimensions()
{
return mSize;
}
}