/*! * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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. * * Copyright (c) 2002-2013 Pentaho Corporation.. All rights reserved. */ package org.pentaho.reporting.designer.core.util; /** * User: Martin Date: 07.02.2006 Time: 20:14:38 */ public enum Unit { POINTS( 1 ), PICA( 12 ), MM( 72. / ( 2.54 * 10 ) ), CM( 72. / 2.54 ), INCH( 72 ); private double dotsPerUnit; private Unit( final double dotsPerUnit ) { this.dotsPerUnit = dotsPerUnit; } public double getDotsPerUnit() { return dotsPerUnit; } public double convertFromPoints( final double points ) { return points / dotsPerUnit; } public double convertToPoints( final double unit ) { return unit * dotsPerUnit; } public double getTickSize( final double sf ) { switch( this ) { case POINTS: { if ( sf < 0.2 ) { return 200; } else if ( sf < 0.5 ) { return 100; } else if ( sf < 2 ) { return 50; } else if ( sf < 3 ) { return 20; } else { return 10; } } case INCH: { if ( sf < 0.2 ) { return 2; } else if ( sf < 0.5 ) { return 1; } else if ( sf < 2 ) { return 0.5; } else if ( sf < 3 ) { return 0.2; } else { return 0.1; } } case CM: { if ( sf < 0.2 ) { return 5; } else if ( sf < 0.5 ) { return 2; } else if ( sf < 2 ) { return 1; } else if ( sf < 4 ) { return 0.5; } else { return 0.2; } } case MM: { if ( sf < 0.5 ) { return 50; } else if ( sf < 1 ) { return 20; } else if ( sf < 3 ) { return 10; } else if ( sf < 4 ) { return 5; } else { return 2; } } case PICA: { if ( sf < 0.2 ) { return 20; } else if ( sf < 0.5 ) { return 10; } else if ( sf < 2 ) { return 5; } else if ( sf < 3 ) { return 2; } else { return 1; } } } return 1; } }