Clover icon

Magnolia Imaging Module 3.2.3

  1. Project Clover database Fri Nov 6 2015 14:54:03 CET
  2. Package info.magnolia.imaging.operations.text

File TextStyle.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart0.png
82% of files have more coverage

Code metrics

0
2
2
1
126
65
2
1
1
2
1
88.2% of code in this file is excluded from these metrics.

Classes

Class Line # Actions
TextStyle 42 2 88.2% 2 4
0.00%
 

Contributing tests

This file is covered by 2 tests. .

Source view

1    /**
2    * This file Copyright (c) 2007-2015 Magnolia International
3    * Ltd. (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10    * This file is distributed in the hope that it will be
11    * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12    * implied warranty of MERCHANTABILITY or FITNESS FOR A
13    * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14    * Redistribution, except as permitted by whichever of the GPL
15    * or MNA you select, is prohibited.
16    *
17    * 1. For the GPL license (GPL), you can redistribute and/or
18    * modify this file under the terms of the GNU General
19    * Public License, Version 3, as published by the Free Software
20    * Foundation. You should have received a copy of the GNU
21    * General Public License, Version 3 along with this program;
22    * if not, write to the Free Software Foundation, Inc., 51
23    * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24    *
25    * 2. For the Magnolia Network Agreement (MNA), this file
26    * and the accompanying materials are made available under the
27    * terms of the MNA which accompanies this distribution, and
28    * is available at http://www.magnolia-cms.com/mna.html
29    *
30    * Any modifications to this file must keep this entire header
31    * intact.
32    *
33    */
34    package info.magnolia.imaging.operations.text;
35   
36    import java.awt.Color;
37    import java.awt.Font;
38   
39    /**
40    * A simple bean holding font-related configuration.
41    */
 
42    public class TextStyle {
43    public static final double SHEARING_DIV_FACTOR = 20D;
44    public static final double CHARSPACING_DIV_FACTOR = 10D;
45   
46    private String fontName;
47    private int fontStyle = Font.PLAIN;
48    private int fontSize;
49    private Color color;
50    private Color backgroundColor;
51    private double charSpacing;
52    private int shearingValue;
53   
 
54  0 toggle public double calculateShearingValue() {
55  0 return (-1.0D * (new Double(shearingValue)).doubleValue()) / SHEARING_DIV_FACTOR;
56    }
57   
 
58  0 toggle public float calculateCharSpacing() {
59  0 return (float) (getCharSpacing() / TextStyle.CHARSPACING_DIV_FACTOR);
60    }
61   
62    // public Font deriveFont() {
63    // return this.font.deriveFont(this.fontStyle, (float) this.fontSize);
64   
 
65    toggle public Font getFont() {
66    return new Font(fontName, fontStyle, fontSize);
67    }
68   
69    // ---generated getters and setters
70   
 
71    toggle public String getFontName() {
72    return fontName;
73    }
74   
 
75    toggle public void setFontName(String fontName) {
76    this.fontName = fontName;
77    }
78   
 
79    toggle public int getFontStyle() {
80    return fontStyle;
81    }
82   
 
83    toggle public void setFontStyle(int fontStyle) {
84    this.fontStyle = fontStyle;
85    }
86   
 
87    toggle public int getFontSize() {
88    return fontSize;
89    }
90   
 
91    toggle public void setFontSize(int fontSize) {
92    this.fontSize = fontSize;
93    }
94   
 
95    toggle public Color getColor() {
96    return color;
97    }
98   
 
99    toggle public void setColor(Color color) {
100    this.color = color;
101    }
102   
 
103    toggle public Color getBackgroundColor() {
104    return backgroundColor;
105    }
106   
 
107    toggle public void setBackgroundColor(Color backgroundColor) {
108    this.backgroundColor = backgroundColor;
109    }
110   
 
111    toggle public double getCharSpacing() {
112    return charSpacing;
113    }
114   
 
115    toggle public void setCharSpacing(double charSpacing) {
116    this.charSpacing = charSpacing;
117    }
118   
 
119    toggle public int getShearingValue() {
120    return shearingValue;
121    }
122   
 
123    toggle public void setShearingValue(int shearingValue) {
124    this.shearingValue = shearingValue;
125    }
126    }