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

org.opencms.gwt.client.ui.A_CmsToolbarMenu Maven / Gradle / Ivy

Go to download

OpenCms is an enterprise-ready, easy to use website content management system based on Java and XML technology. Offering a complete set of features, OpenCms helps content managers worldwide to create and maintain beautiful websites fast and efficiently.

There is a newer version: 18.0
Show newest version
/*
 * This library is part of OpenCms -
 * the Open Source Content Management System
 *
 * Copyright (c) Alkacon Software GmbH (http://www.alkacon.com)
 *
 * 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.
 *
 * For further information about Alkacon Software, please see the
 * company website: http://www.alkacon.com
 *
 * For further information about OpenCms, please see the
 * project website: http://www.opencms.org
 * 
 * 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.opencms.gwt.client.ui;

/**
 * Abstract button class implementing common methods of {@link org.opencms.gwt.client.ui.I_CmsToolbarButton} 
 * for all container-page tool-bar menu buttons.

* * @param the handler class for the menu button * * @since 8.0.0 */ public abstract class A_CmsToolbarMenu extends CmsMenuButton implements I_CmsToolbarButton { /** The handler instance. */ private HANDLER m_handler; /** The CSS class responsible for displaying the proper icon. */ private String m_iconClass; /** * Constructor.

* * @param buttonData the tool-bar button data * @param handler the container-page handler */ public A_CmsToolbarMenu(I_CmsButton.ButtonData buttonData, HANDLER handler) { super(null, buttonData.getIconClass()); setToolbarMode(true); setOpenRight(true); m_handler = handler; setTitle(buttonData.getTitle()); m_iconClass = buttonData.getIconClass(); } /** * @see org.opencms.gwt.client.ui.I_CmsToolbarButton#getIconClass() */ public String getIconClass() { return m_iconClass; } /** * @see org.opencms.gwt.client.ui.CmsMenuButton#hideMenu() */ @Override public void hideMenu() { super.hideMenu(); } /** * @see org.opencms.gwt.client.ui.I_CmsToolbarButton#isActive() */ public boolean isActive() { return isOpen(); } /** * @see org.opencms.gwt.client.ui.I_CmsToolbarButton#onToolbarClick() */ public void onToolbarClick() { boolean active = isActive(); setActive(!active); } /** * @see org.opencms.gwt.client.ui.I_CmsToolbarButton#setActive(boolean) */ public void setActive(boolean active) { if (active) { m_handler.deactivateCurrentButton(); m_handler.setActiveButton(this); m_popup.catchNotifications(); onToolbarActivate(); openMenu(); } else { onToolbarDeactivate(); closeMenu(); m_handler.setActiveButton(null); m_handler.activateSelection(); } } /** * @see org.opencms.gwt.client.ui.CmsMenuButton#autoClose() */ @Override protected void autoClose() { super.autoClose(); onToolbarDeactivate(); m_handler.setActiveButton(null); m_handler.activateSelection(); } /** * Returns the container-page handler.

* * @return the container-page handler */ protected HANDLER getHandler() { return m_handler; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy