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

org.opencms.gwt.client.ui.I_CmsButton 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;

import org.opencms.gwt.client.Messages;
import org.opencms.gwt.client.ui.css.I_CmsLayoutBundle;
import org.opencms.gwt.client.ui.css.I_CmsToolbarButtonLayoutBundle;
import org.opencms.gwt.client.ui.css.I_CmsToolbarButtonLayoutBundle.I_CmsExtendedToolbarButtonCss;

/**
 * Interface to hold button related enumerations. To be used with {@link org.opencms.gwt.client.ui.CmsPushButton}
 * and {@link org.opencms.gwt.client.ui.CmsToggleButton}.

*/ public interface I_CmsButton { /** Available button colors. */ public enum ButtonColor { /** Button color. */ BLACK(I_CmsLayoutBundle.INSTANCE.buttonCss().black()), /** Button color. */ BLUE(I_CmsLayoutBundle.INSTANCE.buttonCss().blue()), /** Button color. */ GRAY(I_CmsLayoutBundle.INSTANCE.buttonCss().gray()), /** Button color. */ GREEN(I_CmsLayoutBundle.INSTANCE.buttonCss().green()), /** Button color. */ RED(I_CmsLayoutBundle.INSTANCE.buttonCss().red()), /** Button color. */ YELLOW(I_CmsLayoutBundle.INSTANCE.buttonCss().yellow()); /** The list of additional style class names for this button style. */ private String m_className; /** * Constructor.

* * @param className the additional classes */ private ButtonColor(String className) { m_className = className; } /** * Returns the additional classes.

* * @return the additional classes */ public String getClassName() { return m_className; } } /** Available button icons. */ public enum ButtonData { /** Toolbar button. */ ADD(BUTTON_CSS.toolbarAdd(), Messages.get().key(Messages.GUI_TOOLBAR_ADD_0)), /** Toolbar button. */ ADD_TO_FAVORITES(BUTTON_CSS.toolbarClipboard(), Messages.get().key(Messages.GUI_TOOLBAR_ADD_TO_FAVORITES_0)), /** Toolbar button. */ BACK(BUTTON_CSS.toolbarBack(), Messages.get().key(Messages.GUI_TOOLBAR_BACK_0)), /** Toolbar button. */ CLIPBOARD(BUTTON_CSS.toolbarClipboard(), Messages.get().key(Messages.GUI_TOOLBAR_CLIPBOARD_0)), /** Toolbar button. */ CONTEXT(BUTTON_CSS.toolbarContext(), Messages.get().key(Messages.GUI_TOOLBAR_CONTEXT_0)), /** Toolbar button. */ COPY_LOCALE(BUTTON_CSS.toolbarCopyLocale(), Messages.get().key(Messages.GUI_TOOLBAR_COPY_LOCALE_0)), /** Toolbar button. */ DELETE(BUTTON_CSS.toolbarDelete(), Messages.get().key(Messages.GUI_TOOLBAR_DELETE_0)), /** Toolbar button. */ EDIT(BUTTON_CSS.toolbarEdit(), Messages.get().key(Messages.GUI_TOOLBAR_EDIT_0)), /** Toolbar button. */ ELEMENT_INFO(BUTTON_CSS.toolbarElementInfo(), Messages.get().key(Messages.GUI_TOOLBAR_ELEMENT_INFO_0)), /** Toolbar button. */ GALLERY(BUTTON_CSS.toolbarGallery(), Messages.get().key(Messages.GUI_TOOLBAR_GALLERY_0)), /** Toolbar button. */ INFO(BUTTON_CSS.toolbarInfo(), Messages.get().key(Messages.GUI_TOOLBAR_INFO_0)), /** Inherited element button. */ INHERITED(BUTTON_CSS.toolbarInherited(), Messages.get().key(Messages.GUI_TOOLBAR_INHERITED_0)), /** Toolbar button. */ MOVE(BUTTON_CSS.toolbarMove(), Messages.get().key(Messages.GUI_TOOLBAR_MOVE_IN_0)), /** Toolbar button. */ NEW(BUTTON_CSS.toolbarNew(), Messages.get().key(Messages.GUI_TOOLBAR_NEW_0)), /** Toolbar button. */ PROPERTIES(BUTTON_CSS.toolbarProperties(), Messages.get().key(Messages.GUI_TOOLBAR_PROPERTIES_0)), /** Toolbar button. */ PUBLISH(BUTTON_CSS.toolbarPublish(), Messages.get().key(Messages.GUI_TOOLBAR_PUBLISH_0)), /** Toolbar button. */ REFRESH(BUTTON_CSS.toolbarRefresh(), Messages.get().key(Messages.GUI_TOOLBAR_REFRESH_0)), /** Toolbar button. */ REMOVE(BUTTON_CSS.toolbarRemove(), Messages.get().key(Messages.GUI_TOOLBAR_REMOVE_0)), /** Toolbar button. */ RESET(BUTTON_CSS.toolbarReset(), Messages.get().key(Messages.GUI_TOOLBAR_RESET_0)), /** Toolbar button. */ SAVE(BUTTON_CSS.toolbarSave(), Messages.get().key(Messages.GUI_TOOLBAR_SAVE_0)), /** Toolbar button. */ SELECTION(BUTTON_CSS.toolbarSelection(), Messages.get().key(Messages.GUI_TOOLBAR_SELECTION_0)), /** Shows formerly hidden elements. */ SHOW(BUTTON_CSS.toolbarNew(), Messages.get().key(Messages.GUI_TOOLBAR_ADD_0)), /** Toolbar button. */ SHOWSMALL(BUTTON_CSS.toolbarShowSmall(), Messages.get().key(Messages.GUI_TOOLBAR_SHOWSMALL_0)), /** Toolbar button. */ SITEMAP(BUTTON_CSS.toolbarSitemap(), Messages.get().key(Messages.GUI_TOOLBAR_SITEMAP_0)), /** Toolbar button. */ TOGGLE_HELP(BUTTON_CSS.toolbarToggleHelp(), Messages.get().key(Messages.GUI_TOOLBAR_TOGGLE_HELP_0)); /** The icon class name. */ private String m_iconClass; /** The title. */ private String m_title; /** * Constructor.

* * @param iconClass the icon class name * @param title the title */ private ButtonData(String iconClass, String title) { m_iconClass = iconClass; m_title = title; } /** * Returns the CSS class name.

* * @return the CSS class name */ public String getIconClass() { return m_iconClass; } /** * Returns the title.

* * @return the title */ public String getTitle() { return m_title; } } /** Available button styles. */ public enum ButtonStyle { /** Menu button. */ IMAGE(I_CmsLayoutBundle.INSTANCE.buttonCss().cmsImageButton(), I_CmsLayoutBundle.INSTANCE.generalCss().cornerAll()), /** Menu button. */ MENU(I_CmsLayoutBundle.INSTANCE.buttonCss().cmsMenuButton(), I_CmsLayoutBundle.INSTANCE.generalCss().cornerAll()), /** Default button. */ TEXT(I_CmsLayoutBundle.INSTANCE.buttonCss().cmsTextButton(), I_CmsLayoutBundle.INSTANCE.generalCss().buttonCornerAll()), /** Transparent button. */ TRANSPARENT(I_CmsLayoutBundle.INSTANCE.buttonCss().cmsTransparentButton(), I_CmsLayoutBundle.INSTANCE.generalCss().cornerAll()); /** The list of additional style class names for this button style. */ private String[] m_additionalClasses; /** * Constructor.

* * @param additionalClasses the additional classes */ private ButtonStyle(String... additionalClasses) { m_additionalClasses = additionalClasses; } /** * Returns the additional classes.

* * @return the additional classes */ public String[] getAdditionalClasses() { return m_additionalClasses; } /** * Returns the classes stored in the array as space separated list.

* * @return the classes stored in the array as space separated list */ public String getCssClassName() { StringBuffer sb = new StringBuffer(); for (String addClass : m_additionalClasses) { sb.append(addClass + " "); } return sb.toString(); } } /** CSS style variants. */ public static enum Size { /** Big button style. */ big(I_CmsLayoutBundle.INSTANCE.buttonCss().cmsButtonBig()), /** Medium button style. */ medium(I_CmsLayoutBundle.INSTANCE.buttonCss().cmsButtonMedium()), /** Small button style. */ small(I_CmsLayoutBundle.INSTANCE.buttonCss().cmsButtonSmall()); /** The CSS class name. */ private String m_cssClassName; /** * Constructor.

* * @param cssClassName the CSS class name */ Size(String cssClassName) { m_cssClassName = cssClassName; } /** * Returns the CSS class name of this style.

* * @return the CSS class name */ public String getCssClassName() { return m_cssClassName; } } /** The CSS bundle for the toolbar buttons. */ I_CmsExtendedToolbarButtonCss BUTTON_CSS = I_CmsToolbarButtonLayoutBundle.INSTANCE.toolbarButtonCss(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy