All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.icefaces.ace.component.menubar.MenuBarMeta Maven / Gradle / Ivy

The newest version!
/*
 * 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.menubar;

import org.icefaces.ace.component.menu.AbstractMenu;
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 = "menuBar",
        componentClass = "org.icefaces.ace.component.menubar.MenuBar",
        rendererClass = "org.icefaces.ace.component.menubar.MenuBarRenderer",
        generatedClass = "org.icefaces.ace.component.menubar.MenuBarBase",
        extendsClass = "org.icefaces.ace.component.menu.AbstractMenu",
        componentFamily = "org.icefaces.ace.component.Menu",
        componentType = "org.icefaces.ace.component.MenuBar",
        rendererType = "org.icefaces.ace.component.MenuBarRenderer",
        tlddoc = "Menubar is a horizontal navigation component." +
                 "

For more information, see the " + "MenuBar 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 MenuBarMeta extends UIComponentBaseMeta { @Property(tlddoc = "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 = "When set to true, submenus are displayed on mouseover of a menuitem.") private boolean autoSubmenuDisplay; @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="Forces the direction in which the submenus will be displayed, regardless of the position of the menu in the viewport. Possible values are combinations of \"up\", \"down\", and \"middle\" with \"left\", \"right\", and \"center\", separated by a space. The value \"auto\" can also be used in place of any of those values (e.g. \"up\", \"up right\", \"left\", \"left auto\", \"center\"). Note that the \"center\" value only applies to first-level submenus, while the \"middle\" value only applies to deeper-level submenus (i.e. all but first-level submenus).", defaultValue = "auto") private String direction; @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 resolving dependence on AbstractMenu when compiling Base class @Field private String submenuLabels; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy