tdf#48459 sw inline heading: don't apply inside frames or over 120 chars
[LibreOffice.git] / sc / inc / queryentry.hxx
blob9798b83df78574a68395710638e616f6b0299f7d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #pragma once
22 #include "global.hxx"
23 #include <svl/sharedstring.hxx>
24 #include <unotools/textsearch.hxx>
25 #include <tools/color.hxx>
27 #include <memory>
28 #include <vector>
30 /**
31 * Each instance of this struct represents a single filtering criteria.
33 struct SC_DLLPUBLIC ScQueryEntry final
35 enum QueryType
37 ByValue,
38 ByString,
39 ByDate,
40 ByEmpty,
41 ByTextColor,
42 ByBackgroundColor,
45 struct SAL_DLLPRIVATE Item
47 QueryType meType;
48 double mfVal;
49 svl::SharedString maString;
50 Color maColor;
51 bool mbMatchEmpty;
52 bool mbRoundForFilter;
54 Item() : meType(ByValue), mfVal(0.0), mbMatchEmpty(false), mbRoundForFilter(false) {}
56 bool operator== (const Item& r) const;
58 typedef std::vector<Item> QueryItemsType;
60 bool bDoQuery;
61 SCCOLROW nField;
62 ScQueryOp eOp;
63 ScQueryConnect eConnect;
64 mutable std::unique_ptr<utl::SearchParam> pSearchParam; ///< if Wildcard or RegExp, not saved
65 mutable std::unique_ptr<utl::TextSearch> pSearchText; ///< if Wildcard or RegExp, not saved
67 ScQueryEntry();
68 ScQueryEntry(const ScQueryEntry& r);
69 ~ScQueryEntry();
71 /// creates pSearchParam and pSearchText if necessary
72 utl::TextSearch* GetSearchTextPtr( utl::SearchParam::SearchType eSearchType, bool bCaseSens,
73 bool bWildMatchSel ) const;
75 QueryItemsType& GetQueryItems() { return maQueryItems;}
76 const QueryItemsType& GetQueryItems() const { return maQueryItems;}
77 void SetQueryByEmpty();
78 bool IsQueryByEmpty() const;
79 void SetQueryByNonEmpty();
80 bool IsQueryByNonEmpty() const;
81 void SetQueryByTextColor(Color color);
82 bool IsQueryByTextColor() const;
83 void SetQueryByBackgroundColor(Color color);
84 bool IsQueryByBackgroundColor() const;
85 const Item& GetQueryItem() const { return GetQueryItemImpl(); }
86 Item& GetQueryItem() { return GetQueryItemImpl(); }
87 void Clear();
88 ScQueryEntry& operator=( const ScQueryEntry& r );
89 bool operator==( const ScQueryEntry& r ) const;
91 private:
92 Item& GetQueryItemImpl() const;
94 /**
95 * Stores all query items. It must contain at least one item at all times
96 * (for single equality match queries or comparative queries). It may
97 * contain multiple items for multi-equality match queries.
99 mutable QueryItemsType maQueryItems;
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */