Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / inc / typedstrdata.hxx
blobd0cb0d9fa4ad3336ef91da0e95ec6d4a9c3f9af3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 */
10 #ifndef INCLUDED_SC_INC_TYPEDSTRDATA_HXX
11 #define INCLUDED_SC_INC_TYPEDSTRDATA_HXX
13 #include <rtl/ustring.hxx>
14 #include "scdllapi.h"
16 #include <set>
18 class ScTypedStrData
20 public:
21 enum StringType {
22 Value = 0,
23 Standard = 1,
24 Name = 2,
25 DbName = 3,
26 Header = 4
29 ScTypedStrData( const OUString& rStr, double nVal = 0.0,
30 StringType eType = Standard, bool bDate = false );
32 ScTypedStrData( const ScTypedStrData& rCpy );
34 bool IsDate() const { return mbIsDate;}
35 const OUString& GetString() const { return maStrValue;}
36 StringType GetStringType() const { return meStrType;}
37 double GetValue() const { return mfValue; }
39 struct LessCaseSensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>
41 bool operator() (const ScTypedStrData& left, const ScTypedStrData& right) const;
44 struct LessCaseInsensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>
46 bool operator() (const ScTypedStrData& left, const ScTypedStrData& right) const;
49 struct EqualCaseSensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>
51 bool operator() (const ScTypedStrData& left, const ScTypedStrData& right) const;
54 struct EqualCaseInsensitive : std::binary_function<ScTypedStrData, ScTypedStrData, bool>
56 bool operator() (const ScTypedStrData& left, const ScTypedStrData& right) const;
59 bool operator< (const ScTypedStrData& r) const;
61 private:
62 OUString maStrValue;
63 double mfValue;
64 StringType meStrType;
65 bool mbIsDate;
68 class FindTypedStrData : public std::unary_function<ScTypedStrData, bool>
70 ScTypedStrData maVal;
71 bool mbCaseSens;
72 public:
73 FindTypedStrData(const ScTypedStrData& rVal, bool bCaseSens);
74 bool operator() (const ScTypedStrData& r) const;
77 typedef std::set<ScTypedStrData, ScTypedStrData::LessCaseSensitive> ScTypedCaseStrSet;
79 #endif
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */