LCOV - code coverage report
Current view: top level - sc/inc - stringutil.hxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 1 1 100.0 %
Date: 2015-06-13 12:38:46 Functions: 2 2 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : #ifndef INCLUDED_SC_INC_STRINGUTIL_HXX
      21             : #define INCLUDED_SC_INC_STRINGUTIL_HXX
      22             : 
      23             : #include <rtl/ustring.hxx>
      24             : #include "scdllapi.h"
      25             : #include <i18nlangtag/lang.h>
      26             : #include <types.hxx>
      27             : 
      28             : class SvNumberFormatter;
      29             : 
      30             : /**
      31             :  * Store parameters used in the ScDocument::SetString() method.  Various
      32             :  * options for string-setting operation are specified herein.
      33             :  */
      34             : struct SC_DLLPUBLIC ScSetStringParam
      35             : {
      36             :     enum TextFormatPolicy
      37             :     {
      38             :         /**
      39             :          * Set Text number format no matter what the input string is.
      40             :          */
      41             :         Always,
      42             : 
      43             :         /**
      44             :          * Set Text number format only when the input string is considered a
      45             :          * special number but we only want to detect a simple number.
      46             :          */
      47             :         SpecialNumberOnly,
      48             : 
      49             :         /**
      50             :          * Never set Text number format.
      51             :          */
      52             :         Never
      53             :     };
      54             : 
      55             :     /**
      56             :      * Stores the pointer to the number formatter instance to be used during
      57             :      * number format detection.  The caller must manage the life cycle of the
      58             :      * instance.
      59             :      */
      60             :     SvNumberFormatter* mpNumFormatter;
      61             : 
      62             :     /**
      63             :      * When true, we try to detect special number format (dates etc) from the
      64             :      * input string, when false, we only try to detect a basic decimal number
      65             :      * format.
      66             :      */
      67             :     bool mbDetectNumberFormat;
      68             : 
      69             :     /**
      70             :      * Determine when to set the 'Text' number format to the cell where the
      71             :      * input string is being set.
      72             :      */
      73             :     TextFormatPolicy meSetTextNumFormat;
      74             : 
      75             :     /**
      76             :      * When true, treat input with a leading apostrophe as an escape character
      77             :      * for a numeric value content, to treat the numeric value as a text. When
      78             :      * false, the whole string input including the leading apostrophe will be
      79             :      * entered literally as string.
      80             :      */
      81             :     bool mbHandleApostrophe;
      82             : 
      83             :     sc::StartListeningType meStartListening;
      84             : 
      85             :     ScSetStringParam();
      86             : 
      87             :     /**
      88             :      * Call this whenever you need to unconditionally set input as text, no
      89             :      * matter what the input is.
      90             :      */
      91             :     void setTextInput();
      92             : 
      93             :     /**
      94             :      * Call this whenever you need to maximize the chance of input being
      95             :      * detected as a numeric value (numbers, dates, times etc).
      96             :      */
      97             :     void setNumericInput();
      98             : };
      99             : 
     100        4872 : struct ScInputStringType
     101             : {
     102             :     enum StringType { Unknown = 0, Text, Formula, Number };
     103             : 
     104             :     StringType meType;
     105             : 
     106             :     OUString maText;
     107             :     double mfValue;
     108             :     short mnFormatType;
     109             : };
     110             : 
     111             : class ScStringUtil
     112             : {
     113             : public:
     114             : 
     115             :     /**
     116             :      * Check if a given string is a simple decimal number (e.g. 12.345). We
     117             :      * don't do any elaborate parsing here; we only check for the simplest
     118             :      * case of decimal number format.
     119             :      *
     120             :      * Note that preceding and trailing spaces are ignored during parsing.
     121             :      *
     122             :      * @param rStr string to parse
     123             :      * @param dsep decimal separator
     124             :      * @param gsep group separator (aka thousands separator)
     125             :      * @param rVal value of successfully parsed number
     126             :      *
     127             :      * @return true if the string is a valid number, false otherwise.
     128             :      */
     129             :     static bool parseSimpleNumber(
     130             :         const OUString& rStr, sal_Unicode dsep, sal_Unicode gsep, double& rVal);
     131             : 
     132             :     static bool parseSimpleNumber(
     133             :         const char* p, size_t n, char dsep, char gsep, double& rVal);
     134             : 
     135             :     static sal_Int32 SC_DLLPUBLIC GetQuotedTokenCount(const OUString &rIn, const OUString& rQuotedPairs, sal_Unicode cTok = ';' );
     136             :     static OUString  SC_DLLPUBLIC GetQuotedToken(const OUString &rIn, sal_Int32 nToken, const OUString& rQuotedPairs,
     137             :                                         sal_Unicode cTok,  sal_Int32& rIndex );
     138             : 
     139             :     static bool SC_DLLPUBLIC isMultiline( const OUString& rStr );
     140             : 
     141             :     static ScInputStringType parseInputString(
     142             :         SvNumberFormatter& rFormatter, const OUString& rStr, LanguageType eLang );
     143             : };
     144             : 
     145             : #endif
     146             : 
     147             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11