office-gobmx/sc/inc/stringutil.hxx
Luboš Luňák 1946794ae0 mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk
have kept them, in order not to break external API (the automatic using declaration
is LO-internal).

Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
2013-04-07 14:23:11 +02:00

145 lines
4.4 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef SC_STRINGUTIL_HXX
#define SC_STRINGUTIL_HXX
#include "rtl/ustring.hxx"
#include "tools/string.hxx"
#include "scdllapi.h"
#include "i18nlangtag/lang.h"
class SvNumberFormatter;
/**
* Store parameters used in the ScDocument::SetString() method. Various
* options for string-setting operation are specified herein.
*/
struct SC_DLLPUBLIC ScSetStringParam
{
enum TextFormatPolicy
{
/**
* Set Text number format no matter what the input string is.
*/
Always,
/**
* Set Text number format only when the input string is considered a
* special number but we only want to detect a simple number.
*/
SpecialNumberOnly,
/**
* Never set Text number format.
*/
Never
};
/**
* Stores the pointer to the number formatter instance to be used during
* number format detection. The caller must manage the life cycle of the
* instance.
*/
SvNumberFormatter* mpNumFormatter;
/**
* When true, we try to detect special number format (dates etc) from the
* input string, when false, we only try to detect a basic decimal number
* format.
*/
bool mbDetectNumberFormat;
/**
* Determine when to set the 'Text' number format to the cell where the
* input string is being set.
*/
TextFormatPolicy meSetTextNumFormat;
/**
* When true, treat input with a leading apostrophe as an escape character
* for a numeric value content, to treat the numeric value as a text. When
* false, the whole string input including the leading apostrophe will be
* entered literally as string.
*/
bool mbHandleApostrophe;
ScSetStringParam();
/**
* Call this whenever you need to unconditionally set input as text, no
* matter what the input is.
*/
void setTextInput();
/**
* Call this whenever you need to maximize the chance of input being
* detected as a numeric value (numbers, dates, times etc).
*/
void setNumericInput();
};
// ============================================================================
struct ScInputStringType
{
enum StringType { Unknown = 0, Text, Formula, Number };
StringType meType;
OUString maText;
double mfValue;
short mnFormatType;
};
class ScStringUtil
{
public:
/**
* Check if a given string is a simple decimal number (e.g. 12.345). We
* don't do any elaborate parsing here; we only check for the simplest
* case of decimal number format.
*
* Note that preceding and trailing spaces are ignored during parsing.
*
* @param rStr string to parse
* @param dsep decimal separator
* @param gsep group separator (aka thousands separator)
* @param rVal value of successfully parsed number
*
* @return true if the string is a valid number, false otherwise.
*/
static bool parseSimpleNumber(
const OUString& rStr, sal_Unicode dsep, sal_Unicode gsep, double& rVal);
static sal_Int32 SC_DLLPUBLIC GetQuotedTokenCount(const OUString &rIn, const OUString& rQuotedPairs, sal_Unicode cTok = ';' );
static OUString SC_DLLPUBLIC GetQuotedToken(const OUString &rIn, sal_Int32 nToken, const OUString& rQuotedPairs,
sal_Unicode cTok, sal_Int32& rIndex );
static bool SC_DLLPUBLIC isMultiline( const OUString& rStr );
static ScInputStringType parseInputString(
SvNumberFormatter& rFormatter, const OUString& rStr, LanguageType eLang );
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */