summaryrefslogtreecommitdiff
path: root/sc/inc/filterentries.hxx
blob: 6cbe4c43a9298ce344e30ea1054b5c5daf88c2d9 (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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef SC_INC_FILTERENTRIES_HXX
#define SC_INC_FILTERENTRIES_HXX

#include <sal/config.h>
#include "typedstrdata.hxx"
#include <vector>
#include <tools/color.hxx>

struct ScFilterEntries
{
    std::vector<ScTypedStrData> maStrData;
    bool                        mbHasDates;
    bool                        mbHasEmpties;
    std::set<Color>             maTextColors;
    std::set<Color>             maBackgroundColors;

    ScFilterEntries() : mbHasDates(false), mbHasEmpties(false) {}

    std::vector<ScTypedStrData>::iterator       begin()         { return maStrData.begin(); }
    std::vector<ScTypedStrData>::iterator       end()           { return maStrData.end(); }
    std::vector<ScTypedStrData>::const_iterator begin() const   { return maStrData.begin(); }
    std::vector<ScTypedStrData>::const_iterator end()   const   { return maStrData.end(); }
    std::vector<ScTypedStrData>::size_type      size()  const   { return maStrData.size(); }
          ScTypedStrData&                       front()         { return maStrData.front(); }
    const ScTypedStrData&                       front() const   { return maStrData.front(); }
    bool                                        empty() const   { return maStrData.empty(); }
    void                                        push_back( const ScTypedStrData& r ) { maStrData.push_back(r); }
    void                                        push_back( ScTypedStrData&& r )      { maStrData.push_back(r); }
    std::set<Color>& getTextColors() { return maTextColors; };
    void addTextColor(const Color& aTextColor) { maTextColors.emplace(aTextColor); }
    std::set<Color>& getBackgroundColors() { return maBackgroundColors; };
    void addBackgroundColor(const Color& aBackgroundColor)
    {
        maBackgroundColors.emplace(aBackgroundColor);
    }
};

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */