thinreports 0.9.1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.github/workflows/test.yml +39 -0
- data/.gitignore +1 -0
- data/CHANGELOG.md +59 -2
- data/Dockerfile +12 -0
- data/Gemfile +7 -4
- data/README.md +44 -22
- data/Rakefile +14 -31
- data/lib/thinreports.rb +16 -15
- data/lib/thinreports/config.rb +2 -24
- data/lib/thinreports/core/errors.rb +6 -17
- data/lib/thinreports/core/format/base.rb +62 -61
- data/lib/thinreports/core/shape.rb +10 -12
- data/lib/thinreports/core/shape/base.rb +3 -12
- data/lib/thinreports/core/shape/base/interface.rb +34 -32
- data/lib/thinreports/core/shape/base/internal.rb +45 -43
- data/lib/thinreports/core/shape/basic.rb +12 -12
- data/lib/thinreports/core/shape/basic/block_format.rb +8 -6
- data/lib/thinreports/core/shape/basic/block_interface.rb +24 -22
- data/lib/thinreports/core/shape/basic/block_internal.rb +28 -26
- data/lib/thinreports/core/shape/basic/format.rb +11 -9
- data/lib/thinreports/core/shape/basic/interface.rb +79 -77
- data/lib/thinreports/core/shape/basic/internal.rb +17 -14
- data/lib/thinreports/core/shape/image_block.rb +9 -9
- data/lib/thinreports/core/shape/image_block/format.rb +7 -5
- data/lib/thinreports/core/shape/image_block/interface.rb +15 -13
- data/lib/thinreports/core/shape/image_block/internal.rb +10 -8
- data/lib/thinreports/core/shape/list.rb +13 -13
- data/lib/thinreports/core/shape/list/format.rb +83 -77
- data/lib/thinreports/core/shape/list/manager.rb +179 -176
- data/lib/thinreports/core/shape/list/page.rb +91 -93
- data/lib/thinreports/core/shape/list/page_state.rb +42 -40
- data/lib/thinreports/core/shape/list/section_format.rb +28 -26
- data/lib/thinreports/core/shape/list/section_interface.rb +42 -40
- data/lib/thinreports/core/shape/list/section_internal.rb +21 -19
- data/lib/thinreports/core/shape/manager.rb +4 -13
- data/lib/thinreports/core/shape/manager/format.rb +21 -19
- data/lib/thinreports/core/shape/manager/internal.rb +87 -84
- data/lib/thinreports/core/shape/manager/target.rb +93 -95
- data/lib/thinreports/core/shape/page_number.rb +9 -9
- data/lib/thinreports/core/shape/page_number/format.rb +20 -18
- data/lib/thinreports/core/shape/page_number/interface.rb +20 -18
- data/lib/thinreports/core/shape/page_number/internal.rb +46 -44
- data/lib/thinreports/core/shape/style.rb +5 -14
- data/lib/thinreports/core/shape/style/base.rb +121 -120
- data/lib/thinreports/core/shape/style/basic.rb +12 -10
- data/lib/thinreports/core/shape/style/graphic.rb +35 -33
- data/lib/thinreports/core/shape/style/text.rb +113 -107
- data/lib/thinreports/core/shape/text.rb +9 -9
- data/lib/thinreports/core/shape/text/format.rb +10 -9
- data/lib/thinreports/core/shape/text/interface.rb +13 -11
- data/lib/thinreports/core/shape/text/internal.rb +14 -12
- data/lib/thinreports/core/shape/text_block.rb +10 -10
- data/lib/thinreports/core/shape/text_block/format.rb +35 -33
- data/lib/thinreports/core/shape/text_block/formatter.rb +26 -24
- data/lib/thinreports/core/shape/text_block/formatter/basic.rb +25 -25
- data/lib/thinreports/core/shape/text_block/formatter/datetime.rb +15 -12
- data/lib/thinreports/core/shape/text_block/formatter/number.rb +52 -34
- data/lib/thinreports/core/shape/text_block/formatter/padding.rb +17 -14
- data/lib/thinreports/core/shape/text_block/interface.rb +25 -23
- data/lib/thinreports/core/shape/text_block/internal.rb +66 -68
- data/lib/thinreports/core/utils.rb +7 -3
- data/lib/thinreports/generator/pdf.rb +24 -25
- data/lib/thinreports/generator/pdf/document.rb +109 -110
- data/lib/thinreports/generator/pdf/document/draw_shape.rb +57 -51
- data/lib/thinreports/generator/pdf/document/draw_template_items.rb +50 -47
- data/lib/thinreports/generator/pdf/document/font.rb +67 -58
- data/lib/thinreports/generator/pdf/document/graphics.rb +32 -33
- data/lib/thinreports/generator/pdf/document/graphics/attributes.rb +121 -121
- data/lib/thinreports/generator/pdf/document/graphics/basic.rb +112 -114
- data/lib/thinreports/generator/pdf/document/graphics/image.rb +58 -150
- data/lib/thinreports/generator/pdf/document/graphics/text.rb +149 -137
- data/lib/thinreports/generator/pdf/document/page.rb +60 -64
- data/lib/thinreports/generator/pdf/document/parse_color.rb +37 -37
- data/lib/thinreports/generator/pdf/drawer/base.rb +41 -41
- data/lib/thinreports/generator/pdf/drawer/list.rb +56 -54
- data/lib/thinreports/generator/pdf/drawer/list_section.rb +42 -40
- data/lib/thinreports/generator/pdf/drawer/page.rb +101 -96
- data/lib/thinreports/generator/pdf/prawn_ext.rb +4 -30
- data/lib/thinreports/generator/pdf/prawn_ext/calc_image_dimensions.rb +32 -0
- data/lib/thinreports/generator/pdf/prawn_ext/width_of.rb +35 -0
- data/lib/thinreports/layout.rb +5 -7
- data/lib/thinreports/layout/base.rb +5 -9
- data/lib/thinreports/layout/format.rb +17 -13
- data/lib/thinreports/layout/legacy_schema.rb +17 -13
- data/lib/thinreports/layout/version.rb +22 -25
- data/lib/thinreports/report.rb +4 -6
- data/lib/thinreports/report/base.rb +24 -51
- data/lib/thinreports/report/internal.rb +13 -15
- data/lib/thinreports/report/page.rb +5 -11
- data/lib/thinreports/version.rb +2 -2
- data/thinreports.gemspec +10 -19
- metadata +13 -288
- data/.travis.yml +0 -19
- data/examples/character_spacing/character_spacing.rb +0 -8
- data/examples/character_spacing/character_spacing.tlf +0 -293
- data/examples/dynamic_image/dynamic_image.rb +0 -31
- data/examples/dynamic_image/dynamic_image.tlf +0 -661
- data/examples/dynamic_image/img200x100.png +0 -0
- data/examples/dynamic_image/img50x50.png +0 -0
- data/examples/dynamic_style/dynamic_style.rb +0 -150
- data/examples/dynamic_style/dynamic_style.tlf +0 -1835
- data/examples/dynamic_style/dynamic_style_in_list.tlf +0 -344
- data/examples/dynamic_style/image.png +0 -0
- data/examples/eudc/eudc.rb +0 -20
- data/examples/eudc/eudc.tlf +0 -180
- data/examples/eudc/eudc.ttf +0 -0
- data/examples/helper.rb +0 -50
- data/examples/hidden_shapes/hidden_shapes.rb +0 -9
- data/examples/hidden_shapes/hidden_shapes.tlf +0 -449
- data/examples/list_events/list_events.rb +0 -32
- data/examples/list_events/list_events.tlf +0 -361
- data/examples/list_manual_generation/list_manual_generation.rb +0 -22
- data/examples/list_manual_generation/list_manual_generation.tlf +0 -132
- data/examples/list_page_number/list_page_number.rb +0 -17
- data/examples/list_page_number/list_page_number.tlf +0 -254
- data/examples/page_number/page_number.rb +0 -33
- data/examples/page_number/page_number.tlf +0 -215
- data/examples/palleted_png/palleted_png.png +0 -0
- data/examples/palleted_png/palleted_png.rb +0 -11
- data/examples/palleted_png/palleted_png.tlf +0 -47
- data/examples/password_setting/password_setting.rb +0 -10
- data/examples/password_setting/password_setting.tlf +0 -45
- data/examples/report_callbacks/report_callbacks.rb +0 -14
- data/examples/report_callbacks/report_callbacks.tlf +0 -147
- data/examples/single_line_tblock/single_line_tblock.rb +0 -13
- data/examples/single_line_tblock/single_line_tblock.tlf +0 -170
- data/examples/tblock_overflow/tblock_overflow.rb +0 -20
- data/examples/tblock_overflow/tblock_overflow.tlf +0 -538
- data/examples/tblock_styles/font_size.tlf +0 -383
- data/examples/tblock_styles/tblock_styles.rb +0 -43
- data/examples/tblock_styles/tblock_styles.tlf +0 -889
- data/examples/text_align/text_align.rb +0 -8
- data/examples/text_align/text_align.tlf +0 -241
- data/examples/typeB_page_size/B4_ISO.tlf +0 -45
- data/examples/typeB_page_size/B4_JIS.tlf +0 -45
- data/examples/typeB_page_size/typeB_page_size.rb +0 -17
- data/examples/word_wrap/word_wrap.rb +0 -26
- data/examples/word_wrap/word_wrap.tlf +0 -297
- data/lib/thinreports/generator.rb +0 -29
- data/lib/thinreports/generator/base.rb +0 -40
- data/lib/thinreports/generator/configuration.rb +0 -31
- data/lib/thinreports/report/events.rb +0 -32
- data/test/data/font.ttf +0 -0
- data/test/data/image_normal.jpg +0 -0
- data/test/data/image_normal.png +0 -0
- data/test/data/image_normal_jpg_noext +0 -0
- data/test/data/image_normal_png_noext +0 -0
- data/test/data/image_pallete_based.png +0 -0
- data/test/data/legacy_layout/all-items.tlf +0 -1
- data/test/schema_helper.rb +0 -121
- data/test/test_helper.rb +0 -42
- data/test/tmp/.gitkeep +0 -0
- data/test/unit/core/format/test_base.rb +0 -152
- data/test/unit/core/shape/base/test_internal.rb +0 -87
- data/test/unit/core/shape/basic/test_block_format.rb +0 -23
- data/test/unit/core/shape/basic/test_block_interface.rb +0 -29
- data/test/unit/core/shape/basic/test_block_internal.rb +0 -55
- data/test/unit/core/shape/basic/test_format.rb +0 -37
- data/test/unit/core/shape/basic/test_interface.rb +0 -108
- data/test/unit/core/shape/basic/test_internal.rb +0 -55
- data/test/unit/core/shape/image_block/test_interface.rb +0 -24
- data/test/unit/core/shape/image_block/test_internal.rb +0 -31
- data/test/unit/core/shape/list/test_format.rb +0 -111
- data/test/unit/core/shape/list/test_manager.rb +0 -67
- data/test/unit/core/shape/list/test_page.rb +0 -82
- data/test/unit/core/shape/list/test_page_state.rb +0 -31
- data/test/unit/core/shape/list/test_section_format.rb +0 -36
- data/test/unit/core/shape/list/test_section_interface.rb +0 -75
- data/test/unit/core/shape/list/test_section_internal.rb +0 -50
- data/test/unit/core/shape/manager/test_format.rb +0 -38
- data/test/unit/core/shape/manager/test_internal.rb +0 -132
- data/test/unit/core/shape/manager/test_target.rb +0 -140
- data/test/unit/core/shape/page_number/test_format.rb +0 -55
- data/test/unit/core/shape/page_number/test_interface.rb +0 -33
- data/test/unit/core/shape/page_number/test_internal.rb +0 -81
- data/test/unit/core/shape/styles/test_base.rb +0 -191
- data/test/unit/core/shape/styles/test_basic.rb +0 -24
- data/test/unit/core/shape/styles/test_graphic.rb +0 -50
- data/test/unit/core/shape/styles/test_text.rb +0 -97
- data/test/unit/core/shape/text/test_format.rb +0 -44
- data/test/unit/core/shape/text/test_internal.rb +0 -20
- data/test/unit/core/shape/text_block/formatter/test_basic.rb +0 -24
- data/test/unit/core/shape/text_block/formatter/test_datetime.rb +0 -49
- data/test/unit/core/shape/text_block/formatter/test_number.rb +0 -76
- data/test/unit/core/shape/text_block/formatter/test_padding.rb +0 -77
- data/test/unit/core/shape/text_block/test_format.rb +0 -169
- data/test/unit/core/shape/text_block/test_formatter.rb +0 -28
- data/test/unit/core/shape/text_block/test_interface.rb +0 -63
- data/test/unit/core/shape/text_block/test_internal.rb +0 -128
- data/test/unit/core/test_shape.rb +0 -52
- data/test/unit/core/test_utils.rb +0 -68
- data/test/unit/generator/pdf/document/graphics/test_attributes.rb +0 -135
- data/test/unit/generator/pdf/document/graphics/test_basic.rb +0 -45
- data/test/unit/generator/pdf/document/graphics/test_image.rb +0 -150
- data/test/unit/generator/pdf/document/graphics/test_text.rb +0 -171
- data/test/unit/generator/pdf/document/test_font.rb +0 -84
- data/test/unit/generator/pdf/document/test_graphics.rb +0 -42
- data/test/unit/generator/pdf/document/test_page.rb +0 -122
- data/test/unit/generator/pdf/document/test_parse_color.rb +0 -30
- data/test/unit/generator/pdf/test_document.rb +0 -20
- data/test/unit/generator/test_base.rb +0 -40
- data/test/unit/generator/test_configuration.rb +0 -21
- data/test/unit/generator/test_pdf.rb +0 -24
- data/test/unit/layout/test_base.rb +0 -41
- data/test/unit/layout/test_format.rb +0 -100
- data/test/unit/layout/test_legacy_schema.rb +0 -574
- data/test/unit/layout/test_version.rb +0 -95
- data/test/unit/report/test_base.rb +0 -262
- data/test/unit/report/test_internal.rb +0 -206
- data/test/unit/test_config.rb +0 -51
- data/test/unit/test_layout.rb +0 -12
- data/test/unit/test_report.rb +0 -18
Binary file
|
@@ -1,11 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
example :palleted_png, 'Rendering a palleted PNG with transparency' do |t|
|
4
|
-
Thinreports.config.convert_palleted_transparency_png = true
|
5
|
-
|
6
|
-
report = Thinreports::Report.new layout: t.layout_filename
|
7
|
-
report.start_new_page do |page|
|
8
|
-
page.item(:image).src = t.resource('palleted_png.png')
|
9
|
-
end
|
10
|
-
report.generate filename: t.output_filename
|
11
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "0.9.0",
|
3
|
-
"items": [
|
4
|
-
{
|
5
|
-
"id": "",
|
6
|
-
"type": "image",
|
7
|
-
"display": true,
|
8
|
-
"description": "",
|
9
|
-
"x": 20,
|
10
|
-
"y": 20,
|
11
|
-
"width": 200,
|
12
|
-
"height": 200,
|
13
|
-
"data": {
|
14
|
-
"mime-type": "image/png",
|
15
|
-
"base64": "iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAMAAACahl6sAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAD1BMVEX/AAD/AAD/AAD/AAD////Icf73AAAAA3RSTlO/fz8qtTX3AAAAAWJLR0QEj2jZUQAAAAlwSFlzAAALEwAACxMBAJqcGAAAAMtJREFUeNrtzwERgEAAw7AH/HtGBr2RKGjPM+J8HWDESJyRGiM1RmqM1BipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSszMCAAAAAAAAAAAA/3SNMFJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TGSI2RGiM1RmqM1Bip2Rm5RxipMVJjpMZIjZEaIzVGaozUGKkxUmOkxkiNkRojNUZqjNQYqTFSY6TGSI2RGiM1RmqM1MyMvMkE6mEsuD8jAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE0LTEwLTA5VDEwOjM1OjI1KzAyOjAwxhRVNQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNC0xMC0wOVQxMDozNToyNSswMjowMLdJ7YkAAAAASUVORK5CYII="
|
16
|
-
}
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"id": "image",
|
20
|
-
"type": "image-block",
|
21
|
-
"display": true,
|
22
|
-
"description": "",
|
23
|
-
"x": 278.2,
|
24
|
-
"y": 20,
|
25
|
-
"width": 266.7,
|
26
|
-
"height": 223.7,
|
27
|
-
"style": {
|
28
|
-
"position-x": "left",
|
29
|
-
"position-y": "top"
|
30
|
-
}
|
31
|
-
}
|
32
|
-
],
|
33
|
-
"state": {
|
34
|
-
"layout-guides": []
|
35
|
-
},
|
36
|
-
"title": "",
|
37
|
-
"report": {
|
38
|
-
"paper-type": "A4",
|
39
|
-
"orientation": "portrait",
|
40
|
-
"margin": [
|
41
|
-
20,
|
42
|
-
20,
|
43
|
-
20,
|
44
|
-
20
|
45
|
-
]
|
46
|
-
}
|
47
|
-
}
|
@@ -1,10 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
example :password_setting, 'Set password to open' do |t|
|
4
|
-
report = Thinreports::Report.new layout: t.layout_filename
|
5
|
-
report.start_new_page
|
6
|
-
report.generate(filename: t.output_filename, security: {
|
7
|
-
user_password: 'password',
|
8
|
-
owner_password: :random
|
9
|
-
})
|
10
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "0.9.0",
|
3
|
-
"items": [
|
4
|
-
{
|
5
|
-
"id": "",
|
6
|
-
"type": "text",
|
7
|
-
"display": true,
|
8
|
-
"description": "",
|
9
|
-
"x": 197.6,
|
10
|
-
"y": 137,
|
11
|
-
"width": 200,
|
12
|
-
"height": 100,
|
13
|
-
"style": {
|
14
|
-
"font-family": [
|
15
|
-
"Helvetica"
|
16
|
-
],
|
17
|
-
"font-size": 18,
|
18
|
-
"color": "#000000",
|
19
|
-
"text-align": "center",
|
20
|
-
"vertical-align": "top",
|
21
|
-
"line-height": "",
|
22
|
-
"line-height-ratio": "",
|
23
|
-
"letter-spacing": "",
|
24
|
-
"font-style": []
|
25
|
-
},
|
26
|
-
"texts": [
|
27
|
-
"Password is \"password\""
|
28
|
-
]
|
29
|
-
}
|
30
|
-
],
|
31
|
-
"state": {
|
32
|
-
"layout-guides": []
|
33
|
-
},
|
34
|
-
"title": "",
|
35
|
-
"report": {
|
36
|
-
"paper-type": "A4",
|
37
|
-
"orientation": "portrait",
|
38
|
-
"margin": [
|
39
|
-
20,
|
40
|
-
20,
|
41
|
-
20,
|
42
|
-
20
|
43
|
-
]
|
44
|
-
}
|
45
|
-
}
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
example :report_callbacks, 'Callbacks of Report' do |t|
|
4
|
-
report = Thinreports::Report.new layout: t.layout_filename
|
5
|
-
|
6
|
-
report.on_page_create do |page|
|
7
|
-
page.item(:text2).value('Rendered by on_page_create')
|
8
|
-
end
|
9
|
-
|
10
|
-
report.start_new_page
|
11
|
-
report.start_new_page
|
12
|
-
|
13
|
-
report.generate filename: t.output_filename
|
14
|
-
end
|
@@ -1,147 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "0.9.0",
|
3
|
-
"items": [
|
4
|
-
{
|
5
|
-
"id": "text1",
|
6
|
-
"type": "text-block",
|
7
|
-
"display": true,
|
8
|
-
"description": "",
|
9
|
-
"x": 20,
|
10
|
-
"y": 45,
|
11
|
-
"width": 357.2,
|
12
|
-
"height": 18,
|
13
|
-
"style": {
|
14
|
-
"font-family": [
|
15
|
-
"Helvetica"
|
16
|
-
],
|
17
|
-
"font-size": 18,
|
18
|
-
"color": "#000000",
|
19
|
-
"text-align": "left",
|
20
|
-
"vertical-align": "top",
|
21
|
-
"line-height": "",
|
22
|
-
"line-height-ratio": "",
|
23
|
-
"letter-spacing": "",
|
24
|
-
"font-style": [],
|
25
|
-
"overflow": "truncate",
|
26
|
-
"word-wrap": "break-word"
|
27
|
-
},
|
28
|
-
"reference-id": "",
|
29
|
-
"value": "",
|
30
|
-
"multiple-line": false,
|
31
|
-
"format": {
|
32
|
-
"base": "",
|
33
|
-
"type": ""
|
34
|
-
}
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"id": "text2",
|
38
|
-
"type": "text-block",
|
39
|
-
"display": true,
|
40
|
-
"description": "",
|
41
|
-
"x": 20,
|
42
|
-
"y": 75,
|
43
|
-
"width": 357.2,
|
44
|
-
"height": 18,
|
45
|
-
"style": {
|
46
|
-
"font-family": [
|
47
|
-
"Helvetica"
|
48
|
-
],
|
49
|
-
"font-size": 18,
|
50
|
-
"color": "#000000",
|
51
|
-
"text-align": "left",
|
52
|
-
"vertical-align": "top",
|
53
|
-
"line-height": "",
|
54
|
-
"line-height-ratio": "",
|
55
|
-
"letter-spacing": "",
|
56
|
-
"font-style": [],
|
57
|
-
"overflow": "truncate",
|
58
|
-
"word-wrap": "none"
|
59
|
-
},
|
60
|
-
"reference-id": "",
|
61
|
-
"value": "",
|
62
|
-
"multiple-line": false,
|
63
|
-
"format": {
|
64
|
-
"base": "",
|
65
|
-
"type": ""
|
66
|
-
}
|
67
|
-
},
|
68
|
-
{
|
69
|
-
"id": "text3",
|
70
|
-
"type": "text-block",
|
71
|
-
"display": true,
|
72
|
-
"description": "",
|
73
|
-
"x": 20,
|
74
|
-
"y": 105,
|
75
|
-
"width": 357.2,
|
76
|
-
"height": 18,
|
77
|
-
"style": {
|
78
|
-
"font-family": [
|
79
|
-
"Helvetica"
|
80
|
-
],
|
81
|
-
"font-size": 18,
|
82
|
-
"color": "#000000",
|
83
|
-
"text-align": "left",
|
84
|
-
"vertical-align": "top",
|
85
|
-
"line-height": "",
|
86
|
-
"line-height-ratio": "",
|
87
|
-
"letter-spacing": "",
|
88
|
-
"font-style": [],
|
89
|
-
"overflow": "truncate",
|
90
|
-
"word-wrap": "none"
|
91
|
-
},
|
92
|
-
"reference-id": "",
|
93
|
-
"value": "",
|
94
|
-
"multiple-line": false,
|
95
|
-
"format": {
|
96
|
-
"base": "",
|
97
|
-
"type": ""
|
98
|
-
}
|
99
|
-
},
|
100
|
-
{
|
101
|
-
"id": "text4",
|
102
|
-
"type": "text-block",
|
103
|
-
"display": true,
|
104
|
-
"description": "",
|
105
|
-
"x": 20,
|
106
|
-
"y": 135,
|
107
|
-
"width": 357.2,
|
108
|
-
"height": 18,
|
109
|
-
"style": {
|
110
|
-
"font-family": [
|
111
|
-
"Helvetica"
|
112
|
-
],
|
113
|
-
"font-size": 18,
|
114
|
-
"color": "#000000",
|
115
|
-
"text-align": "left",
|
116
|
-
"vertical-align": "top",
|
117
|
-
"line-height": "",
|
118
|
-
"line-height-ratio": "",
|
119
|
-
"letter-spacing": "",
|
120
|
-
"font-style": [],
|
121
|
-
"overflow": "truncate",
|
122
|
-
"word-wrap": "none"
|
123
|
-
},
|
124
|
-
"reference-id": "",
|
125
|
-
"value": "",
|
126
|
-
"multiple-line": false,
|
127
|
-
"format": {
|
128
|
-
"base": "",
|
129
|
-
"type": ""
|
130
|
-
}
|
131
|
-
}
|
132
|
-
],
|
133
|
-
"state": {
|
134
|
-
"layout-guides": []
|
135
|
-
},
|
136
|
-
"title": "",
|
137
|
-
"report": {
|
138
|
-
"paper-type": "A4",
|
139
|
-
"orientation": "portrait",
|
140
|
-
"margin": [
|
141
|
-
20,
|
142
|
-
20,
|
143
|
-
20,
|
144
|
-
20
|
145
|
-
]
|
146
|
-
}
|
147
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# coding: utf-8
|
2
|
-
|
3
|
-
example :single_line_tblock, 'Show a single-line Tblock' do |t|
|
4
|
-
Thinreports::Report.generate filename: t.output_filename do
|
5
|
-
use_layout(t.layout_filename)
|
6
|
-
|
7
|
-
start_new_page
|
8
|
-
|
9
|
-
page.item(:fallback_to_ipafont).value('IPA明朝に自動的にフォールバックされる')
|
10
|
-
|
11
|
-
page.item(:set_multiline_text).value("1行目\n2行目\n3行目\n4行目\n5行目")
|
12
|
-
end
|
13
|
-
end
|
@@ -1,170 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"version": "0.9.0",
|
3
|
-
"items": [
|
4
|
-
{
|
5
|
-
"id": "fallback_to_ipafont",
|
6
|
-
"type": "text-block",
|
7
|
-
"display": true,
|
8
|
-
"description": "",
|
9
|
-
"x": 37,
|
10
|
-
"y": 102,
|
11
|
-
"width": 291.1,
|
12
|
-
"height": 26,
|
13
|
-
"style": {
|
14
|
-
"font-family": [
|
15
|
-
"Helvetica"
|
16
|
-
],
|
17
|
-
"font-size": 24,
|
18
|
-
"color": "#ff0000",
|
19
|
-
"text-align": "left",
|
20
|
-
"vertical-align": "top",
|
21
|
-
"line-height": "",
|
22
|
-
"line-height-ratio": "",
|
23
|
-
"letter-spacing": "",
|
24
|
-
"font-style": [],
|
25
|
-
"overflow": "truncate",
|
26
|
-
"word-wrap": "break-word"
|
27
|
-
},
|
28
|
-
"reference-id": "",
|
29
|
-
"value": "",
|
30
|
-
"multiple-line": false,
|
31
|
-
"format": {
|
32
|
-
"base": "",
|
33
|
-
"type": ""
|
34
|
-
}
|
35
|
-
},
|
36
|
-
{
|
37
|
-
"id": "",
|
38
|
-
"type": "text",
|
39
|
-
"display": true,
|
40
|
-
"description": "",
|
41
|
-
"x": 38,
|
42
|
-
"y": 52,
|
43
|
-
"width": 488,
|
44
|
-
"height": 36,
|
45
|
-
"style": {
|
46
|
-
"font-family": [
|
47
|
-
"IPAMincho"
|
48
|
-
],
|
49
|
-
"font-size": 16,
|
50
|
-
"color": "#000000",
|
51
|
-
"text-align": "left",
|
52
|
-
"vertical-align": "top",
|
53
|
-
"line-height": "",
|
54
|
-
"line-height-ratio": "",
|
55
|
-
"letter-spacing": "",
|
56
|
-
"font-style": []
|
57
|
-
},
|
58
|
-
"texts": [
|
59
|
-
"Helveticaフォントが設定されているTblockに日本語をセットする。",
|
60
|
-
"溢れたテキストは表示されない。"
|
61
|
-
]
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"id": "set_multiline_text",
|
65
|
-
"type": "text-block",
|
66
|
-
"display": true,
|
67
|
-
"description": "",
|
68
|
-
"x": 37,
|
69
|
-
"y": 178,
|
70
|
-
"width": 291.1,
|
71
|
-
"height": 24,
|
72
|
-
"style": {
|
73
|
-
"font-family": [
|
74
|
-
"IPAMincho"
|
75
|
-
],
|
76
|
-
"font-size": 24,
|
77
|
-
"color": "#ff0000",
|
78
|
-
"text-align": "left",
|
79
|
-
"vertical-align": "top",
|
80
|
-
"line-height": "",
|
81
|
-
"line-height-ratio": "",
|
82
|
-
"letter-spacing": "",
|
83
|
-
"font-style": [],
|
84
|
-
"overflow": "truncate",
|
85
|
-
"word-wrap": "break-word"
|
86
|
-
},
|
87
|
-
"reference-id": "",
|
88
|
-
"value": "",
|
89
|
-
"multiple-line": false,
|
90
|
-
"format": {
|
91
|
-
"base": "",
|
92
|
-
"type": ""
|
93
|
-
}
|
94
|
-
},
|
95
|
-
{
|
96
|
-
"id": "",
|
97
|
-
"type": "text",
|
98
|
-
"display": true,
|
99
|
-
"description": "",
|
100
|
-
"x": 38,
|
101
|
-
"y": 147,
|
102
|
-
"width": 208,
|
103
|
-
"height": 16,
|
104
|
-
"style": {
|
105
|
-
"font-family": [
|
106
|
-
"IPAMincho"
|
107
|
-
],
|
108
|
-
"font-size": 16,
|
109
|
-
"color": "#000000",
|
110
|
-
"text-align": "left",
|
111
|
-
"vertical-align": "top",
|
112
|
-
"line-height": "",
|
113
|
-
"line-height-ratio": "",
|
114
|
-
"letter-spacing": "",
|
115
|
-
"font-style": []
|
116
|
-
},
|
117
|
-
"texts": [
|
118
|
-
"複数行テキストをセットする"
|
119
|
-
]
|
120
|
-
},
|
121
|
-
{
|
122
|
-
"id": "",
|
123
|
-
"type": "rect",
|
124
|
-
"display": true,
|
125
|
-
"description": "",
|
126
|
-
"x": 37,
|
127
|
-
"y": 102,
|
128
|
-
"width": 291.1,
|
129
|
-
"height": 26,
|
130
|
-
"style": {
|
131
|
-
"border-color": "#000000",
|
132
|
-
"border-width": 1,
|
133
|
-
"border-style": "solid",
|
134
|
-
"fill-color": "none"
|
135
|
-
},
|
136
|
-
"border-radius": 0
|
137
|
-
},
|
138
|
-
{
|
139
|
-
"id": "",
|
140
|
-
"type": "rect",
|
141
|
-
"display": true,
|
142
|
-
"description": "",
|
143
|
-
"x": 37,
|
144
|
-
"y": 178,
|
145
|
-
"width": 291.1,
|
146
|
-
"height": 24,
|
147
|
-
"style": {
|
148
|
-
"border-color": "#000000",
|
149
|
-
"border-width": 1,
|
150
|
-
"border-style": "solid",
|
151
|
-
"fill-color": "none"
|
152
|
-
},
|
153
|
-
"border-radius": 0
|
154
|
-
}
|
155
|
-
],
|
156
|
-
"state": {
|
157
|
-
"layout-guides": []
|
158
|
-
},
|
159
|
-
"title": "Single Line Tblock",
|
160
|
-
"report": {
|
161
|
-
"paper-type": "A4",
|
162
|
-
"orientation": "portrait",
|
163
|
-
"margin": [
|
164
|
-
20,
|
165
|
-
20,
|
166
|
-
20,
|
167
|
-
20
|
168
|
-
]
|
169
|
-
}
|
170
|
-
}
|