You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SlideLayout.java 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * ====================================================================
  3. * Licensed to the Apache Software Foundation (ASF) under one or more
  4. * contributor license agreements. See the NOTICE file distributed with
  5. * this work for additional information regarding copyright ownership.
  6. * The ASF licenses this file to You under the Apache License, Version 2.0
  7. * (the "License"); you may not use this file except in compliance with
  8. * the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. * ====================================================================
  18. */
  19. package org.apache.poi.xslf.usermodel;
  20. /**
  21. * Date: 11/5/11
  22. *
  23. * @author Yegor Kozlov
  24. */
  25. public enum SlideLayout {
  26. /**
  27. * Title layout with centered title and subtitle placeholders
  28. */
  29. TITLE,
  30. /**
  31. * Title and text
  32. */
  33. TEXT,
  34. TWO_COL_TX,
  35. TBL,
  36. TEXT_AND_CHART,
  37. /**
  38. * Title, chart on left and text on right
  39. */
  40. CHART_AND_TEXT,
  41. DGM,
  42. /**
  43. * Title and chart
  44. */
  45. CHART,
  46. TX_AND_CLIP_ART,
  47. /**
  48. * Title, clipart on left, text on right
  49. */
  50. CLIP_ART_AND_TEXT,
  51. /**
  52. * Title only
  53. */
  54. TITLE_ONLY,
  55. /**
  56. * Blank
  57. */
  58. BLANK,
  59. TX_AND_OBJ,
  60. OBJ_AND_TX,
  61. OBJ_ONLY,
  62. /**
  63. * title and content
  64. */
  65. TITLE_AND_CONTENT,
  66. TX_AND_MEDIA,
  67. MEDIA_AND_TX,
  68. OBJ_OVER_TX,
  69. TX_OVER_OBJ,
  70. TX_AND_TWO_OBJ,
  71. TWO_OBJ_AND_TX,
  72. TWO_OBJ_OVER_TX,
  73. FOUR_OBJ,
  74. VERT_TX,
  75. CLIP_ART_AND_VERT_TX,
  76. VERT_TITLE_AND_TX,
  77. VERT_TITLE_AND_TX_OVER_CHART,
  78. TWO_OBJ,
  79. OBJ_AND_TWO_OBJ,
  80. TWO_OBJ_AND_OBJ,
  81. CUST,
  82. /**
  83. * Section Header
  84. */
  85. SECTION_HEADER,
  86. TWO_TX_TWO_OBJ,
  87. OBJ_TX,
  88. PIC_TX,
  89. }