001/*
002 * This library is part of OpenCms -
003 * the Open Source Content Management System
004 *
005 * Copyright (c) Alkacon Software GmbH (http://www.alkacon.com)
006 *
007 * This library is free software; you can redistribute it and/or
008 * modify it under the terms of the GNU Lesser General Public
009 * License as published by the Free Software Foundation; either
010 * version 2.1 of the License, or (at your option) any later version.
011 *
012 * This library is distributed in the hope that it will be useful,
013 * but WITHOUT ANY WARRANTY; without even the implied warranty of
014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015 * Lesser General Public License for more details.
016 *
017 * For further information about Alkacon Software, please see the
018 * company website: http://www.alkacon.com
019 *
020 * For further information about OpenCms, please see the
021 * project website: http://www.opencms.org
022 *
023 * You should have received a copy of the GNU Lesser General Public
024 * License along with this library; if not, write to the Free Software
025 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
026 */
027
028package org.opencms.acacia.client.widgets.serialdate;
029
030import org.opencms.acacia.client.css.I_CmsLayoutBundle.I_Widgets;
031import org.opencms.gwt.client.ui.css.I_CmsConstantsBundle;
032
033import com.google.gwt.core.client.GWT;
034import com.google.gwt.resources.client.CssResource.Import;
035
036/**
037 * Content editor CSS resources bundle.<p>
038 */
039public interface I_CmsLayoutBundle extends org.opencms.gwt.client.ui.css.I_CmsLayoutBundle {
040
041    /** The XML content widget CSS. */
042    interface I_CmsWidgetCss extends I_Widgets {
043
044        /**
045         * Css class reader.<p>
046         *
047         * @return the css class
048         */
049        String button();
050
051        /**
052         * Css class reader.<p>
053         *
054         * @return the css class
055         */
056        String ordinalTextBox();
057
058        /**
059         * Css class reader.<p>
060         *
061         * @return the css class
062         */
063        String patternInput();
064
065        /**
066         * Css class reader.<p>
067         *
068         * @return the css class
069         */
070        String patternRadio();
071
072        /**
073         * Css class reader.<p>
074         *
075         * @return the css class
076         */
077        String patternRow();
078
079        /**
080         * Css class reader.<p>
081         *
082         * @return the css class
083         */
084        String radioButtonStyle();
085
086        /**
087         * Css class reader.<p>
088         *
089         * @return the css class
090         */
091        String serialDateWidget();
092
093        /**
094         * Css class reader.<p>
095         *
096         * @return the css class
097         */
098        String shortTextBox();
099
100        /**
101         * Css class reader.<p>
102         *
103         * @return the css class
104         */
105        String statusLabel();
106    }
107
108    /** The bundle instance. */
109    I_CmsLayoutBundle INSTANCE = GWT.create(I_CmsLayoutBundle.class);
110
111    /**
112     * @see org.opencms.gwt.client.ui.css.I_CmsLayoutBundle#constants()
113     */
114    I_CmsConstantsBundle constants();
115
116    /**
117     * Access method.<p>
118     *
119     * @return the XML content widget CSS
120     */
121    @Source("widget.gss")
122    @Import(value = {
123        I_CmsFieldsetCss.class,
124        org.opencms.acacia.client.css.I_CmsWidgetsLayoutBundle.I_CmsWidgetCss.class,
125        org.opencms.acacia.client.css.I_CmsLayoutBundle.I_Style.class,
126        I_CmsButtonCss.class})
127    I_CmsWidgetCss widgetCss();
128
129}