com.openhtmltopdf.css.sheet.PageRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
The newest version!
/*
* {{{ header & license
* Copyright (c) 2007 Wisconsin Court System
*
* This program 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 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.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* }}}
*/
package com.openhtmltopdf.css.sheet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.openhtmltopdf.css.constants.MarginBoxName;
public class PageRule implements RulesetContainer {
private String _name;
private String _pseudoPage;
private Ruleset _ruleset;
private int _origin;
private final Map> _marginBoxes = new HashMap<>();
private List _footnoteArea = null;
private int _pos;
private int _specificityF;
private int _specificityG;
private int _specificityH;
public PageRule(int origin) {
_origin = origin;
}
public String getPseudoPage() {
return _pseudoPage;
}
public void setPseudoPage(String pseudoPage) {
_pseudoPage = pseudoPage;
if (pseudoPage.equals("first")) {
_specificityG = 1;
} else {
_specificityH = 1;
}
}
public Ruleset getRuleset() {
return _ruleset;
}
public void setRuleset(Ruleset ruleset) {
_ruleset = ruleset;
}
@Override
public void addContent(Ruleset ruleset) {
if (_ruleset != null) {
throw new IllegalStateException("Ruleset has already been set");
}
_ruleset = ruleset;
}
@Override
public int getOrigin() {
return _origin;
}
public void setOrigin(int origin) {
_origin = origin;
}
public String getName() {
return _name;
}
public void setName(String name) {
_name = name;
_specificityF = 1;
}
public List getMarginBoxProperties(MarginBoxName name) {
return _marginBoxes.get(name);
}
public void addMarginBoxProperties(MarginBoxName name, List props) {
_marginBoxes.put(name, props);
}
public Map> getMarginBoxes() {
return _marginBoxes;
}
public long getOrder() {
long result = 0;
result |= (long)_specificityF << 32;
result |= (long)_specificityG << 24;
result |= (long)_specificityH << 16;
result |= _pos;
return result;
}
public boolean applies(String pageName, String pseudoPage) {
if (_name == null && _pseudoPage == null) {
return true;
} else if (_name == null && _pseudoPage != null &&
(_pseudoPage.equals(pseudoPage) ||
(_pseudoPage.equals("right") && pseudoPage != null && pseudoPage.equals("first")))) { // assume first page is a right page
return true;
} else if (_name != null && _name.equals(pageName) && _pseudoPage == null) {
return true;
} else if (_name != null && _name.equals(pageName) &&
_pseudoPage != null && _pseudoPage.equals(pseudoPage)) {
return true;
}
return false;
}
public int getPos() {
return _pos;
}
public void setPos(int pos) {
_pos = pos;
}
public void addFootnoteAreaProperties(List propertyDeclarations) {
this._footnoteArea = propertyDeclarations;
}
public List getFootnoteAreaProperties() {
return this._footnoteArea;
}
}