/* -*- 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 #include "typedstrdata.hxx" #include #include struct ScFilterEntries { std::vector maStrData; bool mbHasDates; bool mbHasEmpties; std::set maTextColors; std::set maBackgroundColors; ScFilterEntries() : mbHasDates(false), mbHasEmpties(false) {} std::vector::iterator begin() { return maStrData.begin(); } std::vector::iterator end() { return maStrData.end(); } std::vector::const_iterator begin() const { return maStrData.begin(); } std::vector::const_iterator end() const { return maStrData.end(); } std::vector::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& getTextColors() { return maTextColors; }; void addTextColor(const Color& aTextColor) { maTextColors.emplace(aTextColor); } std::set& 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: */