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.gwt.client.ui.css;
029
030import com.google.gwt.core.client.GWT;
031import com.google.gwt.resources.client.ClientBundle;
032import com.google.gwt.resources.client.CssResource;
033
034/**
035 * Resource bundle to access CSS constants.
036 *
037 * @since 8.0.0
038 */
039public interface I_CmsConstantsBundle extends ClientBundle {
040
041    /** Constants CSS. */
042    public interface I_CmsConstantsCss extends CssResource {
043
044        /**
045         * Access method.<p>
046         *
047         * @return the CSS constant value
048         */
049        String backgroundColorDialog();
050
051        /**
052         * Access method.<p>
053         *
054         * @return the CSS constant value
055         */
056        String backgroundColorDialogBorder();
057
058        /**
059         * Access method.<p>
060         *
061         * @return the CSS constant value
062         */
063        String backgroundColorDisabled();
064
065        /**
066         * Access method.<p>
067         *
068         * @return the CSS constant value
069         */
070        String backgroundColorEmptyContainer();
071
072        /**
073         * Access method.<p>
074         *
075         * @return the CSS constant value
076         */
077        String backgroundColorHighlight();
078
079        /**
080         * Access method.<p>
081         *
082         * @return the CSS constant value
083         */
084        String backgroundColorInfo();
085
086        /**
087         * Access method.<p>
088         *
089         * @return the CSS constant value
090         */
091        String backgroundColorInputError();
092
093        /**
094         * Access method.<p>
095         *
096         * @return the CSS constant value
097         */
098        String backgroundColorListItem();
099
100        /**
101         * Access method.<p>
102         *
103         * @return the CSS constant value
104         */
105        String backgroundColorMenu();
106
107        /**
108         * Access method.<p>
109         *
110         * @return the CSS constant value
111         */
112        String backgroundColorOverlay();
113
114        /**
115         * Access method.<p>
116         *
117         * @return the CSS constant value
118         */
119        String backgroundColorPopupShadow();
120
121        /**
122         * Access method.<p>
123         *
124         * @return the CSS constant value
125         */
126        String backgroundColorSitemap();
127
128        /**
129         * Access method.<p>
130         *
131         * @return the CSS constant value
132         */
133        String backgroundColorSitemapExpired();
134
135        /**
136         * Access method.<p>
137         *
138         * @return the CSS constant value
139         */
140        String backgroundColorSitemapHighlight();
141
142        /**
143         * Access method.<p>
144         *
145         * @return the CSS constant value
146         */
147        String backgroundColorSoft();
148
149        /**
150         * Access method.<p>
151         *
152         * @return the CSS constant value
153         */
154        String backgroundColorStateActive();
155
156        /**
157         * Access method.<p>
158         *
159         * @return the CSS constant value
160         */
161        String backgroundColorStateChanged();
162
163        /**
164         * Access method.<p>
165         *
166         * @return the CSS constant value
167         */
168        String backgroundColorStateDisabled();
169
170        /**
171         * Access method.<p>
172         *
173         * @return the CSS constant value
174         */
175        String backgroundColorStateHover();
176
177        /**
178         * Access method.<p>
179         *
180         * @return the CSS constant value
181         */
182        String backgroundColorStateNew();
183
184        /**
185         * Access method.<p>
186         *
187         * @return the CSS constant value
188         */
189        String backgroundColorStateStandard();
190
191        /**
192         * Access method.<p>
193         *
194         * @return the CSS constant value
195         */
196        String backgroundColorStateSubSitemap();
197
198        /**
199         * Access method.<p>
200         *
201         * @return the CSS constant value
202         */
203        String borderColor();
204
205        /**
206         * Access method.<p>
207         *
208         * @return the CSS constant value
209         */
210        String borderColorDialog();
211
212        /**
213         * Access method.<p>
214         *
215         * @return the CSS constant value
216         */
217        String borderColorEditor();
218
219        /**
220         * Access method.<p>
221         *
222         * @return the CSS constant value
223         */
224        String borderColorHighlight();
225
226        /**
227         * Access method.<p>
228         *
229         * @return the CSS constant value
230         */
231        String borderColorListItem();
232
233        /**
234         * Access method.<p>
235         *
236         * @return the CSS constant value
237         */
238        String borderColorTopDialog();
239
240        /**
241         * Access method.<p>
242         *
243         * @return the CSS constant value
244         */
245        String borderRadius();
246
247        /**
248         * Access method.<p>
249         *
250         * @return the CSS constant value
251         */
252        String borderRadiusButton();
253
254        /**
255         * Access method.<p>
256         *
257         * @return the CSS constant value
258         */
259        String boxShadow();
260
261        /**
262         * Access method.<p>
263         *
264         * @return the CSS constant value
265         */
266        String buttonColorBlue();
267
268        /**
269         * Access method.<p>
270         *
271         * @return the CSS constant value
272         */
273        String buttonColorCyan();
274
275        /**
276         * Access method.<p>
277         *
278         * @return the CSS constant value
279         */
280        String buttonColorGray();
281
282        /**
283         * Access method.<p>
284         *
285         * @return the CSS constant value
286         */
287        String buttonColorOrange();
288
289        /**
290         * Access method.<p>
291         *
292         * @return the CSS constant value
293         */
294        String buttonColorRed();
295
296        /**
297         * Access method.<p>
298         *
299         * @return the CSS constant value
300         */
301        String colorError();
302
303        /**
304         * Access method.<p>
305         *
306         * @return the CSS constant value
307         */
308        String colorWarning();
309
310        /**
311         * Access method.<p>
312         *
313         * @return the CSS constant value
314         */
315        String dateboxAnotherMonthBg();
316
317        /**
318         * Access method.<p>
319         *
320         * @return the CSS constant value
321         */
322        String dateboxDayFontSize();
323
324        /**
325         * Access method.<p>
326         *
327         * @return the CSS constant value
328         */
329        String dateboxHoveredDayBg();
330
331        /**
332         * Access method.<p>
333         *
334         * @return the CSS constant value
335         */
336        String dateboxSelectedDayBg();
337
338        /**
339         * Access method.<p>
340         *
341         * @return the CSS constant value
342         */
343        String dateboxTodayColor();
344
345        /**
346         * Access method.<p>
347         *
348         * @return the CSS constant value
349         */
350        String dateboxWeekendBg();
351
352        /**
353         * Access method.<p>
354         *
355         * @return the CSS constant value
356         */
357        String defaultSpace();
358
359        /**
360         * Access method.<p>
361         *
362         * @return the CSS constant value
363         */
364        String fontFamily();
365
366        /**
367         * Access method.<p>
368         *
369         * @return the CSS constant value
370         */
371        String fontFamilyMono();
372
373        /**
374         * Access method.<p>
375         *
376         * @return the CSS constant value
377         */
378        String fontSize();
379
380        /**
381         * Access method.<p>
382         *
383         * @return the CSS constant value
384         */
385        String fontSizeBig();
386
387        /**
388         * Access method.<p>
389         *
390         * @return the CSS constant value
391         */
392        String fontSizeSmall();
393
394        /**
395         * Access method.<p>
396         *
397         * @return the CSS constant value
398         */
399        String gradientDialogHeader();
400
401        /**
402         * Access method.<p>
403         *
404         * @return the CSS constant value
405         */
406        String gradientFormDialog();
407
408        /**
409        * Access method.<p>
410        *
411        * @return the CSS constant value
412        */
413        String gradientFormDialogColor();
414
415        /**
416         * Access method.<p>
417         *
418         * @return the CSS constant value
419         */
420        String gradientFormDialogFocus();
421
422        /**
423         * Access method.<p>
424         *
425         * @return the CSS constant value
426         */
427        String gradientFormDialogFocusColor();
428
429        /**
430         * Access method.<p>
431         *
432         * @return the CSS constant value
433         */
434        String gradientInvalid();
435
436        /**
437         * Access method.<p>
438         *
439         * @return the CSS constant value
440         */
441        String gradientListItem();
442
443        /**
444            * Access method.<p>
445            *
446            * @return the CSS constant value
447            */
448        String gradientPlaceholder();
449
450        /**
451         * Access method.<p>
452         *
453         * @return the CSS constant value
454         */
455        String inputHeight();
456
457        /**
458         * Access method.<p>
459         *
460         * @return the CSS constant value
461         */
462        String inputInnerHeight();
463
464        /**
465         * Access method.<p>
466         *
467         * @return the CSS constant value
468         */
469        String lineHeight();
470
471        /**
472         * Access method.<p>
473         *
474         * @return the CSS constant value
475         */
476        String lineHeightBig();
477
478        /**
479         * Access method.<p>
480         *
481         * @return the CSS constant value
482         */
483        String lineHeightSmall();
484
485        /**
486         * Access method.<p>
487         *
488         * @return the CSS constant value
489         */
490        String notificationErrorBg();
491
492        /**
493         * Access method.<p>
494         *
495         * @return the CSS constant value
496         */
497        String notificationErrorBorder();
498
499        /**
500         * Access method.<p>
501         *
502         * @return the CSS constant value
503         */
504        String notificationErrorColor();
505
506        /**
507         * Access method.<p>
508         *
509         * @return the CSS constant value
510         */
511        String notificationNormalBg();
512
513        /**
514         * Access method.<p>
515         *
516         * @return the CSS constant value
517         */
518        String notificationNormalBorder();
519
520        /**
521         * Access method.<p>
522         *
523         * @return the CSS constant value
524         */
525        String notificationNormalColor();
526
527        /**
528         * Access method.<p>
529         *
530         * @return the CSS constant value
531         */
532        String notificationWarningBg();
533
534        /**
535         * Access method.<p>
536         *
537         * @return the CSS constant value
538         */
539        String notificationWarningBorder();
540
541        /**
542         * Access method.<p>
543         *
544         * @return the CSS constant value
545         */
546        String notificationWarningColor();
547
548        /**
549         * Access method.<p>
550         *
551         * @return the CSS constant value
552         */
553        String overlayOpacity();
554
555        /**
556         * Access method.<p>
557         *
558         * @return the CSS constant value
559         */
560        String textColor();
561
562        /**
563         * Access method.<p>
564         *
565         * @return the CSS constant value
566         */
567        String textColorCaption();
568
569        /**
570         * Access method.<p>
571         *
572         * @return the CSS constant value
573         */
574        String textColorChanged();
575
576        /**
577         * Access method.<p>
578         *
579         * @return the CSS constant value
580         */
581        String textColorDarkButton();
582
583        /**
584         * Access method.<p>
585         *
586         * @return the CSS constant value
587         */
588        String textColorDisabled();
589
590        /**
591         * Access method.<p>
592         *
593         * @return the CSS constant value
594         */
595        String textColorDisabledButton();
596
597        /**
598         * Access method.<p>
599         *
600         * @return the CSS constant value
601         */
602        String textColorEditorLabel();
603
604        /**
605         * Access method.<p>
606         *
607         * @return the CSS constant value
608         */
609        String textColorHighlight();
610
611        /**
612         * Access method.<p>
613         *
614         * @return the CSS constant value
615         */
616        String textColorImportant();
617
618        /**
619         * Access method.<p>
620         *
621         * @return the CSS constant value
622         */
623        String textColorLightButton();
624
625        /**
626         * Access method.<p>
627         *
628         * @return the CSS constant value
629         */
630        String textColorNew();
631
632        /**
633         * Access method.<p>
634         *
635         * @return the CSS constant value
636         */
637        String toolbarWidth();
638
639        /**
640         * Access method.<p>
641         *
642         * @return the CSS constant value
643         */
644        int zIndexDND();
645
646        /**
647         * Access method.<p>
648         *
649         * @return the CSS constant value
650         */
651        int zIndexFramePopup();
652
653        /**
654         * Access method.<p>
655         *
656         * @return the CSS constant value
657         */
658        int zIndexGroupContainer();
659
660        /**
661         * Access method.<p>
662         *
663         * @return the CSS constant value
664         */
665        int zIndexHighlighting();
666
667        /**
668         * Access method.<p>
669         *
670         * @return the CSS constant value
671         */
672        int zIndexInline();
673
674        /**
675         * Access method.<p>
676         *
677         * @return the CSS constant value
678         */
679        int zIndexMenu();
680
681        /**
682         * Access method.<p>
683         *
684         * @return the CSS constant value
685         */
686        int zIndexPopup();
687    }
688
689    /** The bundle instance. */
690    I_CmsConstantsBundle INSTANCE = GWT.create(I_CmsConstantsBundle.class);
691
692    /**
693     * Access method.<p>
694     *
695     * @return the constants CSS
696     */
697    @Source("constants.gss")
698    I_CmsConstantsCss css();
699}