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