LibreOffice Module sc (master) 1
|
#include <global.hxx>
Static Public Member Functions | |
static SC_DLLPUBLIC const LocaleDataWrapper & | getLocaleData () |
static SC_DLLPUBLIC const CharClass & | getCharClass () |
static CalendarWrapper & | GetCalendar () |
static SC_DLLPUBLIC CollatorWrapper & | GetCollator () |
case-insensitive collator More... | |
static CollatorWrapper & | GetCaseCollator () |
case-sensitive collator More... | |
static CollatorWrapper & | GetCollator (bool bCaseSensitive) |
static css::lang::Locale & | GetLocale () |
static SC_DLLPUBLIC ::utl::TransliterationWrapper & | GetTransliteration () |
::utl::TransliterationWrapper & | GetCaseTransliteration () |
::utl::TransliterationWrapper & | GetTransliteration (bool bCaseSensitive) |
static const OUString & | GetClipDocName () |
static void | SetClipDocName (const OUString &rNew) |
static SC_DLLPUBLIC const SvxSearchItem & | GetSearchItem () |
static SC_DLLPUBLIC void | SetSearchItem (const SvxSearchItem &rNew) |
static SC_DLLPUBLIC ScAutoFormat * | GetAutoFormat () |
static SC_DLLPUBLIC ScAutoFormat * | GetOrCreateAutoFormat () |
static void | ClearAutoFormat () |
static LegacyFuncCollection * | GetLegacyFuncCollection () |
static SC_DLLPUBLIC ScUnoAddInCollection * | GetAddInCollection () |
static SC_DLLPUBLIC ScUserList * | GetUserList () |
static void | SetUserList (const ScUserList *pNewList) |
static void | OpenURL (const OUString &rURL, const OUString &rTarget, bool bIgnoreSettings=false) |
Open the specified URL. More... | |
static bool | ShouldOpenURL () |
Whether the URL can be opened according to current security options (Click/Ctrl-Click) More... | |
static SC_DLLPUBLIC OUString | GetAbsDocName (const OUString &rFileName, const SfxObjectShell *pShell) |
static SC_DLLPUBLIC OUString | GetDocTabName (std::u16string_view rFileName, std::u16string_view rTabName) |
static SC_DLLPUBLIC sal_uInt32 | GetStandardFormat (SvNumberFormatter &, sal_uInt32 nFormat, SvNumFormatType nType) |
static SC_DLLPUBLIC sal_uInt16 | GetStandardRowHeight () |
static SC_DLLPUBLIC void | Init () |
static void | InitAddIns () |
static SC_DLLPUBLIC void | Clear () |
static void | InitTextHeight (const SfxItemPool *pPool) |
static SvxBrushItem * | GetEmptyBrushItem () |
static SvxBrushItem * | GetButtonBrushItem () |
static bool | HasStarCalcFunctionList () |
static ScFunctionList * | GetStarCalcFunctionList () |
static ScFunctionMgr * | GetStarCalcFunctionMgr () |
static void | ResetFunctionList () |
static const InputHandlerFunctionNames & | GetInputHandlerFunctionNames () |
static OUString | GetErrorString (FormulaError nErrNumber) |
static OUString | GetLongErrorString (FormulaError nErrNumber) |
static bool | EETextObjEqual (const EditTextObject *pObj1, const EditTextObject *pObj2) |
static bool | CheckWidthInvalidate (bool &bNumFormatChanged, const SfxItemSet &rNewAttrs, const SfxItemSet &rOldAttrs) |
static bool | HasAttrChanged (const SfxItemSet &rNewAttrs, const SfxItemSet &rOldAttrs, const sal_uInt16 nWhich) |
static ScUnitConverter * | GetUnitConverter () |
static const sal_Unicode * | UnicodeStrChr (const sal_Unicode *pStr, sal_Unicode c) |
strchr() functionality on unicode, as long as we need it for FormulaToken etc. More... | |
static sal_Unicode | ToUpperAlpha (sal_Unicode c) |
static SC_DLLPUBLIC OUString | addToken (std::u16string_view rTokenList, std::u16string_view rToken, sal_Unicode cSep, sal_Int32 nSepCount=1, bool bForceSep=false) |
Adds the string rToken to rTokenList, using a list separator character. More... | |
static SC_DLLPUBLIC bool | IsQuoted (std::u16string_view rString, sal_Unicode cQuote) |
Returns true, if the first and last character of the string is cQuote. More... | |
static SC_DLLPUBLIC void | AddQuotes (OUString &rString, sal_Unicode cQuote, bool bEscapeEmbedded=true) |
Inserts the character cQuote at beginning and end of rString. More... | |
static SC_DLLPUBLIC void | EraseQuotes (OUString &rString, sal_Unicode cQuote, bool bUnescapeEmbedded=true) |
Erases the character cQuote from rString, if it exists at beginning AND end. More... | |
static SC_DLLPUBLIC sal_Int32 | FindUnquoted (const OUString &rString, sal_Unicode cChar, sal_Int32 nStart=0) |
Finds an unquoted instance of cChar in rString, starting at offset nStart. More... | |
static SC_DLLPUBLIC const sal_Unicode * | FindUnquoted (const sal_Unicode *pString, sal_Unicode cChar) |
Finds an unquoted instance of cChar in null-terminated pString. More... | |
static rtl_TextEncoding | GetCharsetValue (std::u16string_view rCharSet) |
static OUString | GetCharsetString (rtl_TextEncoding eVal) |
static SvNumberFormatter * | GetEnglishFormatter () |
a "ReadOnly" formatter for UNO/XML export More... | |
static bool | IsSystemRTL () |
static LanguageType | GetEditDefaultLanguage () |
static SC_DLLPUBLIC SvtScriptType | GetDefaultScriptType () |
static SC_DLLPUBLIC sal_uInt16 | GetScriptedWhichID (SvtScriptType nScriptType, sal_uInt16 nWhich) |
Map ATTR_((CJK|CTL)_)?FONT_... to proper WhichIDs. More... | |
static SC_DLLPUBLIC void | AddLanguage (SfxItemSet &rSet, const SvNumberFormatter &rFormatter) |
Adds a language item to the item set, if the number format item contains a language that differs from its parent's language. More... | |
static OUString | GetOrdinalSuffix (sal_Int32 nNumber) |
Obtain the ordinal suffix for a number according to the system locale. More... | |
static ScFieldEditEngine & | GetStaticFieldEditEngine () |
A static instance of ScFieldEditEngine not capable of resolving document specific fields, to be used only by ScEditUtil::GetString(). More... | |
static sc::SharedStringPoolPurge & | GetSharedStringPoolPurge () |
static SC_DLLPUBLIC OUString | ReplaceOrAppend (const OUString &rString, std::u16string_view rPlaceholder, const OUString &rReplacement) |
Replaces the first occurrence of rPlaceholder in rString with rReplacement, or if rPlaceholder is not found appends one space if rString does not end in a space and appends rReplacement. More... | |
static double | ConvertStringToValue (const OUString &rStr, const ScCalcConfig &rConfig, FormulaError &rError, FormulaError nStringNoValueError, SvNumberFormatter *pFormatter, SvNumFormatType &rCurFmtType) |
Convert string content to numeric value. More... | |
Static Public Attributes | |
static std::optional< SvtSysLocale > | oSysLocale |
static SC_DLLPUBLIC LanguageType | eLnge = LANGUAGE_SYSTEM |
static constexpr sal_Unicode | cListDelimiter = ',' |
static SC_DLLPUBLIC double | nScreenPPTX = 96.0 |
Horizontal pixel per twips factor. More... | |
static SC_DLLPUBLIC double | nScreenPPTY = 96.0 |
Vertical pixel per twips factor. More... | |
static tools::SvRef< ScDocShell > | xDrawClipDocShellRef |
static sal_uInt16 | nDefFontHeight = 225 |
static SC_DLLPUBLIC sal_uInt16 | nStdRowHeight = 256 |
static SC_DLLPUBLIC ::tools::Long | nLastRowHeightExtra = 0 |
::tools::Long | nLastColWidthExtra = STD_EXTRA_WIDTH |
static SC_DLLPUBLIC bool | bThreadedGroupCalcInProgress = false |
Calc's threaded group calculation is in progress. More... | |
Static Private Member Functions | |
static void | InitPPT () |
Definition at line 509 of file global.hxx.
|
static |
Adds a language item to the item set, if the number format item contains a language that differs from its parent's language.
Definition at line 1003 of file global.cxx.
References ATTR_LANGUAGE_FORMAT(), ATTR_VALUE_FORMAT(), SfxItemSet::Get(), SvNumberFormatter::GetEntry(), SfxItemSet::GetItemIfSet(), SfxItemSet::GetItemState(), SvNumberformat::GetLanguage(), SfxItemSet::GetParent(), CntUInt32Item::GetValue(), SfxItemSet::Put(), and rSet.
Referenced by XclImpNumFmtBuffer::FillScFmtToItemSet(), and oox::xls::NumberFormat::fillToItemSet().
|
static |
Inserts the character cQuote at beginning and end of rString.
bEscapeEmbedded | If <TRUE>, embedded quote characters are escaped by doubling them. |
Definition at line 720 of file global.cxx.
Referenced by ScfTools::GetHTMLNameFromName(), and sc::SolverSettings::WriteParamValue().
|
static |
Adds the string rToken to rTokenList, using a list separator character.
rTokenList | The string list where the token will be appended to. |
rToken | The token string to append to the token list. |
cSep | The character to separate the tokens. |
nSepCount | Specifies how often cSep is inserted between two tokens. |
bForceSep | true = Always insert separator; false = Only, if not at begin or end. |
Definition at line 705 of file global.cxx.
References aBuf, and comphelper::string::padToLength().
Referenced by XclExpHFConverter::AppendPortion(), ScHTMLQueryParser::FontOn(), ScHTMLImport::GetHTMLRangeNameList(), XclExpHyperlinkHelper::ProcessUrlField(), XclImpWebQuery::ReadWqtables(), XclExpCellTable::XclExpCellTable(), XclExpNote::XclExpNote(), and XclExpWebQuery::XclExpWebQuery().
|
static |
Definition at line 186 of file global.cxx.
References ATTR_CJK_FONT(), ATTR_CJK_FONT_HEIGHT(), ATTR_CJK_FONT_POSTURE(), ATTR_CJK_FONT_WEIGHT(), ATTR_CTL_FONT(), ATTR_CTL_FONT_HEIGHT(), ATTR_CTL_FONT_POSTURE(), ATTR_CTL_FONT_WEIGHT(), ATTR_FONT(), ATTR_FONT_CONTOUR(), ATTR_FONT_CROSSEDOUT(), ATTR_FONT_HEIGHT(), ATTR_FONT_OVERLINE(), ATTR_FONT_POSTURE(), ATTR_FONT_SHADOWED(), ATTR_FONT_UNDERLINE(), ATTR_FONT_WEIGHT(), ATTR_LANGUAGE_FORMAT(), ATTR_LINEBREAK(), ATTR_MARGIN(), ATTR_ROTATE_MODE(), ATTR_ROTATE_VALUE(), ATTR_STACKED(), ATTR_VALUE_FORMAT(), equal(), ScPatternAttr::FastEqualPatternSets(), and HasAttrChanged().
Referenced by ScAttrArray::ApplyCacheArea(), ScAttrArray::ApplyStyleArea(), ScTabViewShell::ExecStyle(), ScDocument::ModifyStyleSheet(), ScAttrArray::Reset(), ScAttrArray::ScAttrArray(), and ScAttrArray::SetPatternAreaImpl().
|
static |
Definition at line 536 of file global.cxx.
References tools::SvRef< typename T >::clear(), ClearAutoFormat(), ScCompiler::DeInit(), ScParameterClassification::Exit(), ExitExternalFunc(), ScInterpreter::GlobalExit(), oCalendar, oSysLocale, pAddInCollection, pCaseCollator, pCaseTransliteration, pCollator, pLegacyFuncCollection, pLocale, pSharedStringPoolPurge, pTransliteration, pUnitConverter, theAddInAsyncTbl, xButtonBrushItem, xDrawClipDocShellRef, xEmptyBrushItem, xEnglishFormatter, xFieldEditEngine, xSearchItem, xStarCalcFunctionList, xStarCalcFunctionMgr, and xUserList.
Referenced by ScModule::~ScModule().
|
static |
Definition at line 248 of file global.cxx.
References bThreadedGroupCalcInProgress, and xAutoFormat.
Referenced by Clear(), and ScCellShell::Execute().
|
static |
Convert string content to numeric value.
In any case, if rError is set 0.0 is returned.
If nStringNoValueError is FormulaError::CellNoValue, that is unconditionally assigned to rError and 0.0 is returned. The caller is expected to handle this situation. Used by the interpreter.
Usually FormulaError::NoValue is passed as nStringNoValueError.
Otherwise, depending on the string conversion configuration different approaches are taken:
For ScCalcConfig::StringConversion::ILLEGAL The error value passed in nStringNoValueError is assigned to rError (and 0.0 returned).
For ScCalcConfig::StringConversion::ZERO A zero value is returned and no error assigned.
For ScCalcConfig::StringConversion::LOCALE
If the string is empty or consists only of spaces, if "treat empty string as zero" is set 0.0 is returned, else nStringNoValueError assigned to rError (and 0.0 returned).
Else a non-empty string is passed to the number formatter's scanner to be parsed locale dependent. If that does not detect a numeric value nStringNoValueError is assigned to rError (and 0.0 returned).
If no number formatter was passed, the conversion falls back to UNAMBIGUOUS.
For ScCalcConfig::StringConversion::UNAMBIGUOUS
If the string is empty or consists only of spaces, if "treat empty string as zero" is set 0.0 is returned, else nStringNoValueError assigned to rError (and 0.0 returned).
If the string is not empty the following conversion rules are applied:
Converted are only integer numbers including exponent, and ISO 8601 dates and times in their extended formats with separators. Anything else, especially fractional numeric values with decimal separators or dates other than ISO 8601 would be locale dependent and is a no-no. Leading and trailing blanks are ignored.
The following ISO 8601 formats are converted:
CCYY-MM-DD CCYY-MM-DDThh:mm CCYY-MM-DDThh:mm:ss CCYY-MM-DDThh:mm:ss,s CCYY-MM-DDThh:mm:ss.s hh:mm hh:mm:ss hh:mm:ss,s hh:mm:ss.s
The century CC may not be omitted and the two-digit year setting is not taken into account. Instead of the T date and time separator exactly one blank may be used.
If a date is given, it must be a valid Gregorian calendar date. In this case the optional time must be in the range 00:00 to 23:59:59.99999... If only time is given, it may have any value for hours, taking elapsed time into account; minutes and seconds are limited to the value 59 as well.
If the string can not be converted to a numeric value, the error value passed in nStringNoValueError is assigned to rError.
rStr | The string to be converted. |
rConfig | The calculation configuration. |
rError | Contains the error on return, if any. If an error was set before and the conversion did not result in an error, still 0.0 is returned. |
nStringNoValueError | The error value to be assigned to rError if string could not be converted to number. |
pFormatter | The number formatter to use in case of ScCalcConfig::StringConversion::LOCALE. Can but should not be nullptr in which case conversion falls back to ScCalcConfig::StringConversion::UNAMBIGUOUS and if a date is detected the null date is assumed to be the standard 1899-12-30 instead of the configured null date. |
rCurFmtType | Can be assigned a format type in case a date or time or date+time string was converted, e.g. SvNumFormatType::DATE or SvNumFormatType::TIME or a combination thereof. |
Definition at line 352 of file global2.cxx.
References day, SvNumberFormatter::GetNullDate(), ScCalcConfig::ILLEGAL, SvNumberFormatter::IsNumberFormat(), Date::IsValidDate(), ScCalcConfig::LOCALE, ScCalcConfig::mbEmptyStringAsZero, ScCalcConfig::meStringConversion, month, p, SAL_WARN, stop(), o3tl::toInt32(), ScCalcConfig::UNAMBIGUOUS, year, and ScCalcConfig::ZERO.
Referenced by ScInterpreter::ConvertStringToValue().
|
static |
Definition at line 798 of file global.cxx.
References EditTextObject::Equals().
Referenced by ScAccessiblePageHeader::AddChild(), ScAccessiblePageHeader::Notify(), ScInputHdlState::operator==(), and ScPageHFItem::operator==().
|
static |
Erases the character cQuote from rString, if it exists at beginning AND end.
bUnescapeEmbedded | If <TRUE>, embedded doubled quote characters are unescaped by replacing them with a single instance. |
Definition at line 733 of file global.cxx.
References IsQuoted().
Referenced by ScRangeStringConverter::GetRangeDataFromString(), sc::SolverSettings::ReadParamValue(), and XclImpWebQuery::ReadWqtables().
|
static |
Finds an unquoted instance of cChar in rString, starting at offset nStart.
Unquoted instances may occur when concatenating two quoted strings with a separator, for example, 's1':'s2'. Embedded quotes have to be escaped by being doubled. Caller must ensure that nStart points into an unquoted range or the opening quote. Specialty: if cChar=='\'' the first quote character from nStart on is found.
Definition at line 749 of file global.cxx.
References p.
Referenced by ConvertDoubleRef(), ConvertSingleRef(), ScCompiler::GetDocTabPos(), ScRangeStringConverter::GetRangeDataFromString(), lcl_IsTableStructuredRef(), lcl_ScAddress_Parse_OOo(), lcl_ScRange_Parse_OOo(), ScCompiler::ParseReference(), and ScInterpreter::ScIndirect().
|
static |
Finds an unquoted instance of cChar in null-terminated pString.
Same semantics as FindUnquoted( const String&, ...)
Definition at line 775 of file global.cxx.
References p.
|
static |
Definition at line 287 of file global2.cxx.
References INetURLObject::GetMainURL(), SfxObjectShell::GetMedium(), SfxMedium::GetURLObject(), SfxObjectShell::HasName(), utl::ConfigManager::IsFuzzing(), INetURLObject::NONE, INetURLObject::setFinalSlash(), INetURLObject::SetSmartURL(), INetURLObject::smartRel2Abs(), and u.
Referenced by ScExternalDocLinksObj::addDocLink(), ExcelToSc8::ConvertExternName(), ScExternalRefManager::convertToAbsName(), ScXMLTableSourceContext::endFastElement(), ScExternalDocLinksObj::getByName(), ExcelToSc8::GetExternalFileIdFromXti(), ExtSheetBuffer::GetScTabIndex(), ExcelToSc8::HandleOleLink(), ScAreaLinksObj::insertAtPosition(), ScTableSheetObj::link(), XclImpSupbook::LoadCachedValues(), ScAreaLinkObj::Modify_Impl(), OpenURL(), ScRange::Parse_XL_Header(), ScViewFunc::PasteLink(), ScAreaLink::Refresh(), ScTableLink::Refresh(), ScTableSheetObj::setExternalName(), ScSheetLinkObj::setFileName(), and XclExpWebQueryBuffer::XclExpWebQueryBuffer().
|
static |
Definition at line 283 of file global.cxx.
References comphelper::doubleCheckedInit(), and pAddInCollection.
Referenced by XclExpFmlaCompImpl::AppendAddInCallToken(), ScCompiler::fillAddInToken(), ScCompiler::fillFromAddInCollectionEnglishName(), ScCompiler::fillFromAddInCollectionUpperName(), ScCompiler::FindAddInFunction(), ScParameterClassification::GetExternalParameterType(), XclImpRoot::GetScAddInName(), ScFuncDesc::initArgumentInfo(), ScCompiler::IsEnglishSymbol(), lcl_AddFunctionToken(), ScCompiler::LocalizeString(), ScAddInCfg::Notify(), ScCompiler::ParseOpCode(), ScInterpreter::ScExternal(), and ScFunctionList::ScFunctionList().
|
static |
Definition at line 261 of file global.cxx.
References xAutoFormat.
Referenced by ScAutoFormatObj::~ScAutoFormatObj().
|
static |
Definition at line 441 of file global.cxx.
References bThreadedGroupCalcInProgress, Application::GetSettings(), and xButtonBrushItem.
Referenced by ScDocument::FillInfo().
|
static |
Definition at line 1073 of file global.cxx.
References bThreadedGroupCalcInProgress, GetLocale(), and oCalendar.
Referenced by ScCheckListMenuControl::addDateMember(), ScDPMembers::getByIndex(), and ScDPUtil::getDateGroupName().
|
static |
case-sensitive collator
Definition at line 1106 of file global.cxx.
References comphelper::doubleCheckedInit(), GetLocale(), p, and pCaseCollator.
Referenced by ScAcceptChgDlg::ColCompareHdl(), ScFuncDesc::compareByName(), sc::CompareFunc(), GetCollator(), ScTable::IsSortCollatorGlobal(), and ScTypedStrData::LessCaseSensitive::operator()().
|
static |
Definition at line 1038 of file global.cxx.
References comphelper::doubleCheckedInit(), AllSettings::GetLanguageTag(), LanguageTag::getLanguageType(), Application::GetSettings(), p, and pCaseTransliteration.
Referenced by ScUserListData::Compare(), GetTransliteration(), and ScTypedStrData::EqualCaseSensitive::operator()().
|
static |
Definition at line 1064 of file global.cxx.
References oSysLocale.
Referenced by ScDPResultTree::add(), ScNamedRangesObj::addNewByName(), ScCompiler::CheckTabQuotes(), ScDocFunc::CreateOneName(), ScDocShell::DdeCreateLinkSource(), ScDBDocFunc::DeleteDBRange(), ScUndoAutoFilter::DoChange(), ScPosWnd::DoEnter(), ScTable::DoSubTotals(), ScDocShell::Execute(), ScAreaLink::FindExtRange(), ScRangeManagerTable::findRangeData(), ScExternalRefCache::DocItem::findTableNameIndex(), ScExternalRefCache::getCacheTable(), ScUnoAddInCollection::GetCalcName(), sc::ScDBDataManager::getDBData(), ScDocShell::GetDBData(), ScDatabaseRangeObj::GetDBData_Impl(), ScExternalRefManager::getDoubleRefTokensFromSrcDoc(), ScInputHandler::GetFormulaData(), ScInputHandler::GetFuncName(), ScHTMLImport::GetHTMLRangeNameList(), ScDPResultTree::getLeafResult(), ScDPObject::GetPivotData(), ScNamedRangeObj::GetRangeData_Impl(), ScRangeStringConverter::GetRangeDataFromString(), ScExternalRefCache::getRangeNameTokens(), ScExternalRefManager::getRangeNameTokensFromSrcDoc(), ScExternalRefCache::getRealRangeName(), ScDPResultTree::getResults(), ScQueryEntry::GetSearchTextPtr(), ScSheetSourceDesc::GetSourceRange(), ScUserListData::GetSubIndex(), ScDocument::GetTable(), ScTable::GetUpperCellString(), ScTable::GetUpperName(), ScDBFunc::GotoDBArea(), ScDatabaseRangesObj::hasByName(), ScNamedRangesObj::hasByName(), IMPL_LINK_NOARG(), ScExternalRefCache::initializeDoc(), ScViewFunc::InsertName(), ScCompiler::IsCharFlagAllConventions(), ScNameDefDlg::IsNameValid(), ScNameDlg::IsNameValid(), ScExternalRefCache::isValidRangeName(), ScConditionEntry::IsValidStr(), lcl_AddFunctionToken(), lcl_FillRangeFromName(), lcl_GetDBAreaRange(), lcl_GetRange(), lcl_PutString(), ScRangeUtil::MakeRangeFromName(), ScNamedRangeObj::Modify_Impl(), ScNameDlg::NameModified(), ScCompiler::NextNewToken(), ScCompiler::NextSymbol(), ScCompiler::ParseSingleReference(), sc::SolverSettings::ReadConstraintPart(), sc::SolverSettings::ReadParamValue(), ScNamedRangesObj::removeByName(), ScNameDlg::RemovePushed(), ScDBDocFunc::RenameDBRange(), ScDBDocFunc::RepeatDB(), ScDBData::ScDBData(), ScInterpreter::ScLower(), ScInterpreter::ScProper(), ScInterpreter::ScSearch(), ScInterpreter::ScSearchB(), ScUnoAddInFuncData::ScUnoAddInFuncData(), ScInterpreter::ScUpper(), ScCompiler::SetFormulaLanguage(), ScExternalRefCache::setRangeName(), ScExternalRefCache::setRangeNameTokens(), ScChangeViewSettings::SetTheComment(), ScNameDlg::ShowOptions(), naturalsort::SplitString(), sc::TextTransformation::Transform(), ScDbNameDlg::UpdateDBData(), ScDBDocFunc::UpdateImport(), ScInputHandler::UseFormulaData(), ScDocument::ValidNewTabName(), ScEEImport::WriteToDocument(), and ScHTMLImport::WriteToDocument().
|
static |
Definition at line 598 of file global.cxx.
References pChar.
Referenced by ScDocShell::ConvertFrom(), ScDocShell::ConvertTo(), ScImportOptions::SetTextEncoding(), and ScAsciiOptions::WriteToString().
|
static |
Definition at line 570 of file global.cxx.
References o3tl::equalsIgnoreAsciiCase(), CharClass::isAsciiNumeric(), o3tl::toInt32(), and u.
Referenced by ScDocShell::ConvertFrom(), ScDocShell::ConvertTo(), ScAsciiOptions::ReadFromString(), and ScImportOptions::ScImportOptions().
|
static |
Definition at line 494 of file global.cxx.
References aStrClipDocName.
Referenced by ScImportExport::ExportStream().
|
static |
case-insensitive collator
Definition at line 1095 of file global.cxx.
References comphelper::doubleCheckedInit(), GetLocale(), p, pCollator, and SC_COLLATOR_IGNORES.
Referenced by ScQueryCellIteratorBase< accessType, queryType >::BinarySearch(), ScInterpreter::CalculateLookup(), ScDPItemData::Compare(), sc::CompareFunc(), ScDBFunc::DataPilotSort(), GetCollator(), ScTable::InitSortCollator(), ScTable::IsSortCollatorGlobal(), ScDBQueryDataIterator::DataAccessMatrix::isValidQuery(), ScConditionEntry::IsValidStr(), DefaultFirstEntry::operator()(), ScTypedStrData::LessCaseInsensitive::operator()(), ScInterpreter::ScLookup(), ScRangeData_QsortNameCompare(), ScSortedRangeCache::ScSortedRangeCache(), ScQueryEvaluator::setupCollatorIfNeeded(), and ScDPCache::ValidQuery().
|
static |
Definition at line 1117 of file global.cxx.
References GetCaseCollator(), and GetCollator().
|
static |
Definition at line 900 of file global.cxx.
References SvtLanguageOptions::GetScriptTypeOfLanguage(), and Application::GetSettings().
Referenced by ScGridWindow::DrawPagePreview(), ScEditShell::ExecuteAttr(), ScEditShell::GetAttrState(), ScColumn::GetNeededSize(), ScColumn::GetOptimalColWidth(), ScColumn::GetOptimalHeight(), ScViewFunc::GetSelectionScriptType(), ScOutputData::LayoutStrings(), ScHTMLExport::PageDefaults(), and XclRootData::XclRootData().
|
static |
Definition at line 324 of file global2.cxx.
References SC_COMPILER_FILE_TAB_SEP, and u.
Referenced by ScDocShell::AfterXMLLoading(), ExtSheetBuffer::GetScTabIndex(), ScTableLink::Refresh(), and ScTableSheetObj::setExternalName().
|
static |
Definition at line 909 of file global.cxx.
References AllSettings::GetLanguageTag(), LanguageTag::getLanguageType(), and Application::GetSettings().
Referenced by ScEditEngineDefaulter::ScEditEngineDefaulter(), and ScInputHandler::UpdateSpellSettings().
|
inlinestatic |
Definition at line 606 of file global.hxx.
References xEmptyBrushItem.
Referenced by ScOutputData::DrawBackground(), ScOutputData::DrawRotatedFrame(), and ScDocumentPool::ScDocumentPool().
|
static |
a "ReadOnly" formatter for UNO/XML export
Definition at line 174 of file global.cxx.
References bThreadedGroupCalcInProgress, LANGUAGE_ENGLISH_US, NF_EVALDATEFORMAT_INTL_FORMAT, and xEnglishFormatter.
Referenced by lcl_GetInputString().
|
static |
Definition at line 315 of file global.cxx.
References formula::FormulaCompiler::GetNativeSymbol(), ocErrDivZero, ocErrNA, ocErrName, ocErrNull, ocErrNum, ocErrValue, and ScResId().
Referenced by ScDocShell::AsciiSave(), ScFormulaDlg::calculateValue(), ScCompiler::CreateStringFromMatrix(), ScQueryEvaluator::getCellString(), ScFormulaCell::GetFormula(), ScValidationData::GetSelectionFromFormula(), ScCellFormat::GetString(), ScMatrixImpl::GetString(), lcl_Calculate(), ScInterpreter::ScCellExternal(), and ScTransferObj::StripRefs().
|
static |
Definition at line 653 of file global.cxx.
References cParenthesesReplacement, ScCompiler::GetCharClassEnglish(), ScCompiler::GetCharClassLocalized(), ScFunctionList::GetCount(), ScFunctionList::GetFunction(), ScFuncDesc::getSignature(), GetStarCalcFunctionList(), i, ScFuncDesc::initArgumentInfo(), ScFunctionList::IsEnglishFunctionNames(), InputHandlerFunctionNames::maFunctionChar, InputHandlerFunctionNames::maFunctionData, InputHandlerFunctionNames::maFunctionDataPara, maInputHandlerFunctionNames, ScFuncDesc::mxFuncName, ScTypedStrData::Standard, and CharClass::uppercase().
Referenced by ScInputHandler::GetFormulaData().
|
static |
Definition at line 278 of file global.cxx.
References comphelper::doubleCheckedInit(), and pLegacyFuncCollection.
Referenced by ScParameterClassification::GetExternalParameterType(), InitExternalFunc(), ScCompiler::IsEnglishSymbol(), lcl_AddFunctionToken(), ScCompiler::ParseOpCode(), ScInterpreter::ScExternal(), and ScFunctionList::ScFunctionList().
|
static |
Definition at line 1121 of file global.cxx.
References comphelper::doubleCheckedInit(), getLocale(), Application::GetSettings(), and pLocale.
Referenced by GetCalendar(), GetCaseCollator(), GetCollator(), ScFormulaOptions::GetDefaultFormulaSeparators(), ScInterpreter::ScCell(), ScInterpreter::ScCellExternal(), ScInterpreter::ScInfo(), and ScTable::SearchAndReplace().
|
static |
Definition at line 1055 of file global.cxx.
References oSysLocale.
Referenced by ScUserList::AddDefaults(), ScAcceptChgDlg::AppendChangeAction(), ScAcceptChgDlg::AppendFilteredAction(), ScPostIt::AutoStamp(), ScHeaderEditEngine::CalcFieldValue(), ScDocShell::CheckConfigOptions(), ScSolverOptionsDialog::EditOption(), ScInputHandler::EnterHandler(), ExcEScenario::ExcEScenario(), ScDocShell::ExecuteChangeCommentDialog(), ScCellShell::ExecuteDB(), ScSolverOptionsDialog::FillListBox(), ScDocument::GetCellChangeTrackNote(), ScEditUtil::GetCellFieldValue(), ScDPUtil::getDateGroupName(), ScFormulaOptions::GetDefaultFormulaSeparators(), ScDrawStringsVars::GetDotWidth(), ScDPCache::GetFormattedString(), GetOrdinalSuffix(), ScSolverValueDialog::GetValue(), ScDoubleField::GetValue(), IMPL_LINK(), ScAcceptChgDlg::InsertChangeActionContent(), sc::NumFmtUtil::isLatinScript(), ScOptionsUtil::IsMetricSystem(), lcl_MetricString(), lcl_setTableFieldsFromCriteria(), ScCompiler::NextSymbol(), ScCompiler::ParseReference(), ScRedComDialog::ReInit(), ScTpFormulaOptions::ScTpFormulaOptions(), ScConflictsDlg::SetActionString(), ScDrawStringsVars::SetTextToWidthOrHash(), ScSolverValueDialog::SetValue(), ScGridWindow::ShowNoteMarker(), naturalsort::SplitString(), ScShareDocumentDlg::UpdateView(), and ScHTMLExport::WriteHeader().
|
static |
Definition at line 347 of file global.cxx.
References ScResId().
Referenced by ScTabViewShell::GetFunction().
|
static |
Definition at line 266 of file global.cxx.
References bThreadedGroupCalcInProgress, and xAutoFormat.
Referenced by ScCellRangeObj::autoFormat(), ScDocFunc::AutoFormat(), ScTable::AutoFormat(), ScTable::AutoFormatArea(), ScCellShell::Execute(), ScAutoFormatsObj::getCount(), ScAutoFormatsObj::getElementNames(), ScAutoFormatObj::getName(), ScAutoFormatsObj::GetObjectByIndex_Impl(), ScAutoFormatsObj::GetObjectByName_Impl(), ScAutoFormatObj::getPropertyValue(), ScAutoFormatFieldObj::getPropertyValue(), ScAutoFormatsObj::hasByName(), IMPL_LINK(), IMPL_LINK_NOARG(), ScAutoFormatsObj::insertByName(), ScAutoFormatsObj::removeByName(), ScAutoFormatObj::setName(), ScAutoFormatObj::setPropertyValue(), and ScAutoFormatFieldObj::setPropertyValue().
|
static |
Obtain the ordinal suffix for a number according to the system locale.
Definition at line 120 of file globalx.cxx.
References Exception, getLanguageTag(), getLocale(), getLocaleData(), TOOLS_WARN_EXCEPTION, and xOrdinalSuffix.
Referenced by ScTable::FillAutoSimple(), ScTable::FillSeries(), and ScTable::GetAutoFillPreview().
|
static |
Map ATTR_((CJK|CTL)_)?FONT_... to proper WhichIDs.
If more than one SvtScriptType::... values are or'ed together, prefers first COMPLEX, then ASIAN
Definition at line 915 of file global.cxx.
References ATTR_CJK_FONT(), ATTR_CJK_FONT_HEIGHT(), ATTR_CJK_FONT_POSTURE(), ATTR_CJK_FONT_WEIGHT(), ATTR_CTL_FONT(), ATTR_CTL_FONT_HEIGHT(), ATTR_CTL_FONT_POSTURE(), ATTR_CTL_FONT_WEIGHT(), ATTR_FONT(), ATTR_FONT_HEIGHT(), ATTR_FONT_POSTURE(), and ATTR_FONT_WEIGHT().
Referenced by ScHTMLExport::PageDefaults(), ScHTMLExport::WriteCell(), and ScEEImport::WriteToDocument().
|
static |
Definition at line 227 of file global.cxx.
References bThreadedGroupCalcInProgress, and xSearchItem.
Referenced by ScTabViewShell::ExecSearch(), ScVbaRange::Find(), ScTabViewShell::GetState(), ScVbaRange::Replace(), and ScViewFunc::SearchAndReplace().
|
static |
Definition at line 1141 of file global.cxx.
References comphelper::doubleCheckedInit(), and pSharedStringPoolPurge.
Referenced by ScDocument::~ScDocument().
|
static |
Definition at line 160 of file global.cxx.
References eLnge, SvNumberFormatter::GetEntry(), SvNumberformat::GetLanguage(), SvNumberFormatter::GetStandardFormat(), and nType.
Referenced by ScFormulaCell::GetURLResult(), ScCellObj::InputEnglishString(), and ScFormulaCell::InterpretTail().
|
static |
Definition at line 169 of file global.cxx.
References nStdRowHeight.
|
static |
Definition at line 626 of file global.cxx.
References bThreadedGroupCalcInProgress, SC_MOD, and xStarCalcFunctionList.
Referenced by ScPosWnd::FillFunctions(), ScFunctionListObj::getById(), ScFunctionListObj::getByIndex(), ScFunctionListObj::getByName(), ScFunctionListObj::getCount(), ScFunctionListObj::getElementNames(), ScInputHandler::GetFormulaData(), GetInputHandlerFunctionNames(), ScFunctionListObj::hasByName(), lcl_FunctionKnown(), ScFunctionMgr::ScFunctionMgr(), and ScUnoAddInCollection::UpdateFromAddIn().
|
static |
Definition at line 635 of file global.cxx.
References bThreadedGroupCalcInProgress, and xStarCalcFunctionMgr.
Referenced by ScTabViewShell::CreateRefDialogController(), ScFuncDesc::getCategory(), ScFormulaDlg::getFunctionManager(), ScFunctionWin::InitLRUList(), ScInputHandler::ShowArgumentsTip(), ScInputHandler::ShowFuncList(), and ScFunctionWin::UpdateFunctionList().
|
static |
A static instance of ScFieldEditEngine not capable of resolving document specific fields, to be used only by ScEditUtil::GetString().
Definition at line 1127 of file global.cxx.
References bThreadedGroupCalcInProgress, and xFieldEditEngine.
Referenced by ScEditUtil::GetString().
|
static |
Definition at line 1026 of file global.cxx.
References comphelper::doubleCheckedInit(), AllSettings::GetLanguageTag(), LanguageTag::getLanguageType(), Application::GetSettings(), p, and pTransliteration.
Referenced by sc::CompareFunc(), ScDBInternalRange::findFieldColumn(), ScExternalRefCache::getCacheTable(), ScAutoNameCache::GetNameOccurrences(), ScExternalRefCache::DocItem::getSingleTableNameAlternative(), GetTransliteration(), ScUserListData::ICompare(), ScExternalRefCache::initializeDoc(), ScDPItemData::IsCaseInsEqual(), ScConditionEntry::IsValidStr(), lcl_CharFromCombo(), DefaultFirstEntry::operator()(), ScTypedStrData::EqualCaseInsensitive::operator()(), ScDBData::less::operator()(), ScCompiler::ParseColRowName(), ScDPObject::ParseFilters(), ScCompiler::ParseTableRefColumn(), ScTableLink::Refresh(), ScDocument::RenameTab(), ScQueryEvaluator::setupTransliteratorIfNeeded(), and ScDPCache::ValidQuery().
|
static |
Definition at line 1050 of file global.cxx.
References GetCaseTransliteration(), and GetTransliteration().
|
static |
Definition at line 685 of file global.cxx.
References comphelper::doubleCheckedInit(), and pUnitConverter.
Referenced by ScInterpreter::ScConvertOOo().
|
static |
Definition at line 288 of file global.cxx.
References bThreadedGroupCalcInProgress, global_InitAppOptions(), and xUserList.
Referenced by ScTable::CompareCell(), ScModule::CreateItemSet(), ScDBFunc::DataPilotSort(), ScGridWindow::DPSetupFieldPopup(), ExcAutoFilterRecs::ExcAutoFilterRecs(), ScTable::FillAnalyse(), ScTabPageSortOptions::FillUserSortListBox(), ScTpSubTotalOptions::FillUserSortListBox(), oox::xls::AutoFilter::finalizeImport(), ScSpreadsheetSettings::getPropertyValue(), lcl_GetSortList(), and ScSpreadsheetSettings::setPropertyValue().
|
static |
Definition at line 127 of file global.cxx.
References SfxItemPool::GetDefaultItem(), SfxItemSet::GetItemState(), and SfxItemSet::GetPool().
Referenced by CheckWidthInvalidate().
|
static |
Definition at line 621 of file global.cxx.
References xStarCalcFunctionList.
Referenced by ScUnoAddInCollection::UpdateFromAddIn().
|
static |
Definition at line 448 of file global.cxx.
References aStrClipDocName, ATTR_BACKGROUND(), COL_TRANSPARENT(), eLnge, ScParameterClassification::Init(), InitAddIns(), InitPPT(), LANGUAGE_SYSTEM, oSysLocale, ScResId(), xButtonBrushItem, and xEmptyBrushItem.
Referenced by ScDLL::Init().
|
static |
Definition at line 44 of file globalx.cxx.
References ucbhelper::Content::createCursor(), Exception, SvtPathOptions::GetAddinPath(), INetURLObject::GetMainURL(), comphelper::getProcessComponentContext(), InitExternalFunc(), utl::ConfigManager::IsFuzzing(), INetURLObject::NONE, INetURLObject::setFinalSlash(), INetURLObject::SetSmartURL(), and TOOLS_WARN_EXCEPTION.
Referenced by Init().
|
staticprivate |
Definition at line 474 of file global.cxx.
References Application::GetDefaultDevice(), OutputDevice::GetDPIX(), OutputDevice::GetDPIY(), o3tl::in, comphelper::LibreOfficeKit::isActive(), OutputDevice::LogicToPixel(), nScreenPPTX, nScreenPPTY, o3tl::twip, Point::X(), and Point::Y().
Referenced by Init().
|
static |
Definition at line 505 of file global.cxx.
References ATTR_MARGIN(), ATTR_PATTERN(), ScPatternAttr::fillFontOnly(), SvxMarginItem::GetBottomMargin(), Application::GetDefaultDevice(), SfxItemPool::GetDefaultItem(), ScPatternAttr::GetItem(), SvxMarginItem::GetTopMargin(), nDefFontHeight, nStdRowHeight, and STD_ROWHEIGHT_DIFF.
|
static |
Returns true, if the first and last character of the string is cQuote.
Definition at line 715 of file global.cxx.
Referenced by EraseQuotes().
|
static |
Definition at line 895 of file global.cxx.
References Application::GetSettings(), and MsLangId::isRightToLeft().
Referenced by ScTabViewShell::Construct(), ScStyleSheet::GetItemSet(), ScPrintFunc::MakeEditEngine(), and ScTable::ScTable().
|
static |
Open the specified URL.
bIgnoreSettings | - If true, ignore security settings (Ctrl-Click) and just open the URL. |
Definition at line 810 of file global.cxx.
References SfxViewFrame::Current(), SfxDispatcher::ExecuteList(), GetAbsDocName(), SfxViewFrame::GetDispatcher(), SfxObjectShell::GetMedium(), SfxMedium::GetName(), SfxViewFrame::GetObjectShell(), SfxViewShell::GetViewFrame(), KEY_SHIFT, nScClickMouseModifier, pScActiveViewShell, rTarget, CntUnencodedStringItem::SetValue(), and ShouldOpenURL().
Referenced by ScViewFunc::DetectiveMarkPred(), ScDrawShell::ExecDrawAttr(), ScDrawTextObjectBar::Execute(), ScEditShell::Execute(), ScFieldEditEngine::FieldClicked(), FuSelection::MouseButtonDown(), and ScGridWindow::MouseButtonUp().
|
static |
Replaces the first occurrence of rPlaceholder in rString with rReplacement, or if rPlaceholder is not found appends one space if rString does not end in a space and appends rReplacement.
Meant to be used with resource strings ala "Column %1" where a translation may have omitted the %1 placeholder and a simple replacement would end up with nothing replaced so no column indicator in the result string.
Definition at line 1147 of file global.cxx.
Referenced by ScFilterDlg::FillFieldLists(), ScPivotFilterDlg::FillFieldLists(), ScTpSubTotalGroup::FillListBoxes(), and sc::SearchResultsDlg::FillResults().
|
static |
Definition at line 644 of file global.cxx.
References maInputHandlerFunctionNames, xStarCalcFunctionList, and xStarCalcFunctionMgr.
Referenced by ScAddInCfg::Notify(), and ScDocShell::SetFormulaOptions().
|
static |
Definition at line 499 of file global.cxx.
References aStrClipDocName, and bThreadedGroupCalcInProgress.
Referenced by ScViewFunc::CopyToClipSingleRange(), and ScViewFunc::PasteDataFormat().
|
static |
Definition at line 238 of file global.cxx.
References bThreadedGroupCalcInProgress, SvxSearchItem::Clone(), and xSearchItem.
Referenced by ScTabViewShell::ExecSearch(), ScVbaRange::Find(), and ScVbaRange::Replace().
|
static |
Definition at line 299 of file global.cxx.
References bThreadedGroupCalcInProgress, and xUserList.
Referenced by ScModule::ModifyOptions(), and ScAppCfg::ReadSortListCfg().
|
static |
Whether the URL can be opened according to current security options (Click/Ctrl-Click)
Definition at line 876 of file global.cxx.
References SvtSecurityOptions::CtrlClickHyperlink, SvtSecurityOptions::IsOptionSet(), KEY_MOD1, and nScClickMouseModifier.
Referenced by ScGridWindow::HandleMouseButtonDown(), FuSelection::MouseButtonDown(), ScGridWindow::MouseMove(), and OpenURL().
|
inlinestatic |
Definition at line 631 of file global.hxx.
Referenced by AlphaToCol(), and ScImportExport::Sylk2Doc().
|
static |
strchr() functionality on unicode, as long as we need it for FormulaToken etc.
Definition at line 691 of file global.cxx.
Referenced by ScDocShell::AfterXMLLoading(), ScInputHandler::InitRangeFinder(), lcl_isFieldEnd(), lcl_isFieldEndQuote(), ScRange::Parse_XL_Header(), and ScImportExport::ScanNextFieldFromString().
|
staticprivate |
Definition at line 516 of file global.hxx.
Referenced by GetClipDocName(), Init(), and SetClipDocName().
|
static |
Calc's threaded group calculation is in progress.
Definition at line 828 of file global.hxx.
Referenced by ClearAutoFormat(), GetButtonBrushItem(), GetCalendar(), GetEnglishFormatter(), GetOrCreateAutoFormat(), GetSearchItem(), GetStarCalcFunctionList(), GetStarCalcFunctionMgr(), GetStaticFieldEditEngine(), GetUserList(), ScDocument::IsThreadedGroupCalcInProgress(), SetClipDocName(), SetSearchItem(), ScDocument::SetThreadedGroupCalcInProgress(), and SetUserList().
|
staticconstexpr |
Definition at line 561 of file global.hxx.
Referenced by ScUserList::AddDefaults(), and ScUserListData::InitTokens().
|
static |
Definition at line 560 of file global.hxx.
Referenced by ScFormulaDlg::calculateValue(), ScMyCellInfo::CreateCell(), ScViewFunc::EnterData(), ScCellShell::ExecuteDB(), ScCellShell::ExecuteEdit(), ScFormatShell::ExecuteNumFormat(), oox::xls::NumberFormat::fillToItemSet(), FormCache::FormCache(), ScDPCollection::DBCaches::getCache(), ScEditUtil::GetCellFieldValue(), ScDPUtil::getDateGroupName(), ScStyleSheet::GetItemSet(), GetStandardFormat(), ScMatrixImpl::GetString(), ScDocument::GetStringForFormula(), ScInterpreter::GetStringFromDouble(), Init(), ScViewFunc::InsertCurrentTime(), ScValidationData::isFormulaResultsValidatable(), lcl_Calculate(), ScMatrixImpl::MatConcat(), ScDatabaseDocUtil::PutData(), XclImpChangeTrack::ReadCell(), ScInterpreter::ScCurrency(), ScDocument::ScDocument(), ScDocumentPool::ScDocumentPool(), ScInterpreter::ScFixed(), ScInterpreter::ScGetPivotData(), ScInterpreter::ScText(), ScViewFunc::SetNumberFormat(), ScViewFunc::SetNumFmtByStr(), ScImportExport::Sylk2Doc(), sc::DateTimeTransformation::Transform(), and ScDPCollection::DBCaches::updateCache().
|
staticprivate |
Definition at line 539 of file global.hxx.
Referenced by GetInputHandlerFunctionNames(), and ResetFunctionList().
|
static |
Definition at line 595 of file global.hxx.
Referenced by InitTextHeight().
|
static |
Definition at line 599 of file global.hxx.
Referenced by ScDocShell::ConvertFrom(), and ScCellShell::Execute().
|
static |
Definition at line 598 of file global.hxx.
Referenced by ScCellShell::Execute(), and ScEEImport::WriteToDocument().
|
static |
Horizontal pixel per twips factor.
Definition at line 589 of file global.hxx.
Referenced by ScBlockUndo::AdjustHeight(), ScDrawView::CalcNormScale(), ScDocShell::CalcOutputFactor(), ScViewData::CalcPPT(), ScTabView::CalcZoom(), ScDocShell::ConvertFrom(), ScPreview::GetOptimalZoom(), InitPPT(), ScUndoAutoFormat::Redo(), ScModelObj::setClientZoom(), ScViewData::SetScreen(), and ScEEImport::WriteToDocument().
|
static |
Vertical pixel per twips factor.
Definition at line 591 of file global.hxx.
Referenced by ScBlockUndo::AdjustHeight(), ScDrawView::CalcNormScale(), ScViewData::CalcPPT(), ScTabView::CalcZoom(), ScDocShell::ConvertFrom(), ScPreview::GetOptimalZoom(), InitPPT(), ScUndoAutoFormat::Redo(), ScModelObj::setClientZoom(), ScViewData::SetScreen(), and ScEEImport::WriteToDocument().
|
static |
Definition at line 596 of file global.hxx.
Referenced by ScTable::GetOptimalMinRowHeight(), ScDocument::GetSheetOptimalMinRowHeight(), GetStandardRowHeight(), ScDocShell::InitNew(), InitTextHeight(), and XclImpColRowSettings::SetDefHeight().
|
staticprivate |
Definition at line 528 of file global.hxx.
Referenced by Clear(), and GetCalendar().
|
static |
Definition at line 544 of file global.hxx.
Referenced by Clear(), ScQueryEvaluator::compareByString(), sc::CompareFunc(), ScInputWindow::dispose(), getCharClass(), getLocaleData(), Init(), ScCellKeywordTranslator::transKeyword(), and ScDPCache::ValidQuery().
|
staticprivate |
Definition at line 514 of file global.hxx.
Referenced by Clear(), and GetAddInCollection().
|
staticprivate |
Definition at line 529 of file global.hxx.
Referenced by Clear(), and GetCaseCollator().
|
staticprivate |
Definition at line 532 of file global.hxx.
Referenced by Clear(), and GetCaseTransliteration().
|
staticprivate |
Definition at line 530 of file global.hxx.
Referenced by Clear(), and GetCollator().
|
staticprivate |
Definition at line 513 of file global.hxx.
Referenced by Clear(), and GetLegacyFuncCollection().
|
staticprivate |
Definition at line 533 of file global.hxx.
Referenced by Clear(), and GetLocale().
|
staticprivate |
Definition at line 537 of file global.hxx.
Referenced by Clear(), and GetSharedStringPoolPurge().
|
staticprivate |
Definition at line 531 of file global.hxx.
Referenced by Clear(), and GetTransliteration().
|
staticprivate |
Definition at line 523 of file global.hxx.
Referenced by Clear(), and GetUnitConverter().
|
staticprivate |
Definition at line 512 of file global.hxx.
Referenced by ClearAutoFormat(), GetAutoFormat(), and GetOrCreateAutoFormat().
|
staticprivate |
Definition at line 518 of file global.hxx.
Referenced by Clear(), GetButtonBrushItem(), and Init().
|
static |
Definition at line 593 of file global.hxx.
Referenced by Clear(), ScViewFunc::CopyToClipMultiRange(), ScViewFunc::CopyToClipSingleRange(), ScDrawView::CopyToTransferable(), ScDrawView::DoCopy(), and ScTransferObj::SetDrawClipDoc().
|
staticprivate |
Definition at line 517 of file global.hxx.
Referenced by Clear(), GetEmptyBrushItem(), and Init().
|
staticprivate |
Definition at line 525 of file global.hxx.
Referenced by Clear(), and GetEnglishFormatter().
|
staticprivate |
Definition at line 535 of file global.hxx.
Referenced by Clear(), and GetStaticFieldEditEngine().
|
staticprivate |
Definition at line 527 of file global.hxx.
Referenced by GetOrdinalSuffix().
|
staticprivate |
Definition at line 511 of file global.hxx.
Referenced by Clear(), GetSearchItem(), and SetSearchItem().
|
staticprivate |
Definition at line 520 of file global.hxx.
Referenced by Clear(), GetStarCalcFunctionList(), HasStarCalcFunctionList(), and ResetFunctionList().
|
staticprivate |
Definition at line 521 of file global.hxx.
Referenced by Clear(), GetStarCalcFunctionMgr(), and ResetFunctionList().
|
staticprivate |
Definition at line 515 of file global.hxx.
Referenced by Clear(), GetUserList(), and SetUserList().