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

org.opencms.acacia.client.css.I_CmsWidgetsLayoutBundle 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 & Co. KG (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.acacia.client.css;

import org.opencms.acacia.client.css.I_CmsLayoutBundle.I_Widgets;
import org.opencms.gwt.client.ui.css.I_CmsFloatDecoratedPanelCss;

import com.google.gwt.core.shared.GWT;
import com.google.gwt.resources.client.CssResource.Shared;

/**
 * CSS resource bundle for the acacia editor widgets.

*/ public interface I_CmsWidgetsLayoutBundle extends org.opencms.gwt.client.ui.css.I_CmsLayoutBundle { /** The gallery widget CSS. */ @Shared interface I_CmsGalleryWidgetsCss extends I_Widgets, I_CmsLocationPickerBase, org.opencms.ade.galleries.client.ui.css.I_CmsLayoutBundle.I_CmsGalleryFieldBaseCss { // no additional CSS classes } /** The XML content widget CSS. */ @Shared interface I_CmsWidgetCss extends I_Widgets, I_CmsFloatDecoratedPanelCss, I_CmsGlobalWidgetCss { /** * Css class reader.

* * @return the css class */ String calendarStyle(); /** * Css class reader.

* * @return the css class */ String categoryPanel(); /** * Css class reader.

* * @return the css class */ String checkboxlabel(); /** * Css class reader.

* * @return the css class */ String checkBoxStyle(); /** * Css class reader.

* * @return the css class */ String colorPicker(); /** * Css class reader.

* * @return the css class */ String colorpickerpopup(); /** * Css class reader.

* * @return the css class */ String colorPickerValue(); /** * Css class reader.

* * @return the css class */ String comboBoxInput(); /** * Css class reader.

* * @return the css class */ String displayTextBox(); /** * Css class reader.

* * @return the css class */ String displayTextBoxPanel(); /** * Css class reader.

* * @return the css class */ String inputField(); /** * Css class reader.

* * @return the css class */ String passwordTextBox(); /** * Css class reader.

* * @return the css class */ String radioButtonlabel(); /** * Css class reader.

* * @return the css class */ String radioButtonPanel(); /** * Css class reader.

* * @return the css class */ String selectBoxPanel(); /** * Css class reader.

* * @return the css class */ String textBox(); /** * Css class reader.

* * @return the css class */ String vfsInputBox(); } /** The bundle instance. */ I_CmsWidgetsLayoutBundle INSTANCE = GWT.create(I_CmsWidgetsLayoutBundle.class); /** * Access method.

* * @return the gallery widgets CSS */ @Source("galleryWidgets.css") I_CmsGalleryWidgetsCss galleryWidgetsCss(); /** * Access method.

* * @return the XML content widget CSS */ @Source("widget.css") I_CmsWidgetCss widgetCss(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy