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;
033import com.google.gwt.resources.client.CssResource.Import;
034import com.google.gwt.resources.client.CssResource.ImportedWithPrefix;
035import com.google.gwt.resources.client.CssResource.Shared;
036
037/**
038 * Resource bundle to access CSS and image resources.
039 *
040 * @since 8.0.0
041 */
042public interface I_CmsLayoutBundle extends ClientBundle {
043
044    /** The context menu CSS classes. */
045    public interface I_CmsAvailabilityCss extends CssResource {
046
047        /**
048         * Access method.<p>
049         *
050         * @return the CSS class name
051         */
052        String checkBox();
053
054        /**
055         * Access method.<p>
056         *
057         * @return the CSS class name
058         */
059        String dateBox();
060
061        /**
062         * Access method.<p>
063         *
064         * @return the CSS class name
065         */
066        String fieldsetSpacer();
067
068        /**
069         * Access method.<p>
070         *
071         * @return the CSS class name
072         */
073        String inlineBlock();
074
075        /**
076         * Access method.<p>
077         *
078         * @return the CSS class name
079         */
080        String inputCombination();
081
082        /**
083         * Access method.<p>
084         *
085         * @return the CSS class name
086         */
087        String labelColumn();
088
089        /**
090         * Access method.<p>
091         *
092         * @return the CSS class name
093         */
094        String principalIcon();
095
096        /**
097         * Access method.<p>
098         *
099         * @return the CSS class name
100         */
101        String responsabilityLabel();
102    }
103
104    /** Button CSS. */
105    @Shared
106    @ImportedWithPrefix("buttons")
107    interface I_CmsButtonCss extends I_CmsStateCss {
108
109        /**
110         *  Access method.<p>
111         *
112         * @return the CSS class name
113         */
114        String blue();
115
116        /**
117         *  Access method.<p>
118         *
119         * @return the CSS class name
120         */
121        String cmsButtonBig();
122
123        /**
124         *  Access method.<p>
125         *
126         * @return the CSS class name
127         */
128        String cmsButtonMedium();
129
130        /**
131         *  Access method.<p>
132         *
133         * @return the CSS class name
134         */
135        String cmsButtonSmall();
136
137        /**
138         *  Access method.<p>
139         *
140         * @return the CSS class name
141         */
142        String cmsError();
143
144        /**
145         *  Access method.<p>
146         *
147         * @return the CSS class name
148         */
149        String cmsFontIconButton();
150
151        /**
152         *  Access method.<p>
153         *
154         * @return the CSS class name
155         */
156        String cmsMenuButton();
157
158        /**
159         * Access method.<p>
160         *
161         * @return the CSS class name
162         */
163        String cmsMinWidth();
164
165        /**
166         * Access method.<p>
167         *
168         * @return the CSS class name
169         */
170        String cmsPushButton();
171
172        /**
173         *  Access method.<p>
174         *
175         * @return the CSS class name
176         */
177        String cmsTextButton();
178
179        /**
180         *  Access method.<p>
181         *
182         * @return the CSS class name
183         */
184        String cmsTransparentButton();
185
186        /**
187         *  Access method.<p>
188         *
189         * @return the CSS class name
190         */
191        String cmsWarning();
192
193        /**
194         *  Access method.<p>
195         *
196         * @return the CSS class name
197         */
198        String gray();
199
200        /**
201         *  Access method.<p>
202         *
203         * @return the CSS class name
204         */
205        String green();
206
207        /**
208         *  Access method.<p>
209         *
210         * @return the CSS class name
211         */
212        String helpIcon();
213
214        /**
215         *  Access method.<p>
216         *
217         * @return the CSS class name
218         */
219        String hoverBlack();
220
221        /**
222         *  Access method.<p>
223         *
224         * @return the CSS class name
225         */
226        String red();
227
228        /**
229         * Access method.<p>
230         *
231         * @return the CSS class name
232         */
233        String resizeButton();
234
235        /**
236         *  Access method.<p>
237         *
238         * @return the CSS class name
239         */
240        String spacerLeft();
241
242        /**
243         *  Access method.<p>
244         *
245         * @return the CSS class name
246         */
247        String spacerRight();
248    }
249
250    /** The category CSS. */
251    interface I_CmsCategoryDialogCss extends CssResource {
252
253        /** Access method.<p>
254         *
255         * @return the CSS class name
256         */
257        String criteriaList();
258
259        /** Access method.<p>
260         *
261         * @return the CSS class name
262         */
263        String infoLabel();
264
265        /** Access method.<p>
266         *
267         * @return the CSS class name
268         */
269        String tabOptions();
270    }
271
272    /** THe color selector CSS classes.  */
273    public interface I_CmsColorSelector extends CssResource {
274
275        /**
276         * Css class reader.<p>
277         *
278         * @return the css class
279         */
280        String colorSelectorWidget();
281
282        /**
283         * Css class reader.<p>
284         *
285         * @return the css class
286         */
287        String sliderMap();
288
289        /**
290         * Css class reader.<p>
291         *
292         * @return the css class
293         */
294        String sliderMapOverlay();
295
296        /**
297         * Css class reader.<p>
298         *
299         * @return the css class
300         */
301        String sliderMapSlider();
302
303        /**
304         * Css class reader.<p>
305         *
306         * @return the css class
307         */
308        String sliderMapUnderlay();
309
310        /**
311         * Css class reader.<p>
312         *
313         * @return the css class
314         */
315        String tableField();
316
317    }
318
319    /** The content editor dialog CSS. */
320    interface I_CmsContentEditorCss extends CssResource {
321
322        /** Access method.<p>
323         *
324         * @return the CSS class name
325         */
326        String contentEditor();
327
328        /**
329         * Access method.<p>
330         *
331         * @return the CSS class name
332         */
333        String dataViewItem();
334    }
335
336    /** The context menu CSS classes. */
337    public interface I_CmsContextmenuCss extends I_CmsPopupCss, I_CmsContextmenuItemCss {
338
339        /**
340         * Access method.<p>
341         *
342         * @return the CSS class name
343         */
344        String cmsMenuBar();
345
346        /**
347         * Access method.<p>
348         *
349         * @return the CSS class name
350         */
351        String iconBox();
352
353        /**
354         * Access method.<p>
355         *
356         * @return the CSS class name
357         */
358        String menuInfoLabel();
359
360        /**
361         * Access method.<p>
362         *
363         * @return the CSS class name
364         */
365        String menuItemSeparator();
366
367        /**
368         * Access method.<p>
369         *
370         * @return the CSS class name
371         */
372        String menuPanel();
373
374    }
375
376    /** The context menu item CSS classes. */
377    @Shared
378    public interface I_CmsContextmenuItemCss extends CssResource {
379
380        /**
381         * Access method.<p>
382         *
383         * @return the CSS class name
384         */
385        String arrow();
386
387        /**
388         * Access method.<p>
389         *
390         * @return the CSS class name
391         */
392        String cmsMenuItem();
393
394        /**
395         * Access method.<p>
396         *
397         * @return the CSS class name
398         */
399        String disabled();
400
401        /**
402         * Access method.<p>
403         *
404         * @return the CSS class name
405         */
406        String label();
407
408        /**
409         * Access method.<p>
410         *
411         * @return the CSS class name
412         */
413        String selected();
414    }
415
416    /** DateBox css. */
417    public interface I_CmsDateBoxCss extends CssResource {
418
419        /**
420         * Access method.<p>
421         *
422         * @return the CSS class name
423         */
424        String ampm();
425
426        /**
427         * Access method.<p>
428         *
429         * @return the CSS class name
430         */
431        String dateTime();
432
433        /**
434         * Access method.<p>
435         *
436         * @return the CSS class name
437         */
438        String time();
439    }
440
441    /** Dialog CSS. */
442    @Shared
443    @ImportedWithPrefix("dialog")
444    interface I_CmsDialogCss extends I_CmsPopupCss {
445
446        /**
447         * Access method.<p>
448         *
449         * @return the CSS class name
450         */
451        String alertBottomContent();
452
453        /**
454         * Access method.<p>
455         *
456         * @return the CSS class name
457         */
458        String alertMainContent();
459
460        /**
461         * Access method.<p>
462         *
463         * @return the CSS class name
464         */
465        String alertTopContent();
466
467        /**
468         * Access method.<p>
469         *
470         * @return the CSS class name
471         */
472        String borderPadding();
473
474        /**
475         * Access method.<p>
476         *
477         * @return the CSS class name
478         */
479        String caption();
480
481        /**
482         * Access method.<p>
483         *
484         * @return the CSS class name
485         */
486        String closePopup();
487
488        /**
489         * Access method.<p>
490         *
491         * @return the CSS class name
492         */
493        String closePopupImage();
494
495        /**
496         * Access method.<p>
497         *
498         * @return the CSS class name
499         */
500        String contentPadding();
501
502        /**
503         * Access method.<p>
504         *
505         * @return the CSS class name
506         */
507        String contentSpacer();
508
509        /**
510         * Access method.<p>
511         *
512         * @return the CSS class name
513         */
514        String contextMenu();
515
516        /**
517         * Access method.<p>
518         *
519         * @return the CSS class name
520         */
521        String dragging();
522
523        /**
524         * Access method.<p>
525         *
526         * @return the CSS class name
527         */
528        String dragOverlay();
529
530        /**
531         * Access method.<p>
532         *
533         * @return the CSS class name
534         */
535        String embeddedDialogFrame();
536
537        /**
538         * Access method.<p>
539         *
540         * @return the CSS class name
541         */
542        String embeddedDialogFrameHidden();
543
544        /**
545         * Access method.<p>
546         *
547         * @return the CSS class name
548         */
549        String frameDialog();
550
551        /**
552         * Access method.<p>
553         *
554         * @return the CSS class name
555         */
556        String hideButtonPanel();
557
558        /**
559         * Access method.<p>
560         *
561         * @return the CSS class name
562         */
563        String hideCaption();
564
565        /**
566         * Access method.<p>
567         *
568         * @return the CSS class name
569         */
570        String invertClose();
571
572        /**
573         * Access method.<p>
574         *
575         * @return the CSS class name
576         */
577        String leftButtonBox();
578
579        /**
580         * Access method.<p>
581         *
582         * @return the CSS class name
583         */
584        String logReportScrollPanel();
585
586        /**
587         * Access method.<p>
588         *
589         * @return the CSS class name
590         */
591        String menuArrowBottom();
592
593        /**
594         * Access method.<p>
595         *
596         * @return the CSS class name
597         */
598        String menuArrowTop();
599
600        /**
601         * Access method.<p>
602         *
603         * @return the CSS class name
604         */
605        String modelSelectList();
606
607        /**
608         * Access method.<p>
609         *
610         * @return the CSS class name
611         */
612        String popupButtonPanel();
613
614        /**
615         * Access method.<p>
616         *
617         * @return the CSS class name
618         */
619        String popupHead();
620
621        /**
622         * Access method.<p>
623         *
624         * @return the CSS class name
625         */
626        String popupMainContent();
627
628        /**
629         * Access method.<p>
630         *
631         * @return the CSS class name
632         */
633        String popupOverlay();
634    }
635
636    /** The drag and drop CSS used by the base module. */
637    @Shared
638    interface I_CmsDragCss extends CssResource {
639
640        /**
641         * Access method.<p>
642         *
643         * @return the CSS class name
644         */
645        String dragPlaceholder();
646
647        /**
648         * Access method.<p>
649         *
650         * @return the CSS class name
651         */
652        String dragStarted();
653
654        /**
655         * Access method.<p>
656         *
657         * @return the CSS class name
658         */
659        String fullWindowDrag();
660    }
661
662    /** The error dialog CSS classes. */
663    public interface I_CmsErrorDialogCss extends CssResource {
664
665        /**
666         * Access method.<p>
667         *
668         * @return the CSS class name
669         */
670        String details();
671
672        /**
673         * Access method.<p>
674         *
675         * @return the CSS class name
676         */
677        String errorIcon();
678
679        /**
680         * Access method.<p>
681         *
682         * @return the CSS class name
683         */
684        String message();
685    }
686
687    /** The context menu CSS classes. */
688    @ImportedWithPrefix("fieldset")
689    public interface I_CmsFieldsetCss extends CssResource {
690
691        /**
692         * Access method.<p>
693         *
694         * @return the CSS class name
695         */
696        String content();
697
698        /**
699         * Access method.<p>
700         *
701         * @return the CSS class name
702         */
703        String fieldsetInvisible();
704
705        /**
706         * Access method.<p>
707         *
708         * @return the CSS class name
709         */
710        String fieldsetVisible();
711
712        /**
713         * Access method.<p>
714         *
715         * @return the CSS class name
716         */
717        String image();
718
719        /**
720         * Access method.<p>
721         *
722         * @return the CSS class name
723         */
724        String legend();
725    }
726
727    /**
728     * CSS for the filter select box.
729     */
730    interface I_CmsFilterSelectCss extends CssResource {
731
732        /**
733         * Access method.<p>
734         *
735         * @return the CSS class name
736         */
737        String filterInput();
738
739        /**
740         * Access method.<p>
741         *
742         * @return the CSS class name
743         */
744        String filterSelect();
745
746    }
747
748    /** General CSS, used for general re-occurring styles. */
749    @Shared
750    interface I_CmsGeneralCss extends CssResource {
751
752        /**
753         * Access method.<p>
754         *
755         * @return the CSS class name
756         */
757        String border();
758
759        /**
760         * Access method.<p>
761         *
762         * @return the CSS class name
763         */
764        String buttonCornerAll();
765
766        /**
767         * Access method.<p>
768         *
769         * @return the CSS class name
770         */
771        String cellpadding();
772
773        /**
774         * Access method.<p>
775         *
776         * @return the CSS class name
777         */
778        String clearAll();
779
780        /**
781         * Access method.<p>
782         *
783         * @return the CSS class name
784         */
785        String clearFix();
786
787        /**
788         * Access method.<p>
789         *
790         * @return the CSS class name
791         */
792        String clearStyles();
793
794        /**
795         * Access method.<p>
796         *
797         * @return the CSS class name
798         */
799        String cornerAll();
800
801        /**
802         * Access method.<p>
803         *
804         * @return the CSS class name
805         */
806        String cornerBottom();
807
808        /**
809         * Access method.<p>
810         *
811         * @return the CSS class name
812         */
813        String cornerTop();
814
815        /**
816         * Access method.<p>
817         *
818         * @return the CSS class name
819         */
820        String disablingOverlay();
821
822        /**
823         * Access method.<p>
824         *
825         * @return the CSS class name
826         */
827        String header();
828
829        /**
830         * Access method.<p>
831         *
832         * @return the CSS class name
833         */
834        String headerButtons();
835
836        /**
837         * Access method.<p>
838         *
839         * @return the CSS class name
840         */
841        String headerLeftBlock();
842
843        /**
844         * Access method.<p>
845         *
846         * @return the CSS class name
847         */
848        String headerPathButtons();
849
850        /**
851         * Access method.<p>
852         *
853         * @return the CSS class name
854         */
855        String headerPathSection();
856
857        /**
858         * Access method.<p>
859         *
860         * @return the CSS class name
861         */
862        String headerTextSection();
863
864        /**
865         * Access method.<p>
866         *
867         * @return the CSS class name
868         */
869        String hideOverlay();
870
871        /**
872         * Access method.<p>
873         *
874         * @return the CSS class name
875         */
876        String inlineBlock();
877
878        /**
879         * Access method.<p>
880         *
881         * @return the CSS class name
882         */
883        String multiLineLabel();
884
885        /**
886         * Access method.<p>
887         *
888         * @return the CSS class name
889         */
890        String opencms();
891
892        /**
893         * Access method.<p>
894         *
895         * @return the CSS class name
896         */
897        String shadow();
898
899        /**
900         * Access method.<p>
901         *
902         * @return the CSS class name
903         */
904        String simpleFormInputBox();
905
906        /**
907         * Access method.<p>
908         *
909         * @return the CSS class name
910         */
911        String simpleFormLabel();
912
913        /**
914         * Access method.<p>
915         *
916         * @return the CSS class name
917         */
918        String simpleFormRow();
919
920        /**
921         * Access method.<p>
922         *
923         * @return the CSS class name
924         */
925        String textBig();
926
927        /**
928         * Access method.<p>
929         *
930         * @return the CSS class name
931         */
932        String textMedium();
933
934        /**
935         * Access method.<p>
936         *
937         * @return the CSS class name
938         */
939        String textSmall();
940
941        /**
942         * Access method.<p>
943         *
944         * @return the CSS class name
945         */
946        String toolTip();
947
948        /**
949         * Access method.<p>
950         *
951         * @return the CSS class name
952         */
953        String truncatingLabel();
954    }
955
956    /** The global widget CSS class. */
957    @Shared
958    public interface I_CmsGlobalWidgetCss extends I_CmsOpenerHoverCss {
959
960        /**
961         * Css class reader.<p>
962         *
963         * @return the css class
964         */
965        String selectBoxPopup();
966
967        /**
968         * Css class reader.<p>
969         *
970         * @return the css class
971         */
972        String selectBoxSelected();
973
974        /**
975         * Css class reader.<p>
976         *
977         * @return the css class
978         */
979        String textAreaBox();
980
981        /**
982         * Css class reader.<p>
983         *
984         * @return the css class
985         */
986        String textAreaBoxPanel();
987    }
988
989    /** Header CSS. */
990    interface I_CmsHeaderCss extends CssResource {
991
992        /**
993         * Access method.<p>
994         *
995         * @return the CSS class name
996         */
997        String h1();
998
999        /**
1000         * Access method.<p>
1001         *
1002         * @return the CSS class name
1003         */
1004        String h2();
1005
1006        /**
1007         * Access method.<p>
1008         *
1009         * @return the CSS class name
1010         */
1011        String h3();
1012
1013        /**
1014         * Access method.<p>
1015         *
1016         * @return the CSS class name
1017         */
1018        String h4();
1019
1020        /**
1021         * Access method.<p>
1022         *
1023         * @return the CSS class name
1024         */
1025        String h5();
1026
1027        /**
1028         * Access method.<p>
1029         *
1030         * @return the CSS class name
1031         */
1032        String h6();
1033    }
1034
1035    /** Highlighting CSS, used within the {@link org.opencms.gwt.client.ui.CmsHighlightingBorder} widget. */
1036    interface I_CmsHighlightCss extends CssResource {
1037
1038        /**
1039         * Access method.<p>
1040         *
1041         * @return the CSS class name
1042         */
1043        String animated();
1044
1045        /**
1046         * Access method.<p>
1047         *
1048         * @return the CSS class name
1049         */
1050        String borderBottom();
1051
1052        /**
1053         * Access method.<p>
1054         *
1055         * @return the CSS class name
1056         */
1057        String borderLeft();
1058
1059        /**
1060         * Access method.<p>
1061         *
1062         * @return the CSS class name
1063         */
1064        String borderRight();
1065
1066        /**
1067         * Access method.<p>
1068         *
1069         * @return the CSS class name
1070         */
1071        String borderTop();
1072
1073        /**
1074         * Access method.<p>
1075         *
1076         * @return the CSS class name
1077         */
1078        String colorBlue();
1079
1080        /**
1081         * Access method.<p>
1082         *
1083         * @return the CSS class name
1084         */
1085        String colorGrey();
1086
1087        /**
1088         * Access method.<p>
1089         *
1090         * @return the CSS class name
1091         */
1092        String colorRed();
1093
1094        /**
1095         * Access method.<p>
1096         *
1097         * @return the CSS class name
1098         */
1099        String colorSolidGrey();
1100
1101        /**
1102         * Access method.<p>
1103         *
1104         * @return the CSS class name
1105         */
1106        String highlightBox();
1107
1108        /**
1109         * Access method.<p>
1110         *
1111         * @return the CSS class name
1112         */
1113        String midpointSeparator();
1114    }
1115
1116    /** Link warning panel CSS. */
1117    interface I_CmsLinkWarningCss extends CssResource {
1118
1119        /**
1120         * Access method.<p>
1121         *
1122         * @return the CSS class name
1123         */
1124        String deletedEntryLabel();
1125    }
1126
1127    /**
1128     * CSS for the list item creation dialog.
1129     */
1130    interface I_CmsListAddCss extends CssResource {
1131
1132        /**
1133         * Access method.<p>
1134         *
1135         * @return the CSS class name
1136         */
1137        String labelContainer();
1138
1139        /**
1140         * Access method.<p>
1141         *
1142         * @return the CSS class name
1143         */
1144        String optionContainer();
1145    }
1146
1147    /** List item CSS. */
1148    @Shared
1149    @ImportedWithPrefix("liw")
1150    interface I_CmsListItemWidgetCss extends I_CmsStateCss {
1151
1152        /**
1153         * Access method.<p>
1154         *
1155         * @return the CSS class name
1156         */
1157        String buttonPanel();
1158
1159        /**
1160         * Access method.<p>
1161         *
1162         * @return the CSS class name
1163         */
1164        String changed();
1165
1166        /**
1167         * Access method.<p>
1168         *
1169         * @return the CSS class name
1170         */
1171        String copyModel();
1172
1173        /**
1174         * Access method.<p>
1175         *
1176         * @return the CSS class name
1177         */
1178        String disabledItem();
1179
1180        /**
1181         * Access method.<p>
1182         *
1183         * @return the CSS class name
1184         */
1185        String dragging();
1186
1187        /** Access method.<p>
1188         *
1189         * @return the CSS class name
1190         */
1191        String expired();
1192
1193        /**
1194         * CSS class accessor.<p>
1195         *
1196         * @return a CSS class
1197         **/
1198        String export();
1199
1200        /**
1201         * CSS class accessor.<p>
1202         *
1203         * @return a CSS class
1204         **/
1205        @ClassName("oc-inline-editable")
1206        String inlineEditable();
1207
1208        /**
1209         * Access method.<p>
1210         *
1211         * @return the CSS class name
1212         */
1213        String itemActive();
1214
1215        /**
1216         * Access method.<p>
1217         *
1218         * @return the CSS class name
1219         */
1220        String itemAdditional();
1221
1222        /**
1223         * Access method.<p>
1224         *
1225         * @return the CSS class name
1226         */
1227        String itemAdditionalTitle();
1228
1229        /**
1230         * Access method.<p>
1231         *
1232         * @return the CSS class name
1233         */
1234        String itemAdditionalValue();
1235
1236        /**
1237         * Access method.<p>
1238         *
1239         * @return the CSS class name
1240         */
1241        String itemBlue();
1242
1243        /**
1244         * Access method.<p>
1245         *
1246         * @return the CSS class name
1247         */
1248        String itemContainer();
1249
1250        /**
1251         * Access method.<p>
1252         *
1253         * @return the CSS class name
1254         */
1255        String itemContent();
1256
1257        /**
1258         * Access method.<p>
1259         *
1260         * @return the CSS class name
1261         */
1262        String itemIcon();
1263
1264        /**
1265         * Access method.<p>
1266         *
1267         * @return the CSS class name
1268         */
1269        String itemInfoRow();
1270
1271        /**
1272         * Access method.<p>
1273         *
1274         * @return the CSS class name
1275         */
1276        String itemRed();
1277
1278        /**
1279         * Access method.<p>
1280         *
1281         * @return the CSS class name
1282         */
1283        String itemSubtitle();
1284
1285        /**
1286         * Access method.<p>
1287         *
1288         * @return the CSS class name
1289         */
1290        String itemTitle();
1291
1292        /**
1293         * Access method.<p>
1294         *
1295         * @return the CSS class name
1296         */
1297        String itemYellow();
1298
1299        /**
1300         * CSS class accessor.<p>
1301         *
1302         * @return a CSS class
1303         **/
1304        String lockClosed();
1305
1306        /**
1307         * CSS class accessor.<p>
1308         *
1309         * @return a CSS class
1310         **/
1311        String lockIcon();
1312
1313        /**
1314         * CSS class accessor.<p>
1315         *
1316         * @return a CSS class
1317         **/
1318        String lockOpen();
1319
1320        /**
1321         * CSS class accessor.<p>
1322         *
1323         * @return a CSS class
1324         **/
1325        String lockSharedClosed();
1326
1327        /**
1328         * CSS class accessor.<p>
1329         *
1330         * @return a CSS class
1331         **/
1332        String lockSharedOpen();
1333
1334        /**
1335         * Access method.<p>
1336         *
1337         * @return the CSS class name
1338         */
1339        String open();
1340
1341        /**
1342         * Access method.<p>
1343         *
1344         * @return the CSS class name
1345         */
1346        String pageDetailType();
1347
1348        /**
1349         * Access method.<p>
1350         *
1351         * @return the CSS class name
1352         */
1353        String permaVisible();
1354
1355        /**
1356         * CSS class accessor.<p>
1357         *
1358         * @return a CSS class
1359         **/
1360        String secure();
1361
1362        /**
1363         * CSS class accessor.<p>
1364         *
1365         * @return a CSS class
1366         **/
1367        String stateIcon();
1368
1369        /**
1370         * CSS class accessor.<p>
1371         *
1372         * @return a CSS class
1373         **/
1374        String titleDeleted();
1375
1376        /**
1377         * CSS class accessor.<p>
1378         *
1379         * @return a CSS class
1380         **/
1381        String titleInput();
1382
1383        /**
1384         * Access method.<p>
1385         *
1386         * @return the CSS class name
1387         */
1388        String titleRow();
1389
1390        /**
1391         * Access method.<p>
1392         *
1393         * @return the CSS class name
1394         */
1395        String topRightIcon();
1396
1397        /**
1398         * Access method.<p>
1399         *
1400         * @return the CSS class name
1401         */
1402        String unselectable();
1403
1404    }
1405
1406    /** ListTree CSS. */
1407    interface I_CmsListTreeCss extends CssResource {
1408
1409        /**
1410         * Access method.<p>
1411         *
1412         * @return the CSS class name
1413         */
1414        String bigIndentation();
1415
1416        /**
1417         * Access method.<p>
1418         *
1419         * @return the CSS class name
1420         */
1421        String list();
1422
1423        /**
1424         * Access method.<p>
1425         *
1426         * @return the CSS class name
1427         */
1428        String listScrollable();
1429
1430        /**
1431         * Access method.<p>
1432         *
1433         * @return the CSS class name
1434         */
1435        String listTreeItem();
1436
1437        /**
1438         * Access method.<p>
1439         *
1440         * @return the CSS class name
1441         */
1442        String listTreeItemChildren();
1443
1444        /**
1445         * Access method.<p>
1446         *
1447         * @return the CSS class name
1448         */
1449        String listTreeItemClosed();
1450
1451        /**
1452         * Access method.<p>
1453         *
1454         * @return the CSS class name
1455         */
1456        String listTreeItemContent();
1457
1458        /**
1459         * Access method.<p>
1460         *
1461         * @return the CSS class name
1462         */
1463        String listTreeItemInternal();
1464
1465        /**
1466         * Access method.<p>
1467         *
1468         * @return the CSS class name
1469         */
1470        String listTreeItemLeaf();
1471
1472        /**
1473         * Access method.<p>
1474         *
1475         * @return the CSS class name
1476         */
1477        String listTreeItemNoOpeners();
1478
1479        /**
1480         * Access method.<p>
1481         *
1482         * @return the CSS class name
1483         */
1484        String listTreeItemOpen();
1485
1486        /**
1487         * Access method.<p>
1488         *
1489         * @return the CSS class name
1490         */
1491        String listTreeItemOpener();
1492    }
1493
1494    /** Location picker CSS. */
1495    public interface I_CmsLocationPicker extends I_CmsLocationPickerBase {
1496
1497        /**
1498         * Access method.<p>
1499         *
1500         * @return the CSS class name
1501         */
1502        String buttonBar();
1503
1504        /**
1505         * Access method.<p>
1506         *
1507         * @return the CSS class name
1508         */
1509        String fader();
1510
1511        /**
1512         * Access method.<p>
1513         *
1514         * @return the CSS class name
1515         */
1516        String hasPreview();
1517
1518        /**
1519         * Access method.<p>
1520         *
1521         * @return the CSS class name
1522         */
1523        String inlineField();
1524
1525        /**
1526         * Access method.<p>
1527         *
1528         * @return the CSS class name
1529         */
1530        String inputContainer();
1531
1532        /**
1533         * Access method.<p>
1534         *
1535         * @return the CSS class name
1536         */
1537        String mapCanvas();
1538
1539        /**
1540         * Access method.<p>
1541         *
1542         * @return the CSS class name
1543         */
1544        String opener();
1545    }
1546
1547    /** Base location picker CSS. */
1548    @Shared
1549    public interface I_CmsLocationPickerBase extends CssResource {
1550
1551        /**
1552         * Access method.<p>
1553         *
1554         * @return the CSS class name
1555         */
1556        String displayBox();
1557
1558        /**
1559         * Access method.<p>
1560         *
1561         * @return the CSS class name
1562         */
1563        String locationField();
1564
1565        /**
1566         * Access method.<p>
1567         *
1568         * @return the CSS class name
1569         */
1570        String locationFields();
1571
1572        /**
1573         * Access method.<p>
1574         *
1575         * @return the CSS class name
1576         */
1577        String locationInfo();
1578
1579        /**
1580         * Access method.<p>
1581         *
1582         * @return the CSS class name
1583         */
1584        String locationMainPanel();
1585
1586        /**
1587         * Access method.<p>
1588         *
1589         * @return the CSS class name
1590         */
1591        String mapPreview();
1592    }
1593
1594    /** The menu button CSS. */
1595    public interface I_CmsMenuButton extends CssResource {
1596
1597        /**
1598         *  Access method.<p>
1599         *
1600         * @return the CSS class name
1601         */
1602        String button();
1603
1604        /**
1605         *  Access method.<p>
1606         *
1607         * @return the CSS class name
1608         */
1609        String menu();
1610    }
1611
1612    /** Notification CSS. */
1613    @Shared
1614    interface I_CmsNotificationCss extends I_CmsPopupCss {
1615
1616        /**
1617         * Access method.<p>
1618         *
1619         * @return the CSS class name
1620         */
1621        String blocking();
1622
1623        /**
1624         * Access method.<p>
1625         *
1626         * @return the CSS class name
1627         */
1628        String busy();
1629
1630        /**
1631         * Access method.<p>
1632         *
1633         * @return the CSS class name
1634         */
1635        String closeButton();
1636
1637        /**
1638         * Access method.<p>
1639         *
1640         * @return the CSS class name
1641         */
1642        String loadingAnimation();
1643
1644        /**
1645         * Access method.<p>
1646         *
1647         * @return the CSS class name
1648         */
1649        String messageContent();
1650
1651        /**
1652         * Access method.<p>
1653         *
1654         * @return the CSS class name
1655         */
1656        String messageHead();
1657
1658        /**
1659         * Access method.<p>
1660         *
1661         * @return the CSS class name
1662         */
1663        String messagesPanel();
1664
1665        /**
1666         * Access method.<p>
1667         *
1668         * @return the CSS class name
1669         */
1670        String messageText();
1671
1672        /**
1673         * Access method.<p>
1674         *
1675         * @return the CSS class name
1676         */
1677        String messageTime();
1678
1679        /**
1680         * Access method.<p>
1681         *
1682         * @return the CSS class name
1683         */
1684        String messageWrap();
1685
1686        /**
1687         * Access method.<p>
1688         *
1689         * @return the CSS class name
1690         */
1691        String notificationContainer();
1692
1693        /**
1694         * Access method.<p>
1695         *
1696         * @return the CSS class name
1697         */
1698        String notificationError();
1699
1700        /**
1701         * Access method.<p>
1702         *
1703         * @return the CSS class name
1704         */
1705        String notificationMessage();
1706
1707        /**
1708         * Access method.<p>
1709         *
1710         * @return the CSS class name
1711         */
1712        String notificationNormal();
1713
1714        /**
1715         * Access method.<p>
1716         *
1717         * @return the CSS class name
1718         */
1719        String notificationOverlay();
1720
1721        /**
1722         * Access method.<p>
1723         *
1724         * @return the CSS class name
1725         */
1726        String notificationWarning();
1727    }
1728
1729    /** The opener hover CSS class. */
1730    @Shared
1731    public interface I_CmsOpenerHoverCss extends CssResource {
1732
1733        /**
1734         * Css class reader.<p>
1735         *
1736         * @return the css class
1737         */
1738        String openerHover();
1739
1740        /**
1741         * Css class reader.<p>
1742         *
1743         * @return the css class
1744         */
1745        String openerNoHover();
1746    }
1747
1748    /** Page CSS. */
1749    interface I_CmsPageCss extends CssResource {
1750
1751        /**
1752         * Access method.<p>
1753         *
1754         * @return the CSS class name
1755         */
1756        String page();
1757    }
1758
1759    /** Basic popup CSS classes. */
1760    @Shared
1761    public interface I_CmsPopupCss extends CssResource {
1762
1763        /**
1764         * Access method.<p>
1765         *
1766         * @return the CSS class name
1767         */
1768        String popup();
1769
1770        /**
1771         * Access method.<p>
1772         *
1773         * @return the CSS class name
1774         */
1775        String popupContent();
1776    }
1777
1778    /** The context menu CSS classes. */
1779    public interface I_CmsProgressBarCss extends CssResource {
1780
1781        /**
1782         * Access method.<p>
1783         *
1784         * @return the CSS class name
1785         */
1786        String colorComplete();
1787
1788        /**
1789         * Access method.<p>
1790         *
1791         * @return the CSS class name
1792         */
1793        String colorIncomplete();
1794
1795        /**
1796         * Access method.<p>
1797         *
1798         * @return the CSS class name
1799         */
1800        String meterText();
1801
1802        /**
1803         * Access method.<p>
1804         *
1805         * @return the CSS class name
1806         */
1807        String meterValue();
1808
1809        /**
1810         * Access method.<p>
1811         *
1812         * @return the CSS class name
1813         */
1814        String meterWrap();
1815    }
1816
1817    /** The context menu CSS classes. */
1818    public interface I_CmsResourceStateCss extends CssResource {
1819
1820        /**
1821         * Access method.<p>
1822         *
1823         * @return the CSS class name
1824         */
1825        String noState();
1826
1827        /**
1828         * Access method.<p>
1829         *
1830         * @return the CSS class name
1831         */
1832        String stateChanged();
1833
1834        /**
1835         * Access method.<p>
1836         *
1837         * @return the CSS class name
1838         */
1839        String stateDeleted();
1840
1841        /**
1842         * Access method.<p>
1843         *
1844         * @return the CSS class name
1845         */
1846        String stateNew();
1847    }
1848
1849    /** The scroll bar CSS classes. */
1850    public interface I_CmsScrollBarCss extends I_CmsScrollPanel {
1851
1852        /**
1853         * Access method.<p>
1854         *
1855         * @return the CSS class name
1856         */
1857        String scrollBar();
1858
1859        /**
1860         * Access method.<p>
1861         *
1862         * @return the CSS class name
1863         */
1864        String scrollbarLayer();
1865
1866        /**
1867         * Access method.<p>
1868         *
1869         * @return the CSS class name
1870         */
1871        String scrollKnob();
1872    }
1873
1874    /** The scroll bar CSS classes. */
1875    @Shared
1876    public interface I_CmsScrollPanel extends CssResource {
1877
1878        /**
1879         * Access method.<p>
1880         *
1881         * @return the CSS class name
1882         */
1883        String allwaysShowBars();
1884
1885        /**
1886         * Access method.<p>
1887         *
1888         * @return the CSS class name
1889         */
1890        String hiddenSize();
1891
1892        /**
1893         * Access method.<p>
1894         *
1895         * @return the CSS class name
1896         */
1897        String scrollable();
1898
1899        /**
1900         * Access method.<p>
1901         *
1902         * @return the CSS class name
1903         */
1904        String scrollContainer();
1905
1906        /**
1907         * Access method.<p>
1908         *
1909         * @return the CSS class name
1910         */
1911        String scrollPanel();
1912
1913        /**
1914         * Access method.<p>
1915         *
1916         * @return the CSS class name
1917         */
1918        String showBars();
1919    }
1920
1921    /** The select area CSS. */
1922    public interface I_CmsSelectArea extends CssResource {
1923
1924        /**
1925         *  Access method.<p>
1926         *
1927         * @return the CSS class name
1928         */
1929        String main();
1930
1931        /**
1932         *  Access method.<p>
1933         *
1934         * @return the CSS class name
1935         */
1936        String marker();
1937
1938        /**
1939         *  Access method.<p>
1940         *
1941         * @return the CSS class name
1942         */
1943        String markerBlackBorder();
1944
1945        /**
1946         *  Access method.<p>
1947         *
1948         * @return the CSS class name
1949         */
1950        String markerBorder();
1951
1952        /**
1953         *  Access method.<p>
1954         *
1955         * @return the CSS class name
1956         */
1957        String markerWhiteBorder();
1958
1959        /**
1960         *  Access method.<p>
1961         *
1962         * @return the CSS class name
1963         */
1964        String overlay();
1965
1966        /**
1967         *  Access method.<p>
1968         *
1969         * @return the CSS class name
1970         */
1971        String showSelect();
1972    }
1973
1974    /** The single line list item CSS. */
1975    public interface I_CmsSingleLineItem extends I_CmsFloatDecoratedPanelCss {
1976
1977        /**
1978         * Access method.<p>
1979         *
1980         * @return the CSS class name
1981         */
1982        String itemFace();
1983
1984        /**
1985         * Access method.<p>
1986         *
1987         * @return the CSS class name
1988         */
1989        String singleLineItem();
1990    }
1991
1992    /** General CSS. */
1993    @Shared
1994    interface I_CmsStateCss extends CssResource {
1995
1996        /**
1997         * Access method.<p>
1998         *
1999         * @return the CSS class name
2000         */
2001        String cmsHovering();
2002
2003        /**
2004         * Access method.<p>
2005         *
2006         * @return the CSS class name
2007         */
2008        String cmsState();
2009
2010        /**
2011         * Access method.<p>
2012         *
2013         * @return the CSS class name
2014         */
2015        @ClassName("cmsState-down")
2016        String cmsStateDown();
2017
2018        /**
2019         * Access method.<p>
2020         *
2021         * @return the CSS class name
2022         */
2023        @ClassName("cmsState-down-disabled")
2024        String cmsStateDownDisabled();
2025
2026        /**
2027         * Access method.<p>
2028         *
2029         * @return the CSS class name
2030         */
2031        @ClassName("cmsState-down-hovering")
2032        String cmsStateDownHovering();
2033
2034        /**
2035         * Access method.<p>
2036         *
2037         * @return the CSS class name
2038         */
2039        @ClassName("cmsState-up")
2040        String cmsStateup();
2041
2042        /**
2043         * Access method.<p>
2044         *
2045         * @return the CSS class name
2046         */
2047        @ClassName("cmsState-up-disabled")
2048        String cmsStateUpDisabled();
2049
2050        /**
2051         * Access method.<p>
2052         *
2053         * @return the CSS class name
2054         */
2055        @ClassName("cmsState-up-hovering")
2056        String cmsStateUpHovering();
2057
2058    }
2059
2060    /** Tabbed panel css. */
2061    interface I_CmsTabbedPanelCss extends CssResource {
2062
2063        /**
2064         * Access method.<p>
2065         *
2066         * @return the CSS class name
2067         */
2068        String black();
2069
2070        /**
2071         * Access method.<p>
2072         *
2073         * @return the CSS class name
2074         */
2075        String borderAll();
2076
2077        /**
2078         * Access method.<p>
2079         *
2080         * @return the CSS class name
2081         */
2082        String buttonTabs();
2083
2084        /**
2085         * Access method.<p>
2086         *
2087         * @return the CSS class name
2088         */
2089        String classicTabs();
2090
2091        /**
2092         * Access method.<p>
2093         *
2094         * @return the CSS class name
2095         */
2096        @ClassName("internal-tabbed")
2097        String cmsInternalTab();
2098
2099        /**
2100         * Access method.<p>
2101         *
2102         * @return the CSS class name
2103         */
2104        @ClassName("gwt-TabLayoutPanel")
2105        String cmsTabLayoutPanel();
2106
2107        /**
2108         * Access method.<p>
2109         *
2110         * @return the CSS class name
2111         */
2112        @ClassName("gwt-TabLayoutPanelContent")
2113        String cmsTabLayoutPanelContent();
2114
2115        /**
2116         * Access method.<p>
2117         *
2118         * @return the CSS class name
2119         */
2120        @ClassName("gwt-TabLayoutPanelTab")
2121        String cmsTabLayoutPanelTab();
2122
2123        /**
2124         * Access method.<p>
2125         *
2126         * @return the CSS class name
2127         */
2128        @ClassName("gwt-TabLayoutPanelTabBar")
2129        String cmsTabLayoutPanelTabBar();
2130
2131        /**
2132         * Access method.<p>
2133         *
2134         * @return the CSS class name
2135         */
2136        @ClassName("gwt-TabLayoutPanelTabs")
2137        String cmsTabLayoutPanelTabs();
2138
2139        /**
2140         * Access method.<p>
2141         *
2142         * @return the CSS class name
2143         */
2144        @ClassName("gwt-TabLayoutPanelTab-selected")
2145        String cmsTabLayoutPanelTabSelected();
2146
2147        /**
2148         * Access method.<p>
2149         *
2150         * @return the CSS class name
2151         */
2152        String cornerLeft();
2153
2154        /**
2155         * Access method.<p>
2156         *
2157         * @return the CSS class name
2158         */
2159        String cornerRight();
2160
2161        /**
2162         * Access method.<p>
2163         *
2164         * @return the CSS class name
2165         */
2166        String tabDisabled();
2167
2168        /**
2169         * Access method.<p>
2170         *
2171         * @return the CSS class name
2172         */
2173        String tabLeftMargin();
2174
2175        /**
2176         * Access method.<p>
2177         *
2178         * @return the CSS class name
2179         */
2180        String tabPanel();
2181
2182        /**
2183         * Access method.<p>
2184         *
2185         * @return the CSS class name
2186         */
2187        String wrapTabs();
2188    }
2189
2190    /** Toolbar CSS. */
2191    @Shared
2192    interface I_CmsToolbarCss extends CssResource {
2193
2194        /**
2195         * Access method.<p>
2196         *
2197         * @return the CSS class name
2198         */
2199        String notification();
2200
2201        /**
2202         * Access method.<p>
2203         *
2204         * @return the CSS class name
2205         */
2206        @ClassName("v-button")
2207        String quickButton();
2208
2209        /**
2210         * Access method.<p>
2211         *
2212         * @return the CSS class name
2213         */
2214        @ClassName("v-disabled")
2215        String quickButtonDeactivated();
2216
2217        /**
2218         * Access method.<p>
2219         *
2220         * @return the CSS class name
2221         */
2222        @ClassName("v-button-wrap")
2223        String quickButtonWrap();
2224
2225        /**
2226         * Access method.<p>
2227         *
2228         * @return the CSS class name
2229         */
2230        String quickLaunchContainer();
2231
2232        /**
2233         * Access method.<p>
2234         *
2235         * @return the CSS class name
2236         */
2237        String simpleToolbarShow();
2238
2239        /**
2240         * Access method.<p>
2241         *
2242         * @return the CSS class name
2243         */
2244        String title();
2245
2246        /**
2247         * Access method.<p>
2248         *
2249         * @return the CSS class name
2250         */
2251        @ClassName("oc-toolbar")
2252        String toolbar();
2253
2254        /**
2255         * Access method.<p>
2256         *
2257         * @return the CSS class name
2258         */
2259        String toolbarBackground();
2260
2261        /**
2262         * Access method.<p>
2263         *
2264         * @return the CSS class name
2265         */
2266        String toolbarButtonsLeft();
2267
2268        /**
2269         * Access method.<p>
2270         *
2271         * @return the CSS class name
2272         */
2273        String toolbarButtonsRight();
2274
2275        /**
2276         * Access method.<p>
2277         *
2278         * @return the CSS class name
2279         */
2280        String toolbarCenter();
2281
2282        /**
2283         * Access method.<p>
2284         *
2285         * @return the CSS class name
2286         */
2287        String toolbarContent();
2288
2289        /**
2290         * Access method.<p>
2291         *
2292         * @return the CSS class name
2293         */
2294        String toolbarFontButton();
2295
2296        /**
2297         * Access method.<p>
2298         *
2299         * @return the CSS class name
2300         */
2301        String toolbarHide();
2302
2303        /**
2304         * Access method.<p>
2305         *
2306         * @return the CSS class name
2307         */
2308        String toolbarLogo();
2309
2310        String toolbarPlacementMode();
2311
2312        /**
2313         * Access method.<p>
2314         *
2315         * @return the CSS class name
2316         */
2317        String toolbarShow();
2318
2319        /**
2320         * Access method.<p>
2321         *
2322         * @return the CSS class name
2323         */
2324        String userInfo();
2325
2326        /**
2327         * Access method.<p>
2328         *
2329         * @return the CSS class name
2330         */
2331        String userInfoButtons();
2332
2333        /**
2334         * Access method.<p>
2335         *
2336         * @return the CSS class name
2337         */
2338        String userInfoDialog();
2339    }
2340
2341    /** The upload button CSS classes. */
2342    public interface I_CmsUploadButtonCss extends I_CmsPopupCss {
2343
2344        /**
2345         * Access method.<p>
2346         *
2347         * @return the CSS class name
2348         */
2349        String dialogMessage();
2350
2351        /**
2352         * Access method.<p>
2353         *
2354         * @return the CSS class name
2355         */
2356        String dialogMessageImportant();
2357
2358        /**
2359         * Access method.<p>
2360         *
2361         * @return the CSS class name
2362         */
2363        String fileInfoTable();
2364
2365        /**
2366         * Access method.<p>
2367         *
2368         * @return the CSS class name
2369         */
2370        String loadingAnimation();
2371
2372        /**
2373         * Access method.<p>
2374         *
2375         * @return the CSS class name
2376         */
2377        String loadingPanel();
2378
2379        /**
2380         * Access method.<p>
2381         *
2382         * @return the CSS class name
2383         */
2384        String loadingText();
2385
2386        /**
2387         * Access method.<p>
2388         *
2389         * @return the CSS class name
2390         */
2391        String progressInfo();
2392
2393        /**
2394         * Access method.<p>
2395         *
2396         * @return the CSS class name
2397         */
2398        String uploadButton();
2399
2400        /**
2401         * Access method.<p>
2402         *
2403         * @return the CSS class name
2404         */
2405        String uploadDialogButton();
2406
2407        /**
2408         * Access method.<p>
2409         *
2410         * @return the CSS class name
2411         */
2412        String uploadFileInput();
2413
2414        /**
2415         * Access method.<p>
2416         *
2417         * @return the CSS class name
2418         */
2419        String warningMessage();
2420    }
2421
2422    /** The bundle instance. */
2423    I_CmsLayoutBundle INSTANCE = GWT.create(I_CmsLayoutBundle.class);
2424
2425    /**
2426     * Access method.
2427     *
2428     * @return the attribute editor CSS
2429     */
2430    @Source("attributeEditor.gss")
2431    @Import(value = {I_CmsInputCss.class, I_CmsDialogCss.class})
2432    I_CmsAttributeEditorCss attributeEditorCss();
2433
2434    /**
2435     * Access method.<p>
2436     *
2437     * @return the availability dialog CSS
2438     */
2439    @Source("availability.gss")
2440    I_CmsAvailabilityCss availabilityCss();
2441
2442    /**
2443     * Access method.<p>
2444     *
2445     * @return the button CSS
2446     */
2447    @Source("button.gss")
2448    I_CmsButtonCss buttonCss();
2449
2450    /**
2451     * Access method.<p>
2452     *
2453     * @return the gallery dialog CSS
2454     */
2455    @Source("categorydialog.gss")
2456    I_CmsCategoryDialogCss categoryDialogCss();
2457
2458    /**
2459     * Access method.<p>
2460     *
2461     * @return the gallery dialog CSS
2462     */
2463    @Source("colorSelector.gss")
2464    I_CmsColorSelector colorSelectorCss();
2465
2466    /**
2467     * The CSS constants bundle.<p>
2468     *
2469     * @return a bundle of CSS constants
2470     */
2471    I_CmsConstantsBundle constants();
2472
2473    /**
2474     * Access method.<p>
2475     *
2476     * @return the content editor dialog CSS
2477     */
2478    @Source("contentEditor.gss")
2479    @CssResource.NotStrict
2480    I_CmsContentEditorCss contentEditorCss();
2481
2482    /**
2483     * Access method.<p>
2484     *
2485     * @return the constants CSS
2486     */
2487    @Source("contextmenu.gss")
2488    I_CmsContextmenuCss contextmenuCss();
2489
2490    /**
2491     * Access method.<p>
2492     *
2493     * @return the constants CSS
2494     */
2495    @Source("datebox.gss")
2496    I_CmsDateBoxCss dateBoxCss();
2497
2498    /**
2499     * Access method.<p>
2500     *
2501     * @return the dialog CSS
2502     */
2503    @Source("dialog.gss")
2504    @Import(value = {I_CmsInputCss.class})
2505    I_CmsDialogCss dialogCss();
2506
2507    /**
2508     * Access method.<p>
2509     *
2510     * @return the dialog CSS
2511     */
2512    @Source("directedit.gss")
2513    I_CmsDirectEditCss directEditCss();
2514
2515    /**
2516     * Access method.<p>
2517     *
2518     * @return the drag and drop CSS
2519     */
2520    @Source("dragdrop.gss")
2521    I_CmsDragCss dragdropCss();
2522
2523    /**
2524     * Access method.<p>
2525     *
2526     * @return the error dialog CSS
2527     */
2528    @Source("elementSettingsDialog.gss")
2529    @Import(value = {I_CmsInputCss.class, I_CmsDialogCss.class})
2530    I_CmsElementSettingsDialogCss elementSettingsDialogCss();
2531
2532    /**
2533     * Access method.<p>
2534     *
2535     * @return the error dialog CSS
2536     */
2537    @Source("errorDialog.gss")
2538    I_CmsErrorDialogCss errorDialogCss();
2539
2540    /**
2541     * Access method.<p>
2542     *
2543     * @return the constants CSS
2544     */
2545    @Source("fieldset.gss")
2546    I_CmsFieldsetCss fieldsetCss();
2547
2548    /**
2549     * Access method.<p>
2550     *
2551     * @return the filter select CSS
2552     */
2553    @Source("filterselect.gss")
2554    @Import(value = {I_CmsInputCss.class})
2555    I_CmsFilterSelectCss filterSelectCss();
2556
2557    /**
2558     * Access method.<p>
2559     *
2560     * @return the toolbar CSS
2561     */
2562    @Source("floatDecoratedPanel.gss")
2563    I_CmsFloatDecoratedPanelCss floatDecoratedPanelCss();
2564
2565    /**
2566     * Access method.<p>
2567     *
2568     * @return the general CSS
2569     */
2570    @Source("general.gss")
2571    I_CmsGeneralCss generalCss();
2572
2573    /**
2574     * Access method.<p>
2575     *
2576     * @return the upload button CSS
2577     */
2578    @Source("globalWidget.gss")
2579    I_CmsGlobalWidgetCss globalWidgetCss();
2580
2581    /**
2582     * Access method.<p>
2583     *
2584     * @return the highlight CSS
2585     */
2586    @Source("highlight.gss")
2587    I_CmsHighlightCss highlightCss();
2588
2589    /**
2590     * Access method.<p>
2591     *
2592     * @return the list item CSS
2593     */
2594    @Source("linkWarning.gss")
2595    I_CmsLinkWarningCss linkWarningCss();
2596
2597    /**
2598     * Access method.<p>
2599     *
2600     * @return the CSS for the list add dialog
2601     */
2602    @Source("listadd.css")
2603    @Import(value = {I_CmsListItemWidgetCss.class})
2604    I_CmsListAddCss listAddCss();
2605
2606    /**
2607     * Access method.<p>
2608     *
2609     * @return the list item CSS
2610     */
2611    @Source("listItemWidget.gss")
2612    @CssResource.NotStrict
2613    I_CmsListItemWidgetCss listItemWidgetCss();
2614
2615    /**
2616     * Access method.<p>
2617     *
2618     * @return the list tree CSS
2619     */
2620    @Source("listtree.gss")
2621    I_CmsListTreeCss listTreeCss();
2622
2623    /**
2624     * Access method.<p>
2625     *
2626     * @return the location picker CSS
2627     */
2628    @Source("locationPicker.gss")
2629    I_CmsLocationPicker locationPickerCss();
2630
2631    /**
2632     * Access method.<p>
2633     *
2634     * @return the menu button CSS
2635     */
2636    @Source("menuButton.gss")
2637    I_CmsMenuButton menuButtonCss();
2638
2639    /**
2640     * Access method.<p>
2641     *
2642     * @return the list item CSS
2643     */
2644    @Source("notification.gss")
2645    I_CmsNotificationCss notificationCss();
2646
2647    /**
2648     * Access method.<p>
2649     *
2650     * @return the upload button CSS
2651     */
2652    @Source("openerHoverWidget.gss")
2653    I_CmsOpenerHoverCss openerHoverCss();
2654
2655    /**
2656     * Access method.<p>
2657     *
2658     * @return the constants CSS
2659     */
2660    @Source("progressbar.gss")
2661    I_CmsProgressBarCss progressBarCss();
2662
2663    /**
2664     * Access method.<p>
2665     *
2666     * @return the page CSS
2667     */
2668    @Source("properties.gss")
2669    I_CmsPropertiesCss propertiesCss();
2670
2671    /**
2672     * Access method.<p>
2673     *
2674     * @return the list item CSS
2675     */
2676    @Source("resourceState.gss")
2677    I_CmsResourceStateCss resourceStateCss();
2678
2679    /**
2680     * Access method.<p>
2681     *
2682     * @return the constants CSS
2683     */
2684    @Source("scrollBar.gss")
2685    I_CmsScrollBarCss scrollBarCss();
2686
2687    /**
2688     * Access method.<p>
2689     *
2690     * @return the select area CSS
2691     */
2692    @Source("selectArea.gss")
2693    I_CmsSelectArea selectAreaCss();
2694
2695    /**
2696     * Access method.<p>
2697     *
2698     * @return the single line list item CSS
2699     */
2700    @Source("singleLineItem.gss")
2701    I_CmsSingleLineItem singleLineItemCss();
2702
2703    /**
2704     * Access method. These CSS classes are used to indicate the state of ui items, use them within a dedicated CSS resources.
2705     * Do not inject this CSS, as it contains no style information.<p>
2706     *
2707     * @return the state CSS
2708     */
2709    @Source("state.gss")
2710    I_CmsStateCss stateCss();
2711
2712    /**
2713     * Access method.<p>
2714     *
2715     * @return tabbed panel CSS
2716     */
2717    @Source("tabbedPanel.gss")
2718    I_CmsTabbedPanelCss tabbedPanelCss();
2719
2720    /**
2721     * Access method.<p>
2722     *
2723     * @return the toolbar CSS
2724     */
2725    @Source("toolbar.gss")
2726    I_CmsToolbarCss toolbarCss();
2727
2728    /**
2729     * Access method.<p>
2730     *
2731     * @return the upload button CSS
2732     */
2733    @Source("uploadButton.gss")
2734    I_CmsUploadButtonCss uploadButton();
2735}