org.icefaces.ace.component.menu.MenuMeta Maven / Gradle / Ivy
Show all versions of icefaces-ace Show documentation
/*
* Copyright 2004-2014 ICEsoft Technologies Canada Corp.
*
* 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.icefaces.ace.component.menu;
import org.icefaces.ace.meta.annotation.Component;
import org.icefaces.ace.meta.annotation.Property;
import org.icefaces.ace.meta.annotation.Field;
import org.icefaces.ace.meta.baseMeta.UIComponentBaseMeta;
import org.icefaces.ace.model.MenuModel;
import org.icefaces.ace.resources.ACEResourceNames;
import org.icefaces.resources.ICEResourceDependencies;
import org.icefaces.resources.ICEResourceDependency;
import org.icefaces.resources.ICEResourceLibrary;
@Component(
tagName = "menu",
componentClass = "org.icefaces.ace.component.menu.Menu",
rendererClass = "org.icefaces.ace.component.menu.MenuRenderer",
generatedClass = "org.icefaces.ace.component.menu.MenuBase",
extendsClass = "org.icefaces.ace.component.menu.AbstractMenu",
componentFamily = "org.icefaces.ace.component.Menu",
componentType = "org.icefaces.ace.component.Menu",
rendererType = "org.icefaces.ace.component.MenuRenderer",
tlddoc = "Menu is a navigation component with various customized modes like multi tiers, overlay " +
"and nested menus." +
"For more information, see the " +
"Menu Wiki Documentation."
)
@ICEResourceLibrary(ACEResourceNames.ACE_LIBRARY)
@ICEResourceDependencies({
@ICEResourceDependency(name = "util/ace-core.js"),
@ICEResourceDependency(name = "jquery/jquery.js"),
@ICEResourceDependency(name = "util/ace-jquery-ui.js"),
@ICEResourceDependency(name = "util/ace-menu.js")
})
public class MenuMeta extends UIComponentBaseMeta {
@Property(tlddoc = "org.icefaces.ace.model.MenuModel instance to create menus programmatically. " +
"For the menuitem and submenu components, use explicit ids, and " +
"avoid long processing in the getter method for this property, " +
"as it will be called multiple times, in every lifecycle. If using MyFaces, see wiki page for some known issues.")
private MenuModel model;
@Property(tlddoc="Server-side id of the component that will trigger the dynamic menu when the triggerEvent occurs. Used when position is dynamic. It is also possible to specify a client-side id of a plain HTML element on the page.")
private String trigger;
@Property(tlddoc="When position is dynamic, this attribute specifies the corner of the menu to align with the trigger element. The format is \"<left|right> <top|bottom>\" (examples: \"left top\", \"right bottom\").", defaultValue="left top")
private String my;
@Property(tlddoc="When position is dynamic, this attribute specifies the corner of trigger element to align with the menu. The format is \"<left|right> <top|bottom>\" (examples: \"left top\", \"right bottom\").", defaultValue="left bottom")
private String at;
@Property(tlddoc = "Sets the way the menu is placed on the page. When \"static\", the menu is displayed in the normal flow." +
" When set to \"dynamic\", the menu is only displayed near the trigger component when the triggerEvent occurs. For the latter case, it is required to specify a trigger component.",
defaultValue = "static")
private String position;
@Property(tlddoc = "Sets the tiered mode, when set to true menu will be rendered in different tiers.")
private boolean tiered;
@Property(tlddoc = "Type of menu, valid values are \"plain\", \"tiered\" and \"sliding\".", defaultValue = "plain")
private String type;
@Property(tlddoc = "Sets the effect for the menu display, default value is FADE. Possible values are" +
" \"FADE\", \"SLIDE\", \"NONE\". Use \"NONE\" to disable animation at all.", defaultValue = "fade")
private String effect;
@Property(tlddoc = "Sets the effect duration in milliseconds.", defaultValue = "400")
private int effectDuration;
@Property(tlddoc = "determines how many millisenconds to delay before hiding the submenu in a fly-out menu", defaultValue="400")
private int hideDelay;
@Property(tlddoc="determines how many milliseconds to delay before showing the submenu in a fly-out menu", defaultValue="400")
private int showDelay;
@Property(tlddoc = "Style of the main container element.")
private String style;
@Property(tlddoc = "Style class of the main container element.")
private String styleClass;
@Property(tlddoc = "zindex property to control overlapping with other elements.", defaultValue = "1")
private int zindex;
@Property(tlddoc="Label for the 'back' link (only applies to sliding menus).", defaultValue = "Back")
private String backLabel;
@Property(tlddoc="Maximum height (in pixels) for the menu (only applies to sliding menus).", defaultValue = "200")
private int maxHeight;
@Property(tlddoc="Event that will trigger the menu to show, when position is dynamic. The possible values are \"click\", \"mouseenter\", \"dblclick\", and \"rtclick\".", defaultValue = "click")
private String triggerEvent;
@Property(tlddoc = "Set to true when the entire menu needs to be updated in the client, such as when an individual menu item changes label or styling, and the entire menu needs to be reinitialized in the client in order to get all the styling and behaviour re-applied to the new HTML nodes. The value of this attribute will be automatically set to false by the component after consuming it (if applicable).", defaultValue = "false")
private Boolean forceMenuUpdate;
@Field(defaultValue = "0", defaultValueIsStringLiteral = false)
protected Integer forceUpdateCounter;
private AbstractMenu am; // need this for solving dependence on AbstractMenu when compiling MenuBase
@Field
private String submenuLabels;
}