LibreOffice Module sc (master) 1
queryentry.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include "global.hxx"
23#include <svl/sharedstring.hxx>
25#include <tools/color.hxx>
26
27#include <memory>
28#include <vector>
29
34{
36 {
43 };
44
45 struct SAL_DLLPRIVATE Item
46 {
48 double mfVal;
53
54 Item() : meType(ByValue), mfVal(0.0), mbMatchEmpty(false), mbRoundForFilter(false) {}
55
56 bool operator== (const Item& r) const;
57 };
58 typedef std::vector<Item> QueryItemsType;
59
64 mutable std::unique_ptr<utl::SearchParam> pSearchParam;
65 mutable std::unique_ptr<utl::TextSearch> pSearchText;
66
68 ScQueryEntry(const ScQueryEntry& r);
70
72 utl::TextSearch* GetSearchTextPtr( utl::SearchParam::SearchType eSearchType, bool bCaseSens,
73 bool bWildMatchSel ) const;
74
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;
90
91private:
92 Item& GetQueryItemImpl() const;
93
100};
101
102/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
ScQueryConnect
Definition: global.hxx:854
ScQueryOp
Definition: global.hxx:834
void Clear(EHistoryType eHistory)
#define SC_DLLPUBLIC
Definition: scdllapi.h:27
double mfVal
Definition: scmatrix.cxx:3482
svl::SharedString maString
Definition: queryentry.hxx:49
Each instance of this struct represents a single filtering criteria.
Definition: queryentry.hxx:34
SCCOLROW nField
Definition: queryentry.hxx:61
const Item & GetQueryItem() const
Definition: queryentry.hxx:85
ScQueryConnect eConnect
Definition: queryentry.hxx:63
std::vector< Item > QueryItemsType
Definition: queryentry.hxx:58
Item & GetQueryItem()
Definition: queryentry.hxx:86
const QueryItemsType & GetQueryItems() const
Definition: queryentry.hxx:76
std::unique_ptr< utl::TextSearch > pSearchText
if Wildcard or RegExp, not saved
Definition: queryentry.hxx:65
ScQueryOp eOp
Definition: queryentry.hxx:62
QueryItemsType maQueryItems
Stores all query items.
Definition: queryentry.hxx:99
std::unique_ptr< utl::SearchParam > pSearchParam
if Wildcard or RegExp, not saved
Definition: queryentry.hxx:64
QueryItemsType & GetQueryItems()
Definition: queryentry.hxx:75
sal_Int32 SCCOLROW
a type capable of holding either SCCOL or SCROW
Definition: types.hxx:23
RedlineType meType
bool operator==(const XclFontData &rLeft, const XclFontData &rRight)
Definition: xlstyle.cxx:518