#include namespace xlnt { namespace detail { /// /// Returns the string representation of the underline style. /// std::string to_string(font::underline_style style) { switch (style) { case font::underline_style::double_: return "double"; case font::underline_style::double_accounting: return "doubleAccounting"; case font::underline_style::single: return "single"; case font::underline_style::single_accounting: return "singleAccounting"; case font::underline_style::none: return "none"; } default_case("single"); } /// /// Returns the string representation of the relationship type. /// std::string to_string(relationship_type t) { switch (t) { case relationship_type::office_document: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument"; case relationship_type::thumbnail: return "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail"; case relationship_type::calculation_chain: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/calcChain"; case relationship_type::extended_properties: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties"; case relationship_type::core_properties: return "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties"; case relationship_type::worksheet: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet"; case relationship_type::shared_string_table: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings"; case relationship_type::stylesheet: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles"; case relationship_type::theme: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme"; case relationship_type::hyperlink: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink"; case relationship_type::chartsheet: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/chartsheet"; case relationship_type::comments: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments"; case relationship_type::vml_drawing: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing"; case relationship_type::custom_properties: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties"; case relationship_type::printer_settings: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/printerSettings"; case relationship_type::connections: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/connections"; case relationship_type::custom_property: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customProperty"; case relationship_type::custom_xml_mappings: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlMappings"; case relationship_type::dialogsheet: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/dialogsheet"; case relationship_type::drawings: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing"; case relationship_type::external_workbook_references: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/externalLinkPath"; case relationship_type::pivot_table: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/pivotTable"; case relationship_type::pivot_table_cache_definition: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/pivotCacheDefinition"; case relationship_type::pivot_table_cache_records: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/pivotCacheRecords"; case relationship_type::query_table: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/queryTable"; case relationship_type::shared_workbook_revision_headers: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/revisionHeaders"; case relationship_type::shared_workbook: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedWorkbook"; case relationship_type::revision_log: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/revisionLog"; case relationship_type::shared_workbook_user_data: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/usernames"; case relationship_type::single_cell_table_definitions: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/tableSingleCells"; case relationship_type::table_definition: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/table"; case relationship_type::volatile_dependencies: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/volatileDependencies"; case relationship_type::image: return "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image"; case relationship_type::unknown: #ifndef __clang__ default: #endif return "unknown"; } } std::string to_string(pattern_fill_type fill_type) { switch (fill_type) { case pattern_fill_type::darkdown: return "darkdown"; case pattern_fill_type::darkgray: return "darkgray"; case pattern_fill_type::darkgrid: return "darkgrid"; case pattern_fill_type::darkhorizontal: return "darkhorizontal"; case pattern_fill_type::darktrellis: return "darkhorizontal"; case pattern_fill_type::darkup: return "darkup"; case pattern_fill_type::darkvertical: return "darkvertical"; case pattern_fill_type::gray0625: return "gray0625"; case pattern_fill_type::gray125: return "gray125"; case pattern_fill_type::lightdown: return "lightdown"; case pattern_fill_type::lightgray: return "lightgray"; case pattern_fill_type::lightgrid: return "lightgrid"; case pattern_fill_type::lighthorizontal: return "lighthorizontal"; case pattern_fill_type::lighttrellis: return "lighttrellis"; case pattern_fill_type::lightup: return "lightup"; case pattern_fill_type::lightvertical: return "lightvertical"; case pattern_fill_type::mediumgray: return "mediumgray"; case pattern_fill_type::solid: return "solid"; case pattern_fill_type::none: return "none"; } default_case("none"); } std::string to_string(gradient_fill_type fill_type) { return fill_type == gradient_fill_type::linear ? "linear" : "path"; } std::string to_string(border_style style) { switch (style) { case border_style::dashdot: return "dashdot"; case border_style::dashdotdot: return "dashdotdot"; case border_style::dashed: return "dashed"; case border_style::dotted: return "dotted"; case border_style::double_: return "double"; case border_style::hair: return "hair"; case border_style::medium: return "medium"; case border_style::mediumdashdot: return "mediumdashdot"; case border_style::mediumdashdotdot: return "mediumdashdotdot"; case border_style::mediumdashed: return "mediumdashed"; case border_style::slantdashdot: return "slantdashdot"; case border_style::thick: return "thick"; case border_style::thin: return "thin"; case border_style::none: return "none"; } default_case("none"); } std::string to_string(vertical_alignment alignment) { switch (alignment) { case vertical_alignment::top: return "top"; case vertical_alignment::center: return "center"; case vertical_alignment::bottom: return "bottom"; case vertical_alignment::justify: return "justify"; case vertical_alignment::distributed: return "distributed"; } default_case("top"); } std::string to_string(horizontal_alignment alignment) { switch (alignment) { case horizontal_alignment::general: return "general"; case horizontal_alignment::left: return "left"; case horizontal_alignment::center: return "center"; case horizontal_alignment::right: return "right"; case horizontal_alignment::fill: return "fill"; case horizontal_alignment::justify: return "justify"; case horizontal_alignment::center_continuous: return "centerContinuous"; case horizontal_alignment::distributed: return "distributed"; } default_case("general"); } std::string to_string(border_side side) { switch (side) { case border_side::bottom: return "bottom"; case border_side::top: return "top"; case border_side::start: return "left"; case border_side::end: return "right"; case border_side::horizontal: return "horizontal"; case border_side::vertical: return "vertical"; case border_side::diagonal: return "diagonal"; } default_case("top"); } } // namespace detail } // namespace xlnt