tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / reportdesign / inc / conditionalexpression.hxx
blobac814560d80dbf6c4a7368e0158d33fe05781e87
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 #ifndef INCLUDED_REPORTDESIGN_INC_CONDITIONALEXPRESSION_HXX
21 #define INCLUDED_REPORTDESIGN_INC_CONDITIONALEXPRESSION_HXX
23 #include <config_options.h>
24 #include "dllapi.h"
26 #include <rtl/ustring.hxx>
27 #include <map>
28 #include <memory>
30 namespace rptui
34 // = ConditionalExpression
36 class UNLESS_MERGELIBS_MORE(REPORTDESIGN_DLLPUBLIC) ConditionalExpression
38 private:
39 const OUString m_sPattern;
41 public:
42 ConditionalExpression( const char* _pAsciiPattern );
44 /** assembles an expression string from a field data source, and one or two operands
46 OUString assembleExpression( const OUString& _rFieldDataSource, const OUString& _rLHS, const OUString& _rRHS ) const;
48 /** matches the given expression string to the expression pattern represented by the object
49 @param _rExpression
50 the expression to match
51 @param _rFieldDataSource
52 the field data source
53 @param _out_rLHS
54 output parameter taking the left hand side operand, if successful
55 @param _out_rRHS
56 output parameter taking the right hand side operand, if successful
57 @return
58 <TRUE/> if and only if the expression string could be successfully matched to
59 the pattern.
61 bool matchExpression( std::u16string_view _rExpression, const std::u16string_view _rFieldDataSource, OUString& _out_rLHS, OUString& _out_rRHS ) const;
65 //= ConditionType
67 enum ConditionType
69 eFieldValueComparison = 0,
70 eExpression = 1
74 //= ComparisonOperation
76 enum ComparisonOperation
78 eBetween = 0,
79 eNotBetween = 1,
80 eEqualTo = 2,
81 eNotEqualTo = 3,
82 eGreaterThan = 4,
83 eLessThan = 5,
84 eGreaterOrEqual = 6,
85 eLessOrEqual = 7
88 typedef std::shared_ptr< ConditionalExpression > PConditionalExpression;
89 typedef ::std::map< ComparisonOperation, PConditionalExpression > ConditionalExpressions;
92 // = ConditionalExpressionFactory
94 class UNLESS_MERGELIBS_MORE(REPORTDESIGN_DLLPUBLIC) ConditionalExpressionFactory
96 public:
97 /// fills the given map with all ConditionalExpressions which we know
98 static size_t getKnownConditionalExpressions( ConditionalExpressions& _out_rCondExp );
100 private:
101 ConditionalExpressionFactory( const ConditionalExpressionFactory& ) = delete;
102 ConditionalExpressionFactory& operator=( const ConditionalExpressionFactory& ) = delete;
105 } // namespace rptui
108 #endif // INCLUDED_REPORTDESIGN_INC_CONDITIONALEXPRESSION_HXX
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */