org.metawidget.swt.widgetbuilder.ReadOnlyWidgetBuilder Maven / Gradle / Ivy
// Metawidget
//
// This library 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 library 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 library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package org.metawidget.swt.widgetbuilder;
import static org.metawidget.inspector.InspectionResultConstants.*;
import java.util.Collection;
import java.util.Date;
import java.util.Map;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Text;
import org.metawidget.swt.Stub;
import org.metawidget.swt.SwtMetawidget;
import org.metawidget.swt.SwtValuePropertyProvider;
import org.metawidget.util.WidgetBuilderUtils;
import org.metawidget.widgetbuilder.iface.WidgetBuilder;
/**
* WidgetBuilder for SWT environments.
*
* Creates native SWT read-only Controls
, such as Labels
, to suit the
* inspected fields.
*
* @author Richard Kennard
*/
public class ReadOnlyWidgetBuilder
implements WidgetBuilder, SwtValuePropertyProvider {
//
// Public methods
//
public String getValueProperty( Control control ) {
if ( control instanceof Label ) {
return "text";
}
return null;
}
public Control buildWidget( String elementName, Map attributes, SwtMetawidget metawidget ) {
// Not read-only?
if ( !WidgetBuilderUtils.isReadOnly( attributes ) ) {
return null;
}
// Hidden
if ( TRUE.equals( attributes.get( HIDDEN ) ) ) {
return new Stub( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
// Action
if ( ACTION.equals( elementName ) ) {
Button button = new Button( metawidget.getCurrentLayoutComposite(), SWT.NONE );
button.setText( metawidget.getLabelString( attributes ) );
button.setEnabled( false );
return button;
}
// Masked (return a Composite, so that we DO still render a label)
if ( TRUE.equals( attributes.get( MASKED ) ) ) {
return new Composite( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
// Lookups
String lookup = attributes.get( LOOKUP );
if ( lookup != null && !"".equals( lookup ) ) {
return new Label( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
// Lookup the Class
Class> clazz = WidgetBuilderUtils.getActualClassOrType( attributes, String.class );
if ( clazz != null ) {
// Primitives
if ( clazz.isPrimitive() ) {
return new Label( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
if ( String.class.equals( clazz ) ) {
if ( TRUE.equals( attributes.get( LARGE ) ) ) {
return new Text( metawidget.getCurrentLayoutComposite(), SWT.READ_ONLY | SWT.MULTI | SWT.BORDER | SWT.V_SCROLL | SWT.WRAP );
}
return new Label( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
if ( Character.class.equals( clazz ) ) {
return new Label( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
if ( Date.class.equals( clazz ) ) {
return new Label( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
if ( Boolean.class.equals( clazz ) ) {
return new Label( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
if ( Number.class.isAssignableFrom( clazz ) ) {
return new Label( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
// Collections
if ( Collection.class.isAssignableFrom( clazz ) ) {
return new Stub( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
}
// Not simple, but don't expand
if ( TRUE.equals( attributes.get( DONT_EXPAND ) ) ) {
return new Label( metawidget.getCurrentLayoutComposite(), SWT.NONE );
}
// Nested Metawidget
return null;
}
}