summaryrefslogtreecommitdiffstats
path: root/kspread/valueparser.h
blob: 0d00aa49f47f9a700c5d4aaf4e176b652572ab0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* This file is part of the KDE project
   Copyright 2004 Tomas Mecir <mecirt@gmail.com>
   Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KSPREAD_VALUEPARSER
#define KSPREAD_VALUEPARSER

#include <tqdatetime.h>

#include "kspread_global.h"

class TDELocale;

namespace KSpread
{
class Cell;
class Value;

/**
The ValueParser parses a text input from the user, generating
Value in the desired format.
*/

class ValueParser {
 public:
  /** constructor */
  ValueParser (TDELocale *locale);
  
  TDELocale* locale();
  
  /** try to parse the text in a given cell and set value accordingly */
  void parse (const TQString& str, Cell *cell);

  /** try to parse given text, don't set any cell attributes though */
  Value parse (const TQString &str);
  
  Value tryParseBool (const TQString& str, bool *ok = 0);
  Value tryParseNumber (const TQString& str, bool *ok = 0);
  Value tryParseDate (const TQString& str, bool *ok = 0);
  Value tryParseTime (const TQString& str, bool *ok = 0);
 protected:
 
  TDELocale* parserLocale;

  // Try to parse the text as a bool/number/date/time/etc.
  // Helpers for parse.
  bool tryParseBool (const TQString& str, Cell *cell);
  bool tryParseNumber (const TQString& str, Cell *cell);
  bool tryParseDate (const TQString& str, Cell *cell);
  bool tryParseTime (const TQString& str, Cell *cell);
  
  /** converts a string to a date/time value */
  TQDateTime readTime (const TQString & intstr, bool withSeconds, bool *ok,
      bool & duration);

  /** a helper function to read numbers and distinguish integers and FPs */
  double readNumber(const TQString &_str, bool * ok, bool * isInt);
  /** a helper function to read integers */
  int readInt (const TQString &str, uint &pos);
  FormatType fmtType;
};


}  //namespace KSpread


#endif  //KSPREAD_VALUEPARSER