diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-10-19 16:39:09 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-10-23 11:04:42 +0200 |
commit | bd6fb0cd3eee3c7d414e55a7678c0097aadc7646 (patch) | |
tree | 5f754d7e485ab31dd4e04782b8eccd50d854d91e /sc/inc/unonames.hxx | |
parent | 3501c52176d1122d9de08462435f633cd21de370 (diff) |
Extended loplugin:ostr: Rewrite some O[U]StringLiteral -> O[U]String
...in include files. This is a mix of automatic rewriting in include files and
manual fixups (mostly addressing loplugin:redundantfcast) in source files that
include those.
Change-Id: I1f3cc1e67b9cabd2e9d61a4d9e9a01e587ea35cc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158337
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc/inc/unonames.hxx')
-rw-r--r-- | sc/inc/unonames.hxx | 1194 |
1 files changed, 597 insertions, 597 deletions
diff --git a/sc/inc/unonames.hxx b/sc/inc/unonames.hxx index f88d89fdd2f0..5b8c65346764 100644 --- a/sc/inc/unonames.hxx +++ b/sc/inc/unonames.hxx @@ -22,701 +22,701 @@ #include <rtl/ustring.hxx> // service names -inline constexpr OUStringLiteral SC_SERVICENAME_VALBIND = u"com.sun.star.table.CellValueBinding"; -inline constexpr OUStringLiteral SC_SERVICENAME_LISTCELLBIND = u"com.sun.star.table.ListPositionCellBinding"; -inline constexpr OUStringLiteral SC_SERVICENAME_LISTSOURCE = u"com.sun.star.table.CellRangeListSource"; -inline constexpr OUStringLiteral SC_SERVICENAME_CELLADDRESS = u"com.sun.star.table.CellAddressConversion"; -inline constexpr OUStringLiteral SC_SERVICENAME_RANGEADDRESS = u"com.sun.star.table.CellRangeAddressConversion"; +inline constexpr OUString SC_SERVICENAME_VALBIND = u"com.sun.star.table.CellValueBinding"_ustr; +inline constexpr OUString SC_SERVICENAME_LISTCELLBIND = u"com.sun.star.table.ListPositionCellBinding"_ustr; +inline constexpr OUString SC_SERVICENAME_LISTSOURCE = u"com.sun.star.table.CellRangeListSource"_ustr; +inline constexpr OUString SC_SERVICENAME_CELLADDRESS = u"com.sun.star.table.CellAddressConversion"_ustr; +inline constexpr OUString SC_SERVICENAME_RANGEADDRESS = u"com.sun.star.table.CellRangeAddressConversion"_ustr; -inline constexpr OUStringLiteral SC_SERVICENAME_FORMULAPARS = u"com.sun.star.sheet.FormulaParser"; -inline constexpr OUStringLiteral SC_SERVICENAME_OPCODEMAPPER = u"com.sun.star.sheet.FormulaOpCodeMapper"; +inline constexpr OUString SC_SERVICENAME_FORMULAPARS = u"com.sun.star.sheet.FormulaParser"_ustr; +inline constexpr OUString SC_SERVICENAME_OPCODEMAPPER = u"com.sun.star.sheet.FormulaOpCodeMapper"_ustr; -inline constexpr OUStringLiteral SC_SERVICENAME_CHDATAPROV = u"com.sun.star.chart2.data.DataProvider"; -inline constexpr OUStringLiteral SC_SERVICENAME_CHRANGEHILIGHT = u"com.sun.star.chart2.data.RangeHighlightListener"; -inline constexpr OUStringLiteral SC_SERVICENAME_CHART_PIVOTTABLE_DATAPROVIDER = u"com.sun.star.chart2.data.PivotTableDataProvider"; +inline constexpr OUString SC_SERVICENAME_CHDATAPROV = u"com.sun.star.chart2.data.DataProvider"_ustr; +inline constexpr OUString SC_SERVICENAME_CHRANGEHILIGHT = u"com.sun.star.chart2.data.RangeHighlightListener"_ustr; +inline constexpr OUString SC_SERVICENAME_CHART_PIVOTTABLE_DATAPROVIDER = u"com.sun.star.chart2.data.PivotTableDataProvider"_ustr; // document -inline constexpr OUStringLiteral SC_UNO_AREALINKS = u"AreaLinks"; -inline constexpr OUStringLiteral SC_UNO_DDELINKS = u"DDELinks"; -inline constexpr OUStringLiteral SC_UNO_EXTERNALDOCLINKS = u"ExternalDocLinks"; -inline constexpr OUStringLiteral SC_UNO_COLLABELRNG = u"ColumnLabelRanges"; -inline constexpr OUStringLiteral SC_UNO_DATABASERNG = u"DatabaseRanges"; -inline constexpr OUStringLiteral SC_UNO_UNNAMEDDBRNG = u"UnnamedDatabaseRanges"; -inline constexpr OUStringLiteral SC_UNO_NAMEDRANGES = u"NamedRanges"; -inline constexpr OUStringLiteral SC_UNO_ROWLABELRNG = u"RowLabelRanges"; -inline constexpr OUStringLiteral SC_UNO_SHEETLINKS = u"SheetLinks"; -inline constexpr OUStringLiteral SC_UNO_FORBIDDEN = u"ForbiddenCharacters"; -inline constexpr OUStringLiteral SC_UNO_HASDRAWPAGES = u"HasDrawPages"; -inline constexpr OUStringLiteral SC_UNO_THEME = u"Theme"; +inline constexpr OUString SC_UNO_AREALINKS = u"AreaLinks"_ustr; +inline constexpr OUString SC_UNO_DDELINKS = u"DDELinks"_ustr; +inline constexpr OUString SC_UNO_EXTERNALDOCLINKS = u"ExternalDocLinks"_ustr; +inline constexpr OUString SC_UNO_COLLABELRNG = u"ColumnLabelRanges"_ustr; +inline constexpr OUString SC_UNO_DATABASERNG = u"DatabaseRanges"_ustr; +inline constexpr OUString SC_UNO_UNNAMEDDBRNG = u"UnnamedDatabaseRanges"_ustr; +inline constexpr OUString SC_UNO_NAMEDRANGES = u"NamedRanges"_ustr; +inline constexpr OUString SC_UNO_ROWLABELRNG = u"RowLabelRanges"_ustr; +inline constexpr OUString SC_UNO_SHEETLINKS = u"SheetLinks"_ustr; +inline constexpr OUString SC_UNO_FORBIDDEN = u"ForbiddenCharacters"_ustr; +inline constexpr OUString SC_UNO_HASDRAWPAGES = u"HasDrawPages"_ustr; +inline constexpr OUString SC_UNO_THEME = u"Theme"_ustr; // CharacterProperties -inline constexpr OUStringLiteral SC_UNONAME_CCOLOR = u"CharColor"; -inline constexpr OUStringLiteral SC_UNONAME_CHAR_COMPLEX_COLOR = u"CharComplexColor"; -inline constexpr OUStringLiteral SC_UNONAME_CHEIGHT = u"CharHeight"; -inline constexpr OUStringLiteral SC_UNONAME_CUNDER = u"CharUnderline"; -inline constexpr OUStringLiteral SC_UNONAME_CUNDLCOL = u"CharUnderlineColor"; -inline constexpr OUStringLiteral SC_UNONAME_CUNDLHAS = u"CharUnderlineHasColor"; -inline constexpr OUStringLiteral SC_UNONAME_COVER = u"CharOverline"; -inline constexpr OUStringLiteral SC_UNONAME_COVRLCOL = u"CharOverlineColor"; -inline constexpr OUStringLiteral SC_UNONAME_COVRLHAS = u"CharOverlineHasColor"; -inline constexpr OUStringLiteral SC_UNONAME_CWEIGHT = u"CharWeight"; -inline constexpr OUStringLiteral SC_UNONAME_CPOST = u"CharPosture"; -inline constexpr OUStringLiteral SC_UNONAME_CCROSS = u"CharCrossedOut"; -inline constexpr OUStringLiteral SC_UNONAME_CSTRIKE = u"CharStrikeout"; -inline constexpr OUStringLiteral SC_UNONAME_CLOCAL = u"CharLocale"; -inline constexpr OUStringLiteral SC_UNONAME_CSHADD = u"CharShadowed"; -inline constexpr OUStringLiteral SC_UNONAME_CFONT = u"CharFont"; -inline constexpr OUStringLiteral SC_UNONAME_COUTL = u"CharContoured"; -inline constexpr OUStringLiteral SC_UNONAME_CEMPHAS = u"CharEmphasis"; -inline constexpr OUStringLiteral SC_UNONAME_CFNAME = u"CharFontName"; -inline constexpr OUStringLiteral SC_UNONAME_CFSTYLE = u"CharFontStyleName"; -inline constexpr OUStringLiteral SC_UNONAME_CFFAMIL = u"CharFontFamily"; -inline constexpr OUStringLiteral SC_UNONAME_CFCHARS = u"CharFontCharSet"; -inline constexpr OUStringLiteral SC_UNONAME_CFPITCH = u"CharFontPitch"; -inline constexpr OUStringLiteral SC_UNONAME_CRELIEF = u"CharRelief"; -inline constexpr OUStringLiteral SC_UNONAME_CWORDMOD = u"CharWordMode"; - -inline constexpr OUStringLiteral SC_UNO_CJK_CFNAME = u"CharFontNameAsian"; -inline constexpr OUStringLiteral SC_UNO_CJK_CFSTYLE = u"CharFontStyleNameAsian"; -inline constexpr OUStringLiteral SC_UNO_CJK_CFFAMIL = u"CharFontFamilyAsian"; -inline constexpr OUStringLiteral SC_UNO_CJK_CFCHARS = u"CharFontCharSetAsian"; -inline constexpr OUStringLiteral SC_UNO_CJK_CFPITCH = u"CharFontPitchAsian"; -inline constexpr OUStringLiteral SC_UNO_CJK_CHEIGHT = u"CharHeightAsian"; -inline constexpr OUStringLiteral SC_UNO_CJK_CWEIGHT = u"CharWeightAsian"; -inline constexpr OUStringLiteral SC_UNO_CJK_CPOST = u"CharPostureAsian"; -inline constexpr OUStringLiteral SC_UNO_CJK_CLOCAL = u"CharLocaleAsian"; - -inline constexpr OUStringLiteral SC_UNO_CTL_CFNAME = u"CharFontNameComplex"; -inline constexpr OUStringLiteral SC_UNO_CTL_CFSTYLE = u"CharFontStyleNameComplex"; -inline constexpr OUStringLiteral SC_UNO_CTL_CFFAMIL = u"CharFontFamilyComplex"; -inline constexpr OUStringLiteral SC_UNO_CTL_CFCHARS = u"CharFontCharSetComplex"; -inline constexpr OUStringLiteral SC_UNO_CTL_CFPITCH = u"CharFontPitchComplex"; -inline constexpr OUStringLiteral SC_UNO_CTL_CHEIGHT = u"CharHeightComplex"; -inline constexpr OUStringLiteral SC_UNO_CTL_CWEIGHT = u"CharWeightComplex"; -inline constexpr OUStringLiteral SC_UNO_CTL_CPOST = u"CharPostureComplex"; -inline constexpr OUStringLiteral SC_UNO_CTL_CLOCAL = u"CharLocaleComplex"; +inline constexpr OUString SC_UNONAME_CCOLOR = u"CharColor"_ustr; +inline constexpr OUString SC_UNONAME_CHAR_COMPLEX_COLOR = u"CharComplexColor"_ustr; +inline constexpr OUString SC_UNONAME_CHEIGHT = u"CharHeight"_ustr; +inline constexpr OUString SC_UNONAME_CUNDER = u"CharUnderline"_ustr; +inline constexpr OUString SC_UNONAME_CUNDLCOL = u"CharUnderlineColor"_ustr; +inline constexpr OUString SC_UNONAME_CUNDLHAS = u"CharUnderlineHasColor"_ustr; +inline constexpr OUString SC_UNONAME_COVER = u"CharOverline"_ustr; +inline constexpr OUString SC_UNONAME_COVRLCOL = u"CharOverlineColor"_ustr; +inline constexpr OUString SC_UNONAME_COVRLHAS = u"CharOverlineHasColor"_ustr; +inline constexpr OUString SC_UNONAME_CWEIGHT = u"CharWeight"_ustr; +inline constexpr OUString SC_UNONAME_CPOST = u"CharPosture"_ustr; +inline constexpr OUString SC_UNONAME_CCROSS = u"CharCrossedOut"_ustr; +inline constexpr OUString SC_UNONAME_CSTRIKE = u"CharStrikeout"_ustr; +inline constexpr OUString SC_UNONAME_CLOCAL = u"CharLocale"_ustr; +inline constexpr OUString SC_UNONAME_CSHADD = u"CharShadowed"_ustr; +inline constexpr OUString SC_UNONAME_CFONT = u"CharFont"_ustr; +inline constexpr OUString SC_UNONAME_COUTL = u"CharContoured"_ustr; +inline constexpr OUString SC_UNONAME_CEMPHAS = u"CharEmphasis"_ustr; +inline constexpr OUString SC_UNONAME_CFNAME = u"CharFontName"_ustr; +inline constexpr OUString SC_UNONAME_CFSTYLE = u"CharFontStyleName"_ustr; +inline constexpr OUString SC_UNONAME_CFFAMIL = u"CharFontFamily"_ustr; +inline constexpr OUString SC_UNONAME_CFCHARS = u"CharFontCharSet"_ustr; +inline constexpr OUString SC_UNONAME_CFPITCH = u"CharFontPitch"_ustr; +inline constexpr OUString SC_UNONAME_CRELIEF = u"CharRelief"_ustr; +inline constexpr OUString SC_UNONAME_CWORDMOD = u"CharWordMode"_ustr; + +inline constexpr OUString SC_UNO_CJK_CFNAME = u"CharFontNameAsian"_ustr; +inline constexpr OUString SC_UNO_CJK_CFSTYLE = u"CharFontStyleNameAsian"_ustr; +inline constexpr OUString SC_UNO_CJK_CFFAMIL = u"CharFontFamilyAsian"_ustr; +inline constexpr OUString SC_UNO_CJK_CFCHARS = u"CharFontCharSetAsian"_ustr; +inline constexpr OUString SC_UNO_CJK_CFPITCH = u"CharFontPitchAsian"_ustr; +inline constexpr OUString SC_UNO_CJK_CHEIGHT = u"CharHeightAsian"_ustr; +inline constexpr OUString SC_UNO_CJK_CWEIGHT = u"CharWeightAsian"_ustr; +inline constexpr OUString SC_UNO_CJK_CPOST = u"CharPostureAsian"_ustr; +inline constexpr OUString SC_UNO_CJK_CLOCAL = u"CharLocaleAsian"_ustr; + +inline constexpr OUString SC_UNO_CTL_CFNAME = u"CharFontNameComplex"_ustr; +inline constexpr OUString SC_UNO_CTL_CFSTYLE = u"CharFontStyleNameComplex"_ustr; +inline constexpr OUString SC_UNO_CTL_CFFAMIL = u"CharFontFamilyComplex"_ustr; +inline constexpr OUString SC_UNO_CTL_CFCHARS = u"CharFontCharSetComplex"_ustr; +inline constexpr OUString SC_UNO_CTL_CFPITCH = u"CharFontPitchComplex"_ustr; +inline constexpr OUString SC_UNO_CTL_CHEIGHT = u"CharHeightComplex"_ustr; +inline constexpr OUString SC_UNO_CTL_CWEIGHT = u"CharWeightComplex"_ustr; +inline constexpr OUString SC_UNO_CTL_CPOST = u"CharPostureComplex"_ustr; +inline constexpr OUString SC_UNO_CTL_CLOCAL = u"CharLocaleComplex"_ustr; // CellProperties -inline constexpr OUStringLiteral SC_UNONAME_CELLSTYL = u"CellStyle"; -inline constexpr OUStringLiteral SC_UNONAME_CELLBACK = u"CellBackColor"; -inline constexpr OUStringLiteral SC_UNONAME_CELL_BACKGROUND_COMPLEX_COLOR = u"CellBackgroundComplexColor"; -inline constexpr OUStringLiteral SC_UNONAME_CELLTRAN = u"IsCellBackgroundTransparent"; -inline constexpr OUStringLiteral SC_UNONAME_CELLPRO = u"CellProtection"; -inline constexpr OUStringLiteral SC_UNONAME_CELLHJUS = u"HoriJustify"; -inline constexpr OUStringLiteral SC_UNONAME_CELLVJUS = u"VertJustify"; -inline constexpr OUStringLiteral SC_UNONAME_CELLHJUS_METHOD = u"HoriJustifyMethod"; -inline constexpr OUStringLiteral SC_UNONAME_CELLVJUS_METHOD = u"VertJustifyMethod"; -inline constexpr OUStringLiteral SC_UNONAME_CELLORI = u"Orientation"; -inline constexpr OUStringLiteral SC_UNONAME_NUMFMT = u"NumberFormat"; -inline constexpr OUStringLiteral SC_UNONAME_FORMATID = u"FormatID"; -inline constexpr OUStringLiteral SC_UNONAME_SHADOW = u"ShadowFormat"; -inline constexpr OUStringLiteral SC_UNONAME_TBLBORD = u"TableBorder"; -inline constexpr OUStringLiteral SC_UNONAME_TBLBORD2 = u"TableBorder2"; -inline constexpr OUStringLiteral SC_UNONAME_WRAP = u"IsTextWrapped"; -inline constexpr OUStringLiteral SC_UNONAME_PINDENT = u"ParaIndent"; -inline constexpr OUStringLiteral SC_UNONAME_PTMARGIN = u"ParaTopMargin"; -inline constexpr OUStringLiteral SC_UNONAME_PBMARGIN = u"ParaBottomMargin"; -inline constexpr OUStringLiteral SC_UNONAME_PLMARGIN = u"ParaLeftMargin"; -inline constexpr OUStringLiteral SC_UNONAME_PRMARGIN = u"ParaRightMargin"; -inline constexpr OUStringLiteral SC_UNONAME_ROTANG = u"RotateAngle"; -inline constexpr OUStringLiteral SC_UNONAME_ROTREF = u"RotateReference"; -inline constexpr OUStringLiteral SC_UNONAME_ASIANVERT = u"AsianVerticalMode"; -inline constexpr OUStringLiteral SC_UNONAME_WRITING = u"WritingMode"; -inline constexpr OUStringLiteral SC_UNONAME_HIDDEN = u"Hidden"; - -inline constexpr OUStringLiteral SC_UNONAME_BOTTBORDER = u"BottomBorder"; -inline constexpr OUStringLiteral SC_UNONAME_LEFTBORDER = u"LeftBorder"; -inline constexpr OUStringLiteral SC_UNONAME_RIGHTBORDER = u"RightBorder"; -inline constexpr OUStringLiteral SC_UNONAME_TOPBORDER = u"TopBorder"; - -inline constexpr OUStringLiteral SC_UNONAME_BOTTBORDER2 = u"BottomBorder2"; -inline constexpr OUStringLiteral SC_UNONAME_LEFTBORDER2 = u"LeftBorder2"; -inline constexpr OUStringLiteral SC_UNONAME_RIGHTBORDER2 = u"RightBorder2"; -inline constexpr OUStringLiteral SC_UNONAME_TOPBORDER2 = u"TopBorder2"; - -inline constexpr OUStringLiteral SC_UNONAME_BOTTOM_BORDER_COMPLEX_COLOR = u"BottomBorderComplexColor"; -inline constexpr OUStringLiteral SC_UNONAME_LEFT_BORDER_COMPLEX_COLOR = u"LeftBorderComplexColor"; -inline constexpr OUStringLiteral SC_UNONAME_RIGHT_BORDER_COMPLEX_COLOR = u"RightBorderComplexColor"; -inline constexpr OUStringLiteral SC_UNONAME_TOP_BORDER_COMPLEX_COLOR = u"TopBorderComplexColor"; - -inline constexpr OUStringLiteral SC_UNONAME_DIAGONAL_TLBR = u"DiagonalTLBR"; -inline constexpr OUStringLiteral SC_UNONAME_DIAGONAL_BLTR = u"DiagonalBLTR"; - -inline constexpr OUStringLiteral SC_UNONAME_DIAGONAL_TLBR2 = u"DiagonalTLBR2"; -inline constexpr OUStringLiteral SC_UNONAME_DIAGONAL_BLTR2 = u"DiagonalBLTR2"; - -inline constexpr OUStringLiteral SC_UNONAME_SHRINK_TO_FIT = u"ShrinkToFit"; - -inline constexpr OUStringLiteral SC_UNONAME_PISHANG = u"ParaIsHangingPunctuation"; -inline constexpr OUStringLiteral SC_UNONAME_PISCHDIST = u"ParaIsCharacterDistance"; -inline constexpr OUStringLiteral SC_UNONAME_PISFORBID = u"ParaIsForbiddenRules"; -inline constexpr OUStringLiteral SC_UNONAME_PISHYPHEN = u"ParaIsHyphenation"; -inline constexpr OUStringLiteral SC_UNONAME_PADJUST = u"ParaAdjust"; -inline constexpr OUStringLiteral SC_UNONAME_PLASTADJ = u"ParaLastLineAdjust"; - -inline constexpr OUStringLiteral SC_UNONAME_NUMRULES = u"NumberingRules"; +inline constexpr OUString SC_UNONAME_CELLSTYL = u"CellStyle"_ustr; +inline constexpr OUString SC_UNONAME_CELLBACK = u"CellBackColor"_ustr; +inline constexpr OUString SC_UNONAME_CELL_BACKGROUND_COMPLEX_COLOR = u"CellBackgroundComplexColor"_ustr; +inline constexpr OUString SC_UNONAME_CELLTRAN = u"IsCellBackgroundTransparent"_ustr; +inline constexpr OUString SC_UNONAME_CELLPRO = u"CellProtection"_ustr; +inline constexpr OUString SC_UNONAME_CELLHJUS = u"HoriJustify"_ustr; +inline constexpr OUString SC_UNONAME_CELLVJUS = u"VertJustify"_ustr; +inline constexpr OUString SC_UNONAME_CELLHJUS_METHOD = u"HoriJustifyMethod"_ustr; +inline constexpr OUString SC_UNONAME_CELLVJUS_METHOD = u"VertJustifyMethod"_ustr; +inline constexpr OUString SC_UNONAME_CELLORI = u"Orientation"_ustr; +inline constexpr OUString SC_UNONAME_NUMFMT = u"NumberFormat"_ustr; +inline constexpr OUString SC_UNONAME_FORMATID = u"FormatID"_ustr; +inline constexpr OUString SC_UNONAME_SHADOW = u"ShadowFormat"_ustr; +inline constexpr OUString SC_UNONAME_TBLBORD = u"TableBorder"_ustr; +inline constexpr OUString SC_UNONAME_TBLBORD2 = u"TableBorder2"_ustr; +inline constexpr OUString SC_UNONAME_WRAP = u"IsTextWrapped"_ustr; +inline constexpr OUString SC_UNONAME_PINDENT = u"ParaIndent"_ustr; +inline constexpr OUString SC_UNONAME_PTMARGIN = u"ParaTopMargin"_ustr; +inline constexpr OUString SC_UNONAME_PBMARGIN = u"ParaBottomMargin"_ustr; +inline constexpr OUString SC_UNONAME_PLMARGIN = u"ParaLeftMargin"_ustr; +inline constexpr OUString SC_UNONAME_PRMARGIN = u"ParaRightMargin"_ustr; +inline constexpr OUString SC_UNONAME_ROTANG = u"RotateAngle"_ustr; +inline constexpr OUString SC_UNONAME_ROTREF = u"RotateReference"_ustr; +inline constexpr OUString SC_UNONAME_ASIANVERT = u"AsianVerticalMode"_ustr; +inline constexpr OUString SC_UNONAME_WRITING = u"WritingMode"_ustr; +inline constexpr OUString SC_UNONAME_HIDDEN = u"Hidden"_ustr; + +inline constexpr OUString SC_UNONAME_BOTTBORDER = u"BottomBorder"_ustr; +inline constexpr OUString SC_UNONAME_LEFTBORDER = u"LeftBorder"_ustr; +inline constexpr OUString SC_UNONAME_RIGHTBORDER = u"RightBorder"_ustr; +inline constexpr OUString SC_UNONAME_TOPBORDER = u"TopBorder"_ustr; + +inline constexpr OUString SC_UNONAME_BOTTBORDER2 = u"BottomBorder2"_ustr; +inline constexpr OUString SC_UNONAME_LEFTBORDER2 = u"LeftBorder2"_ustr; +inline constexpr OUString SC_UNONAME_RIGHTBORDER2 = u"RightBorder2"_ustr; +inline constexpr OUString SC_UNONAME_TOPBORDER2 = u"TopBorder2"_ustr; + +inline constexpr OUString SC_UNONAME_BOTTOM_BORDER_COMPLEX_COLOR = u"BottomBorderComplexColor"_ustr; +inline constexpr OUString SC_UNONAME_LEFT_BORDER_COMPLEX_COLOR = u"LeftBorderComplexColor"_ustr; +inline constexpr OUString SC_UNONAME_RIGHT_BORDER_COMPLEX_COLOR = u"RightBorderComplexColor"_ustr; +inline constexpr OUString SC_UNONAME_TOP_BORDER_COMPLEX_COLOR = u"TopBorderComplexColor"_ustr; + +inline constexpr OUString SC_UNONAME_DIAGONAL_TLBR = u"DiagonalTLBR"_ustr; +inline constexpr OUString SC_UNONAME_DIAGONAL_BLTR = u"DiagonalBLTR"_ustr; + +inline constexpr OUString SC_UNONAME_DIAGONAL_TLBR2 = u"DiagonalTLBR2"_ustr; +inline constexpr OUString SC_UNONAME_DIAGONAL_BLTR2 = u"DiagonalBLTR2"_ustr; + +inline constexpr OUString SC_UNONAME_SHRINK_TO_FIT = u"ShrinkToFit"_ustr; + +inline constexpr OUString SC_UNONAME_PISHANG = u"ParaIsHangingPunctuation"_ustr; +inline constexpr OUString SC_UNONAME_PISCHDIST = u"ParaIsCharacterDistance"_ustr; +inline constexpr OUString SC_UNONAME_PISFORBID = u"ParaIsForbiddenRules"_ustr; +inline constexpr OUString SC_UNONAME_PISHYPHEN = u"ParaIsHyphenation"_ustr; +inline constexpr OUString SC_UNONAME_PADJUST = u"ParaAdjust"_ustr; +inline constexpr OUString SC_UNONAME_PLASTADJ = u"ParaLastLineAdjust"_ustr; + +inline constexpr OUString SC_UNONAME_NUMRULES = u"NumberingRules"_ustr; // Styles -inline constexpr OUStringLiteral SC_UNONAME_DISPNAME = u"DisplayName"; +inline constexpr OUString SC_UNONAME_DISPNAME = u"DisplayName"_ustr; // XStyleLoader -inline constexpr OUStringLiteral SC_UNONAME_OVERWSTL = u"OverwriteStyles"; -inline constexpr OUStringLiteral SC_UNONAME_LOADCELL = u"LoadCellStyles"; -inline constexpr OUStringLiteral SC_UNONAME_LOADPAGE = u"LoadPageStyles"; +inline constexpr OUString SC_UNONAME_OVERWSTL = u"OverwriteStyles"_ustr; +inline constexpr OUString SC_UNONAME_LOADCELL = u"LoadCellStyles"_ustr; +inline constexpr OUString SC_UNONAME_LOADPAGE = u"LoadPageStyles"_ustr; // SheetCellRange -inline constexpr OUStringLiteral SC_UNONAME_POS = u"Position"; -inline constexpr OUStringLiteral SC_UNONAME_SIZE = u"Size"; -inline constexpr OUStringLiteral SC_UNONAME_ABSNAME = u"AbsoluteName"; +inline constexpr OUString SC_UNONAME_POS = u"Position"_ustr; +inline constexpr OUString SC_UNONAME_SIZE = u"Size"_ustr; +inline constexpr OUString SC_UNONAME_ABSNAME = u"AbsoluteName"_ustr; // column/row/sheet -inline constexpr OUStringLiteral SC_UNONAME_CELLHGT = u"Height"; -inline constexpr OUStringLiteral SC_UNONAME_CELLWID = u"Width"; -inline constexpr OUStringLiteral SC_UNONAME_CELLVIS = u"IsVisible"; -inline constexpr OUStringLiteral SC_UNONAME_CELLFILT = u"IsFiltered"; -inline constexpr OUStringLiteral SC_UNONAME_MANPAGE = u"IsManualPageBreak"; -inline constexpr OUStringLiteral SC_UNONAME_NEWPAGE = u"IsStartOfNewPage"; -inline constexpr OUStringLiteral SC_UNONAME_OHEIGHT = u"OptimalHeight"; -inline constexpr OUStringLiteral SC_UNONAME_OWIDTH = u"OptimalWidth"; -inline constexpr OUStringLiteral SC_UNONAME_PAGESTL = u"PageStyle"; -inline constexpr OUStringLiteral SC_UNONAME_ISACTIVE = u"IsActive"; -inline constexpr OUStringLiteral SC_UNONAME_BORDCOL = u"BorderColor"; -inline constexpr OUStringLiteral SC_UNONAME_PROTECT = u"Protected"; -inline constexpr OUStringLiteral SC_UNONAME_SHOWBORD = u"ShowBorder"; -inline constexpr OUStringLiteral SC_UNONAME_PRINTBORD = u"PrintBorder"; -inline constexpr OUStringLiteral SC_UNONAME_COPYBACK = u"CopyBack"; -inline constexpr OUStringLiteral SC_UNONAME_COPYSTYL = u"CopyStyles"; -inline constexpr OUStringLiteral SC_UNONAME_COPYFORM = u"CopyFormulas"; -inline constexpr OUStringLiteral SC_UNONAME_TABLAYOUT = u"TableLayout"; -inline constexpr OUStringLiteral SC_UNONAME_AUTOPRINT = u"AutomaticPrintArea"; -inline constexpr OUStringLiteral SC_UNONAME_TABCOLOR = u"TabColor"; -inline constexpr OUStringLiteral SC_UNONAME_CONDFORMAT = u"ConditionalFormats"; - -inline constexpr OUStringLiteral SC_UNONAME_VISFLAG = u"VisibleFlag"; +inline constexpr OUString SC_UNONAME_CELLHGT = u"Height"_ustr; +inline constexpr OUString SC_UNONAME_CELLWID = u"Width"_ustr; +inline constexpr OUString SC_UNONAME_CELLVIS = u"IsVisible"_ustr; +inline constexpr OUString SC_UNONAME_CELLFILT = u"IsFiltered"_ustr; +inline constexpr OUString SC_UNONAME_MANPAGE = u"IsManualPageBreak"_ustr; +inline constexpr OUString SC_UNONAME_NEWPAGE = u"IsStartOfNewPage"_ustr; +inline constexpr OUString SC_UNONAME_OHEIGHT = u"OptimalHeight"_ustr; +inline constexpr OUString SC_UNONAME_OWIDTH = u"OptimalWidth"_ustr; +inline constexpr OUString SC_UNONAME_PAGESTL = u"PageStyle"_ustr; +inline constexpr OUString SC_UNONAME_ISACTIVE = u"IsActive"_ustr; +inline constexpr OUString SC_UNONAME_BORDCOL = u"BorderColor"_ustr; +inline constexpr OUString SC_UNONAME_PROTECT = u"Protected"_ustr; +inline constexpr OUString SC_UNONAME_SHOWBORD = u"ShowBorder"_ustr; +inline constexpr OUString SC_UNONAME_PRINTBORD = u"PrintBorder"_ustr; +inline constexpr OUString SC_UNONAME_COPYBACK = u"CopyBack"_ustr; +inline constexpr OUString SC_UNONAME_COPYSTYL = u"CopyStyles"_ustr; +inline constexpr OUString SC_UNONAME_COPYFORM = u"CopyFormulas"_ustr; +inline constexpr OUString SC_UNONAME_TABLAYOUT = u"TableLayout"_ustr; +inline constexpr OUString SC_UNONAME_AUTOPRINT = u"AutomaticPrintArea"_ustr; +inline constexpr OUString SC_UNONAME_TABCOLOR = u"TabColor"_ustr; +inline constexpr OUString SC_UNONAME_CONDFORMAT = u"ConditionalFormats"_ustr; + +inline constexpr OUString SC_UNONAME_VISFLAG = u"VisibleFlag"_ustr; // LinkTarget -inline constexpr OUStringLiteral SC_UNO_LINKDISPBIT = u"LinkDisplayBitmap"; -inline constexpr OUStringLiteral SC_UNO_LINKDISPNAME = u"LinkDisplayName"; +inline constexpr OUString SC_UNO_LINKDISPBIT = u"LinkDisplayBitmap"_ustr; +inline constexpr OUString SC_UNO_LINKDISPNAME = u"LinkDisplayName"_ustr; // drawing objects -inline constexpr OUStringLiteral SC_UNONAME_IMAGEMAP = u"ImageMap"; -inline constexpr OUStringLiteral SC_UNONAME_ANCHOR = u"Anchor"; -inline constexpr OUStringLiteral SC_UNONAME_RESIZE_WITH_CELL = u"ResizeWithCell"; -inline constexpr OUStringLiteral SC_UNONAME_HORIPOS = u"HoriOrientPosition"; -inline constexpr OUStringLiteral SC_UNONAME_VERTPOS = u"VertOrientPosition"; -inline constexpr OUStringLiteral SC_UNONAME_HYPERLINK = u"Hyperlink"; -inline constexpr OUStringLiteral SC_UNONAME_MOVEPROTECT = u"MoveProtect"; -inline constexpr OUStringLiteral SC_UNONAME_STYLE = u"Style"; +inline constexpr OUString SC_UNONAME_IMAGEMAP = u"ImageMap"_ustr; +inline constexpr OUString SC_UNONAME_ANCHOR = u"Anchor"_ustr; +inline constexpr OUString SC_UNONAME_RESIZE_WITH_CELL = u"ResizeWithCell"_ustr; +inline constexpr OUString SC_UNONAME_HORIPOS = u"HoriOrientPosition"_ustr; +inline constexpr OUString SC_UNONAME_VERTPOS = u"VertOrientPosition"_ustr; +inline constexpr OUString SC_UNONAME_HYPERLINK = u"Hyperlink"_ustr; +inline constexpr OUString SC_UNONAME_MOVEPROTECT = u"MoveProtect"_ustr; +inline constexpr OUString SC_UNONAME_STYLE = u"Style"_ustr; // other cell properties -inline constexpr OUStringLiteral SC_UNONAME_CHCOLHDR = u"ChartColumnAsLabel"; -inline constexpr OUStringLiteral SC_UNONAME_CHROWHDR = u"ChartRowAsLabel"; -inline constexpr OUStringLiteral SC_UNONAME_CONDFMT = u"ConditionalFormat"; -inline constexpr OUStringLiteral SC_UNONAME_CONDLOC = u"ConditionalFormatLocal"; -inline constexpr OUStringLiteral SC_UNONAME_CONDXML = u"ConditionalFormatXML"; -inline constexpr OUStringLiteral SC_UNONAME_VALIDAT = u"Validation"; -inline constexpr OUStringLiteral SC_UNONAME_VALILOC = u"ValidationLocal"; -inline constexpr OUStringLiteral SC_UNONAME_VALIXML = u"ValidationXML"; -inline constexpr OUStringLiteral SC_UNONAME_FORMLOC = u"FormulaLocal"; -inline constexpr OUStringLiteral SC_UNONAME_FORMRT = u"FormulaResultType"; -inline constexpr OUStringLiteral SC_UNONAME_FORMRT2 = u"FormulaResultType2"; -inline constexpr OUStringLiteral SC_UNONAME_CELLCONTENTTYPE = u"CellContentType"; - -inline constexpr OUStringLiteral SC_UNONAME_USERDEF = u"UserDefinedAttributes"; -inline constexpr OUStringLiteral SC_UNONAME_TEXTUSER = u"TextUserDefinedAttributes"; +inline constexpr OUString SC_UNONAME_CHCOLHDR = u"ChartColumnAsLabel"_ustr; +inline constexpr OUString SC_UNONAME_CHROWHDR = u"ChartRowAsLabel"_ustr; +inline constexpr OUString SC_UNONAME_CONDFMT = u"ConditionalFormat"_ustr; +inline constexpr OUString SC_UNONAME_CONDLOC = u"ConditionalFormatLocal"_ustr; +inline constexpr OUString SC_UNONAME_CONDXML = u"ConditionalFormatXML"_ustr; +inline constexpr OUString SC_UNONAME_VALIDAT = u"Validation"_ustr; +inline constexpr OUString SC_UNONAME_VALILOC = u"ValidationLocal"_ustr; +inline constexpr OUString SC_UNONAME_VALIXML = u"ValidationXML"_ustr; +inline constexpr OUString SC_UNONAME_FORMLOC = u"FormulaLocal"_ustr; +inline constexpr OUString SC_UNONAME_FORMRT = u"FormulaResultType"_ustr; +inline constexpr OUString SC_UNONAME_FORMRT2 = u"FormulaResultType2"_ustr; +inline constexpr OUString SC_UNONAME_CELLCONTENTTYPE = u"CellContentType"_ustr; + +inline constexpr OUString SC_UNONAME_USERDEF = u"UserDefinedAttributes"_ustr; +inline constexpr OUString SC_UNONAME_TEXTUSER = u"TextUserDefinedAttributes"_ustr; // auto format -inline constexpr OUStringLiteral SC_UNONAME_INCBACK = u"IncludeBackground"; -inline constexpr OUStringLiteral SC_UNONAME_INCBORD = u"IncludeBorder"; -inline constexpr OUStringLiteral SC_UNONAME_INCFONT = u"IncludeFont"; -inline constexpr OUStringLiteral SC_UNONAME_INCJUST = u"IncludeJustify"; -inline constexpr OUStringLiteral SC_UNONAME_INCNUM = u"IncludeNumberFormat"; -inline constexpr OUStringLiteral SC_UNONAME_INCWIDTH = u"IncludeWidthAndHeight"; +inline constexpr OUString SC_UNONAME_INCBACK = u"IncludeBackground"_ustr; +inline constexpr OUString SC_UNONAME_INCBORD = u"IncludeBorder"_ustr; +inline constexpr OUString SC_UNONAME_INCFONT = u"IncludeFont"_ustr; +inline constexpr OUString SC_UNONAME_INCJUST = u"IncludeJustify"_ustr; +inline constexpr OUString SC_UNONAME_INCNUM = u"IncludeNumberFormat"_ustr; +inline constexpr OUString SC_UNONAME_INCWIDTH = u"IncludeWidthAndHeight"_ustr; // function description -inline constexpr OUStringLiteral SC_UNONAME_ARGUMENTS = u"Arguments"; -inline constexpr OUStringLiteral SC_UNONAME_CATEGORY = u"Category"; -inline constexpr OUStringLiteral SC_UNONAME_DESCRIPTION = u"Description"; -inline constexpr OUStringLiteral SC_UNONAME_ID = u"Id"; -inline constexpr OUStringLiteral SC_UNONAME_NAME = u"Name"; +inline constexpr OUString SC_UNONAME_ARGUMENTS = u"Arguments"_ustr; +inline constexpr OUString SC_UNONAME_CATEGORY = u"Category"_ustr; +inline constexpr OUString SC_UNONAME_DESCRIPTION = u"Description"_ustr; +inline constexpr OUString SC_UNONAME_ID = u"Id"_ustr; +inline constexpr OUString SC_UNONAME_NAME = u"Name"_ustr; // application settings -inline constexpr OUStringLiteral SC_UNONAME_DOAUTOCP = u"DoAutoComplete"; -inline constexpr OUStringLiteral SC_UNONAME_ENTERED = u"EnterEdit"; -inline constexpr OUStringLiteral SC_UNONAME_EXPREF = u"ExpandReferences"; -inline constexpr OUStringLiteral SC_UNONAME_EXTFMT = u"ExtendFormat"; -inline constexpr OUStringLiteral SC_UNONAME_LINKUPD = u"LinkUpdateMode"; -inline constexpr OUStringLiteral SC_UNONAME_MARKHDR = u"MarkHeader"; -inline constexpr OUStringLiteral SC_UNONAME_METRIC = u"Metric"; -inline constexpr OUStringLiteral SC_UNONAME_MOVEDIR = u"MoveDirection"; -inline constexpr OUStringLiteral SC_UNONAME_MOVESEL = u"MoveSelection"; -inline constexpr OUStringLiteral SC_UNONAME_RANGEFIN = u"RangeFinder"; -inline constexpr OUStringLiteral SC_UNONAME_SCALE = u"Scale"; -inline constexpr OUStringLiteral SC_UNONAME_STBFUNC = u"StatusBarFunction"; -inline constexpr OUStringLiteral SC_UNONAME_ULISTS = u"UserLists"; -inline constexpr OUStringLiteral SC_UNONAME_USETABCOL = u"UseTabCol"; -inline constexpr OUStringLiteral SC_UNONAME_PRMETRICS = u"UsePrinterMetrics"; -inline constexpr OUStringLiteral SC_UNONAME_PRALLSH = u"PrintAllSheets"; -inline constexpr OUStringLiteral SC_UNONAME_PREMPTY = u"PrintEmptyPages"; -inline constexpr OUStringLiteral SC_UNONAME_REPLWARN = u"ReplaceCellsWarning"; +inline constexpr OUString SC_UNONAME_DOAUTOCP = u"DoAutoComplete"_ustr; +inline constexpr OUString SC_UNONAME_ENTERED = u"EnterEdit"_ustr; +inline constexpr OUString SC_UNONAME_EXPREF = u"ExpandReferences"_ustr; +inline constexpr OUString SC_UNONAME_EXTFMT = u"ExtendFormat"_ustr; +inline constexpr OUString SC_UNONAME_LINKUPD = u"LinkUpdateMode"_ustr; +inline constexpr OUString SC_UNONAME_MARKHDR = u"MarkHeader"_ustr; +inline constexpr OUString SC_UNONAME_METRIC = u"Metric"_ustr; +inline constexpr OUString SC_UNONAME_MOVEDIR = u"MoveDirection"_ustr; +inline constexpr OUString SC_UNONAME_MOVESEL = u"MoveSelection"_ustr; +inline constexpr OUString SC_UNONAME_RANGEFIN = u"RangeFinder"_ustr; +inline constexpr OUString SC_UNONAME_SCALE = u"Scale"_ustr; +inline constexpr OUString SC_UNONAME_STBFUNC = u"StatusBarFunction"_ustr; +inline constexpr OUString SC_UNONAME_ULISTS = u"UserLists"_ustr; +inline constexpr OUString SC_UNONAME_USETABCOL = u"UseTabCol"_ustr; +inline constexpr OUString SC_UNONAME_PRMETRICS = u"UsePrinterMetrics"_ustr; +inline constexpr OUString SC_UNONAME_PRALLSH = u"PrintAllSheets"_ustr; +inline constexpr OUString SC_UNONAME_PREMPTY = u"PrintEmptyPages"_ustr; +inline constexpr OUString SC_UNONAME_REPLWARN = u"ReplaceCellsWarning"_ustr; // data pilot field -inline constexpr OUStringLiteral SC_UNONAME_FUNCTION = u"Function"; -inline constexpr OUStringLiteral SC_UNONAME_FUNCTION2 = u"Function2"; -inline constexpr OUStringLiteral SC_UNONAME_SUBTOTALS = u"Subtotals"; -inline constexpr OUStringLiteral SC_UNONAME_SUBTOTALS2 = u"Subtotals2"; -inline constexpr OUStringLiteral SC_UNONAME_SELPAGE = u"SelectedPage"; -inline constexpr OUStringLiteral SC_UNONAME_USESELPAGE = u"UseSelectedPage"; -inline constexpr OUStringLiteral SC_UNONAME_HASREFERENCE = u"HasReference"; -inline constexpr OUStringLiteral SC_UNONAME_REFERENCE = u"Reference"; -inline constexpr OUStringLiteral SC_UNONAME_HASAUTOSHOW = u"HasAutoShowInfo"; -inline constexpr OUStringLiteral SC_UNONAME_AUTOSHOW = u"AutoShowInfo"; -inline constexpr OUStringLiteral SC_UNONAME_HASSORTINFO = u"HasSortInfo"; -inline constexpr OUStringLiteral SC_UNONAME_SORTINFO = u"SortInfo"; -inline constexpr OUStringLiteral SC_UNONAME_HASLAYOUTINFO = u"HasLayoutInfo"; -inline constexpr OUStringLiteral SC_UNONAME_LAYOUTINFO = u"LayoutInfo"; -inline constexpr OUStringLiteral SC_UNONAME_ISGROUP = u"IsGroupField"; -inline constexpr OUStringLiteral SC_UNONAME_GROUPINFO = u"GroupInfo"; -inline constexpr OUStringLiteral SC_UNONAME_SHOWEMPTY = u"ShowEmpty"; -inline constexpr OUStringLiteral SC_UNONAME_REPEATITEMLABELS = u"RepeatItemLabels"; +inline constexpr OUString SC_UNONAME_FUNCTION = u"Function"_ustr; +inline constexpr OUString SC_UNONAME_FUNCTION2 = u"Function2"_ustr; +inline constexpr OUString SC_UNONAME_SUBTOTALS = u"Subtotals"_ustr; +inline constexpr OUString SC_UNONAME_SUBTOTALS2 = u"Subtotals2"_ustr; +inline constexpr OUString SC_UNONAME_SELPAGE = u"SelectedPage"_ustr; +inline constexpr OUString SC_UNONAME_USESELPAGE = u"UseSelectedPage"_ustr; +inline constexpr OUString SC_UNONAME_HASREFERENCE = u"HasReference"_ustr; +inline constexpr OUString SC_UNONAME_REFERENCE = u"Reference"_ustr; +inline constexpr OUString SC_UNONAME_HASAUTOSHOW = u"HasAutoShowInfo"_ustr; +inline constexpr OUString SC_UNONAME_AUTOSHOW = u"AutoShowInfo"_ustr; +inline constexpr OUString SC_UNONAME_HASSORTINFO = u"HasSortInfo"_ustr; +inline constexpr OUString SC_UNONAME_SORTINFO = u"SortInfo"_ustr; +inline constexpr OUString SC_UNONAME_HASLAYOUTINFO = u"HasLayoutInfo"_ustr; +inline constexpr OUString SC_UNONAME_LAYOUTINFO = u"LayoutInfo"_ustr; +inline constexpr OUString SC_UNONAME_ISGROUP = u"IsGroupField"_ustr; +inline constexpr OUString SC_UNONAME_GROUPINFO = u"GroupInfo"_ustr; +inline constexpr OUString SC_UNONAME_SHOWEMPTY = u"ShowEmpty"_ustr; +inline constexpr OUString SC_UNONAME_REPEATITEMLABELS = u"RepeatItemLabels"_ustr; // data pilot item -inline constexpr OUStringLiteral SC_UNONAME_SHOWDETAIL = u"ShowDetail"; -inline constexpr OUStringLiteral SC_UNONAME_ISHIDDEN = u"IsHidden"; +inline constexpr OUString SC_UNONAME_SHOWDETAIL = u"ShowDetail"_ustr; +inline constexpr OUString SC_UNONAME_ISHIDDEN = u"IsHidden"_ustr; // database options -inline constexpr OUStringLiteral SC_UNONAME_CASE = u"CaseSensitive"; -inline constexpr OUStringLiteral SC_UNONAME_DBNAME = u"DatabaseName"; -inline constexpr OUStringLiteral SC_UNONAME_FORMATS = u"IncludeFormats"; -inline constexpr OUStringLiteral SC_UNONAME_INSBRK = u"InsertPageBreaks"; -inline constexpr OUStringLiteral SC_UNONAME_KEEPFORM = u"KeepFormats"; -inline constexpr OUStringLiteral SC_UNONAME_MOVCELLS = u"MoveCells"; -inline constexpr OUStringLiteral SC_UNONAME_ISUSER = u"IsUserDefined"; -inline constexpr OUStringLiteral SC_UNONAME_ISNATIVE = u"IsNative"; -inline constexpr OUStringLiteral SC_UNONAME_REGEXP = u"RegularExpressions"; -inline constexpr OUStringLiteral SC_UNONAME_WILDCARDS = u"Wildcards"; -inline constexpr OUStringLiteral SC_UNONAME_SAVEOUT = u"SaveOutputPosition"; -inline constexpr OUStringLiteral SC_UNONAME_SKIPDUP = u"SkipDuplicates"; -inline constexpr OUStringLiteral SC_UNONAME_SRCOBJ = u"SourceObject"; -inline constexpr OUStringLiteral SC_UNONAME_SRCTYPE = u"SourceType"; -inline constexpr OUStringLiteral SC_UNONAME_STRIPDAT = u"StripData"; -inline constexpr OUStringLiteral SC_UNONAME_USEREGEX = u"UseRegularExpressions"; -inline constexpr OUStringLiteral SC_UNONAME_ULIST = u"UserListEnabled"; -inline constexpr OUStringLiteral SC_UNONAME_UINDEX = u"UserListIndex"; -inline constexpr OUStringLiteral SC_UNONAME_BINDFMT = u"BindFormatsToContent"; -inline constexpr OUStringLiteral SC_UNONAME_COPYOUT = u"CopyOutputData"; -inline constexpr OUStringLiteral SC_UNONAME_ISCASE = u"IsCaseSensitive"; -inline constexpr OUStringLiteral SC_UNONAME_ISULIST = u"IsUserListEnabled"; -inline constexpr OUStringLiteral SC_UNONAME_OUTPOS = u"OutputPosition"; -inline constexpr OUStringLiteral SC_UNONAME_CONTHDR = u"ContainsHeader"; -inline constexpr OUStringLiteral SC_UNONAME_MAXFLD = u"MaxFieldCount"; -inline constexpr OUStringLiteral SC_UNONAME_ORIENT = u"Orientation"; -inline constexpr OUStringLiteral SC_UNONAME_ISSORTCOLUMNS = u"IsSortColumns"; -inline constexpr OUStringLiteral SC_UNONAME_SORTFLD = u"SortFields"; -inline constexpr OUStringLiteral SC_UNONAME_SORTASC = u"SortAscending"; -inline constexpr OUStringLiteral SC_UNONAME_ENUSLIST = u"EnableUserSortList"; -inline constexpr OUStringLiteral SC_UNONAME_USINDEX = u"UserSortListIndex"; -inline constexpr OUStringLiteral SC_UNONAME_COLLLOC = u"CollatorLocale"; -inline constexpr OUStringLiteral SC_UNONAME_COLLALG = u"CollatorAlgorithm"; -inline constexpr OUStringLiteral SC_UNONAME_AUTOFLT = u"AutoFilter"; -inline constexpr OUStringLiteral SC_UNONAME_FLTCRT = u"FilterCriteriaSource"; -inline constexpr OUStringLiteral SC_UNONAME_USEFLTCRT = u"UseFilterCriteriaSource"; -inline constexpr OUStringLiteral SC_UNONAME_ENABSORT = u"EnableSort"; -inline constexpr OUStringLiteral SC_UNONAME_FROMSELECT = u"FromSelection"; -inline constexpr OUStringLiteral SC_UNONAME_CONRES = u"ConnectionResource"; -inline constexpr OUStringLiteral SC_UNONAME_TOKENINDEX = u"TokenIndex"; -inline constexpr OUStringLiteral SC_UNONAME_ISSHAREDFMLA = u"IsSharedFormula"; -inline constexpr OUStringLiteral SC_UNONAME_TOTALSROW = u"TotalsRow"; +inline constexpr OUString SC_UNONAME_CASE = u"CaseSensitive"_ustr; +inline constexpr OUString SC_UNONAME_DBNAME = u"DatabaseName"_ustr; +inline constexpr OUString SC_UNONAME_FORMATS = u"IncludeFormats"_ustr; +inline constexpr OUString SC_UNONAME_INSBRK = u"InsertPageBreaks"_ustr; +inline constexpr OUString SC_UNONAME_KEEPFORM = u"KeepFormats"_ustr; +inline constexpr OUString SC_UNONAME_MOVCELLS = u"MoveCells"_ustr; +inline constexpr OUString SC_UNONAME_ISUSER = u"IsUserDefined"_ustr; +inline constexpr OUString SC_UNONAME_ISNATIVE = u"IsNative"_ustr; +inline constexpr OUString SC_UNONAME_REGEXP = u"RegularExpressions"_ustr; +inline constexpr OUString SC_UNONAME_WILDCARDS = u"Wildcards"_ustr; +inline constexpr OUString SC_UNONAME_SAVEOUT = u"SaveOutputPosition"_ustr; +inline constexpr OUString SC_UNONAME_SKIPDUP = u"SkipDuplicates"_ustr; +inline constexpr OUString SC_UNONAME_SRCOBJ = u"SourceObject"_ustr; +inline constexpr OUString SC_UNONAME_SRCTYPE = u"SourceType"_ustr; +inline constexpr OUString SC_UNONAME_STRIPDAT = u"StripData"_ustr; +inline constexpr OUString SC_UNONAME_USEREGEX = u"UseRegularExpressions"_ustr; +inline constexpr OUString SC_UNONAME_ULIST = u"UserListEnabled"_ustr; +inline constexpr OUString SC_UNONAME_UINDEX = u"UserListIndex"_ustr; +inline constexpr OUString SC_UNONAME_BINDFMT = u"BindFormatsToContent"_ustr; +inline constexpr OUString SC_UNONAME_COPYOUT = u"CopyOutputData"_ustr; +inline constexpr OUString SC_UNONAME_ISCASE = u"IsCaseSensitive"_ustr; +inline constexpr OUString SC_UNONAME_ISULIST = u"IsUserListEnabled"_ustr; +inline constexpr OUString SC_UNONAME_OUTPOS = u"OutputPosition"_ustr; +inline constexpr OUString SC_UNONAME_CONTHDR = u"ContainsHeader"_ustr; +inline constexpr OUString SC_UNONAME_MAXFLD = u"MaxFieldCount"_ustr; +inline constexpr OUString SC_UNONAME_ORIENT = u"Orientation"_ustr; +inline constexpr OUString SC_UNONAME_ISSORTCOLUMNS = u"IsSortColumns"_ustr; +inline constexpr OUString SC_UNONAME_SORTFLD = u"SortFields"_ustr; +inline constexpr OUString SC_UNONAME_SORTASC = u"SortAscending"_ustr; +inline constexpr OUString SC_UNONAME_ENUSLIST = u"EnableUserSortList"_ustr; +inline constexpr OUString SC_UNONAME_USINDEX = u"UserSortListIndex"_ustr; +inline constexpr OUString SC_UNONAME_COLLLOC = u"CollatorLocale"_ustr; +inline constexpr OUString SC_UNONAME_COLLALG = u"CollatorAlgorithm"_ustr; +inline constexpr OUString SC_UNONAME_AUTOFLT = u"AutoFilter"_ustr; +inline constexpr OUString SC_UNONAME_FLTCRT = u"FilterCriteriaSource"_ustr; +inline constexpr OUString SC_UNONAME_USEFLTCRT = u"UseFilterCriteriaSource"_ustr; +inline constexpr OUString SC_UNONAME_ENABSORT = u"EnableSort"_ustr; +inline constexpr OUString SC_UNONAME_FROMSELECT = u"FromSelection"_ustr; +inline constexpr OUString SC_UNONAME_CONRES = u"ConnectionResource"_ustr; +inline constexpr OUString SC_UNONAME_TOKENINDEX = u"TokenIndex"_ustr; +inline constexpr OUString SC_UNONAME_ISSHAREDFMLA = u"IsSharedFormula"_ustr; +inline constexpr OUString SC_UNONAME_TOTALSROW = u"TotalsRow"_ustr; // text fields -inline constexpr OUStringLiteral SC_UNONAME_ANCTYPE = u"AnchorType"; -inline constexpr OUStringLiteral SC_UNONAME_ANCTYPES = u"AnchorTypes"; -inline constexpr OUStringLiteral SC_UNONAME_TEXTWRAP = u"TextWrap"; -inline constexpr OUStringLiteral SC_UNONAME_FILEFORM = u"FileFormat"; -inline constexpr OUStringLiteral SC_UNONAME_TEXTFIELD_TYPE = u"TextFieldType"; +inline constexpr OUString SC_UNONAME_ANCTYPE = u"AnchorType"_ustr; +inline constexpr OUString SC_UNONAME_ANCTYPES = u"AnchorTypes"_ustr; +inline constexpr OUString SC_UNONAME_TEXTWRAP = u"TextWrap"_ustr; +inline constexpr OUString SC_UNONAME_FILEFORM = u"FileFormat"_ustr; +inline constexpr OUString SC_UNONAME_TEXTFIELD_TYPE = u"TextFieldType"_ustr; // url field -inline constexpr OUStringLiteral SC_UNONAME_REPR = u"Representation"; -inline constexpr OUStringLiteral SC_UNONAME_TARGET = u"TargetFrame"; -inline constexpr OUStringLiteral SC_UNONAME_URL = u"URL"; +inline constexpr OUString SC_UNONAME_REPR = u"Representation"_ustr; +inline constexpr OUString SC_UNONAME_TARGET = u"TargetFrame"_ustr; +inline constexpr OUString SC_UNONAME_URL = u"URL"_ustr; // date time field -inline constexpr OUStringLiteral SC_UNONAME_ISDATE = u"IsDate"; -inline constexpr OUStringLiteral SC_UNONAME_ISFIXED = u"IsFixed"; -inline constexpr OUStringLiteral SC_UNONAME_DATETIME = u"DateTime"; +inline constexpr OUString SC_UNONAME_ISDATE = u"IsDate"_ustr; +inline constexpr OUString SC_UNONAME_ISFIXED = u"IsFixed"_ustr; +inline constexpr OUString SC_UNONAME_DATETIME = u"DateTime"_ustr; // table field -inline constexpr OUStringLiteral SC_UNONAME_TABLEPOS = u"TablePosition"; +inline constexpr OUString SC_UNONAME_TABLEPOS = u"TablePosition"_ustr; // conditional format -inline constexpr OUStringLiteral SC_UNONAME_OPERATOR = u"Operator"; -inline constexpr OUStringLiteral SC_UNONAME_FORMULA1 = u"Formula1"; -inline constexpr OUStringLiteral SC_UNONAME_FORMULA2 = u"Formula2"; -inline constexpr OUStringLiteral SC_UNONAME_SOURCEPOS = u"SourcePosition"; -inline constexpr OUStringLiteral SC_UNONAME_SOURCESTR = u"SourcePositionAsString"; // only for use in XML filter -inline constexpr OUStringLiteral SC_UNONAME_FORMULANMSP1 = u"FormulaNamespace1"; // only for use in XML filter -inline constexpr OUStringLiteral SC_UNONAME_FORMULANMSP2 = u"FormulaNamespace2"; // only for use in XML filter -inline constexpr OUStringLiteral SC_UNONAME_GRAMMAR1 = u"Grammar1"; // only for use in XML filter -inline constexpr OUStringLiteral SC_UNONAME_GRAMMAR2 = u"Grammar2"; // only for use in XML filter -inline constexpr OUStringLiteral SC_UNONAME_STYLENAME = u"StyleName"; +inline constexpr OUString SC_UNONAME_OPERATOR = u"Operator"_ustr; +inline constexpr OUString SC_UNONAME_FORMULA1 = u"Formula1"_ustr; +inline constexpr OUString SC_UNONAME_FORMULA2 = u"Formula2"_ustr; +inline constexpr OUString SC_UNONAME_SOURCEPOS = u"SourcePosition"_ustr; +inline constexpr OUString SC_UNONAME_SOURCESTR = u"SourcePositionAsString"_ustr; // only for use in XML filter +inline constexpr OUString SC_UNONAME_FORMULANMSP1 = u"FormulaNamespace1"_ustr; // only for use in XML filter +inline constexpr OUString SC_UNONAME_FORMULANMSP2 = u"FormulaNamespace2"_ustr; // only for use in XML filter +inline constexpr OUString SC_UNONAME_GRAMMAR1 = u"Grammar1"_ustr; // only for use in XML filter +inline constexpr OUString SC_UNONAME_GRAMMAR2 = u"Grammar2"_ustr; // only for use in XML filter +inline constexpr OUString SC_UNONAME_STYLENAME = u"StyleName"_ustr; // validation -inline constexpr OUStringLiteral SC_UNONAME_ERRALSTY = u"ErrorAlertStyle"; -inline constexpr OUStringLiteral SC_UNONAME_ERRMESS = u"ErrorMessage"; -inline constexpr OUStringLiteral SC_UNONAME_ERRTITLE = u"ErrorTitle"; -inline constexpr OUStringLiteral SC_UNONAME_IGNOREBL = u"IgnoreBlankCells"; -inline constexpr OUStringLiteral SC_UNONAME_INPMESS = u"InputMessage"; -inline constexpr OUStringLiteral SC_UNONAME_INPTITLE = u"InputTitle"; -inline constexpr OUStringLiteral SC_UNONAME_SHOWERR = u"ShowErrorMessage"; -inline constexpr OUStringLiteral SC_UNONAME_SHOWINP = u"ShowInputMessage"; -inline constexpr OUStringLiteral SC_UNONAME_SHOWLIST = u"ShowList"; -inline constexpr OUStringLiteral SC_UNONAME_TYPE = u"Type"; +inline constexpr OUString SC_UNONAME_ERRALSTY = u"ErrorAlertStyle"_ustr; +inline constexpr OUString SC_UNONAME_ERRMESS = u"ErrorMessage"_ustr; +inline constexpr OUString SC_UNONAME_ERRTITLE = u"ErrorTitle"_ustr; +inline constexpr OUString SC_UNONAME_IGNOREBL = u"IgnoreBlankCells"_ustr; +inline constexpr OUString SC_UNONAME_INPMESS = u"InputMessage"_ustr; +inline constexpr OUString SC_UNONAME_INPTITLE = u"InputTitle"_ustr; +inline constexpr OUString SC_UNONAME_SHOWERR = u"ShowErrorMessage"_ustr; +inline constexpr OUString SC_UNONAME_SHOWINP = u"ShowInputMessage"_ustr; +inline constexpr OUString SC_UNONAME_SHOWLIST = u"ShowList"_ustr; +inline constexpr OUString SC_UNONAME_TYPE = u"Type"_ustr; // links -inline constexpr OUStringLiteral SC_UNONAME_FILTER = u"Filter"; -inline constexpr OUStringLiteral SC_UNONAME_FILTOPT = u"FilterOptions"; -inline constexpr OUStringLiteral SC_UNONAME_LINKURL = u"Url"; -inline constexpr OUStringLiteral SC_UNONAME_REFPERIOD = u"RefreshPeriod"; -inline constexpr OUStringLiteral SC_UNONAME_REFDELAY = u"RefreshDelay"; // deprecated, don't use anymore +inline constexpr OUString SC_UNONAME_FILTER = u"Filter"_ustr; +inline constexpr OUString SC_UNONAME_FILTOPT = u"FilterOptions"_ustr; +inline constexpr OUString SC_UNONAME_LINKURL = u"Url"_ustr; +inline constexpr OUString SC_UNONAME_REFPERIOD = u"RefreshPeriod"_ustr; +inline constexpr OUString SC_UNONAME_REFDELAY = u"RefreshDelay"_ustr; // deprecated, don't use anymore // search descriptor -inline constexpr OUStringLiteral SC_UNO_SRCHBACK = u"SearchBackwards"; -inline constexpr OUStringLiteral SC_UNO_SRCHBYROW = u"SearchByRow"; -inline constexpr OUStringLiteral SC_UNO_SRCHCASE = u"SearchCaseSensitive"; -inline constexpr OUStringLiteral SC_UNO_SRCHREGEXP = u"SearchRegularExpression"; -inline constexpr OUStringLiteral SC_UNO_SRCHWILDCARD = u"SearchWildcard"; -inline constexpr OUStringLiteral SC_UNO_SRCHSIM = u"SearchSimilarity"; -inline constexpr OUStringLiteral SC_UNO_SRCHSIMADD = u"SearchSimilarityAdd"; -inline constexpr OUStringLiteral SC_UNO_SRCHSIMEX = u"SearchSimilarityExchange"; -inline constexpr OUStringLiteral SC_UNO_SRCHSIMREL = u"SearchSimilarityRelax"; -inline constexpr OUStringLiteral SC_UNO_SRCHSIMREM = u"SearchSimilarityRemove"; -inline constexpr OUStringLiteral SC_UNO_SRCHSTYLES = u"SearchStyles"; -inline constexpr OUStringLiteral SC_UNO_SRCHTYPE = u"SearchType"; -inline constexpr OUStringLiteral SC_UNO_SRCHWORDS = u"SearchWords"; -inline constexpr OUStringLiteral SC_UNO_SRCHFILTERED = u"SearchFiltered"; -inline constexpr OUStringLiteral SC_UNO_SRCHFORMATTED = u"SearchFormatted"; +inline constexpr OUString SC_UNO_SRCHBACK = u"SearchBackwards"_ustr; +inline constexpr OUString SC_UNO_SRCHBYROW = u"SearchByRow"_ustr; +inline constexpr OUString SC_UNO_SRCHCASE = u"SearchCaseSensitive"_ustr; +inline constexpr OUString SC_UNO_SRCHREGEXP = u"SearchRegularExpression"_ustr; +inline constexpr OUString SC_UNO_SRCHWILDCARD = u"SearchWildcard"_ustr; +inline constexpr OUString SC_UNO_SRCHSIM = u"SearchSimilarity"_ustr; +inline constexpr OUString SC_UNO_SRCHSIMADD = u"SearchSimilarityAdd"_ustr; +inline constexpr OUString SC_UNO_SRCHSIMEX = u"SearchSimilarityExchange"_ustr; +inline constexpr OUString SC_UNO_SRCHSIMREL = u"SearchSimilarityRelax"_ustr; +inline constexpr OUString SC_UNO_SRCHSIMREM = u"SearchSimilarityRemove"_ustr; +inline constexpr OUString SC_UNO_SRCHSTYLES = u"SearchStyles"_ustr; +inline constexpr OUString SC_UNO_SRCHTYPE = u"SearchType"_ustr; +inline constexpr OUString SC_UNO_SRCHWORDS = u"SearchWords"_ustr; +inline constexpr OUString SC_UNO_SRCHFILTERED = u"SearchFiltered"_ustr; +inline constexpr OUString SC_UNO_SRCHFORMATTED = u"SearchFormatted"_ustr; // old (5.2) property names for page styles - for compatibility only! -inline constexpr OUStringLiteral OLD_UNO_PAGE_BACKCOLOR = u"BackgroundColor"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_BACKTRANS = u"IsBackgroundTransparent"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_HDRBACKCOL = u"HeaderBackgroundColor"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_HDRBACKTRAN = u"TransparentHeaderBackground"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_HDRSHARED = u"HeaderShared"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_HDRDYNAMIC = u"HeaderDynamic"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_HDRON = u"HeaderOn"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_FTRBACKCOL = u"FooterBackgroundColor"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_FTRBACKTRAN = u"TransparentFooterBackground"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_FTRSHARED = u"FooterShared"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_FTRDYNAMIC = u"FooterDynamic"; -inline constexpr OUStringLiteral OLD_UNO_PAGE_FTRON = u"FooterOn"; +inline constexpr OUString OLD_UNO_PAGE_BACKCOLOR = u"BackgroundColor"_ustr; +inline constexpr OUString OLD_UNO_PAGE_BACKTRANS = u"IsBackgroundTransparent"_ustr; +inline constexpr OUString OLD_UNO_PAGE_HDRBACKCOL = u"HeaderBackgroundColor"_ustr; +inline constexpr OUString OLD_UNO_PAGE_HDRBACKTRAN = u"TransparentHeaderBackground"_ustr; +inline constexpr OUString OLD_UNO_PAGE_HDRSHARED = u"HeaderShared"_ustr; +inline constexpr OUString OLD_UNO_PAGE_HDRDYNAMIC = u"HeaderDynamic"_ustr; +inline constexpr OUString OLD_UNO_PAGE_HDRON = u"HeaderOn"_ustr; +inline constexpr OUString OLD_UNO_PAGE_FTRBACKCOL = u"FooterBackgroundColor"_ustr; +inline constexpr OUString OLD_UNO_PAGE_FTRBACKTRAN = u"TransparentFooterBackground"_ustr; +inline constexpr OUString OLD_UNO_PAGE_FTRSHARED = u"FooterShared"_ustr; +inline constexpr OUString OLD_UNO_PAGE_FTRDYNAMIC = u"FooterDynamic"_ustr; +inline constexpr OUString OLD_UNO_PAGE_FTRON = u"FooterOn"_ustr; // page styles -inline constexpr OUStringLiteral SC_UNO_PAGE_BACKCOLOR = u"BackColor"; -inline constexpr OUStringLiteral SC_UNO_PAGE_BACKTRANS = u"BackTransparent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_GRAPHICFILT = u"BackGraphicFilter"; -inline constexpr OUStringLiteral SC_UNO_PAGE_GRAPHICLOC = u"BackGraphicLocation"; -inline constexpr OUStringLiteral SC_UNO_PAGE_GRAPHICURL = u"BackGraphicURL"; -inline constexpr OUStringLiteral SC_UNO_PAGE_GRAPHIC = u"BackGraphic"; +inline constexpr OUString SC_UNO_PAGE_BACKCOLOR = u"BackColor"_ustr; +inline constexpr OUString SC_UNO_PAGE_BACKTRANS = u"BackTransparent"_ustr; +inline constexpr OUString SC_UNO_PAGE_GRAPHICFILT = u"BackGraphicFilter"_ustr; +inline constexpr OUString SC_UNO_PAGE_GRAPHICLOC = u"BackGraphicLocation"_ustr; +inline constexpr OUString SC_UNO_PAGE_GRAPHICURL = u"BackGraphicURL"_ustr; +inline constexpr OUString SC_UNO_PAGE_GRAPHIC = u"BackGraphic"_ustr; #define SC_UNO_PAGE_LEFTBORDER SC_UNONAME_LEFTBORDER #define SC_UNO_PAGE_RIGHTBORDER SC_UNONAME_RIGHTBORDER #define SC_UNO_PAGE_BOTTBORDER SC_UNONAME_BOTTBORDER #define SC_UNO_PAGE_TOPBORDER SC_UNONAME_TOPBORDER -inline constexpr OUStringLiteral SC_UNO_PAGE_LEFTBRDDIST = u"LeftBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_RIGHTBRDDIST = u"RightBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_BOTTBRDDIST = u"BottomBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_TOPBRDDIST = u"TopBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_BORDERDIST = u"BorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_SHADOWFORM = u"ShadowFormat"; -inline constexpr OUStringLiteral SC_UNO_PAGE_LEFTMARGIN = u"LeftMargin"; -inline constexpr OUStringLiteral SC_UNO_PAGE_RIGHTMARGIN = u"RightMargin"; -inline constexpr OUStringLiteral SC_UNO_PAGE_TOPMARGIN = u"TopMargin"; -inline constexpr OUStringLiteral SC_UNO_PAGE_BOTTMARGIN = u"BottomMargin"; -inline constexpr OUStringLiteral SC_UNO_PAGE_LANDSCAPE = u"IsLandscape"; -inline constexpr OUStringLiteral SC_UNO_PAGE_NUMBERTYPE = u"NumberingType"; -inline constexpr OUStringLiteral SC_UNO_PAGE_SYTLELAYOUT = u"PageStyleLayout"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PAPERTRAY = u"PrinterPaperTray"; -inline constexpr OUStringLiteral SC_UNO_PAGE_SIZE = u"Size"; -inline constexpr OUStringLiteral SC_UNO_PAGE_WIDTH = u"Width"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HEIGHT = u"Height"; -inline constexpr OUStringLiteral SC_UNO_PAGE_CENTERHOR = u"CenterHorizontally"; -inline constexpr OUStringLiteral SC_UNO_PAGE_CENTERVER = u"CenterVertically"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTANNOT = u"PrintAnnotations"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTGRID = u"PrintGrid"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTHEADER = u"PrintHeaders"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTCHARTS = u"PrintCharts"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTOBJS = u"PrintObjects"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTDRAW = u"PrintDrawing"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTDOWN = u"PrintDownFirst"; -inline constexpr OUStringLiteral SC_UNO_PAGE_SCALEVAL = u"PageScale"; -inline constexpr OUStringLiteral SC_UNO_PAGE_SCALETOPAG = u"ScaleToPages"; -inline constexpr OUStringLiteral SC_UNO_PAGE_SCALETOX = u"ScaleToPagesX"; -inline constexpr OUStringLiteral SC_UNO_PAGE_SCALETOY = u"ScaleToPagesY"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FIRSTPAGE = u"FirstPageNumber"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FIRSTHDRSHARED = u"FirstPageHeaderIsShared"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FIRSTFTRSHARED = u"FirstPageFooterIsShared"; -inline constexpr OUStringLiteral SC_UNO_PAGE_LEFTHDRCONT = u"LeftPageHeaderContent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_LEFTFTRCONT = u"LeftPageFooterContent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_RIGHTHDRCON = u"RightPageHeaderContent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_RIGHTFTRCON = u"RightPageFooterContent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FIRSTHDRCONT = u"FirstPageHeaderContent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FIRSTFTRCONT = u"FirstPageFooterContent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTFORMUL = u"PrintFormulas"; -inline constexpr OUStringLiteral SC_UNO_PAGE_PRINTZERO = u"PrintZeroValues"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRBACKCOL = u"HeaderBackColor"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRBACKTRAN = u"HeaderBackTransparent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRGRFFILT = u"HeaderBackGraphicFilter"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRGRFLOC = u"HeaderBackGraphicLocation"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRGRF = u"HeaderBackGraphic"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRGRFURL = u"HeaderBackGraphicURL"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRLEFTBOR = u"HeaderLeftBorder"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRRIGHTBOR = u"HeaderRightBorder"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRBOTTBOR = u"HeaderBottomBorder"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRTOPBOR = u"HeaderTopBorder"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRLEFTBDIS = u"HeaderLeftBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRRIGHTBDIS = u"HeaderRightBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRBOTTBDIS = u"HeaderBottomBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRTOPBDIS = u"HeaderTopBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRBRDDIST = u"HeaderBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRSHADOW = u"HeaderShadowFormat"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRLEFTMAR = u"HeaderLeftMargin"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRRIGHTMAR = u"HeaderRightMargin"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRBODYDIST = u"HeaderBodyDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRHEIGHT = u"HeaderHeight"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRON = u"HeaderIsOn"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRDYNAMIC = u"HeaderIsDynamicHeight"; -inline constexpr OUStringLiteral SC_UNO_PAGE_HDRSHARED = u"HeaderIsShared"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRBACKCOL = u"FooterBackColor"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRBACKTRAN = u"FooterBackTransparent"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRGRFFILT = u"FooterBackGraphicFilter"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRGRFLOC = u"FooterBackGraphicLocation"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRGRF = u"FooterBackGraphic"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRGRFURL = u"FooterBackGraphicURL"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRLEFTBOR = u"FooterLeftBorder"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRRIGHTBOR = u"FooterRightBorder"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRBOTTBOR = u"FooterBottomBorder"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRTOPBOR = u"FooterTopBorder"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRLEFTBDIS = u"FooterLeftBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRRIGHTBDIS = u"FooterRightBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRBOTTBDIS = u"FooterBottomBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRTOPBDIS = u"FooterTopBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRBRDDIST = u"FooterBorderDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRSHADOW = u"FooterShadowFormat"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRLEFTMAR = u"FooterLeftMargin"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRRIGHTMAR = u"FooterRightMargin"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRBODYDIST = u"FooterBodyDistance"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRHEIGHT = u"FooterHeight"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRON = u"FooterIsOn"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRDYNAMIC = u"FooterIsDynamicHeight"; -inline constexpr OUStringLiteral SC_UNO_PAGE_FTRSHARED = u"FooterIsShared"; +inline constexpr OUString SC_UNO_PAGE_LEFTBRDDIST = u"LeftBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_RIGHTBRDDIST = u"RightBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_BOTTBRDDIST = u"BottomBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_TOPBRDDIST = u"TopBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_BORDERDIST = u"BorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_SHADOWFORM = u"ShadowFormat"_ustr; +inline constexpr OUString SC_UNO_PAGE_LEFTMARGIN = u"LeftMargin"_ustr; +inline constexpr OUString SC_UNO_PAGE_RIGHTMARGIN = u"RightMargin"_ustr; +inline constexpr OUString SC_UNO_PAGE_TOPMARGIN = u"TopMargin"_ustr; +inline constexpr OUString SC_UNO_PAGE_BOTTMARGIN = u"BottomMargin"_ustr; +inline constexpr OUString SC_UNO_PAGE_LANDSCAPE = u"IsLandscape"_ustr; +inline constexpr OUString SC_UNO_PAGE_NUMBERTYPE = u"NumberingType"_ustr; +inline constexpr OUString SC_UNO_PAGE_SYTLELAYOUT = u"PageStyleLayout"_ustr; +inline constexpr OUString SC_UNO_PAGE_PAPERTRAY = u"PrinterPaperTray"_ustr; +inline constexpr OUString SC_UNO_PAGE_SIZE = u"Size"_ustr; +inline constexpr OUString SC_UNO_PAGE_WIDTH = u"Width"_ustr; +inline constexpr OUString SC_UNO_PAGE_HEIGHT = u"Height"_ustr; +inline constexpr OUString SC_UNO_PAGE_CENTERHOR = u"CenterHorizontally"_ustr; +inline constexpr OUString SC_UNO_PAGE_CENTERVER = u"CenterVertically"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTANNOT = u"PrintAnnotations"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTGRID = u"PrintGrid"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTHEADER = u"PrintHeaders"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTCHARTS = u"PrintCharts"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTOBJS = u"PrintObjects"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTDRAW = u"PrintDrawing"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTDOWN = u"PrintDownFirst"_ustr; +inline constexpr OUString SC_UNO_PAGE_SCALEVAL = u"PageScale"_ustr; +inline constexpr OUString SC_UNO_PAGE_SCALETOPAG = u"ScaleToPages"_ustr; +inline constexpr OUString SC_UNO_PAGE_SCALETOX = u"ScaleToPagesX"_ustr; +inline constexpr OUString SC_UNO_PAGE_SCALETOY = u"ScaleToPagesY"_ustr; +inline constexpr OUString SC_UNO_PAGE_FIRSTPAGE = u"FirstPageNumber"_ustr; +inline constexpr OUString SC_UNO_PAGE_FIRSTHDRSHARED = u"FirstPageHeaderIsShared"_ustr; +inline constexpr OUString SC_UNO_PAGE_FIRSTFTRSHARED = u"FirstPageFooterIsShared"_ustr; +inline constexpr OUString SC_UNO_PAGE_LEFTHDRCONT = u"LeftPageHeaderContent"_ustr; +inline constexpr OUString SC_UNO_PAGE_LEFTFTRCONT = u"LeftPageFooterContent"_ustr; +inline constexpr OUString SC_UNO_PAGE_RIGHTHDRCON = u"RightPageHeaderContent"_ustr; +inline constexpr OUString SC_UNO_PAGE_RIGHTFTRCON = u"RightPageFooterContent"_ustr; +inline constexpr OUString SC_UNO_PAGE_FIRSTHDRCONT = u"FirstPageHeaderContent"_ustr; +inline constexpr OUString SC_UNO_PAGE_FIRSTFTRCONT = u"FirstPageFooterContent"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTFORMUL = u"PrintFormulas"_ustr; +inline constexpr OUString SC_UNO_PAGE_PRINTZERO = u"PrintZeroValues"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRBACKCOL = u"HeaderBackColor"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRBACKTRAN = u"HeaderBackTransparent"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRGRFFILT = u"HeaderBackGraphicFilter"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRGRFLOC = u"HeaderBackGraphicLocation"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRGRF = u"HeaderBackGraphic"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRGRFURL = u"HeaderBackGraphicURL"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRLEFTBOR = u"HeaderLeftBorder"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRRIGHTBOR = u"HeaderRightBorder"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRBOTTBOR = u"HeaderBottomBorder"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRTOPBOR = u"HeaderTopBorder"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRLEFTBDIS = u"HeaderLeftBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRRIGHTBDIS = u"HeaderRightBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRBOTTBDIS = u"HeaderBottomBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRTOPBDIS = u"HeaderTopBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRBRDDIST = u"HeaderBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRSHADOW = u"HeaderShadowFormat"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRLEFTMAR = u"HeaderLeftMargin"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRRIGHTMAR = u"HeaderRightMargin"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRBODYDIST = u"HeaderBodyDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRHEIGHT = u"HeaderHeight"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRON = u"HeaderIsOn"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRDYNAMIC = u"HeaderIsDynamicHeight"_ustr; +inline constexpr OUString SC_UNO_PAGE_HDRSHARED = u"HeaderIsShared"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRBACKCOL = u"FooterBackColor"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRBACKTRAN = u"FooterBackTransparent"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRGRFFILT = u"FooterBackGraphicFilter"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRGRFLOC = u"FooterBackGraphicLocation"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRGRF = u"FooterBackGraphic"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRGRFURL = u"FooterBackGraphicURL"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRLEFTBOR = u"FooterLeftBorder"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRRIGHTBOR = u"FooterRightBorder"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRBOTTBOR = u"FooterBottomBorder"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRTOPBOR = u"FooterTopBorder"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRLEFTBDIS = u"FooterLeftBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRRIGHTBDIS = u"FooterRightBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRBOTTBDIS = u"FooterBottomBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRTOPBDIS = u"FooterTopBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRBRDDIST = u"FooterBorderDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRSHADOW = u"FooterShadowFormat"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRLEFTMAR = u"FooterLeftMargin"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRRIGHTMAR = u"FooterRightMargin"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRBODYDIST = u"FooterBodyDistance"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRHEIGHT = u"FooterHeight"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRON = u"FooterIsOn"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRDYNAMIC = u"FooterIsDynamicHeight"_ustr; +inline constexpr OUString SC_UNO_PAGE_FTRSHARED = u"FooterIsShared"_ustr; // document settings -inline constexpr OUStringLiteral SC_UNO_CALCASSHOWN = u"CalcAsShown"; -inline constexpr OUStringLiteral SC_UNO_DEFTABSTOP = u"DefaultTabStop"; -inline constexpr OUStringLiteral SC_UNO_TABSTOPDIS = u"TabStopDistance"; // is the same like the before, but only the writer name -inline constexpr OUStringLiteral SC_UNO_IGNORECASE = u"IgnoreCase"; -inline constexpr OUStringLiteral SC_UNO_ITERCOUNT = u"IterationCount"; -inline constexpr OUStringLiteral SC_UNO_ITERENABLED = u"IsIterationEnabled"; -inline constexpr OUStringLiteral SC_UNO_ITEREPSILON = u"IterationEpsilon"; -inline constexpr OUStringLiteral SC_UNO_LOOKUPLABELS = u"LookUpLabels"; -inline constexpr OUStringLiteral SC_UNO_MATCHWHOLE = u"MatchWholeCell"; -inline constexpr OUStringLiteral SC_UNO_NULLDATE = u"NullDate"; -inline constexpr OUStringLiteral SC_UNO_SPELLONLINE = u"SpellOnline"; -inline constexpr OUStringLiteral SC_UNO_STANDARDDEC = u"StandardDecimals"; -inline constexpr OUStringLiteral SC_UNO_REGEXENABLED = u"RegularExpressions"; -inline constexpr OUStringLiteral SC_UNO_WILDCARDSENABLED = u"Wildcards"; -inline constexpr OUStringLiteral SC_UNO_BASICLIBRARIES = u"BasicLibraries"; -inline constexpr OUStringLiteral SC_UNO_DIALOGLIBRARIES = u"DialogLibraries"; -inline constexpr OUStringLiteral SC_UNO_RUNTIMEUID = u"RuntimeUID"; -inline constexpr OUStringLiteral SC_UNO_HASVALIDSIGNATURES = u"HasValidSignatures"; -inline constexpr OUStringLiteral SC_UNO_ISLOADED = u"IsLoaded"; -inline constexpr OUStringLiteral SC_UNO_ISUNDOENABLED = u"IsUndoEnabled"; -inline constexpr OUStringLiteral SC_UNO_ISADJUSTHEIGHTENABLED = u"IsAdjustHeightEnabled"; -inline constexpr OUStringLiteral SC_UNO_ISEXECUTELINKENABLED = u"IsExecuteLinkEnabled"; -inline constexpr OUStringLiteral SC_UNO_ISCHANGEREADONLYENABLED = u"IsChangeReadOnlyEnabled"; -inline constexpr OUStringLiteral SC_UNO_REFERENCEDEVICE = u"ReferenceDevice"; -inline constexpr OUStringLiteral SC_UNO_CODENAME = u"CodeName"; -inline constexpr OUStringLiteral SC_UNO_INTEROPGRABBAG = u"InteropGrabBag"; -inline constexpr OUStringLiteral SC_UNO_RECORDCHANGES = u"RecordChanges"; -inline constexpr OUStringLiteral SC_UNO_ISRECORDCHANGESPROTECTED = u"IsRecordChangesProtected"; -inline constexpr OUStringLiteral SC_UNO_SYNTAXSTRINGREF = u"SyntaxStringRef"; +inline constexpr OUString SC_UNO_CALCASSHOWN = u"CalcAsShown"_ustr; +inline constexpr OUString SC_UNO_DEFTABSTOP = u"DefaultTabStop"_ustr; +inline constexpr OUString SC_UNO_TABSTOPDIS = u"TabStopDistance"_ustr; // is the same like the before, but only the writer name +inline constexpr OUString SC_UNO_IGNORECASE = u"IgnoreCase"_ustr; +inline constexpr OUString SC_UNO_ITERCOUNT = u"IterationCount"_ustr; +inline constexpr OUString SC_UNO_ITERENABLED = u"IsIterationEnabled"_ustr; +inline constexpr OUString SC_UNO_ITEREPSILON = u"IterationEpsilon"_ustr; +inline constexpr OUString SC_UNO_LOOKUPLABELS = u"LookUpLabels"_ustr; +inline constexpr OUString SC_UNO_MATCHWHOLE = u"MatchWholeCell"_ustr; +inline constexpr OUString SC_UNO_NULLDATE = u"NullDate"_ustr; +inline constexpr OUString SC_UNO_SPELLONLINE = u"SpellOnline"_ustr; +inline constexpr OUString SC_UNO_STANDARDDEC = u"StandardDecimals"_ustr; +inline constexpr OUString SC_UNO_REGEXENABLED = u"RegularExpressions"_ustr; +inline constexpr OUString SC_UNO_WILDCARDSENABLED = u"Wildcards"_ustr; +inline constexpr OUString SC_UNO_BASICLIBRARIES = u"BasicLibraries"_ustr; +inline constexpr OUString SC_UNO_DIALOGLIBRARIES = u"DialogLibraries"_ustr; +inline constexpr OUString SC_UNO_RUNTIMEUID = u"RuntimeUID"_ustr; +inline constexpr OUString SC_UNO_HASVALIDSIGNATURES = u"HasValidSignatures"_ustr; +inline constexpr OUString SC_UNO_ISLOADED = u"IsLoaded"_ustr; +inline constexpr OUString SC_UNO_ISUNDOENABLED = u"IsUndoEnabled"_ustr; +inline constexpr OUString SC_UNO_ISADJUSTHEIGHTENABLED = u"IsAdjustHeightEnabled"_ustr; +inline constexpr OUString SC_UNO_ISEXECUTELINKENABLED = u"IsExecuteLinkEnabled"_ustr; +inline constexpr OUString SC_UNO_ISCHANGEREADONLYENABLED = u"IsChangeReadOnlyEnabled"_ustr; +inline constexpr OUString SC_UNO_REFERENCEDEVICE = u"ReferenceDevice"_ustr; +inline constexpr OUString SC_UNO_CODENAME = u"CodeName"_ustr; +inline constexpr OUString SC_UNO_INTEROPGRABBAG = u"InteropGrabBag"_ustr; +inline constexpr OUString SC_UNO_RECORDCHANGES = u"RecordChanges"_ustr; +inline constexpr OUString SC_UNO_ISRECORDCHANGESPROTECTED = u"IsRecordChangesProtected"_ustr; +inline constexpr OUString SC_UNO_SYNTAXSTRINGREF = u"SyntaxStringRef"_ustr; // document properties from FormModel -inline constexpr OUStringLiteral SC_UNO_APPLYFMDES = u"ApplyFormDesignMode"; -inline constexpr OUStringLiteral SC_UNO_AUTOCONTFOC = u"AutomaticControlFocus"; +inline constexpr OUString SC_UNO_APPLYFMDES = u"ApplyFormDesignMode"_ustr; +inline constexpr OUString SC_UNO_AUTOCONTFOC = u"AutomaticControlFocus"_ustr; // view options -inline constexpr OUStringLiteral SC_UNO_COLROWHDR = u"HasColumnRowHeaders"; -inline constexpr OUStringLiteral SC_UNO_GRIDCOLOR = u"GridColor"; -inline constexpr OUStringLiteral SC_UNO_HIDESPELL = u"HideSpellMarks"; /* deprecated #i91949 */ -inline constexpr OUStringLiteral SC_UNO_HORSCROLL = u"HasHorizontalScrollBar"; -inline constexpr OUStringLiteral SC_UNO_OUTLSYMB = u"IsOutlineSymbolsSet"; -inline constexpr OUStringLiteral SC_UNO_SHEETTABS = u"HasSheetTabs"; -inline constexpr OUStringLiteral SC_UNO_SHOWANCHOR = u"ShowAnchor"; -inline constexpr OUStringLiteral SC_UNO_SHOWCHARTS = u"ShowCharts"; -inline constexpr OUStringLiteral SC_UNO_SHOWDRAW = u"ShowDrawing"; -inline constexpr OUStringLiteral SC_UNO_SHOWFORM = u"ShowFormulas"; -inline constexpr OUStringLiteral SC_UNO_SHOWGRID = u"ShowGrid"; -inline constexpr OUStringLiteral SC_UNO_SHOWHELP = u"ShowHelpLines"; -inline constexpr OUStringLiteral SC_UNO_SHOWNOTES = u"ShowNotes"; -inline constexpr OUStringLiteral SC_UNO_SHOWFORMULASMARKS = u"ShowFormulasMarks"; -inline constexpr OUStringLiteral SC_UNO_SHOWOBJ = u"ShowObjects"; -inline constexpr OUStringLiteral SC_UNO_SHOWPAGEBR = u"ShowPageBreaks"; -inline constexpr OUStringLiteral SC_UNO_SHOWZERO = u"ShowZeroValues"; -inline constexpr OUStringLiteral SC_UNO_VALUEHIGH = u"IsValueHighlightingEnabled"; -inline constexpr OUStringLiteral SC_UNO_VERTSCROLL = u"HasVerticalScrollBar"; -inline constexpr OUStringLiteral SC_UNO_SNAPTORASTER = u"IsSnapToRaster"; -inline constexpr OUStringLiteral SC_UNO_RASTERVIS = u"RasterIsVisible"; -inline constexpr OUStringLiteral SC_UNO_RASTERRESX = u"RasterResolutionX"; -inline constexpr OUStringLiteral SC_UNO_RASTERRESY = u"RasterResolutionY"; -inline constexpr OUStringLiteral SC_UNO_RASTERSUBX = u"RasterSubdivisionX"; -inline constexpr OUStringLiteral SC_UNO_RASTERSUBY = u"RasterSubdivisionY"; -inline constexpr OUStringLiteral SC_UNO_RASTERSYNC = u"IsRasterAxisSynchronized"; -inline constexpr OUStringLiteral SC_UNO_AUTOCALC = u"AutoCalculate"; -inline constexpr OUStringLiteral SC_UNO_PRINTERNAME = u"PrinterName"; -inline constexpr OUStringLiteral SC_UNO_PRINTERSETUP = u"PrinterSetup"; -inline constexpr OUStringLiteral SC_UNO_PRINTERPAPER = u"PrinterPaperFromSetup"; -inline constexpr OUStringLiteral SC_UNO_APPLYDOCINF = u"ApplyUserData"; -inline constexpr OUStringLiteral SC_UNO_SAVE_THUMBNAIL = u"SaveThumbnail"; -inline constexpr OUStringLiteral SC_UNO_CHARCOMP = u"CharacterCompressionType"; -inline constexpr OUStringLiteral SC_UNO_ASIANKERN = u"IsKernAsianPunctuation"; -inline constexpr OUStringLiteral SC_UNO_VISAREA = u"VisibleArea"; -inline constexpr OUStringLiteral SC_UNO_ZOOMTYPE = u"ZoomType"; -inline constexpr OUStringLiteral SC_UNO_ZOOMVALUE = u"ZoomValue"; -inline constexpr OUStringLiteral SC_UNO_UPDTEMPL = u"UpdateFromTemplate"; -inline constexpr OUStringLiteral SC_UNO_FILTERED_RANGE_SELECTION = u"FilteredRangeSelection"; -inline constexpr OUStringLiteral SC_UNO_VISAREASCREEN = u"VisibleAreaOnScreen"; -inline constexpr OUStringLiteral SC_UNO_FORMULABARHEIGHT = u"FormulaBarHeight"; -inline constexpr OUStringLiteral SC_UNO_IMAGE_PREFERRED_DPI = u"ImagePreferredDPI"; +inline constexpr OUString SC_UNO_COLROWHDR = u"HasColumnRowHeaders"_ustr; +inline constexpr OUString SC_UNO_GRIDCOLOR = u"GridColor"_ustr; +inline constexpr OUString SC_UNO_HIDESPELL = u"HideSpellMarks"_ustr; /* deprecated #i91949 */ +inline constexpr OUString SC_UNO_HORSCROLL = u"HasHorizontalScrollBar"_ustr; +inline constexpr OUString SC_UNO_OUTLSYMB = u"IsOutlineSymbolsSet"_ustr; +inline constexpr OUString SC_UNO_SHEETTABS = u"HasSheetTabs"_ustr; +inline constexpr OUString SC_UNO_SHOWANCHOR = u"ShowAnchor"_ustr; +inline constexpr OUString SC_UNO_SHOWCHARTS = u"ShowCharts"_ustr; +inline constexpr OUString SC_UNO_SHOWDRAW = u"ShowDrawing"_ustr; +inline constexpr OUString SC_UNO_SHOWFORM = u"ShowFormulas"_ustr; +inline constexpr OUString SC_UNO_SHOWGRID = u"ShowGrid"_ustr; +inline constexpr OUString SC_UNO_SHOWHELP = u"ShowHelpLines"_ustr; +inline constexpr OUString SC_UNO_SHOWNOTES = u"ShowNotes"_ustr; +inline constexpr OUString SC_UNO_SHOWFORMULASMARKS = u"ShowFormulasMarks"_ustr; +inline constexpr OUString SC_UNO_SHOWOBJ = u"ShowObjects"_ustr; +inline constexpr OUString SC_UNO_SHOWPAGEBR = u"ShowPageBreaks"_ustr; +inline constexpr OUString SC_UNO_SHOWZERO = u"ShowZeroValues"_ustr; +inline constexpr OUString SC_UNO_VALUEHIGH = u"IsValueHighlightingEnabled"_ustr; +inline constexpr OUString SC_UNO_VERTSCROLL = u"HasVerticalScrollBar"_ustr; +inline constexpr OUString SC_UNO_SNAPTORASTER = u"IsSnapToRaster"_ustr; +inline constexpr OUString SC_UNO_RASTERVIS = u"RasterIsVisible"_ustr; +inline constexpr OUString SC_UNO_RASTERRESX = u"RasterResolutionX"_ustr; +inline constexpr OUString SC_UNO_RASTERRESY = u"RasterResolutionY"_ustr; +inline constexpr OUString SC_UNO_RASTERSUBX = u"RasterSubdivisionX"_ustr; +inline constexpr OUString SC_UNO_RASTERSUBY = u"RasterSubdivisionY"_ustr; +inline constexpr OUString SC_UNO_RASTERSYNC = u"IsRasterAxisSynchronized"_ustr; +inline constexpr OUString SC_UNO_AUTOCALC = u"AutoCalculate"_ustr; +inline constexpr OUString SC_UNO_PRINTERNAME = u"PrinterName"_ustr; +inline constexpr OUString SC_UNO_PRINTERSETUP = u"PrinterSetup"_ustr; +inline constexpr OUString SC_UNO_PRINTERPAPER = u"PrinterPaperFromSetup"_ustr; +inline constexpr OUString SC_UNO_APPLYDOCINF = u"ApplyUserData"_ustr; +inline constexpr OUString SC_UNO_SAVE_THUMBNAIL = u"SaveThumbnail"_ustr; +inline constexpr OUString SC_UNO_CHARCOMP = u"CharacterCompressionType"_ustr; +inline constexpr OUString SC_UNO_ASIANKERN = u"IsKernAsianPunctuation"_ustr; +inline constexpr OUString SC_UNO_VISAREA = u"VisibleArea"_ustr; +inline constexpr OUString SC_UNO_ZOOMTYPE = u"ZoomType"_ustr; +inline constexpr OUString SC_UNO_ZOOMVALUE = u"ZoomValue"_ustr; +inline constexpr OUString SC_UNO_UPDTEMPL = u"UpdateFromTemplate"_ustr; +inline constexpr OUString SC_UNO_FILTERED_RANGE_SELECTION = u"FilteredRangeSelection"_ustr; +inline constexpr OUString SC_UNO_VISAREASCREEN = u"VisibleAreaOnScreen"_ustr; +inline constexpr OUString SC_UNO_FORMULABARHEIGHT = u"FormulaBarHeight"_ustr; +inline constexpr OUString SC_UNO_IMAGE_PREFERRED_DPI = u"ImagePreferredDPI"_ustr; /*Stampit enable/disable print cancel */ -inline constexpr OUStringLiteral SC_UNO_ALLOWPRINTJOBCANCEL = u"AllowPrintJobCancel"; +inline constexpr OUString SC_UNO_ALLOWPRINTJOBCANCEL = u"AllowPrintJobCancel"_ustr; // old (5.2) property names for view options - for compatibility only! -inline constexpr OUStringLiteral OLD_UNO_COLROWHDR = u"ColumnRowHeaders"; -inline constexpr OUStringLiteral OLD_UNO_HORSCROLL = u"HorizontalScrollBar"; -inline constexpr OUStringLiteral OLD_UNO_OUTLSYMB = u"OutlineSymbols"; -inline constexpr OUStringLiteral OLD_UNO_SHEETTABS = u"SheetTabs"; -inline constexpr OUStringLiteral OLD_UNO_VALUEHIGH = u"ValueHighlighting"; -inline constexpr OUStringLiteral OLD_UNO_VERTSCROLL = u"VerticalScrollBar"; +inline constexpr OUString OLD_UNO_COLROWHDR = u"ColumnRowHeaders"_ustr; +inline constexpr OUString OLD_UNO_HORSCROLL = u"HorizontalScrollBar"_ustr; +inline constexpr OUString OLD_UNO_OUTLSYMB = u"OutlineSymbols"_ustr; +inline constexpr OUString OLD_UNO_SHEETTABS = u"SheetTabs"_ustr; +inline constexpr OUString OLD_UNO_VALUEHIGH = u"ValueHighlighting"_ustr; +inline constexpr OUString OLD_UNO_VERTSCROLL = u"VerticalScrollBar"_ustr; // data pilot source -inline constexpr OUStringLiteral SC_UNO_DP_COLGRAND = u"ColumnGrand"; -inline constexpr OUStringLiteral SC_UNO_DP_ROWGRAND = u"RowGrand"; -inline constexpr OUStringLiteral SC_UNO_DP_ORIGINAL = u"Original"; -inline constexpr OUStringLiteral SC_UNO_DP_ORIGINAL_POS = u"OriginalPosition"; -inline constexpr OUStringLiteral SC_UNO_DP_ISDATALAYOUT = u"IsDataLayoutDimension"; -inline constexpr OUStringLiteral SC_UNO_DP_ORIENTATION = u"Orientation"; -inline constexpr OUStringLiteral SC_UNO_DP_POSITION = u"Position"; -inline constexpr OUStringLiteral SC_UNO_DP_FUNCTION = u"Function"; -inline constexpr OUStringLiteral SC_UNO_DP_FUNCTION2 = u"Function2"; -inline constexpr OUStringLiteral SC_UNO_DP_USEDHIERARCHY = u"UsedHierarchy"; -inline constexpr OUStringLiteral SC_UNO_DP_FILTER = u"Filter"; -inline constexpr OUStringLiteral SC_UNO_DP_SUBTOTAL = u"SubTotals"; -inline constexpr OUStringLiteral SC_UNO_DP_SUBTOTAL2 = u"SubTotals2"; -inline constexpr OUStringLiteral SC_UNO_DP_SHOWEMPTY = u"ShowEmpty"; -inline constexpr OUStringLiteral SC_UNO_DP_REPEATITEMLABELS = u"RepeatItemLabels"; -inline constexpr OUStringLiteral SC_UNO_DP_ISVISIBLE = u"IsVisible"; -inline constexpr OUStringLiteral SC_UNO_DP_SHOWDETAILS = u"ShowDetails"; -inline constexpr OUStringLiteral SC_UNO_DP_IGNOREEMPTY = u"IgnoreEmptyRows"; -inline constexpr OUStringLiteral SC_UNO_DP_REPEATEMPTY = u"RepeatIfEmpty"; -inline constexpr OUStringLiteral SC_UNO_DP_DATADESC = u"DataDescription"; +inline constexpr OUString SC_UNO_DP_COLGRAND = u"ColumnGrand"_ustr; +inline constexpr OUString SC_UNO_DP_ROWGRAND = u"RowGrand"_ustr; +inline constexpr OUString SC_UNO_DP_ORIGINAL = u"Original"_ustr; +inline constexpr OUString SC_UNO_DP_ORIGINAL_POS = u"OriginalPosition"_ustr; +inline constexpr OUString SC_UNO_DP_ISDATALAYOUT = u"IsDataLayoutDimension"_ustr; +inline constexpr OUString SC_UNO_DP_ORIENTATION = u"Orientation"_ustr; +inline constexpr OUString SC_UNO_DP_POSITION = u"Position"_ustr; +inline constexpr OUString SC_UNO_DP_FUNCTION = u"Function"_ustr; +inline constexpr OUString SC_UNO_DP_FUNCTION2 = u"Function2"_ustr; +inline constexpr OUString SC_UNO_DP_USEDHIERARCHY = u"UsedHierarchy"_ustr; +inline constexpr OUString SC_UNO_DP_FILTER = u"Filter"_ustr; +inline constexpr OUString SC_UNO_DP_SUBTOTAL = u"SubTotals"_ustr; +inline constexpr OUString SC_UNO_DP_SUBTOTAL2 = u"SubTotals2"_ustr; +inline constexpr OUString SC_UNO_DP_SHOWEMPTY = u"ShowEmpty"_ustr; +inline constexpr OUString SC_UNO_DP_REPEATITEMLABELS = u"RepeatItemLabels"_ustr; +inline constexpr OUString SC_UNO_DP_ISVISIBLE = u"IsVisible"_ustr; +inline constexpr OUString SC_UNO_DP_SHOWDETAILS = u"ShowDetails"_ustr; +inline constexpr OUString SC_UNO_DP_IGNOREEMPTY = u"IgnoreEmptyRows"_ustr; +inline constexpr OUString SC_UNO_DP_REPEATEMPTY = u"RepeatIfEmpty"_ustr; +inline constexpr OUString SC_UNO_DP_DATADESC = u"DataDescription"_ustr; #define SC_UNO_DP_NUMBERFO SC_UNONAME_NUMFMT -inline constexpr OUStringLiteral SC_UNO_DP_ROWFIELDCOUNT = u"RowFieldCount"; -inline constexpr OUStringLiteral SC_UNO_DP_COLUMNFIELDCOUNT = u"ColumnFieldCount"; -inline constexpr OUStringLiteral SC_UNO_DP_DATAFIELDCOUNT = u"DataFieldCount"; -inline constexpr OUStringLiteral SC_UNO_DP_LAYOUTNAME = u"LayoutName"; -inline constexpr OUStringLiteral SC_UNO_DP_FIELD_SUBTOTALNAME = u"FieldSubtotalName"; -inline constexpr OUStringLiteral SC_UNO_DP_GRANDTOTAL_NAME = u"GrandTotalName"; -inline constexpr OUStringLiteral SC_UNO_DP_HAS_HIDDEN_MEMBER = u"HasHiddenMember"; -inline constexpr OUStringLiteral SC_UNO_DP_FLAGS = u"Flags"; - -inline constexpr OUStringLiteral SC_UNO_DP_REFVALUE = u"ReferenceValue"; -inline constexpr OUStringLiteral SC_UNO_DP_SORTING = u"Sorting"; -inline constexpr OUStringLiteral SC_UNO_DP_AUTOSHOW = u"AutoShow"; -inline constexpr OUStringLiteral SC_UNO_DP_LAYOUT = u"Layout"; +inline constexpr OUString SC_UNO_DP_ROWFIELDCOUNT = u"RowFieldCount"_ustr; +inline constexpr OUString SC_UNO_DP_COLUMNFIELDCOUNT = u"ColumnFieldCount"_ustr; +inline constexpr OUString SC_UNO_DP_DATAFIELDCOUNT = u"DataFieldCount"_ustr; +inline constexpr OUString SC_UNO_DP_LAYOUTNAME = u"LayoutName"_ustr; +inline constexpr OUString SC_UNO_DP_FIELD_SUBTOTALNAME = u"FieldSubtotalName"_ustr; +inline constexpr OUString SC_UNO_DP_GRANDTOTAL_NAME = u"GrandTotalName"_ustr; +inline constexpr OUString SC_UNO_DP_HAS_HIDDEN_MEMBER = u"HasHiddenMember"_ustr; +inline constexpr OUString SC_UNO_DP_FLAGS = u"Flags"_ustr; + +inline constexpr OUString SC_UNO_DP_REFVALUE = u"ReferenceValue"_ustr; +inline constexpr OUString SC_UNO_DP_SORTING = u"Sorting"_ustr; +inline constexpr OUString SC_UNO_DP_AUTOSHOW = u"AutoShow"_ustr; +inline constexpr OUString SC_UNO_DP_LAYOUT = u"Layout"_ustr; // data pilot descriptor -inline constexpr OUStringLiteral SC_UNO_DP_IGNORE_EMPTYROWS = u"IgnoreEmptyRows"; -inline constexpr OUStringLiteral SC_UNO_DP_DRILLDOWN = u"DrillDownOnDoubleClick"; -inline constexpr OUStringLiteral SC_UNO_DP_SHOWFILTER = u"ShowFilterButton"; -inline constexpr OUStringLiteral SC_UNO_DP_IMPORTDESC = u"ImportDescriptor"; -inline constexpr OUStringLiteral SC_UNO_DP_SOURCESERVICE = u"SourceServiceName"; -inline constexpr OUStringLiteral SC_UNO_DP_SERVICEARG = u"ServiceArguments"; +inline constexpr OUString SC_UNO_DP_IGNORE_EMPTYROWS = u"IgnoreEmptyRows"_ustr; +inline constexpr OUString SC_UNO_DP_DRILLDOWN = u"DrillDownOnDoubleClick"_ustr; +inline constexpr OUString SC_UNO_DP_SHOWFILTER = u"ShowFilterButton"_ustr; +inline constexpr OUString SC_UNO_DP_IMPORTDESC = u"ImportDescriptor"_ustr; +inline constexpr OUString SC_UNO_DP_SOURCESERVICE = u"SourceServiceName"_ustr; +inline constexpr OUString SC_UNO_DP_SERVICEARG = u"ServiceArguments"_ustr; // properties in data pilot descriptor ServiceArguments -inline constexpr OUStringLiteral SC_UNO_DP_SOURCENAME = u"SourceName"; -inline constexpr OUStringLiteral SC_UNO_DP_OBJECTNAME = u"ObjectName"; -inline constexpr OUStringLiteral SC_UNO_DP_USERNAME = u"UserName"; -inline constexpr OUStringLiteral SC_UNO_DP_PASSWORD = u"Password"; +inline constexpr OUString SC_UNO_DP_SOURCENAME = u"SourceName"_ustr; +inline constexpr OUString SC_UNO_DP_OBJECTNAME = u"ObjectName"_ustr; +inline constexpr OUString SC_UNO_DP_USERNAME = u"UserName"_ustr; +inline constexpr OUString SC_UNO_DP_PASSWORD = u"Password"_ustr; // range selection -inline constexpr OUStringLiteral SC_UNONAME_INITVAL = u"InitialValue"; -inline constexpr OUStringLiteral SC_UNONAME_TITLE = u"Title"; -inline constexpr OUStringLiteral SC_UNONAME_CLOSEONUP = u"CloseOnMouseRelease"; -inline constexpr OUStringLiteral SC_UNONAME_SINGLECELL = u"SingleCellMode"; -inline constexpr OUStringLiteral SC_UNONAME_MULTISEL = u"MultiSelectionMode"; +inline constexpr OUString SC_UNONAME_INITVAL = u"InitialValue"_ustr; +inline constexpr OUString SC_UNONAME_TITLE = u"Title"_ustr; +inline constexpr OUString SC_UNONAME_CLOSEONUP = u"CloseOnMouseRelease"_ustr; +inline constexpr OUString SC_UNONAME_SINGLECELL = u"SingleCellMode"_ustr; +inline constexpr OUString SC_UNONAME_MULTISEL = u"MultiSelectionMode"_ustr; // XRenderable -inline constexpr OUStringLiteral SC_UNONAME_PAGESIZE = u"PageSize"; -inline constexpr OUStringLiteral SC_UNONAME_RENDERDEV = u"RenderDevice"; -inline constexpr OUStringLiteral SC_UNONAME_SOURCERANGE = u"SourceRange"; -inline constexpr OUStringLiteral SC_UNONAME_INC_NP_AREA = u"PageIncludesNonprintableArea"; -inline constexpr OUStringLiteral SC_UNONAME_CALCPAGESIZE = u"CalcPageContentSize"; -inline constexpr OUStringLiteral SC_UNONAME_CALCPAGEPOS = u"CalcPagePos"; +inline constexpr OUString SC_UNONAME_PAGESIZE = u"PageSize"_ustr; +inline constexpr OUString SC_UNONAME_RENDERDEV = u"RenderDevice"_ustr; +inline constexpr OUString SC_UNONAME_SOURCERANGE = u"SourceRange"_ustr; +inline constexpr OUString SC_UNONAME_INC_NP_AREA = u"PageIncludesNonprintableArea"_ustr; +inline constexpr OUString SC_UNONAME_CALCPAGESIZE = u"CalcPageContentSize"_ustr; +inline constexpr OUString SC_UNONAME_CALCPAGEPOS = u"CalcPagePos"_ustr; // CellValueBinding -inline constexpr OUStringLiteral SC_UNONAME_BOUNDCELL = u"BoundCell"; +inline constexpr OUString SC_UNONAME_BOUNDCELL = u"BoundCell"_ustr; // CellRangeListSource -inline constexpr OUStringLiteral SC_UNONAME_CELLRANGE = u"CellRange"; +inline constexpr OUString SC_UNONAME_CELLRANGE = u"CellRange"_ustr; // CellAddressConversion / CellRangeAddressConversion -inline constexpr OUStringLiteral SC_UNONAME_ADDRESS = u"Address"; -inline constexpr OUStringLiteral SC_UNONAME_UIREPR = u"UserInterfaceRepresentation"; -inline constexpr OUStringLiteral SC_UNONAME_PERSREPR = u"PersistentRepresentation"; -inline constexpr OUStringLiteral SC_UNONAME_XLA1REPR = u"XLA1Representation"; -inline constexpr OUStringLiteral SC_UNONAME_REFSHEET = u"ReferenceSheet"; +inline constexpr OUString SC_UNONAME_ADDRESS = u"Address"_ustr; +inline constexpr OUString SC_UNONAME_UIREPR = u"UserInterfaceRepresentation"_ustr; +inline constexpr OUString SC_UNONAME_PERSREPR = u"PersistentRepresentation"_ustr; +inline constexpr OUString SC_UNONAME_XLA1REPR = u"XLA1Representation"_ustr; +inline constexpr OUString SC_UNONAME_REFSHEET = u"ReferenceSheet"_ustr; // Security options -inline constexpr OUStringLiteral SC_UNO_LOADREADONLY = u"LoadReadonly"; -inline constexpr OUStringLiteral SC_UNO_MODIFYPASSWORDINFO = u"ModifyPasswordInfo"; -inline constexpr OUStringLiteral SC_UNO_MODIFYPASSWORDHASH = u"ModifyPasswordHash"; +inline constexpr OUString SC_UNO_LOADREADONLY = u"LoadReadonly"_ustr; +inline constexpr OUString SC_UNO_MODIFYPASSWORDINFO = u"ModifyPasswordInfo"_ustr; +inline constexpr OUString SC_UNO_MODIFYPASSWORDHASH = u"ModifyPasswordHash"_ustr; // FormulaParser -inline constexpr OUStringLiteral SC_UNO_COMPILEENGLISH = u"CompileEnglish"; -inline constexpr OUStringLiteral SC_UNO_FORMULACONVENTION = u"FormulaConvention"; -inline constexpr OUStringLiteral SC_UNO_IGNORELEADING = u"IgnoreLeadingSpaces"; -inline constexpr OUStringLiteral SC_UNO_OPCODEMAP = u"OpCodeMap"; -inline constexpr OUStringLiteral SC_UNO_EXTERNALLINKS = u"ExternalLinks"; -inline constexpr OUStringLiteral SC_UNO_COMPILEFAP = u"CompileFAP"; -inline constexpr OUStringLiteral SC_UNO_REF_CONV_CHARTOOXML = u"RefConventionChartOOXML"; +inline constexpr OUString SC_UNO_COMPILEENGLISH = u"CompileEnglish"_ustr; +inline constexpr OUString SC_UNO_FORMULACONVENTION = u"FormulaConvention"_ustr; +inline constexpr OUString SC_UNO_IGNORELEADING = u"IgnoreLeadingSpaces"_ustr; +inline constexpr OUString SC_UNO_OPCODEMAP = u"OpCodeMap"_ustr; +inline constexpr OUString SC_UNO_EXTERNALLINKS = u"ExternalLinks"_ustr; +inline constexpr OUString SC_UNO_COMPILEFAP = u"CompileFAP"_ustr; +inline constexpr OUString SC_UNO_REF_CONV_CHARTOOXML = u"RefConventionChartOOXML"_ustr; // Chart2 -inline constexpr OUStringLiteral SC_UNONAME_ROLE = u"Role"; -inline constexpr OUStringLiteral SC_UNONAME_HIDDENVALUES = u"HiddenValues"; -inline constexpr OUStringLiteral SC_UNONAME_INCLUDEHIDDENCELLS = u"IncludeHiddenCells"; -inline constexpr OUStringLiteral SC_UNONAME_USE_INTERNAL_DATA_PROVIDER = u"UseInternalDataProvider"; -inline constexpr OUStringLiteral SC_UNONAME_HAS_STRING_LABEL = u"HasStringLabel"; -inline constexpr OUStringLiteral SC_UNONAME_TIME_BASED = u"TimeBased"; +inline constexpr OUString SC_UNONAME_ROLE = u"Role"_ustr; +inline constexpr OUString SC_UNONAME_HIDDENVALUES = u"HiddenValues"_ustr; +inline constexpr OUString SC_UNONAME_INCLUDEHIDDENCELLS = u"IncludeHiddenCells"_ustr; +inline constexpr OUString SC_UNONAME_USE_INTERNAL_DATA_PROVIDER = u"UseInternalDataProvider"_ustr; +inline constexpr OUString SC_UNONAME_HAS_STRING_LABEL = u"HasStringLabel"_ustr; +inline constexpr OUString SC_UNONAME_TIME_BASED = u"TimeBased"_ustr; // Solver -inline constexpr OUStringLiteral SC_UNONAME_TIMEOUT = u"Timeout"; -inline constexpr OUStringLiteral SC_UNO_SHAREDOC = u"IsDocumentShared"; +inline constexpr OUString SC_UNONAME_TIMEOUT = u"Timeout"_ustr; +inline constexpr OUString SC_UNO_SHAREDOC = u"IsDocumentShared"_ustr; // EventDescriptor -inline constexpr OUStringLiteral SC_UNO_EVENTTYPE = u"EventType"; -inline constexpr OUStringLiteral SC_UNO_SCRIPT = u"Script"; +inline constexpr OUString SC_UNO_EVENTTYPE = u"EventType"_ustr; +inline constexpr OUString SC_UNO_SCRIPT = u"Script"_ustr; // Named ranges -inline constexpr OUStringLiteral SC_UNO_MODIFY_BROADCAST = u"ModifyAndBroadcast"; +inline constexpr OUString SC_UNO_MODIFY_BROADCAST = u"ModifyAndBroadcast"_ustr; -inline constexpr OUStringLiteral SC_UNO_EMBED_FONTS = u"EmbedFonts"; -inline constexpr OUStringLiteral SC_UNO_EMBED_ONLY_USED_FONTS = u"EmbedOnlyUsedFonts"; -inline constexpr OUStringLiteral SC_UNO_EMBED_FONT_SCRIPT_LATIN = u"EmbedLatinScriptFonts"; -inline constexpr OUStringLiteral SC_UNO_EMBED_FONT_SCRIPT_ASIAN = u"EmbedAsianScriptFonts"; -inline constexpr OUStringLiteral SC_UNO_EMBED_FONT_SCRIPT_COMPLEX = u"EmbedComplexScriptFonts"; +inline constexpr OUString SC_UNO_EMBED_FONTS = u"EmbedFonts"_ustr; +inline constexpr OUString SC_UNO_EMBED_ONLY_USED_FONTS = u"EmbedOnlyUsedFonts"_ustr; +inline constexpr OUString SC_UNO_EMBED_FONT_SCRIPT_LATIN = u"EmbedLatinScriptFonts"_ustr; +inline constexpr OUString SC_UNO_EMBED_FONT_SCRIPT_ASIAN = u"EmbedAsianScriptFonts"_ustr; +inline constexpr OUString SC_UNO_EMBED_FONT_SCRIPT_COMPLEX = u"EmbedComplexScriptFonts"_ustr; -inline constexpr OUStringLiteral SC_UNO_ODS_LOCK_SOLAR_MUTEX = u"ODSLockSolarMutex"; -inline constexpr OUStringLiteral SC_UNO_ODS_IMPORT_STYLES = u"ODSImportStyles"; +inline constexpr OUString SC_UNO_ODS_LOCK_SOLAR_MUTEX = u"ODSLockSolarMutex"_ustr; +inline constexpr OUString SC_UNO_ODS_IMPORT_STYLES = u"ODSImportStyles"_ustr; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |