ca7e81099b
Change-Id: Ib3c0d6c158e5efbbca55e03f189dccaf67832a96 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119888 Reviewed-by: Hossein <hossein@libreoffice.org> Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> Tested-by: Jenkins
46 lines
2.2 KiB
C++
46 lines
2.2 KiB
C++
/* -*- 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/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#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);
|
|
}
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
|