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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SC_SOURCE_FILTER_INC_AUTOFILTERBUFFER_HXX
#define INCLUDED_SC_SOURCE_FILTER_INC_AUTOFILTERBUFFER_HXX
#include <com/sun/star/table/CellRangeAddress.hpp>
#include <oox/helper/helper.hxx>
#include <oox/helper/refvector.hxx>
#include "workbookhelper.hxx"
namespace com { namespace sun { namespace star {
namespace sheet { struct TableFilterField3; }
namespace sheet { class XDatabaseRange; }
namespace sheet { class XSheetFilterDescriptor3; }
} } }
namespace oox {
namespace xls {
/** Contains UNO API filter settings for a column in a filtered range. */
struct ApiFilterSettings
{
typedef ::std::vector<css::sheet::TableFilterField3> FilterFieldVector;
FilterFieldVector maFilterFields; /// List of UNO API filter settings.
OptValue< bool > mobNeedsRegExp; /// If set, requires regular expressions to be enabled/disabled.
explicit ApiFilterSettings();
void appendField( bool bAnd, sal_Int32 nOperator, double fValue );
void appendField( bool bAnd, sal_Int32 nOperator, const OUString& rValue );
void appendField( bool bAnd, const std::vector<OUString>& rValues );
};
/** Base class for specific filter settings for a column in a filtered range.
*/
class FilterSettingsBase : public WorkbookHelper
{
public:
explicit FilterSettingsBase( const WorkbookHelper& rHelper );
/** Derived classes import filter settings from the passed attribute list. */
virtual void importAttribs( sal_Int32 nElement, const AttributeList& rAttribs );
/** Derived classes import filter settings from the passed record. */
virtual void importRecord( sal_Int32 nRecId, SequenceInputStream& rStrm );
/** Derived classes return converted UNO API filter settings representing all filter settings. */
virtual ApiFilterSettings finalizeImport( sal_Int32 nMaxCount );
};
/** Settings for a discrete filter, specifying a list of values to be shown in
the filtered range.
*/
class DiscreteFilter : public FilterSettingsBase
{
public:
explicit DiscreteFilter( const WorkbookHelper& rHelper );
/** Imports filter settings from the filters and filter elements. */
virtual void importAttribs( sal_Int32 nElement, const AttributeList& rAttribs ) override;
/** Imports filter settings from the FILTERS and FILTER records. */
virtual void importRecord( sal_Int32 nRecId, SequenceInputStream& rStrm ) override;
/** Returns converted UNO API filter settings representing all filter settings. */
virtual ApiFilterSettings finalizeImport( sal_Int32 nMaxCount ) override;
private:
std::vector< OUString > maValues;
sal_Int32 mnCalendarType;
bool mbShowBlank;
};
/** Settings for a top-10 filter. */
class Top10Filter : public FilterSettingsBase
{
public:
explicit Top10Filter( const WorkbookHelper& rHelper );
/** Imports filter settings from the filters and filter elements. */
virtual void importAttribs( sal_Int32 nElement, const AttributeList& rAttribs ) override;
/** Imports filter settings from the FILTERS and FILTER records. */
virtual void importRecord( sal_Int32 nRecId, SequenceInputStream& rStrm ) override;
/** Returns converted UNO API filter settings representing all filter settings. */
virtual ApiFilterSettings finalizeImport( sal_Int32 nMaxCount ) override;
private:
double mfValue; /// Number of items or percentage.
bool mbTop; /// True = show top (greatest) items/percentage.
bool mbPercent; /// True = percentage, false = number of items.
};
/** A filter criterion for a custom filter. */
struct FilterCriterionModel
{
css::uno::Any maValue; /// Comparison operand.
sal_Int32 mnOperator; /// Comparison operator.
sal_uInt8 mnDataType; /// Operand data type (BIFF only).
explicit FilterCriterionModel();
/** Sets the passed BIFF operator constant. */
void setBiffOperator( sal_uInt8 nOperator );
/** Imports the criterion model from the passed BIFF12 stream. */
void readBiffData( SequenceInputStream& rStrm );
};
/** Settings for a custom filter, specifying one or two comparison operators
associated with some values.
*/
class CustomFilter : public FilterSettingsBase
{
public:
explicit CustomFilter( const WorkbookHelper& rHelper );
/** Imports filter settings from the filters and filter elements. */
virtual void importAttribs( sal_Int32 nElement, const AttributeList& rAttribs ) override;
/** Imports filter settings from the FILTERS and FILTER records. */
virtual void importRecord( sal_Int32 nRecId, SequenceInputStream& rStrm ) override;
/** Returns converted UNO API filter settings representing all filter settings. */
virtual ApiFilterSettings finalizeImport( sal_Int32 nMaxCount ) override;
private:
/** Appends the passed filter criterion, if it contains valid settings. */
void appendCriterion( const FilterCriterionModel& rCriterion );
private:
typedef ::std::vector< FilterCriterionModel > FilterCriterionVector;
FilterCriterionVector maCriteria;
bool mbAnd;
};
/** A column in a filtered range. Contains an object with specific filter
settings for the cells in the column.
*/
class FilterColumn : public WorkbookHelper
{
public:
explicit FilterColumn( const WorkbookHelper& rHelper );
/** Imports auto filter column settings from the filterColumn element. */
void importFilterColumn( const AttributeList& rAttribs );
/** Imports auto filter column settings from the FILTERCOLUMN record. */
void importFilterColumn( SequenceInputStream& rStrm );
/** Creates and returns the specified filter settings object. */
template< typename FilterSettingsType >
inline FilterSettingsBase& createFilterSettings()
{ mxSettings.reset( new FilterSettingsType( *this ) ); return *mxSettings; }
/** Returns converted UNO API filter settings representing all filter
settings of this column. */
ApiFilterSettings finalizeImport( sal_Int32 nMaxCount );
private:
std::shared_ptr< FilterSettingsBase >
mxSettings;
sal_Int32 mnColId;
bool mbHiddenButton;
bool mbShowButton;
};
class AutoFilter : public WorkbookHelper
{
public:
explicit AutoFilter( const WorkbookHelper& rHelper );
/** Imports auto filter settings from the autoFilter element. */
void importAutoFilter( const AttributeList& rAttribs, sal_Int16 nSheet );
/** Imports auto filter settings from the AUTOFILTER record. */
void importAutoFilter( SequenceInputStream& rStrm, sal_Int16 nSheet );
/** Creates a new auto filter column and stores it internally. */
FilterColumn& createFilterColumn();
/** Applies the filter to the passed filter descriptor. */
void finalizeImport( const css::uno::Reference< css::sheet::XSheetFilterDescriptor3>& rxFilterDesc );
private:
typedef RefVector< FilterColumn > FilterColumnVector;
FilterColumnVector maFilterColumns;
css::table::CellRangeAddress maRange;
};
class AutoFilterBuffer : public WorkbookHelper
{
public:
explicit AutoFilterBuffer( const WorkbookHelper& rHelper );
/** Creates a new auto filter and stores it internally. */
AutoFilter& createAutoFilter();
/** Applies filter settings to a new database range object (used for sheet
autofilter or advanced filter as specified by built-in defined names). */
void finalizeImport( sal_Int16 nSheet );
/** Applies the filters to the passed database range object.
@return True = this buffer contains valid auto filter settings. */
bool finalizeImport( const css::uno::Reference< css::sheet::XDatabaseRange >& rxDatabaseRange );
private:
/** Returns the auto filter object used to perform auto filtering. */
AutoFilter* getActiveAutoFilter();
private:
typedef RefVector< AutoFilter > AutoFilterVector;
AutoFilterVector maAutoFilters;
};
} // namespace xls
} // namespace oox
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|