blob: 97be9a2a96b3a5405ae8248aeec78b879bcaa086 [file] [log] [blame]
// Copyright 2004, 2005 The Apache Software Foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package org.apache.tapestry.form;
import java.awt.Point;
import org.apache.tapestry.IAsset;
import org.apache.tapestry.IForm;
import org.apache.tapestry.IMarkupWriter;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.Tapestry;
/**
* Used to create an image button inside a {@link Form}. Although it is occasionally useful to know
* the {@link Point}on the image that was clicked (i.e., use the image as a kind of image map,
* which was the original intent of the HTML element), it is more commonly used to provide a graphic
* image for the user to click, rather than the rather plain &lt;input type=submit&gt;. [ <a
* href="../../../../../ComponentReference/ImageSubmit.html">Component Reference </a>]
*
* @author Howard Lewis Ship
*/
public abstract class ImageSubmit extends Submit
{
/**
* @see org.apache.tapestry.form.AbstractFormComponent#setName(org.apache.tapestry.IForm)
*/
protected void setName(IForm form)
{
String nameOverride = getNameOverride();
setName((nameOverride == null) ? form.getElementId(this) : form.getElementId(this, nameOverride));
}
protected boolean isClicked(IRequestCycle cycle, String name)
{
String parameterName = name + ".x";
// the name.x parameter is not set for asynchronous submits
String value = cycle.getParameter(FormConstants.SUBMIT_NAME_PARAMETER);
return (cycle.getParameter(parameterName) != null) || name.equals(value);
}
protected void renderFormComponent(IMarkupWriter writer, IRequestCycle cycle)
{
boolean disabled = isDisabled();
IAsset disabledImage = getDisabledImage();
IAsset finalImage = (disabled && disabledImage != null) ? disabledImage : getImage();
String imageURL = finalImage.buildURL();
writer.beginEmpty("input");
writer.attribute("type", "image");
writer.attribute("name", getName());
if (disabled)
writer.attribute("disabled", "disabled");
writer.attribute("src", imageURL);
renderIdAttribute(writer, cycle);
renderInformalParameters(writer, cycle);
renderSubmitBindings(writer, cycle);
writer.closeTag();
}
void handleClick(IRequestCycle cycle, IForm form)
{
// The point parameter is not really used, unless the
// ImageButton is used for its original purpose (as a kind
// of image map). In modern usage, we only care about
// whether the user clicked on the image (and thus submitted
// the form), not where in the image the user actually clicked.
if (isParameterBound("point"))
{
int x = Integer.parseInt(cycle.getParameter(getName() + ".x"));
int y = Integer.parseInt(cycle.getParameter(getName() + ".y"));
setPoint(new Point(x, y));
}
super.handleClick(cycle, form);
}
/** parameter. */
public abstract IAsset getDisabledImage();
/** parameter. */
public abstract IAsset getImage();
/** parameter. */
public abstract String getNameOverride();
/** parameter. */
public abstract void setPoint(Point point);
protected void prepareForRender(IRequestCycle cycle)
{
super.prepareForRender(cycle);
if (getImage() == null)
throw Tapestry.createRequiredParameterException(this, "image");
}
}