Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* {{{ header & license
* Copyright (c) 2006 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 org.xhtmlrenderer.pdf;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.xhtmlrenderer.extend.FSImage;
import org.xhtmlrenderer.extend.ReplacedElement;
import org.xhtmlrenderer.extend.ReplacedElementFactory;
import org.xhtmlrenderer.extend.UserAgentCallback;
import org.xhtmlrenderer.layout.LayoutContext;
import org.xhtmlrenderer.render.BlockBox;
import org.xhtmlrenderer.simple.extend.FormSubmissionListener;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class ITextReplacedElementFactory implements ReplacedElementFactory {
private final ITextOutputDevice _outputDevice;
private final Map _radioButtonsByElem = new HashMap<>();
private final Map> _radioButtonsByName = new HashMap<>();
public ITextReplacedElementFactory(ITextOutputDevice outputDevice) {
_outputDevice = outputDevice;
}
@Override
public ReplacedElement createReplacedElement(LayoutContext c, BlockBox box,
UserAgentCallback uac, int cssWidth, int cssHeight) {
Element e = box.getElement();
if (e == null) {
return null;
}
String nodeName = e.getNodeName();
switch (nodeName) {
case "img":
String srcAttr = e.getAttribute("src");
if (!srcAttr.isEmpty()) {
FSImage fsImage = uac.getImageResource(srcAttr).getImage();
if (fsImage != null) {
if (cssWidth != -1 || cssHeight != -1) {
fsImage.scale(cssWidth, cssHeight);
}
return new ITextImageElement(fsImage);
}
}
break;
case "input":
String type = e.getAttribute("type");
switch (type) {
case "hidden":
return new EmptyReplacedElement(1, 1);
case "checkbox":
return new CheckboxFormField(c, box, cssWidth, cssHeight);
case "radio":
RadioButtonFormField result = new RadioButtonFormField(
this, c, box, cssWidth, cssHeight);
saveResult(e, result);
return result;
default:
return new TextFormField(c, box, cssWidth, cssHeight);
}
/*
} else if (nodeName.equals("select")) {//TODO Support select
return new SelectFormField(c, box, cssWidth, cssHeight);
} else if (isTextarea(e)) {//TODO Review if this is needed the textarea item prints fine currently
return new TextAreaFormField(c, box, cssWidth, cssHeight);
*/
case "bookmark":
// HACK Add box as named anchor and return placeholder
BookmarkElement result = new BookmarkElement();
if (e.hasAttribute("name")) {
String name = e.getAttribute("name");
c.addBoxId(name, box);
result.setAnchorName(name);
}
return result;
}
return null;
}
private boolean isTextarea(Element e) {
if (!e.getNodeName().equals("textarea")) {
return false;
}
Node n = e.getFirstChild();
while (n != null) {
short nodeType = n.getNodeType();
if (nodeType != Node.TEXT_NODE && nodeType != Node.CDATA_SECTION_NODE) {
return false;
}
}
return true;
}
private void saveResult(Element e, RadioButtonFormField result) {
_radioButtonsByElem.put(e, result);
String fieldName = result.getFieldName(_outputDevice, e);
List fields = _radioButtonsByName.computeIfAbsent(fieldName, k -> new ArrayList<>());
fields.add(result);
}
@Override
public void reset() {
_radioButtonsByElem.clear();
_radioButtonsByName.clear();
}
@Override
public void remove(Element e) {
RadioButtonFormField field = _radioButtonsByElem.remove(e);
if (field != null) {
String fieldName = field.getFieldName(_outputDevice, e);
List values = _radioButtonsByName.get(fieldName);
if (values != null) {
values.remove(field);
if (values.isEmpty()) {
_radioButtonsByName.remove(fieldName);
}
}
}
}
public void remove(String fieldName) {
List values = _radioButtonsByName.get(fieldName);
if (values != null) {
for (RadioButtonFormField field : values) {
_radioButtonsByElem.remove(field.getBox().getElement());
}
}
_radioButtonsByName.remove(fieldName);
}
public List getRadioButtons(String name) {
return _radioButtonsByName.get(name);
}
@Override
public void setFormSubmissionListener(FormSubmissionListener listener) {
// nothing to do, form submission is handled by pdf readers
}
}