LibreOffice Module sc (master) 1
userlist.hxx
Go to the documentation of this file.
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#pragma once
21
22#include "scdllapi.h"
23
24#include <rtl/ustring.hxx>
25
26#include <memory>
27#include <vector>
28
33{
34public:
35 struct SAL_DLLPRIVATE SubStr
36 {
37 OUString maReal;
38 OUString maUpper;
39 SubStr(OUString aReal, OUString aUpper);
40 };
41
42private:
43 typedef std::vector<SubStr> SubStringsType;
45 OUString aStr;
46
47 SAL_DLLPRIVATE void InitTokens();
48
49public:
50 ScUserListData(OUString aStr);
51 ScUserListData(const ScUserListData& rData);
53
54 const OUString& GetString() const { return aStr; }
55 void SetString(const OUString& rStr);
56 size_t GetSubCount() const;
57 bool GetSubIndex(const OUString& rSubStr, sal_uInt16& rIndex, bool& bMatchCase) const;
58 OUString GetSubStr(sal_uInt16 nIndex) const;
59 sal_Int32 Compare(const OUString& rSubStr1, const OUString& rSubStr2) const;
60 sal_Int32 ICompare(const OUString& rSubStr1, const OUString& rSubStr2) const;
61};
62
67{
68 typedef std::vector<std::unique_ptr<ScUserListData>> DataType;
70
71public:
72 typedef DataType::iterator iterator;
73 typedef DataType::const_iterator const_iterator;
74
75 ScUserList();
76 ScUserList(const ScUserList& r);
77
78 const ScUserListData* GetData(const OUString& rSubStr) const;
80 bool HasEntry(std::u16string_view rStr) const;
81
82 const ScUserListData& operator[](size_t nIndex) const;
83 ScUserListData& operator[](size_t nIndex);
84 ScUserList& operator=(const ScUserList& r);
85 bool operator==(const ScUserList& r) const;
86 bool operator!=(const ScUserList& r) const;
87
90 void clear();
91 size_t size() const;
92 void push_back(ScUserListData* p);
93 void erase(const iterator& itr);
94};
95
96/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Stores individual user-defined sort list.
Definition: userlist.hxx:33
SubStringsType maSubStrings
Definition: userlist.hxx:44
const OUString & GetString() const
Definition: userlist.hxx:54
OUString aStr
Definition: userlist.hxx:45
std::vector< SubStr > SubStringsType
Definition: userlist.hxx:43
Collection of user-defined sort lists.
Definition: userlist.hxx:67
DataType::const_iterator const_iterator
Definition: userlist.hxx:73
DataType maData
Definition: userlist.hxx:69
std::vector< std::unique_ptr< ScUserListData > > DataType
Definition: userlist.hxx:68
DataType::iterator iterator
Definition: userlist.hxx:72
const_iterator begin() const
aStr
void SetString(SwCursor &rCursor, std::u16string_view aString)
size
static short Compare(const OUString &sInput1, const OUString &sInput2, const bool bCaseSens, const ScUserListData *pData, const CollatorWrapper *pCW)
Naturally compares two given strings.
Definition: table3.cxx:162
enumrange< T >::Iterator begin(enumrange< T >)
#define SC_DLLPUBLIC
Definition: scdllapi.h:27
bool operator!=(const XclExpString &rLeft, const XclExpString &rRight)
Definition: xestring.hxx:248
bool operator==(const XclFontData &rLeft, const XclFontData &rRight)
Definition: xlstyle.cxx:517