nss: upgrade to release 3.73
[LibreOffice.git] / sc / inc / userlist.hxx
blobba3ac290153aad8831e47fbdfdb19e7a635caa0e
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SC_INC_USERLIST_HXX
21 #define INCLUDED_SC_INC_USERLIST_HXX
23 #include "scdllapi.h"
25 #include <rtl/ustring.hxx>
27 #include <memory>
28 #include <vector>
30 /**
31 * Stores individual user-defined sort list.
33 class SC_DLLPUBLIC ScUserListData
35 public:
36 struct SAL_DLLPRIVATE SubStr
38 OUString maReal;
39 OUString maUpper;
40 SubStr(const OUString& rReal, const OUString& rUpper);
43 private:
44 typedef std::vector<SubStr> SubStringsType;
45 SubStringsType maSubStrings;
46 OUString aStr;
48 SAL_DLLPRIVATE void InitTokens();
50 public:
51 ScUserListData(const OUString& rStr);
52 ScUserListData(const ScUserListData& rData);
53 ~ScUserListData();
55 const OUString& GetString() const { return aStr; }
56 void SetString(const OUString& rStr);
57 size_t GetSubCount() const;
58 bool GetSubIndex(const OUString& rSubStr, sal_uInt16& rIndex, bool& bMatchCase) const;
59 OUString GetSubStr(sal_uInt16 nIndex) const;
60 sal_Int32 Compare(const OUString& rSubStr1, const OUString& rSubStr2) const;
61 sal_Int32 ICompare(const OUString& rSubStr1, const OUString& rSubStr2) const;
64 /**
65 * Collection of user-defined sort lists.
67 class SC_DLLPUBLIC ScUserList
69 typedef std::vector<std::unique_ptr<ScUserListData>> DataType;
70 DataType maData;
72 public:
73 typedef DataType::iterator iterator;
74 typedef DataType::const_iterator const_iterator;
76 ScUserList();
77 ScUserList(const ScUserList& r);
79 const ScUserListData* GetData(const OUString& rSubStr) const;
80 /// If the list in rStr is already inserted
81 bool HasEntry(const OUString& rStr) const;
83 const ScUserListData& operator[](size_t nIndex) const;
84 ScUserListData& operator[](size_t nIndex);
85 ScUserList& operator=(const ScUserList& r);
86 bool operator==(const ScUserList& r) const;
87 bool operator!=(const ScUserList& r) const;
89 iterator begin();
90 const_iterator begin() const;
91 void clear();
92 size_t size() const;
93 void push_back(ScUserListData* p);
94 void erase(const iterator& itr);
97 #endif
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */