thinreports 0.8.2 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/.github/CONTRIBUTING.md +2 -0
  3. data/.travis.yml +3 -3
  4. data/CHANGELOG.md +98 -1
  5. data/README.md +0 -9
  6. data/Rakefile +1 -2
  7. data/examples/character_spacing/character_spacing.tlf +293 -1
  8. data/examples/dynamic_image/dynamic_image.tlf +661 -1
  9. data/examples/dynamic_style/dynamic_style.rb +4 -4
  10. data/examples/dynamic_style/dynamic_style.tlf +1835 -1
  11. data/examples/dynamic_style/dynamic_style_in_list.tlf +344 -1
  12. data/examples/eudc/eudc.tlf +180 -1
  13. data/examples/hidden_shapes/hidden_shapes.tlf +449 -1
  14. data/examples/list_events/list_events.rb +1 -28
  15. data/examples/list_events/list_events.tlf +361 -0
  16. data/examples/list_manual_generation/list_manual_generation.tlf +132 -1
  17. data/examples/list_page_number/list_page_number.tlf +254 -1
  18. data/examples/page_number/page_number.tlf +215 -1
  19. data/examples/palleted_png/palleted_png.rb +2 -0
  20. data/examples/palleted_png/palleted_png.tlf +47 -1
  21. data/examples/password_setting/password_setting.tlf +45 -1
  22. data/examples/report_callbacks/report_callbacks.rb +1 -18
  23. data/examples/report_callbacks/report_callbacks.tlf +147 -1
  24. data/examples/single_line_tblock/single_line_tblock.tlf +170 -1
  25. data/examples/tblock_overflow/tblock_overflow.tlf +538 -1
  26. data/examples/tblock_styles/font_size.tlf +383 -1
  27. data/examples/tblock_styles/tblock_styles.tlf +889 -1
  28. data/examples/text_align/text_align.tlf +241 -1
  29. data/examples/typeB_page_size/B4_ISO.tlf +45 -1
  30. data/examples/typeB_page_size/B4_JIS.tlf +45 -1
  31. data/examples/word_wrap/word_wrap.tlf +297 -1
  32. data/lib/thinreports.rb +0 -1
  33. data/lib/thinreports/config.rb +3 -0
  34. data/lib/thinreports/core/errors.rb +0 -3
  35. data/lib/thinreports/core/format/base.rb +4 -4
  36. data/lib/thinreports/core/shape.rb +1 -9
  37. data/lib/thinreports/core/shape/basic.rb +3 -3
  38. data/lib/thinreports/core/shape/basic/block_format.rb +1 -1
  39. data/lib/thinreports/core/shape/basic/format.rb +2 -14
  40. data/lib/thinreports/core/shape/basic/internal.rb +2 -2
  41. data/lib/thinreports/core/shape/image_block.rb +3 -3
  42. data/lib/thinreports/core/shape/image_block/format.rb +0 -2
  43. data/lib/thinreports/core/shape/image_block/internal.rb +1 -1
  44. data/lib/thinreports/core/shape/list.rb +3 -7
  45. data/lib/thinreports/core/shape/list/format.rb +37 -24
  46. data/lib/thinreports/core/shape/list/manager.rb +1 -36
  47. data/lib/thinreports/core/shape/list/page.rb +0 -15
  48. data/lib/thinreports/core/shape/list/page_state.rb +1 -1
  49. data/lib/thinreports/core/shape/list/section_format.rb +14 -12
  50. data/lib/thinreports/core/shape/list/section_internal.rb +4 -7
  51. data/lib/thinreports/core/shape/manager/format.rb +0 -2
  52. data/lib/thinreports/core/shape/manager/internal.rb +1 -1
  53. data/lib/thinreports/core/shape/page_number.rb +1 -1
  54. data/lib/thinreports/core/shape/page_number/format.rb +9 -6
  55. data/lib/thinreports/core/shape/page_number/interface.rb +1 -1
  56. data/lib/thinreports/core/shape/page_number/internal.rb +2 -6
  57. data/lib/thinreports/core/shape/style/base.rb +11 -13
  58. data/lib/thinreports/core/shape/style/basic.rb +4 -4
  59. data/lib/thinreports/core/shape/style/graphic.rb +4 -10
  60. data/lib/thinreports/core/shape/style/text.rb +36 -69
  61. data/lib/thinreports/core/shape/text.rb +3 -3
  62. data/lib/thinreports/core/shape/text/format.rb +3 -13
  63. data/lib/thinreports/core/shape/text/internal.rb +2 -2
  64. data/lib/thinreports/core/shape/text_block.rb +3 -3
  65. data/lib/thinreports/core/shape/text_block/format.rb +9 -6
  66. data/lib/thinreports/core/shape/text_block/interface.rb +7 -7
  67. data/lib/thinreports/core/shape/text_block/internal.rb +1 -1
  68. data/lib/thinreports/generator/pdf.rb +0 -1
  69. data/lib/thinreports/generator/pdf/document.rb +2 -2
  70. data/lib/thinreports/generator/pdf/document/draw_shape.rb +25 -51
  71. data/lib/thinreports/generator/pdf/document/draw_template_items.rb +66 -0
  72. data/lib/thinreports/generator/pdf/document/font.rb +3 -8
  73. data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +97 -77
  74. data/lib/thinreports/generator/pdf/document/graphics/basic.rb +18 -13
  75. data/lib/thinreports/generator/pdf/document/graphics/image.rb +17 -12
  76. data/lib/thinreports/generator/pdf/document/page.rb +1 -1
  77. data/lib/thinreports/generator/pdf/drawer/list.rb +5 -1
  78. data/lib/thinreports/generator/pdf/drawer/list_section.rb +1 -4
  79. data/lib/thinreports/generator/pdf/drawer/page.rb +9 -9
  80. data/lib/thinreports/layout.rb +3 -3
  81. data/lib/thinreports/layout/base.rb +0 -16
  82. data/lib/thinreports/layout/format.rb +38 -57
  83. data/lib/thinreports/layout/legacy_schema.rb +354 -0
  84. data/lib/thinreports/layout/version.rb +1 -1
  85. data/lib/thinreports/report.rb +0 -1
  86. data/lib/thinreports/report/base.rb +3 -17
  87. data/lib/thinreports/report/internal.rb +13 -55
  88. data/lib/thinreports/report/page.rb +1 -1
  89. data/lib/thinreports/version.rb +1 -1
  90. data/test/data/legacy_layout/all-items.tlf +1 -0
  91. data/test/schema_helper.rb +121 -0
  92. data/test/test_helper.rb +13 -50
  93. data/test/unit/core/format/test_base.rb +35 -31
  94. data/test/unit/core/shape/base/test_internal.rb +1 -1
  95. data/test/unit/core/shape/basic/test_block_format.rb +23 -0
  96. data/test/unit/core/shape/basic/{test_basic_interface.rb → test_block_interface.rb} +1 -1
  97. data/test/unit/core/shape/basic/{test_basic_internal.rb → test_block_internal.rb} +4 -7
  98. data/test/unit/core/shape/basic/test_format.rb +25 -47
  99. data/test/unit/core/shape/basic/test_interface.rb +5 -5
  100. data/test/unit/core/shape/basic/test_internal.rb +6 -11
  101. data/test/unit/core/shape/image_block/test_interface.rb +5 -5
  102. data/test/unit/core/shape/image_block/test_internal.rb +2 -2
  103. data/test/unit/core/shape/list/test_format.rb +86 -44
  104. data/test/unit/core/shape/list/test_manager.rb +10 -65
  105. data/test/unit/core/shape/list/test_page.rb +10 -61
  106. data/test/unit/core/shape/list/test_page_state.rb +1 -1
  107. data/test/unit/core/shape/list/test_section_format.rb +19 -28
  108. data/test/unit/core/shape/list/test_section_interface.rb +14 -6
  109. data/test/unit/core/shape/list/test_section_internal.rb +17 -23
  110. data/test/unit/core/shape/manager/test_format.rb +1 -1
  111. data/test/unit/core/shape/manager/test_internal.rb +59 -98
  112. data/test/unit/core/shape/manager/test_target.rb +21 -30
  113. data/test/unit/core/shape/page_number/test_format.rb +34 -52
  114. data/test/unit/core/shape/page_number/test_interface.rb +1 -1
  115. data/test/unit/core/shape/page_number/test_internal.rb +2 -2
  116. data/test/unit/core/shape/styles/test_base.rb +16 -41
  117. data/test/unit/core/shape/styles/test_basic.rb +7 -7
  118. data/test/unit/core/shape/styles/test_graphic.rb +27 -32
  119. data/test/unit/core/shape/styles/test_text.rb +68 -311
  120. data/test/unit/core/shape/text/test_format.rb +30 -59
  121. data/test/unit/core/shape/text/test_internal.rb +5 -5
  122. data/test/unit/core/shape/text_block/formatter/test_datetime.rb +13 -13
  123. data/test/unit/core/shape/text_block/test_format.rb +145 -146
  124. data/test/unit/core/shape/text_block/test_interface.rb +9 -9
  125. data/test/unit/core/shape/text_block/test_internal.rb +9 -9
  126. data/test/unit/core/test_shape.rb +19 -31
  127. data/test/unit/generator/pdf/document/graphics/test_attributes.rb +112 -122
  128. data/test/unit/generator/pdf/document/graphics/test_basic.rb +45 -0
  129. data/test/unit/generator/pdf/document/graphics/test_image.rb +5 -5
  130. data/test/unit/generator/pdf/document/test_font.rb +4 -10
  131. data/test/unit/generator/pdf/document/test_page.rb +13 -11
  132. data/test/unit/generator/pdf/document/test_parse_color.rb +5 -5
  133. data/test/unit/generator/test_base.rb +5 -5
  134. data/test/unit/generator/test_configuration.rb +4 -8
  135. data/test/unit/generator/test_pdf.rb +3 -2
  136. data/test/unit/layout/test_base.rb +16 -22
  137. data/test/unit/layout/test_format.rb +66 -86
  138. data/test/unit/layout/test_legacy_schema.rb +587 -0
  139. data/test/unit/layout/test_version.rb +20 -20
  140. data/test/unit/report/test_base.rb +32 -45
  141. data/test/unit/report/test_internal.rb +43 -99
  142. data/test/unit/test_config.rb +4 -2
  143. data/test/unit/test_layout.rb +1 -1
  144. metadata +20 -48
  145. data/examples/list_events/list_events_0_7_7.tlf +0 -1
  146. data/examples/list_events/list_events_0_8.tlf +0 -1
  147. data/lib/thinreports/core/events.rb +0 -69
  148. data/lib/thinreports/core/format/builder.rb +0 -62
  149. data/lib/thinreports/core/shape/list/configuration.rb +0 -54
  150. data/lib/thinreports/core/shape/list/events.rb +0 -47
  151. data/lib/thinreports/core/shape/list/store.rb +0 -33
  152. data/lib/thinreports/generator/pdf/configuration.rb +0 -33
  153. data/lib/thinreports/generator/pdf/document/parse_svg.rb +0 -104
  154. data/lib/thinreports/layout/configuration.rb +0 -29
  155. data/test/data/layout_block.tlf +0 -1
  156. data/test/data/layout_list.tlf +0 -1
  157. data/test/data/layout_list_noheader.tlf +0 -1
  158. data/test/data/layout_text1.tlf +0 -1
  159. data/test/data/layout_text2.tlf +0 -1
  160. data/test/unit/core/format/test_builder.rb +0 -109
  161. data/test/unit/core/shape/basic/test_basic_format.rb +0 -30
  162. data/test/unit/core/shape/image_block/test_format.rb +0 -58
  163. data/test/unit/core/shape/list/test_configuration.rb +0 -69
  164. data/test/unit/core/shape/list/test_events.rb +0 -36
  165. data/test/unit/core/shape/list/test_store.rb +0 -41
  166. data/test/unit/core/test_events.rb +0 -93
  167. data/test/unit/generator/pdf/document/test_draw_shape.rb +0 -44
  168. data/test/unit/generator/pdf/test_configuration.rb +0 -31
  169. data/test/unit/layout/test_configuration.rb +0 -21
  170. data/test/unit/report/test_events.rb +0 -22
@@ -1 +1,344 @@
1
- {"version":"0.7.7.1","finger-print":-748848432,"config":{"title":"Dynamic Style in List","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><!--SHAPE{\"type\":\"s-list\",\"id\":\"list\",\"display\":\"true\",\"desc\":null,\"footer\":{},\"footer-enabled\":\"false\",\"page-footer\":{},\"page-footer-enabled\":\"false\",\"detail\":{\"height\":57,\"svg\":{\"tag\":\"g\",\"content\":\"<!---SHAPE{\\\"type\\\":\\\"s-rect\\\",\\\"id\\\":\\\"rect\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"svg\\\":{\\\"tag\\\":\\\"rect\\\",\\\"attrs\\\":{\\\"stroke\\\":\\\"#000000\\\",\\\"stroke-width\\\":\\\"1\\\",\\\"fill\\\":\\\"#FFFFFF\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"stroke-dasharray\\\":\\\"none\\\",\\\"rx\\\":\\\"0\\\",\\\"ry\\\":\\\"0\\\",\\\"width\\\":\\\"77\\\",\\\"height\\\":\\\"31\\\",\\\"x\\\":\\\"111.1\\\",\\\"y\\\":\\\"137.8\\\",\\\"id\\\":\\\"goog_2086231601\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-text\\\",\\\"id\\\":\\\"text\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"line-height\\\":\\\"\\\",\\\"valign\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":223.1,\\\"y\\\":132.8,\\\"width\\\":147,\\\"height\\\":45.1},\\\"text\\\":[\\\"Detail Text\\\"],\\\"svg\\\":{\\\"tag\\\":\\\"g\\\",\\\"attrs\\\":{\\\"stroke-width\\\":\\\"0\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"kerning\\\":\\\"auto\\\",\\\"stroke\\\":\\\"none\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-size\\\":\\\"18\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"id\\\":\\\"goog_2086231602\\\"},\\\"content\\\":\\\"<text xmlns=\\\\\\\"http://www.w3.org/2000/svg\\\\\\\" class=\\\\\\\"s-text-l0\\\\\\\" xml:space=\\\\\\\"preserve\\\\\\\" stroke=\\\\\\\"none\\\\\\\" fill=\\\\\\\"inherit\\\\\\\" fill-opacity=\\\\\\\"1\\\\\\\" text-decoration=\\\\\\\"none\\\\\\\" x=\\\\\\\"223.1\\\\\\\" y=\\\\\\\"149.8\\\\\\\">Detail Text</text>\\\"}}SHAPE---><rect xmlns=\\\"http://www.w3.org/2000/svg\\\" stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"147\\\" height=\\\"45.1\\\" x=\\\"223.1\\\" y=\\\"132.8\\\" id=\\\"goog_2086231603\\\"/><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"tblock\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":389.1,\\\"y\\\":134.8,\\\"width\\\":144.1,\\\"height\\\":42.1},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"Detail Tblock\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"\\\",\\\"word-wrap\\\":\\\"none\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":389.1,\\\"y\\\":134.7,\\\"width\\\":144.1,\\\"height\\\":42.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"18\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"id\\\":\\\"goog_2086231604\\\"}}}SHAPE---><rect xmlns=\\\"http://www.w3.org/2000/svg\\\" stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"144.1\\\" height=\\\"42.1\\\" x=\\\"389.1\\\" y=\\\"134.8\\\" id=\\\"goog_2086231605\\\"/><line xmlns=\\\"http://www.w3.org/2000/svg\\\" stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"20\\\" x2=\\\"575.2\\\" y1=\\\"183.8\\\" y2=\\\"183.8\\\" id=\\\"goog_2086231606\\\"/>\"},\"translate\":{\"x\":0,\"y\":1.2}},\"header\":{\"height\":51,\"svg\":{\"tag\":\"g\",\"content\":\"<!---SHAPE{\\\"type\\\":\\\"s-rect\\\",\\\"id\\\":\\\"rect\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"svg\\\":{\\\"tag\\\":\\\"rect\\\",\\\"attrs\\\":{\\\"stroke\\\":\\\"#000000\\\",\\\"stroke-width\\\":\\\"1\\\",\\\"fill\\\":\\\"#FFFFFF\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"stroke-dasharray\\\":\\\"none\\\",\\\"rx\\\":\\\"0\\\",\\\"ry\\\":\\\"0\\\",\\\"width\\\":\\\"77\\\",\\\"height\\\":\\\"31\\\",\\\"x\\\":\\\"110.1\\\",\\\"y\\\":\\\"31\\\",\\\"id\\\":\\\"goog_2086231595\\\"}}}SHAPE---><!---SHAPE{\\\"type\\\":\\\"s-text\\\",\\\"id\\\":\\\"text\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"line-height\\\":\\\"\\\",\\\"valign\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":223.1,\\\"y\\\":21,\\\"width\\\":147,\\\"height\\\":45.1},\\\"text\\\":[\\\"Header Text\\\"],\\\"svg\\\":{\\\"tag\\\":\\\"g\\\",\\\"attrs\\\":{\\\"stroke-width\\\":\\\"0\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"kerning\\\":\\\"auto\\\",\\\"font-size\\\":\\\"18\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"id\\\":\\\"goog_2086231596\\\"},\\\"content\\\":\\\"<text xmlns=\\\\\\\"http://www.w3.org/2000/svg\\\\\\\" class=\\\\\\\"s-text-l0\\\\\\\" xml:space=\\\\\\\"preserve\\\\\\\" stroke=\\\\\\\"none\\\\\\\" fill=\\\\\\\"inherit\\\\\\\" fill-opacity=\\\\\\\"1\\\\\\\" text-decoration=\\\\\\\"none\\\\\\\" x=\\\\\\\"223.1\\\\\\\" y=\\\\\\\"38\\\\\\\">Header Text</text>\\\"}}SHAPE---><rect xmlns=\\\"http://www.w3.org/2000/svg\\\" stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"147\\\" height=\\\"45.1\\\" x=\\\"223.1\\\" y=\\\"21\\\" id=\\\"goog_2086231597\\\"/><!---SHAPE{\\\"type\\\":\\\"s-tblock\\\",\\\"id\\\":\\\"tblock\\\",\\\"display\\\":\\\"true\\\",\\\"desc\\\":null,\\\"multiple\\\":\\\"true\\\",\\\"valign\\\":\\\"\\\",\\\"line-height\\\":\\\"\\\",\\\"box\\\":{\\\"x\\\":389.1,\\\"y\\\":23,\\\"width\\\":144.1,\\\"height\\\":42.1},\\\"format\\\":{\\\"base\\\":\\\"\\\",\\\"type\\\":\\\"\\\"},\\\"value\\\":\\\"Header Tblock\\\",\\\"ref-id\\\":\\\"\\\",\\\"overflow\\\":\\\"\\\",\\\"word-wrap\\\":\\\"none\\\",\\\"svg\\\":{\\\"tag\\\":\\\"textArea\\\",\\\"attrs\\\":{\\\"x\\\":389.1,\\\"y\\\":22.9,\\\"width\\\":144.1,\\\"height\\\":42.1,\\\"xml:space\\\":\\\"preserve\\\",\\\"kerning\\\":\\\"auto\\\",\\\"fill\\\":\\\"#000000\\\",\\\"fill-opacity\\\":\\\"1\\\",\\\"font-size\\\":\\\"18\\\",\\\"font-family\\\":\\\"Helvetica\\\",\\\"font-weight\\\":\\\"normal\\\",\\\"font-style\\\":\\\"normal\\\",\\\"text-anchor\\\":\\\"start\\\",\\\"text-decoration\\\":\\\"none\\\",\\\"id\\\":\\\"goog_2086231598\\\"}}}SHAPE---><rect xmlns=\\\"http://www.w3.org/2000/svg\\\" stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" fill-opacity=\\\"1\\\" class=\\\"s-rect\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" rx=\\\"0\\\" ry=\\\"0\\\" width=\\\"144.1\\\" height=\\\"42.1\\\" x=\\\"389.1\\\" y=\\\"23\\\" id=\\\"goog_2086231599\\\"/><line xmlns=\\\"http://www.w3.org/2000/svg\\\" stroke=\\\"#000000\\\" stroke-width=\\\"1\\\" fill=\\\"none\\\" class=\\\"s-line\\\" x-display=\\\"true\\\" x-stroke-type=\\\"solid\\\" stroke-dasharray=\\\"none\\\" x-id=\\\"\\\" x1=\\\"20\\\" x2=\\\"575.2\\\" y1=\\\"71\\\" y2=\\\"71\\\" id=\\\"goog_2086231600\\\"/>\"},\"translate\":{\"x\":0,\"y\":57}},\"header-enabled\":\"true\",\"svg\":{\"tag\":\"g\",\"attrs\":{}},\"content-height\":364.2,\"page-break\":\"true\"}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-list\" x-id=\"list\" x-header-enabled=\"true\" x-page-footer-enabled=\"false\" x-footer-enabled=\"false\" x-changing-page=\"true\" x-display=\"true\" width=\"555.2\" height=\"415.2\" x=\"20\" y=\"77\" id=\"goog_2086231607\"><g class=\"s-list-header\" transform=\"translate(0,57) rotate(0 0 0)\" x-top=\"77\" x-height=\"51\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"rect\" rx=\"0\" ry=\"0\" width=\"77\" height=\"31\" x=\"110.1\" y=\"31\" id=\"goog_2086231595\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"147\" x-height=\"45.1\" x-left=\"223.1\" x-top=\"21\" id=\"goog_2086231596\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"147\" height=\"45.1\" x=\"223.1\" y=\"21\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"223.1\" y=\"38\">Header Text</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"147\" height=\"45.1\" x=\"223.1\" y=\"21\" id=\"goog_2086231597\"/><g class=\"s-tblock\" x-format-type=\"\" x-value=\"Header Tblock\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"tblock\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"144.1\" x-height=\"42.1\" x-left=\"389.1\" x-top=\"23\" id=\"goog_2086231598\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"144.1\" height=\"42.1\" x=\"389.1\" y=\"23\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"391.1\" y=\"34\">tblock</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"144.1\" height=\"42.1\" x=\"389.1\" y=\"23\" id=\"goog_2086231599\"/><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"20\" x2=\"575.2\" y1=\"71\" y2=\"71\" id=\"goog_2086231600\"/></g><g class=\"s-list-detail\" transform=\"translate(0,1.2) rotate(0 0 0)\" x-top=\"128\" x-height=\"57\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"rect\" rx=\"0\" ry=\"0\" width=\"77\" height=\"31\" x=\"111.1\" y=\"137.8\" id=\"goog_2086231601\"/><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"text\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"Helvetica\" font-size=\"18\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"147\" x-height=\"45.1\" x-left=\"223.1\" x-top=\"132.8\" id=\"goog_2086231602\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"147\" height=\"45.1\" x=\"223.1\" y=\"132.8\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"223.1\" y=\"149.8\">Detail Text</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"147\" height=\"45.1\" x=\"223.1\" y=\"132.8\" id=\"goog_2086231603\"/><g class=\"s-tblock\" x-format-type=\"\" x-value=\"Detail Tblock\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"tblock\" x-width=\"144.1\" x-height=\"42.1\" x-left=\"389.1\" x-top=\"134.8\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" id=\"goog_2086231604\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"144.1\" height=\"42.1\" x=\"389.1\" y=\"134.8\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"391.1\" y=\"145.8\">tblock</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"144.1\" height=\"42.1\" x=\"389.1\" y=\"134.8\" id=\"goog_2086231605\"/><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"20\" x2=\"575.2\" y1=\"183.8\" y2=\"183.8\" id=\"goog_2086231606\"/></g><g class=\"s-list-page-footer\" transform=\"translate(0,-48.6) rotate(0 0 0)\" x-top=\"185\" x-height=\"0\" display=\"none\"/><g class=\"s-list-footer\" transform=\"translate(0,-128.7) rotate(0 0 0)\" x-top=\"185\" x-height=\"0\" display=\"none\"/><text class=\"s-list-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"87.8\">list</text><rect stroke-dasharray=\"5\" stroke=\"#BBBBBB\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"0\" class=\"s-list-face\" width=\"555.2\" height=\"415.2\" x=\"20\" y=\"77\"/></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Times New Roman\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"underline\" x-width=\"200\" x-height=\"19\" x-left=\"197.6\" x-top=\"36\" id=\"goog_2086231608\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"200\" height=\"19\" x=\"197.6\" y=\"36\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"underline\" x=\"297.6\" y=\"48.2\">Dynamic Style in List</text></g></g></svg>","state":{"layout-guide":[]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "list",
6
+ "type": "list",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 20,
10
+ "y": 77,
11
+ "width": 555.2,
12
+ "height": 415.2,
13
+ "header": {
14
+ "enabled": true,
15
+ "height": 51,
16
+ "translate": {
17
+ "x": 0,
18
+ "y": 57
19
+ },
20
+ "items": [
21
+ {
22
+ "id": "rect",
23
+ "type": "rect",
24
+ "display": true,
25
+ "description": "",
26
+ "x": 110.1,
27
+ "y": 31,
28
+ "width": 77,
29
+ "height": 31,
30
+ "style": {
31
+ "border-color": "#000000",
32
+ "border-width": 1,
33
+ "border-style": "solid",
34
+ "fill-color": "#FFFFFF"
35
+ },
36
+ "border-radius": 0
37
+ },
38
+ {
39
+ "id": "text",
40
+ "type": "text",
41
+ "display": true,
42
+ "description": "",
43
+ "x": 223.1,
44
+ "y": 21,
45
+ "width": 147,
46
+ "height": 45.1,
47
+ "style": {
48
+ "font-family": [
49
+ "Helvetica"
50
+ ],
51
+ "font-size": 18,
52
+ "color": "#000000",
53
+ "text-align": "left",
54
+ "vertical-align": "top",
55
+ "line-height": "",
56
+ "line-height-ratio": "",
57
+ "letter-spacing": "",
58
+ "font-style": []
59
+ },
60
+ "texts": [
61
+ "Header Text"
62
+ ]
63
+ },
64
+ {
65
+ "id": "",
66
+ "type": "rect",
67
+ "display": true,
68
+ "description": "",
69
+ "x": 223.1,
70
+ "y": 21,
71
+ "width": 147,
72
+ "height": 45.1,
73
+ "style": {
74
+ "border-color": "#000000",
75
+ "border-width": 1,
76
+ "border-style": "solid",
77
+ "fill-color": "none"
78
+ },
79
+ "border-radius": 0
80
+ },
81
+ {
82
+ "id": "",
83
+ "type": "rect",
84
+ "display": true,
85
+ "description": "",
86
+ "x": 389.1,
87
+ "y": 23,
88
+ "width": 144.1,
89
+ "height": 42.1,
90
+ "style": {
91
+ "border-color": "#000000",
92
+ "border-width": 1,
93
+ "border-style": "solid",
94
+ "fill-color": "none"
95
+ },
96
+ "border-radius": 0
97
+ },
98
+ {
99
+ "id": "",
100
+ "type": "line",
101
+ "display": true,
102
+ "description": "",
103
+ "style": {
104
+ "border-color": "#000000",
105
+ "border-width": 1,
106
+ "border-style": "solid"
107
+ },
108
+ "x1": 20,
109
+ "y1": 71,
110
+ "x2": 575.2,
111
+ "y2": 71
112
+ },
113
+ {
114
+ "id": "tblock",
115
+ "type": "text-block",
116
+ "display": true,
117
+ "description": "",
118
+ "x": 389.1,
119
+ "y": 23,
120
+ "width": 144.1,
121
+ "height": 42.1,
122
+ "style": {
123
+ "font-family": [
124
+ "Helvetica"
125
+ ],
126
+ "font-size": 18,
127
+ "color": "#000000",
128
+ "text-align": "left",
129
+ "vertical-align": "top",
130
+ "line-height": "",
131
+ "line-height-ratio": "",
132
+ "letter-spacing": "",
133
+ "font-style": [],
134
+ "overflow": "truncate",
135
+ "word-wrap": "break-word"
136
+ },
137
+ "reference-id": "",
138
+ "value": "Header Tblock",
139
+ "multiple-line": true,
140
+ "format": {
141
+ "base": "",
142
+ "type": ""
143
+ }
144
+ }
145
+ ]
146
+ },
147
+ "detail": {
148
+ "height": 57,
149
+ "translate": {
150
+ "x": 0,
151
+ "y": 1.2
152
+ },
153
+ "items": [
154
+ {
155
+ "id": "rect",
156
+ "type": "rect",
157
+ "display": true,
158
+ "description": "",
159
+ "x": 111.1,
160
+ "y": 137.8,
161
+ "width": 77,
162
+ "height": 31,
163
+ "style": {
164
+ "border-color": "#000000",
165
+ "border-width": 1,
166
+ "border-style": "solid",
167
+ "fill-color": "#FFFFFF"
168
+ },
169
+ "border-radius": 0
170
+ },
171
+ {
172
+ "id": "text",
173
+ "type": "text",
174
+ "display": true,
175
+ "description": "",
176
+ "x": 223.1,
177
+ "y": 132.8,
178
+ "width": 147,
179
+ "height": 45.1,
180
+ "style": {
181
+ "font-family": [
182
+ "Helvetica"
183
+ ],
184
+ "font-size": 18,
185
+ "color": "#000000",
186
+ "text-align": "left",
187
+ "vertical-align": "top",
188
+ "line-height": "",
189
+ "line-height-ratio": "",
190
+ "letter-spacing": "",
191
+ "font-style": []
192
+ },
193
+ "texts": [
194
+ "Detail Text"
195
+ ]
196
+ },
197
+ {
198
+ "id": "",
199
+ "type": "rect",
200
+ "display": true,
201
+ "description": "",
202
+ "x": 223.1,
203
+ "y": 132.8,
204
+ "width": 147,
205
+ "height": 45.1,
206
+ "style": {
207
+ "border-color": "#000000",
208
+ "border-width": 1,
209
+ "border-style": "solid",
210
+ "fill-color": "none"
211
+ },
212
+ "border-radius": 0
213
+ },
214
+ {
215
+ "id": "tblock",
216
+ "type": "text-block",
217
+ "display": true,
218
+ "description": "",
219
+ "x": 389.1,
220
+ "y": 134.8,
221
+ "width": 144.1,
222
+ "height": 42.1,
223
+ "style": {
224
+ "font-family": [
225
+ "Helvetica"
226
+ ],
227
+ "font-size": 18,
228
+ "color": "#000000",
229
+ "text-align": "left",
230
+ "vertical-align": "top",
231
+ "line-height": "",
232
+ "line-height-ratio": "",
233
+ "letter-spacing": "",
234
+ "font-style": [],
235
+ "overflow": "truncate",
236
+ "word-wrap": "break-word"
237
+ },
238
+ "reference-id": "",
239
+ "value": "Detail Tblock",
240
+ "multiple-line": true,
241
+ "format": {
242
+ "base": "",
243
+ "type": ""
244
+ }
245
+ },
246
+ {
247
+ "id": "",
248
+ "type": "rect",
249
+ "display": true,
250
+ "description": "",
251
+ "x": 389.1,
252
+ "y": 134.8,
253
+ "width": 144.1,
254
+ "height": 42.1,
255
+ "style": {
256
+ "border-color": "#000000",
257
+ "border-width": 1,
258
+ "border-style": "solid",
259
+ "fill-color": "none"
260
+ },
261
+ "border-radius": 0
262
+ },
263
+ {
264
+ "id": "",
265
+ "type": "line",
266
+ "display": true,
267
+ "description": "",
268
+ "style": {
269
+ "border-color": "#000000",
270
+ "border-width": 1,
271
+ "border-style": "solid"
272
+ },
273
+ "x1": 20,
274
+ "y1": 183.8,
275
+ "x2": 575.2,
276
+ "y2": 183.8
277
+ }
278
+ ]
279
+ },
280
+ "page-footer": {
281
+ "enabled": false,
282
+ "height": 0,
283
+ "translate": {
284
+ "x": 0,
285
+ "y": -48.6
286
+ },
287
+ "items": []
288
+ },
289
+ "footer": {
290
+ "enabled": false,
291
+ "height": 0,
292
+ "translate": {
293
+ "x": 0,
294
+ "y": -128.7
295
+ },
296
+ "items": []
297
+ },
298
+ "content-height": 364.2,
299
+ "auto-page-break": true
300
+ },
301
+ {
302
+ "id": "",
303
+ "type": "text",
304
+ "display": true,
305
+ "description": "",
306
+ "x": 197.6,
307
+ "y": 36,
308
+ "width": 200,
309
+ "height": 20,
310
+ "style": {
311
+ "font-family": [
312
+ "Times New Roman"
313
+ ],
314
+ "font-size": 18,
315
+ "color": "#000000",
316
+ "text-align": "center",
317
+ "vertical-align": "top",
318
+ "line-height": "",
319
+ "line-height-ratio": "",
320
+ "letter-spacing": "",
321
+ "font-style": [
322
+ "underline"
323
+ ]
324
+ },
325
+ "texts": [
326
+ "Dynamic Style in List"
327
+ ]
328
+ }
329
+ ],
330
+ "state": {
331
+ "layout-guides": []
332
+ },
333
+ "title": "Dynamic Style in List",
334
+ "report": {
335
+ "paper-type": "A4",
336
+ "orientation": "portrait",
337
+ "margin": [
338
+ 20,
339
+ 20,
340
+ 20,
341
+ 20
342
+ ]
343
+ }
344
+ }
@@ -1 +1,180 @@
1
- {"version":"0.7.7.1","finger-print":1725524977,"config":{"title":"EUDC","option":{},"page":{"paper-type":"A4","orientation":"landscape","margin-top":"20","margin-bottom":"20","margin-left":"20","margin-right":"20"}},"svg":"<svg width=\"841.8\" height=\"595.2\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 841.8 595.2\"><g class=\"canvas\"><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"631\" x-height=\"100\" x-left=\"105.4\" x-top=\"60\" x-valign=\"center\" id=\"goog_2086231609\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"631\" height=\"100\" x=\"105.4\" y=\"60\"/><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"420.9\" y=\"123.8\">\u65e5\u672c\u3067\u751f\u307e\u308c\u4e16\u754c\u304c\u80b2\u3066\u305f\u8a00\u8a9e Ruby\ue000</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"eudc\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":20,\"y\":154.3,\"width\":801.8,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":20,\"y\":154.3,\"width\":801.8,\"height\":61,\"xml:space\":\"preserve\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"36\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"kerning\":\"null\",\"id\":\"goog_2086231610\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" x-display=\"true\" x-multiple=\"true\" x-id=\"eudc\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"36\" font-family=\"IPAMincho\" x-width=\"801.8\" x-height=\"61\" x-left=\"20\" x-top=\"154.3\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" kerning=\"null\" x-valign=\"center\" id=\"goog_2086231610\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"801.8\" height=\"61\" x=\"20\" y=\"154.3\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"22\" y=\"165.3\">eudc</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"eudc_bold\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":249.2,\"y\":249,\"width\":343.3,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":249.2,\"y\":249,\"width\":343.3,\"height\":61,\"xml:space\":\"preserve\",\"kerning\":\"null\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"36\",\"font-family\":\"IPAMincho\",\"font-weight\":\"bold\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"id\":\"goog_2086231611\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"null\" x-display=\"true\" x-multiple=\"true\" x-id=\"eudc_bold\" x-width=\"343.3\" x-height=\"61\" x-left=\"249.2\" x-top=\"249\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"bold\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-valign=\"center\" id=\"goog_2086231611\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"343.3\" height=\"61\" x=\"249.2\" y=\"249\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"251.2\" y=\"260\">eudc_bold</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"eudc_italic\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":249.2,\"y\":329.1,\"width\":343.3,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":249.2,\"y\":329.1,\"width\":343.3,\"height\":61,\"xml:space\":\"preserve\",\"kerning\":\"null\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"36\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"italic\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"id\":\"goog_2086231612\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"null\" x-display=\"true\" x-multiple=\"true\" x-id=\"eudc_italic\" x-width=\"343.3\" x-height=\"61\" x-left=\"249.2\" x-top=\"329.1\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"italic\" text-decoration=\"none\" text-anchor=\"middle\" x-valign=\"center\" id=\"goog_2086231612\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"343.3\" height=\"61\" x=\"249.2\" y=\"329.1\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"251.2\" y=\"340.1\">eudc_italic</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"eudc_bold_italic\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"center\",\"line-height\":\"\",\"box\":{\"x\":249.2,\"y\":409,\"width\":343.3,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"none\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":249.2,\"y\":409,\"width\":343.3,\"height\":61,\"xml:space\":\"preserve\",\"kerning\":\"null\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"36\",\"font-family\":\"IPAMincho\",\"font-weight\":\"bold\",\"font-style\":\"italic\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"id\":\"goog_2086231613\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"null\" x-display=\"true\" x-multiple=\"true\" x-id=\"eudc_bold_italic\" x-width=\"343.3\" x-height=\"61\" x-left=\"249.2\" x-top=\"409\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"36\" font-family=\"IPAMincho\" font-weight=\"bold\" font-style=\"italic\" text-decoration=\"none\" text-anchor=\"middle\" x-valign=\"center\" id=\"goog_2086231613\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"343.3\" height=\"61\" x=\"249.2\" y=\"409\"/><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"251.2\" y=\"420\">eudc_bold_italic</text></g>LAYOUT--></g></svg>","state":{"layout-guide":[]}}
1
+ {
2
+ "version": "0.9.0",
3
+ "items": [
4
+ {
5
+ "id": "",
6
+ "type": "text",
7
+ "display": true,
8
+ "description": "",
9
+ "x": 105.4,
10
+ "y": 60,
11
+ "width": 631,
12
+ "height": 100,
13
+ "style": {
14
+ "font-family": [
15
+ "IPAMincho"
16
+ ],
17
+ "font-size": 36,
18
+ "color": "#000000",
19
+ "text-align": "center",
20
+ "vertical-align": "middle",
21
+ "line-height": "",
22
+ "line-height-ratio": "",
23
+ "letter-spacing": "",
24
+ "font-style": []
25
+ },
26
+ "texts": [
27
+ "日本で生まれ世界が育てた言語 Ruby"
28
+ ]
29
+ },
30
+ {
31
+ "id": "eudc",
32
+ "type": "text-block",
33
+ "display": true,
34
+ "description": "",
35
+ "x": 20,
36
+ "y": 154.3,
37
+ "width": 801.8,
38
+ "height": 61,
39
+ "style": {
40
+ "font-family": [
41
+ "IPAMincho"
42
+ ],
43
+ "font-size": 36,
44
+ "color": "#000000",
45
+ "text-align": "center",
46
+ "vertical-align": "middle",
47
+ "line-height": "",
48
+ "line-height-ratio": "",
49
+ "letter-spacing": null,
50
+ "font-style": [],
51
+ "overflow": "truncate",
52
+ "word-wrap": "break-word"
53
+ },
54
+ "reference-id": "",
55
+ "value": "",
56
+ "multiple-line": true,
57
+ "format": {
58
+ "base": "",
59
+ "type": ""
60
+ }
61
+ },
62
+ {
63
+ "id": "eudc_bold",
64
+ "type": "text-block",
65
+ "display": true,
66
+ "description": "",
67
+ "x": 249.2,
68
+ "y": 249,
69
+ "width": 343.3,
70
+ "height": 61,
71
+ "style": {
72
+ "font-family": [
73
+ "IPAMincho"
74
+ ],
75
+ "font-size": 36,
76
+ "color": "#000000",
77
+ "text-align": "center",
78
+ "vertical-align": "middle",
79
+ "line-height": "",
80
+ "line-height-ratio": "",
81
+ "letter-spacing": null,
82
+ "font-style": [
83
+ "bold"
84
+ ],
85
+ "overflow": "truncate",
86
+ "word-wrap": "break-word"
87
+ },
88
+ "reference-id": "",
89
+ "value": "",
90
+ "multiple-line": true,
91
+ "format": {
92
+ "base": "",
93
+ "type": ""
94
+ }
95
+ },
96
+ {
97
+ "id": "eudc_italic",
98
+ "type": "text-block",
99
+ "display": true,
100
+ "description": "",
101
+ "x": 249.2,
102
+ "y": 329.1,
103
+ "width": 343.3,
104
+ "height": 61,
105
+ "style": {
106
+ "font-family": [
107
+ "IPAMincho"
108
+ ],
109
+ "font-size": 36,
110
+ "color": "#000000",
111
+ "text-align": "center",
112
+ "vertical-align": "middle",
113
+ "line-height": "",
114
+ "line-height-ratio": "",
115
+ "letter-spacing": null,
116
+ "font-style": [
117
+ "italic"
118
+ ],
119
+ "overflow": "truncate",
120
+ "word-wrap": "break-word"
121
+ },
122
+ "reference-id": "",
123
+ "value": "",
124
+ "multiple-line": true,
125
+ "format": {
126
+ "base": "",
127
+ "type": ""
128
+ }
129
+ },
130
+ {
131
+ "id": "eudc_bold_italic",
132
+ "type": "text-block",
133
+ "display": true,
134
+ "description": "",
135
+ "x": 249.2,
136
+ "y": 409,
137
+ "width": 343.3,
138
+ "height": 61,
139
+ "style": {
140
+ "font-family": [
141
+ "IPAMincho"
142
+ ],
143
+ "font-size": 36,
144
+ "color": "#000000",
145
+ "text-align": "center",
146
+ "vertical-align": "middle",
147
+ "line-height": "",
148
+ "line-height-ratio": "",
149
+ "letter-spacing": null,
150
+ "font-style": [
151
+ "bold",
152
+ "italic"
153
+ ],
154
+ "overflow": "truncate",
155
+ "word-wrap": "break-word"
156
+ },
157
+ "reference-id": "",
158
+ "value": "",
159
+ "multiple-line": true,
160
+ "format": {
161
+ "base": "",
162
+ "type": ""
163
+ }
164
+ }
165
+ ],
166
+ "state": {
167
+ "layout-guides": []
168
+ },
169
+ "title": "EUDC",
170
+ "report": {
171
+ "paper-type": "A4",
172
+ "orientation": "landscape",
173
+ "margin": [
174
+ 20,
175
+ 20,
176
+ 20,
177
+ 20
178
+ ]
179
+ }
180
+ }