
org.swixml.layoutconverters.FormLayoutConverter Maven / Gradle / Ivy
/*--
Copyright (C) 2003-2007 Wolf Paulus.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions, and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the disclaimer that follows
these conditions in the documentation and/or other materials provided
with the distribution.
3. The end-user documentation included with the redistribution,
if any, must include the following acknowledgment:
"This product includes software developed by the
SWIXML Project (http://www.swixml.org/)."
Alternately, this acknowledgment may appear in the software itself,
if and wherever such third-party acknowledgments normally appear.
4. The name "Swixml" must not be used to endorse or promote products
derived from this software without prior written permission. For
written permission, please contact
5. Products derived from this software may not be called "Swixml",
nor may "Swixml" appear in their name, without prior written
permission from the Swixml Project Management.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE SWIXML PROJECT OR ITS
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
====================================================================
This software consists of voluntary contributions made by many
individuals on behalf of the Swixml Project and was originally
created by Wolf Paulus . For more information
on the Swixml Project, please see .
*/
package org.swixml.layoutconverters;
import java.awt.LayoutManager;
import java.util.StringTokenizer;
import org.swixml.LayoutConverter;
import org.swixml.converters.Util;
import org.swixml.dom.Attribute;
import org.w3c.dom.Attr;
import org.w3c.dom.Element;
import com.jgoodies.forms.layout.CellConstraints;
import com.jgoodies.forms.layout.FormLayout;
/**
* A layout converter for com.jgoodies.forms.layout.FormLayout
.
*
* Examples:
*
* <panel>
* <layout type="FormLayout"
* columns="p, 3dlu, p:grow"
* rows="p, 3dlu, p"/>
*
* <label constraints="1,1" text="Company"/>
* <textfield constraints="3,1"/>
* <label constraints="1,3" text="Contact"/>
* <textfield constraints="3,3"/>
* </panel>
*
*
*
* <panel>
* <layout type="FormLayout"
* columns="right:max(40dlu;pref), 3dlu, d:grow, 7dlu, right:pref, 3dlu, d:grow"
* rows="p, 3dlu, p, 9dlu, p, 3dlu, p"
* columnGroups="1,5; 3,7"/>
*
* <label constraints="1,1" text="Company"/>
* <textfield constraints="3,1,5,1"/>
* <label constraints="1,3" text="Contact"/>
* <textfield constraints="3,3,5,1"/>
*
* <label constraints="1,5" text="PTI [kW]"/>
* <textfield constraints="3,5"/>
* <label constraints="5,5" text="Power [kW]"/>
* <textfield constraints="7,5"/>
* <label constraints="1,7" text="R [mm]"/>
* <textfield constraints="3,7"/>
* <label constraints="5,7" text="D [mm]"/>
* <textfield constraints="7,7"/>
* </panel>
*
*
* @author Karl Tauber
*/
public class FormLayoutConverter implements LayoutConverter {
/**
* Returns "formlayout".
*/
public String getID() {
return "formlayout";
}
/**
* Returns always null
.
*/
public LayoutManager convertLayoutAttribute( final Attribute attr ) {
return null;
}
/**
* Creates a FormLayout instance.
*
* Attributes:
*
* columns
(required): The column specifications as documented in JGoodies FormLayout.
* row
(required): The row specifications as documented in JGoodies FormLayout.
* columnGroups
(optional): The column groups, where each column
* in a group gets the same group wide width. Groups are separated by semicolons,
* column indices in a group are separated by colons. E.g. "1,5; 3,7,9" defines
* two groups, where first group contains columns 1 and 5; and second group
* contains columns 3, 7 and 9. Note that column indices are 1-based.
* rowGroups
(optional): The row groups, where each row
* in a group gets the same group wide height. Groups are separated by semicolons,
* row indices in a group are separated by colons. E.g. "1,5; 3,7,9" defines
* two groups, where first group contains rows 1 and 5; and second group
* contains rows 3, 7 and 9. Note that row indices are 1-based.
*
*
* Examples for Valid XML element notations:
*
* <layout type="FormLayout" columns="p, 3dlu, p" rows="p, 3dlu, p"/>
* <layout type="FormLayout" columns="p, 3dlu, p, 3dlu, p, 3dlu, p" rows="p, 3dlu, p"
* columnGroups="1,5; 3,7" rowGroups="1,3"/>
*
*/
public LayoutManager convertLayoutElement( final Element element ) {
String encodedColumnSpecs = element.getAttributeNode("columns")!=null ? element.getAttribute("columns") : null;
String encodedRowSpecs = element.getAttributeNode("rows")!=null ? element.getAttribute("rows") : null;
int[][] columnGroupIndices = convertGroupIndices(element.getAttributeNode("columnGroups"));
int[][] rowGroupIndices = convertGroupIndices(element.getAttributeNode("rowGroups"));
FormLayout lm = new FormLayout( encodedColumnSpecs, encodedRowSpecs );
if (columnGroupIndices != null)
lm.setColumnGroups(columnGroupIndices);
if (rowGroupIndices != null)
lm.setRowGroups(rowGroupIndices);
return lm;
}
/**
* Creates a CellConstraints instance.
*
* Allowed syntaxes of attribute value:
*
* "x, y"
* "x, y, w, h"
* "x, y, hAlign, vAlign"
* "x, y, w, h, hAlign, vAlign"
*
* See JGoodies FormLayout for details.
*
* Examples for Valid XML attribute notations:
*
* constraints="1, 3"
* constraints="1, 3, 2, 1"
* constraints="1, 3, left, bottom"
* constraints="1, 3, 2, 1, l, b"
*
*/
public Object convertConstraintsAttribute( final Attribute attr ) {
return new CellConstraints( attr.getValue() );
}
/**
* Returns always null
.
*/
public Object convertConstraintsElement( final Element element ) {
return null;
}
private int[][] convertGroupIndices( final Attr groups ) {
if (groups == null)
return null;
StringTokenizer st = new StringTokenizer( groups.getValue(), ";" );
int[][] groupIndices = new int[st.countTokens()][];
int i = 0;
while (st.hasMoreTokens() ) {
String group = st.nextToken();
groupIndices[i++] = Util.ia(new StringTokenizer( group, "," ));
}
return groupIndices;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy