org.richfaces.component.AbstractToolbarGroup Maven / Gradle / Ivy
The newest version!
/*
* JBoss, Home of Professional Open Source
* Copyright ${year}, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This 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 software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.richfaces.component;
import java.util.ArrayList;
import java.util.List;
import javax.faces.FacesException;
import javax.faces.component.UIComponent;
import javax.faces.component.UIComponentBase;
import org.richfaces.cdk.annotations.Attribute;
import org.richfaces.cdk.annotations.EventName;
import org.richfaces.cdk.annotations.JsfComponent;
import org.richfaces.cdk.annotations.JsfRenderer;
import org.richfaces.cdk.annotations.Tag;
import org.richfaces.renderkit.html.ToolbarGroupRenderer;
/**
* The <rich:toolbarGroup> component is a child component of the <rich:toolbar> component. The
* <rich:toolbarGroup> component is used to group a number of items together on a toolbar.
*/
@JsfComponent(family = AbstractToolbar.COMPONENT_FAMILY, type = AbstractToolbarGroup.COMPONENT_TYPE, renderer = @JsfRenderer(type = ToolbarGroupRenderer.RENDERER_TYPE), tag = @Tag(name = "toolbarGroup"))
public abstract class AbstractToolbarGroup extends UIComponentBase {
public static final String COMPONENT_TYPE = "org.richfaces.ToolbarGroup";
/**
* Location of the toolbar items in the parent toolbar. Can be one of "left" or "right"
* Default is "left"
*/
@Attribute
public abstract String getLocation();
/**
* CSS style(s) to be applied when the item elements are rendered.
*/
@Attribute
public abstract String getItemClass();
/**
* Space-separated list of CSS style class(es) to be applied when the item element is rendered. This value must be
* passed through as the "class" attribute on generated markup.
*/
@Attribute
public abstract String getItemStyle();
/**
* A separator between items on a bar. Possible values are "none", "line", "square", "disc" and "grid".
* Default value is "none".
*/
@Attribute
public abstract String getItemSeparator();
/**
* The client-side script method to be called when an item is clicked
*/
@Attribute(events = @EventName("itemclick"))
public abstract String getOnitemclick();
/**
* The client-side script method to be called when an item is double-clicked
*/
@Attribute(events = @EventName("itemdblclick"))
public abstract String getOnitemdblclick();
/**
* The client-side script method to be called when a mouse button is pressed down over an item
*/
@Attribute(events = @EventName("itemmousedown"))
public abstract String getOnitemmousedown();
/**
* The client-side script method to be called when a mouse button is released over an item
*/
@Attribute(events = @EventName("itemmouseup"))
public abstract String getOnitemmouseup();
/**
* The client-side script method to be called when a pointer is moved onto an item
*/
@Attribute(events = @EventName("itemmouseover"))
public abstract String getOnitemmouseover();
/**
* The client-side script method to be called when a pointer is moved within an item
*/
@Attribute(events = @EventName("itemmousemove"))
public abstract String getOnitemmousemove();
/**
* The client-side script method to be called when a pointer is moved away from an item
*/
@Attribute(events = @EventName("itemmouseout"))
public abstract String getOnitemmouseout();
/**
* The client-side script method to be called when a key is pressed and released over an item
*/
@Attribute(events = @EventName("itemkeypress"))
public abstract String getOnitemkeypress();
/**
* The client-side script method to be called when a key is pressed down over the element
*/
@Attribute(events = @EventName("itemkeydown"))
public abstract String getOnitemkeydown();
/**
* The client-side script method to be called when a key is released
*/
@Attribute(events = @EventName("itemkeyup"))
public abstract String getOnitemkeyup();
public AbstractToolbar getToolBar() {
UIComponent component = this.getParent();
if (component == null) {
throw new FacesException("The component: " + this.getClientId(getFacesContext()) + " is not nested within "
+ AbstractToolbar.class.getSimpleName());
} else if (!(component instanceof AbstractToolbar)) {
throw new FacesException("The component: " + this.getClientId(getFacesContext()) + " is not a direct child of "
+ AbstractToolbar.class.getSimpleName());
}
return (AbstractToolbar) component;
}
public List getRenderedChildren() {
List children = this.getChildren();
List renderedChildren = new ArrayList(children.size());
for (UIComponent child : children) {
if (child.isRendered()) {
renderedChildren.add(child);
}
}
return renderedChildren;
}
}