openxml-docx 0.8.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +6 -0
- data/.travis.yml +6 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +56 -0
- data/LICENSE.txt +20 -0
- data/README.md +67 -0
- data/Rakefile +6 -0
- data/example +23 -0
- data/lib/openxml-docx.rb +1 -0
- data/lib/openxml/docx.rb +20 -0
- data/lib/openxml/docx/attribute_builder.rb +298 -0
- data/lib/openxml/docx/elements.rb +13 -0
- data/lib/openxml/docx/elements/absolute_position_tab.rb +31 -0
- data/lib/openxml/docx/elements/bidi_embed.rb +19 -0
- data/lib/openxml/docx/elements/bidi_override.rb +19 -0
- data/lib/openxml/docx/elements/break.rb +26 -0
- data/lib/openxml/docx/elements/carriage_return.rb +10 -0
- data/lib/openxml/docx/elements/container.rb +37 -0
- data/lib/openxml/docx/elements/content_part.rb +10 -0
- data/lib/openxml/docx/elements/control.rb +12 -0
- data/lib/openxml/docx/elements/deleted_text.rb +10 -0
- data/lib/openxml/docx/elements/dirty.rb +8 -0
- data/lib/openxml/docx/elements/element.rb +64 -0
- data/lib/openxml/docx/elements/last_rendered_page_break.rb +8 -0
- data/lib/openxml/docx/elements/long_day.rb +10 -0
- data/lib/openxml/docx/elements/long_month.rb +10 -0
- data/lib/openxml/docx/elements/long_year.rb +10 -0
- data/lib/openxml/docx/elements/nonbreaking_hyphen.rb +9 -0
- data/lib/openxml/docx/elements/optional_hyphen.rb +10 -0
- data/lib/openxml/docx/elements/page_number.rb +9 -0
- data/lib/openxml/docx/elements/paper_source.rb +13 -0
- data/lib/openxml/docx/elements/paragraph.rb +58 -0
- data/lib/openxml/docx/elements/ruby.rb +48 -0
- data/lib/openxml/docx/elements/run.rb +51 -0
- data/lib/openxml/docx/elements/short_day.rb +10 -0
- data/lib/openxml/docx/elements/short_month.rb +10 -0
- data/lib/openxml/docx/elements/short_year.rb +10 -0
- data/lib/openxml/docx/elements/symbol.rb +13 -0
- data/lib/openxml/docx/elements/tab.rb +8 -0
- data/lib/openxml/docx/elements/text.rb +30 -0
- data/lib/openxml/docx/package.rb +34 -0
- data/lib/openxml/docx/parts.rb +10 -0
- data/lib/openxml/docx/parts/document.rb +66 -0
- data/lib/openxml/docx/parts/settings.rb +22 -0
- data/lib/openxml/docx/parts/styles.rb +50 -0
- data/lib/openxml/docx/properties.rb +21 -0
- data/lib/openxml/docx/properties/alignment.rb +14 -0
- data/lib/openxml/docx/properties/auto_adjust_right_indent.rb +11 -0
- data/lib/openxml/docx/properties/auto_space_de.rb +10 -0
- data/lib/openxml/docx/properties/auto_space_dn.rb +10 -0
- data/lib/openxml/docx/properties/base_property.rb +50 -0
- data/lib/openxml/docx/properties/bidi.rb +8 -0
- data/lib/openxml/docx/properties/bold.rb +10 -0
- data/lib/openxml/docx/properties/boolean_property.rb +17 -0
- data/lib/openxml/docx/properties/border.rb +24 -0
- data/lib/openxml/docx/properties/caps.rb +8 -0
- data/lib/openxml/docx/properties/character_spacing.rb +10 -0
- data/lib/openxml/docx/properties/color.rb +13 -0
- data/lib/openxml/docx/properties/column.rb +18 -0
- data/lib/openxml/docx/properties/columns.rb +15 -0
- data/lib/openxml/docx/properties/complex_bold.rb +10 -0
- data/lib/openxml/docx/properties/complex_font_size.rb +10 -0
- data/lib/openxml/docx/properties/complex_italics.rb +10 -0
- data/lib/openxml/docx/properties/complex_property.rb +19 -0
- data/lib/openxml/docx/properties/complex_script_formatting.rb +10 -0
- data/lib/openxml/docx/properties/compress_punctuation.rb +10 -0
- data/lib/openxml/docx/properties/conditional_formatting.rb +23 -0
- data/lib/openxml/docx/properties/container_property.rb +65 -0
- data/lib/openxml/docx/properties/contextual_spacing.rb +8 -0
- data/lib/openxml/docx/properties/div_id.rb +8 -0
- data/lib/openxml/docx/properties/document_grid.rb +22 -0
- data/lib/openxml/docx/properties/double_strikethrough.rb +10 -0
- data/lib/openxml/docx/properties/east_asian_layout.rb +22 -0
- data/lib/openxml/docx/properties/effect.rb +13 -0
- data/lib/openxml/docx/properties/emboss.rb +8 -0
- data/lib/openxml/docx/properties/emphasis.rb +14 -0
- data/lib/openxml/docx/properties/expansion.rb +20 -0
- data/lib/openxml/docx/properties/font.rb +34 -0
- data/lib/openxml/docx/properties/font_size.rb +10 -0
- data/lib/openxml/docx/properties/form_protection.rb +9 -0
- data/lib/openxml/docx/properties/frame.rb +59 -0
- data/lib/openxml/docx/properties/hidden_style.rb +9 -0
- data/lib/openxml/docx/properties/hidden_text.rb +10 -0
- data/lib/openxml/docx/properties/highlight.rb +13 -0
- data/lib/openxml/docx/properties/imprint.rb +8 -0
- data/lib/openxml/docx/properties/indentation.rb +18 -0
- data/lib/openxml/docx/properties/integer_property.rb +17 -0
- data/lib/openxml/docx/properties/italics.rb +10 -0
- data/lib/openxml/docx/properties/keep_lines.rb +8 -0
- data/lib/openxml/docx/properties/keep_next.rb +8 -0
- data/lib/openxml/docx/properties/kerning.rb +10 -0
- data/lib/openxml/docx/properties/kinsoku.rb +8 -0
- data/lib/openxml/docx/properties/language.rb +21 -0
- data/lib/openxml/docx/properties/latent_styles.rb +23 -0
- data/lib/openxml/docx/properties/latent_styles_exception.rb +21 -0
- data/lib/openxml/docx/properties/line_numbering.rb +23 -0
- data/lib/openxml/docx/properties/linked_style.rb +18 -0
- data/lib/openxml/docx/properties/manual_width.rb +13 -0
- data/lib/openxml/docx/properties/math.rb +10 -0
- data/lib/openxml/docx/properties/mirror_indent.rb +8 -0
- data/lib/openxml/docx/properties/next_style.rb +17 -0
- data/lib/openxml/docx/properties/no_proof.rb +8 -0
- data/lib/openxml/docx/properties/numbering.rb +22 -0
- data/lib/openxml/docx/properties/on_off_property.rb +17 -0
- data/lib/openxml/docx/properties/outline.rb +8 -0
- data/lib/openxml/docx/properties/outline_level.rb +10 -0
- data/lib/openxml/docx/properties/overflow_punctuation.rb +10 -0
- data/lib/openxml/docx/properties/page_borders.rb +61 -0
- data/lib/openxml/docx/properties/page_break_before.rb +8 -0
- data/lib/openxml/docx/properties/page_margins.rb +17 -0
- data/lib/openxml/docx/properties/page_numbering.rb +89 -0
- data/lib/openxml/docx/properties/page_size.rb +23 -0
- data/lib/openxml/docx/properties/paragraph_borders.rb +45 -0
- data/lib/openxml/docx/properties/paragraph_style.rb +10 -0
- data/lib/openxml/docx/properties/parent_style.rb +17 -0
- data/lib/openxml/docx/properties/personal.rb +8 -0
- data/lib/openxml/docx/properties/personal_compose.rb +8 -0
- data/lib/openxml/docx/properties/personal_reply.rb +8 -0
- data/lib/openxml/docx/properties/phonetic_guide_alignment.rb +15 -0
- data/lib/openxml/docx/properties/phonetic_guide_base_font_size.rb +10 -0
- data/lib/openxml/docx/properties/phonetic_guide_font_size.rb +10 -0
- data/lib/openxml/docx/properties/phonetic_guide_font_size_raise.rb +10 -0
- data/lib/openxml/docx/properties/phonetic_guide_language.rb +19 -0
- data/lib/openxml/docx/properties/position.rb +8 -0
- data/lib/openxml/docx/properties/positive_integer_property.rb +17 -0
- data/lib/openxml/docx/properties/primary_style.rb +9 -0
- data/lib/openxml/docx/properties/right_to_left.rb +10 -0
- data/lib/openxml/docx/properties/rtl_gutter.rb +8 -0
- data/lib/openxml/docx/properties/run_style.rb +10 -0
- data/lib/openxml/docx/properties/section_type.rb +15 -0
- data/lib/openxml/docx/properties/semi_hidden.rb +8 -0
- data/lib/openxml/docx/properties/shading.rb +64 -0
- data/lib/openxml/docx/properties/shadow.rb +8 -0
- data/lib/openxml/docx/properties/small_caps.rb +8 -0
- data/lib/openxml/docx/properties/snap_to_grid.rb +8 -0
- data/lib/openxml/docx/properties/spacing.rb +25 -0
- data/lib/openxml/docx/properties/spec_vanish.rb +8 -0
- data/lib/openxml/docx/properties/strikethrough.rb +10 -0
- data/lib/openxml/docx/properties/string_property.rb +17 -0
- data/lib/openxml/docx/properties/style.rb +17 -0
- data/lib/openxml/docx/properties/style_aliases.rb +9 -0
- data/lib/openxml/docx/properties/style_auto_redefinition.rb +9 -0
- data/lib/openxml/docx/properties/style_lock.rb +9 -0
- data/lib/openxml/docx/properties/style_name.rb +10 -0
- data/lib/openxml/docx/properties/supress_auto_hyphens.rb +8 -0
- data/lib/openxml/docx/properties/supress_line_numbers.rb +8 -0
- data/lib/openxml/docx/properties/supress_overlap.rb +8 -0
- data/lib/openxml/docx/properties/tab.rb +71 -0
- data/lib/openxml/docx/properties/tabs.rb +10 -0
- data/lib/openxml/docx/properties/text_alignment.rb +13 -0
- data/lib/openxml/docx/properties/text_direction.rb +13 -0
- data/lib/openxml/docx/properties/textbox_tight_wrap.rb +13 -0
- data/lib/openxml/docx/properties/toggle_property.rb +17 -0
- data/lib/openxml/docx/properties/ui_priority.rb +8 -0
- data/lib/openxml/docx/properties/underline.rb +24 -0
- data/lib/openxml/docx/properties/unhide_when_used.rb +8 -0
- data/lib/openxml/docx/properties/value_property.rb +31 -0
- data/lib/openxml/docx/properties/vertical_alignment.rb +14 -0
- data/lib/openxml/docx/properties/vertical_text_alignment.rb +14 -0
- data/lib/openxml/docx/properties/web_hidden.rb +8 -0
- data/lib/openxml/docx/properties/widow_control.rb +8 -0
- data/lib/openxml/docx/properties/word_wrap.rb +8 -0
- data/lib/openxml/docx/property_builder.rb +74 -0
- data/lib/openxml/docx/section.rb +36 -0
- data/lib/openxml/docx/style.rb +84 -0
- data/lib/openxml/docx/version.rb +5 -0
- data/openxml-docx.gemspec +32 -0
- data/spec/elements/absolute_position_tab_spec.rb +84 -0
- data/spec/elements/bidi_embed_spec.rb +31 -0
- data/spec/elements/bidi_override_spec.rb +31 -0
- data/spec/elements/break_spec.rb +55 -0
- data/spec/elements/carriage_return_spec.rb +12 -0
- data/spec/elements/content_part_spec.rb +18 -0
- data/spec/elements/control_spec.rb +41 -0
- data/spec/elements/deleted_text_spec.rb +24 -0
- data/spec/elements/dirty_spec.rb +12 -0
- data/spec/elements/last_rendered_page_break_spec.rb +12 -0
- data/spec/elements/long_day_spec.rb +12 -0
- data/spec/elements/long_month_spec.rb +12 -0
- data/spec/elements/long_year_spec.rb +12 -0
- data/spec/elements/nonbreaking_hyphen_spec.rb +12 -0
- data/spec/elements/optional_hyphen_spec.rb +12 -0
- data/spec/elements/page_number_spec.rb +12 -0
- data/spec/elements/paragraph_spec.rb +33 -0
- data/spec/elements/ruby_spec.rb +66 -0
- data/spec/elements/run_spec.rb +15 -0
- data/spec/elements/short_day_spec.rb +12 -0
- data/spec/elements/short_month_spec.rb +12 -0
- data/spec/elements/short_year_spec.rb +12 -0
- data/spec/elements/symbol_spec.rb +34 -0
- data/spec/elements/tab_spec.rb +12 -0
- data/spec/elements/text_spec.rb +24 -0
- data/spec/package_spec.rb +36 -0
- data/spec/parts/document_spec.rb +95 -0
- data/spec/parts/settings_spec.rb +13 -0
- data/spec/parts/styles_spec.rb +27 -0
- data/spec/properties/alignment_spec.rb +58 -0
- data/spec/properties/auto_adjust_right_indent_spec.rb +23 -0
- data/spec/properties/auto_space_de_spec.rb +23 -0
- data/spec/properties/auto_space_dn_spec.rb +23 -0
- data/spec/properties/bidi_spec.rb +23 -0
- data/spec/properties/bold_spec.rb +23 -0
- data/spec/properties/border_spec.rb +156 -0
- data/spec/properties/caps_spec.rb +23 -0
- data/spec/properties/character_spacing_spec.rb +26 -0
- data/spec/properties/color_spec.rb +49 -0
- data/spec/properties/column_spec.rb +46 -0
- data/spec/properties/columns_spec.rb +174 -0
- data/spec/properties/complex_bold_spec.rb +23 -0
- data/spec/properties/complex_font_size_spec.rb +24 -0
- data/spec/properties/complex_italics_spec.rb +23 -0
- data/spec/properties/complex_script_formatting_spec.rb +23 -0
- data/spec/properties/compress_punctuation_spec.rb +23 -0
- data/spec/properties/conditional_formatting_spec.rb +160 -0
- data/spec/properties/contextual_spacing_spec.rb +23 -0
- data/spec/properties/div_id_spec.rb +17 -0
- data/spec/properties/document_grid_spec.rb +78 -0
- data/spec/properties/double_strikethrough_spec.rb +23 -0
- data/spec/properties/east_asian_layout_spec.rb +115 -0
- data/spec/properties/effect_spec.rb +43 -0
- data/spec/properties/emboss_spec.rb +23 -0
- data/spec/properties/emphasis_spec.rb +37 -0
- data/spec/properties/expansion_spec.rb +34 -0
- data/spec/properties/font_size_spec.rb +24 -0
- data/spec/properties/font_spec.rb +273 -0
- data/spec/properties/form_protection_spec.rb +23 -0
- data/spec/properties/frame_spec.rb +338 -0
- data/spec/properties/hidden_style_spec.rb +23 -0
- data/spec/properties/hidden_text_spec.rb +23 -0
- data/spec/properties/highlight_spec.rb +97 -0
- data/spec/properties/imprint_spec.rb +23 -0
- data/spec/properties/indentation_spec.rb +176 -0
- data/spec/properties/italics_spec.rb +23 -0
- data/spec/properties/keep_lines_spec.rb +23 -0
- data/spec/properties/keep_next_spec.rb +23 -0
- data/spec/properties/kerning_spec.rb +24 -0
- data/spec/properties/kinsoku_spec.rb +23 -0
- data/spec/properties/language_spec.rb +29 -0
- data/spec/properties/latent_styles_exception_spec.rb +83 -0
- data/spec/properties/latent_styles_spec.rb +336 -0
- data/spec/properties/line_numbering_spec.rb +96 -0
- data/spec/properties/linked_style_spec.rb +17 -0
- data/spec/properties/manual_width_spec.rb +55 -0
- data/spec/properties/math_spec.rb +23 -0
- data/spec/properties/mirror_indent_spec.rb +23 -0
- data/spec/properties/next_style_spec.rb +17 -0
- data/spec/properties/no_proof_spec.rb +23 -0
- data/spec/properties/numbering_spec.rb +46 -0
- data/spec/properties/outline_level_spec.rb +20 -0
- data/spec/properties/outline_spec.rb +23 -0
- data/spec/properties/overflow_punctuation_spec.rb +23 -0
- data/spec/properties/page_borders_spec.rb +129 -0
- data/spec/properties/page_break_before_spec.rb +23 -0
- data/spec/properties/page_margins_spec.rb +150 -0
- data/spec/properties/page_numbering_spec.rb +395 -0
- data/spec/properties/page_size_spec.rb +90 -0
- data/spec/properties/paper_source_spec.rb +56 -0
- data/spec/properties/paragraph_borders_spec.rb +66 -0
- data/spec/properties/paragraph_style_spec.rb +12 -0
- data/spec/properties/parent_style_spec.rb +17 -0
- data/spec/properties/personal_compose_spec.rb +23 -0
- data/spec/properties/personal_reply_spec.rb +23 -0
- data/spec/properties/personal_spec.rb +23 -0
- data/spec/properties/phonetic_guide_alignment_spec.rb +42 -0
- data/spec/properties/phonetic_guide_base_font_size_spec.rb +25 -0
- data/spec/properties/phonetic_guide_font_size_raise_spec.rb +25 -0
- data/spec/properties/phonetic_guide_font_size_spec.rb +25 -0
- data/spec/properties/phonetic_guide_language_spec.rb +12 -0
- data/spec/properties/position_spec.rb +26 -0
- data/spec/properties/primary_style_spec.rb +23 -0
- data/spec/properties/right_to_left_spec.rb +23 -0
- data/spec/properties/rtl_gutter_spec.rb +23 -0
- data/spec/properties/run_style_spec.rb +12 -0
- data/spec/properties/section_type_spec.rb +33 -0
- data/spec/properties/semi_hidden_spec.rb +23 -0
- data/spec/properties/shading_spec.rb +135 -0
- data/spec/properties/shadow_property_spec.rb +23 -0
- data/spec/properties/small_caps_spec.rb +22 -0
- data/spec/properties/snap_to_grid_spec.rb +23 -0
- data/spec/properties/spacing_spec.rb +159 -0
- data/spec/properties/spec_vanish_spec.rb +23 -0
- data/spec/properties/strikethrough_spec.rb +23 -0
- data/spec/properties/style_aliases_spec.rb +22 -0
- data/spec/properties/style_auto_redefinition_spec.rb +23 -0
- data/spec/properties/style_lock_spec.rb +23 -0
- data/spec/properties/style_name_spec.rb +17 -0
- data/spec/properties/supress_auto_hyphens_spec.rb +23 -0
- data/spec/properties/supress_line_numbers_spec.rb +23 -0
- data/spec/properties/supress_overlap_spec.rb +23 -0
- data/spec/properties/tab_spec.rb +45 -0
- data/spec/properties/tabs_spec.rb +39 -0
- data/spec/properties/text_alignment_spec.rb +33 -0
- data/spec/properties/text_direction_spec.rb +42 -0
- data/spec/properties/textbox_tight_wrap_spec.rb +33 -0
- data/spec/properties/ui_priority_spec.rb +22 -0
- data/spec/properties/underline_spec.rb +161 -0
- data/spec/properties/unhide_when_used_spec.rb +23 -0
- data/spec/properties/vertical_alignment_spec.rb +26 -0
- data/spec/properties/vertical_text_alignment_spec.rb +28 -0
- data/spec/properties/web_hidden_spec.rb +23 -0
- data/spec/properties/widow_control_spec.rb +23 -0
- data/spec/properties/word_wrap_spec.rb +23 -0
- data/spec/section_spec.rb +44 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/style_spec.rb +108 -0
- data/spec/support/data/elements/break_element.xml +4 -0
- data/spec/support/data/elements/break_with_attributes_element.xml +4 -0
- data/spec/support/data/elements/paragraph_element.xml +8 -0
- data/spec/support/data/elements/paragraph_with_runs_element.xml +14 -0
- data/spec/support/data/elements/run_element.xml +8 -0
- data/spec/support/data/elements/symbol_element.xml +4 -0
- data/spec/support/data/elements/text_element.xml +4 -0
- data/spec/support/data/parts/content_types_part.xml +1 -0
- data/spec/support/data/parts/document_with_children_part.xml +1 -0
- data/spec/support/data/parts/document_with_multiple_sections_part.xml +24 -0
- data/spec/support/data/parts/document_with_one_section_part.xml +16 -0
- data/spec/support/data/parts/empty_document_part.xml +1 -0
- data/spec/support/data/parts/global_rels_part.xml +1 -0
- data/spec/support/data/parts/rels_part.xml +1 -0
- data/spec/support/data/parts/settings_part.xml +1 -0
- data/spec/support/data/parts/styles_part.xml +1 -0
- data/spec/support/data/parts/styles_with_custom_style_part.xml +20 -0
- data/spec/support/data/styles/character_styles.xml +15 -0
- data/spec/support/data/styles/paragraph_styles.xml +11 -0
- data/spec/support/element_test_macros.rb +193 -0
- data/spec/support/part_test_macros.rb +27 -0
- data/spec/support/property_test_macros.rb +116 -0
- data/spec/support/style_test_macros.rb +33 -0
- data/spec/support/value_property_test_macros.rb +69 -0
- metadata +486 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class Font < ComplexProperty
|
5
|
+
tag :rFonts
|
6
|
+
|
7
|
+
attribute :ascii, expects: :string
|
8
|
+
attribute :ascii_theme, expects: :valid_theme
|
9
|
+
attribute :complex, expects: :string, displays_as: :cs
|
10
|
+
attribute :complex_theme, expects: :valid_theme, displays_as: :cstheme
|
11
|
+
attribute :east_asia, expects: :string
|
12
|
+
attribute :east_asia_theme, expects: :valid_theme
|
13
|
+
attribute :high_ansi, expects: :string, displays_as: :hAnsi
|
14
|
+
attribute :high_ansi_theme, expects: :valid_theme, displays_as: :hAnsiTheme
|
15
|
+
attribute :hint, expects: :valid_hint
|
16
|
+
|
17
|
+
VALID_HINTS = %i(cs default eastAsia)
|
18
|
+
|
19
|
+
VALID_THEMES = %i(majorAscii majorBidi majorEastAsia majorHAnsi minorAscii minorBidi minorEastAsia minorHAnsi)
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def valid_theme(value)
|
24
|
+
valid_in? value, VALID_THEMES
|
25
|
+
end
|
26
|
+
|
27
|
+
def valid_hint(value)
|
28
|
+
valid_in? value, VALID_HINTS
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class Frame < ComplexProperty
|
5
|
+
tag :framePr
|
6
|
+
|
7
|
+
attribute :anchor_lock, expects: :true_or_false
|
8
|
+
attribute :drop_cap, expects: :valid_drop_cap
|
9
|
+
attribute :height, expects: :positive_integer, displays_as: :h
|
10
|
+
attribute :height_rule, expects: :valid_height_rule, displays_as: :hRule
|
11
|
+
attribute :horizontal_anchor, expects: :valid_anchor, displays_as: :hAnchor
|
12
|
+
attribute :horizontal_padding, expects: :positive_integer, displays_as: :hSpace
|
13
|
+
attribute :horizontal_position, expects: :integer, displays_as: :x
|
14
|
+
attribute :lines, expects: :positive_integer
|
15
|
+
attribute :relative_horizontal_position, expects: :valid_relative_horizontal_position, displays_as: :xAlign
|
16
|
+
attribute :relative_vertical_position, expects: :valid_relative_vertical_position, displays_as: :yAlign
|
17
|
+
attribute :vertical_anchor, expects: :valid_anchor, displays_as: :vAnchor
|
18
|
+
attribute :vertical_padding, expects: :positive_integer, displays_as: :vSpace
|
19
|
+
attribute :vertical_position, expects: :integer, displays_as: :y
|
20
|
+
attribute :width, expects: :positive_integer, displays_as: :w
|
21
|
+
attribute :wrap, expects: :valid_wrap
|
22
|
+
|
23
|
+
VALID_ANCHORS = %i(margin page text)
|
24
|
+
VALID_DROP_CAPS = %i(drop margin none)
|
25
|
+
VALID_HEIGHT_RULES = %i(atLeast auto exact)
|
26
|
+
VALID_RELATIVE_HORIZONTAL_POSITIONS = %i(center inside left outside right)
|
27
|
+
VALID_RELATIVE_VERTICAL_POSITIONS = %i(bottom center inline inside outside top)
|
28
|
+
VALID_WRAPS = %i(around auto none notBeside through tight)
|
29
|
+
|
30
|
+
private
|
31
|
+
|
32
|
+
def valid_drop_cap(value)
|
33
|
+
valid_in? value, VALID_DROP_CAPS
|
34
|
+
end
|
35
|
+
|
36
|
+
def valid_anchor(value)
|
37
|
+
valid_in? value, VALID_ANCHORS
|
38
|
+
end
|
39
|
+
|
40
|
+
def valid_height_rule(value)
|
41
|
+
valid_in? value, VALID_HEIGHT_RULES
|
42
|
+
end
|
43
|
+
|
44
|
+
def valid_relative_horizontal_position(value)
|
45
|
+
valid_in? value, VALID_RELATIVE_HORIZONTAL_POSITIONS
|
46
|
+
end
|
47
|
+
|
48
|
+
def valid_relative_vertical_position(value)
|
49
|
+
valid_in? value, VALID_RELATIVE_VERTICAL_POSITIONS
|
50
|
+
end
|
51
|
+
|
52
|
+
def valid_wrap(value)
|
53
|
+
valid_in? value, VALID_WRAPS
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class Highlight < ValueProperty
|
5
|
+
|
6
|
+
def ok_values
|
7
|
+
%i(black blue cyan darkBlue darkCyan darkGray darkGreen darkMagenta darkRed darkYellow green lightGray magenta none red white yellow)
|
8
|
+
end
|
9
|
+
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class Indentation < ComplexProperty
|
5
|
+
tag :ind
|
6
|
+
|
7
|
+
attribute :end, expects: :integer
|
8
|
+
attribute :end_characters, expects: :integer, displays_as: :endChars
|
9
|
+
attribute :hanging, expects: :integer
|
10
|
+
attribute :hanging_characters, expects: :integer, displays_as: :hangingChars
|
11
|
+
attribute :first_line, expects: :integer
|
12
|
+
attribute :first_line_characters, expects: :integer, displays_as: :firstLineChars
|
13
|
+
attribute :start, expects: :integer
|
14
|
+
attribute :start_characters, expects: :integer, displays_as: :startChars
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class Language < ComplexProperty
|
5
|
+
tag :lang
|
6
|
+
|
7
|
+
attribute :bidi, expects: :valid_language
|
8
|
+
attribute :east_asia, expects: :valid_language
|
9
|
+
attribute :latin, expects: :valid_language, displays_as: :val
|
10
|
+
|
11
|
+
private
|
12
|
+
|
13
|
+
def valid_language(value)
|
14
|
+
message = "Invalid #{name}: must be a language code (RFC 4646)"
|
15
|
+
raise ArgumentError, message unless value =~ /[a-z]{2}-[A-Z]{2}/
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require "openxml/docx/properties/latent_styles_exception"
|
2
|
+
|
3
|
+
module OpenXml
|
4
|
+
module Docx
|
5
|
+
module Properties
|
6
|
+
class LatentStyles < ContainerProperty
|
7
|
+
child_class :latent_styles_exception
|
8
|
+
|
9
|
+
attribute :count, expects: :positive_integer
|
10
|
+
attribute :default_locked_state, expects: :true_or_false, displays_as: :defLockedState
|
11
|
+
attribute :default_qformat, expects: :true_or_false, displays_as: :defQFormat
|
12
|
+
attribute :default_semi_hidden, expects: :true_or_false, displays_as: :defSemiHidden
|
13
|
+
attribute :default_ui_priority, expects: :integer, displays_as: :defUIPriority
|
14
|
+
attribute :default_unhide_when_used, expects: :true_or_false, displays_as: :defUnhideWhenUsed
|
15
|
+
|
16
|
+
def render?
|
17
|
+
true # Output XML even if there are no children
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class LatentStylesException < ComplexProperty
|
5
|
+
tag :lsdException
|
6
|
+
|
7
|
+
attribute :locked, expects: :true_or_false
|
8
|
+
attribute :style_name, expects: :string, displays_as: :name
|
9
|
+
attribute :qFormat, expects: :true_or_false
|
10
|
+
attribute :semi_hidden, expects: :true_or_false, displays_as: :semiHidden
|
11
|
+
attribute :ui_priority, expects: :integer, displays_as: :uiPriority
|
12
|
+
attribute :unhide_when_used, expects: :true_or_false, displays_as: :unhideWhenUsed
|
13
|
+
|
14
|
+
def initialize(style_name)
|
15
|
+
self.style_name = style_name
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class LineNumbering < ComplexProperty
|
5
|
+
tag :lnNumType
|
6
|
+
|
7
|
+
attribute :count_by, expects: :integer
|
8
|
+
attribute :distance, expects: :positive_integer
|
9
|
+
attribute :restart, expects: :valid_line_numbering_restart
|
10
|
+
attribute :start, expects: :integer
|
11
|
+
|
12
|
+
VALID_LINE_NUMBERING_RESTARTS = %i(continuous newPage newSection)
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def valid_line_numbering_restart(value)
|
17
|
+
valid_in? value, VALID_LINE_NUMBERING_RESTARTS
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class LinkedStyle < ValueProperty
|
5
|
+
tag :link
|
6
|
+
|
7
|
+
def valid?
|
8
|
+
value.is_a?(String) && value.length > 0
|
9
|
+
end
|
10
|
+
|
11
|
+
def invalid_message
|
12
|
+
"#{name} must be a string that is not empty"
|
13
|
+
end
|
14
|
+
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class NextStyle < ValueProperty
|
5
|
+
tag :next
|
6
|
+
|
7
|
+
def valid?
|
8
|
+
value.is_a?(String) && value.length > 0
|
9
|
+
end
|
10
|
+
|
11
|
+
def invalid_message
|
12
|
+
"#{name} must be a string that is not empty"
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module OpenXml
|
2
|
+
module Docx
|
3
|
+
module Properties
|
4
|
+
class Numbering < ComplexProperty
|
5
|
+
tag :numPr
|
6
|
+
|
7
|
+
attribute :level, expects: :positive_integer, displays_as: :ilvl
|
8
|
+
attribute :id, expects: :positive_integer, displays_as: :numId
|
9
|
+
|
10
|
+
def to_xml(xml)
|
11
|
+
return unless render?
|
12
|
+
xml["w"].public_send(tag) {
|
13
|
+
xml_attributes.each do |tag_name, value|
|
14
|
+
xml.public_send(tag_name, "w:val" => value)
|
15
|
+
end
|
16
|
+
}
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|