108 lines
3.0 KiB
Java
108 lines
3.0 KiB
Java
package jxl.write;
|
|
|
|
import jxl.format.Colour;
|
|
import jxl.format.Font;
|
|
import jxl.format.ScriptStyle;
|
|
import jxl.format.UnderlineStyle;
|
|
import jxl.write.biff.WritableFontRecord;
|
|
|
|
public class WritableFont extends WritableFontRecord {
|
|
public static class FontName {
|
|
String name;
|
|
|
|
FontName(String s) {
|
|
this.name = s;
|
|
}
|
|
}
|
|
|
|
static class BoldStyle {
|
|
public int value;
|
|
|
|
BoldStyle(int val) {
|
|
this.value = val;
|
|
}
|
|
}
|
|
|
|
public static final FontName ARIAL = new FontName("Arial");
|
|
|
|
public static final FontName TIMES = new FontName("Times New Roman");
|
|
|
|
public static final FontName COURIER = new FontName("Courier New");
|
|
|
|
public static final FontName TAHOMA = new FontName("Tahoma");
|
|
|
|
public static final BoldStyle NO_BOLD = new BoldStyle(400);
|
|
|
|
public static final BoldStyle BOLD = new BoldStyle(700);
|
|
|
|
public static final int DEFAULT_POINT_SIZE = 10;
|
|
|
|
public WritableFont(FontName fn) {
|
|
this(fn, 10, NO_BOLD, false, UnderlineStyle.NO_UNDERLINE, Colour.BLACK, ScriptStyle.NORMAL_SCRIPT);
|
|
}
|
|
|
|
public WritableFont(Font f) {
|
|
super(f);
|
|
}
|
|
|
|
public WritableFont(FontName fn, int ps) {
|
|
this(fn, ps, NO_BOLD, false, UnderlineStyle.NO_UNDERLINE, Colour.BLACK, ScriptStyle.NORMAL_SCRIPT);
|
|
}
|
|
|
|
public WritableFont(FontName fn, int ps, BoldStyle bs) {
|
|
this(fn, ps, bs, false, UnderlineStyle.NO_UNDERLINE, Colour.BLACK, ScriptStyle.NORMAL_SCRIPT);
|
|
}
|
|
|
|
public WritableFont(FontName fn, int ps, BoldStyle bs, boolean italic) {
|
|
this(fn, ps, bs, italic, UnderlineStyle.NO_UNDERLINE, Colour.BLACK, ScriptStyle.NORMAL_SCRIPT);
|
|
}
|
|
|
|
public WritableFont(FontName fn, int ps, BoldStyle bs, boolean it, UnderlineStyle us) {
|
|
this(fn, ps, bs, it, us, Colour.BLACK, ScriptStyle.NORMAL_SCRIPT);
|
|
}
|
|
|
|
public WritableFont(FontName fn, int ps, BoldStyle bs, boolean it, UnderlineStyle us, Colour c) {
|
|
this(fn, ps, bs, it, us, c, ScriptStyle.NORMAL_SCRIPT);
|
|
}
|
|
|
|
public WritableFont(FontName fn, int ps, BoldStyle bs, boolean it, UnderlineStyle us, Colour c, ScriptStyle ss) {
|
|
super(fn.name, ps, bs.value, it, us.getValue(), c.getValue(), ss.getValue());
|
|
}
|
|
|
|
public void setPointSize(int pointSize) throws WriteException {
|
|
super.setPointSize(pointSize);
|
|
}
|
|
|
|
public void setBoldStyle(BoldStyle boldStyle) throws WriteException {
|
|
setBoldStyle(boldStyle.value);
|
|
}
|
|
|
|
public void setItalic(boolean italic) throws WriteException {
|
|
super.setItalic(italic);
|
|
}
|
|
|
|
public void setUnderlineStyle(UnderlineStyle us) throws WriteException {
|
|
setUnderlineStyle(us.getValue());
|
|
}
|
|
|
|
public void setColour(Colour colour) throws WriteException {
|
|
setColour(colour.getValue());
|
|
}
|
|
|
|
public void setScriptStyle(ScriptStyle scriptStyle) throws WriteException {
|
|
setScriptStyle(scriptStyle.getValue());
|
|
}
|
|
|
|
public boolean isStruckout() {
|
|
return super.isStruckout();
|
|
}
|
|
|
|
public void setStruckout(boolean struckout) throws WriteException {
|
|
super.setStruckout(struckout);
|
|
}
|
|
|
|
public static FontName createFont(String fontName) {
|
|
return new FontName(fontName);
|
|
}
|
|
}
|