001/*
002 * This library is part of OpenCms -
003 * the Open Source Content Management System
004 *
005 * Copyright (c) Alkacon Software GmbH & Co. KG (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.ade.sitemap.client.ui.css;
029
030import com.google.gwt.core.client.GWT;
031import com.google.gwt.resources.client.CssResource;
032
033/**
034 * Resource bundle to access CSS and image resources.<p>
035 *
036 * @since 8.0.0
037 */
038public interface I_CmsSitemapLayoutBundle extends org.opencms.gwt.client.ui.css.I_CmsLayoutBundle {
039
040    /** Clipboard CSS. */
041    interface I_CmsClipboardCss extends CssResource {
042
043        /** Access method.<p>
044         *
045         * @return the CSS class name
046         */
047        String clipboardList();
048
049        /** Access method.<p>
050         *
051         * @return the CSS class name
052         */
053        String listClearButton();
054
055        /** Access method.<p>
056         *
057         * @return the CSS class name
058         */
059        String menuTabContainer();
060    }
061
062    /** Root CSS. */
063    interface I_CmsSitemapCss extends CssResource {
064
065        /** Access method.<p>
066        *
067        * @return the CSS class name
068        */
069        String headerContainer();
070
071        /** Access method.<p>
072        *
073        * @return the CSS class name
074        */
075        String headerContainerVaadinMode();
076
077        /** Access method.<p>
078        *
079        * @return the CSS class name
080        */
081        String hiddenHeader();
082
083        /** Access method.<p>
084         *
085         * @return the CSS class name
086         */
087        String page();
088
089        /** Access method.<p>
090         *
091         * @return the CSS class name
092         */
093        String pageCenter();
094
095        /** Access method.<p>
096         *
097         * @return the CSS class name
098         */
099        String root();
100    }
101
102    /** The bundle instance. */
103    I_CmsSitemapLayoutBundle INSTANCE = GWT.create(I_CmsSitemapLayoutBundle.class);
104
105    /**
106     * Access method.<p>
107     *
108     * @return the root CSS
109     **/
110    @Source("clipboard.gss")
111    I_CmsClipboardCss clipboardCss();
112
113    /**
114     * Access method.<p>
115     *
116     * @return the image bundle for the sitemap
117     */
118    I_CmsImageBundle images();
119
120    /**
121     * Access method.<p>
122     *
123     * @return the root CSS
124     */
125    @Source("sitemap.gss")
126    I_CmsSitemapCss sitemapCss();
127
128    /**
129     * Access method.<p>
130     *
131     * @return the root CSS
132     **/
133    @Source("sitemapItem.gss")
134    I_CmsSitemapItemCss sitemapItemCss();
135}