bump product version to 4.1.6.2
[LibreOffice.git] / xmloff / source / forms / valueproperties.hxx
blob5dafb2b230c675cb3c14eea30938973e325fbf0d
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 _XMLOFF_FORMS_VALUEPROPERTIES_HXX_
21 #define _XMLOFF_FORMS_VALUEPROPERTIES_HXX_
23 #include "controlelement.hxx"
25 //.........................................................................
26 namespace xmloff
28 //.........................................................................
30 //=====================================================================
31 //= OValuePropertiesMetaData
32 //=====================================================================
33 class OValuePropertiesMetaData
35 protected:
36 OValuePropertiesMetaData() { }
38 public:
39 /** calculate the property names for the <em>current-value</em> and the <em>value</em> attribute.
41 <p>If controls of the given FormComponentType do not have any of the properties requested,
42 the respective out parameter will be set to NULL.</p>
44 static void getValuePropertyNames(
45 OControlElement::ElementType _eType,
46 sal_Int16 _nFormComponentType,
47 sal_Char const * & _rpCurrentValuePropertyName,
48 sal_Char const * & _rpValuePropertyName);
50 /** calculate the property names for the <em>min-value</em> and the <em>max-value</em> attribute.
52 <p>If controls of the given FormComponentType do not have any of the properties requested,
53 the respective out parameter will be set to NULL.</p>
55 static void getValueLimitPropertyNames(
56 sal_Int16 _nFormComponentType,
57 sal_Char const * & _rpMinValuePropertyName,
58 sal_Char const * & _rpMaxValuePropertyName);
60 /** calculate the names of the properties which, at runtime, are used for <em>value</em> and
61 <em>default value</em>.
63 static void getRuntimeValuePropertyNames(
64 OControlElement::ElementType _eType,
65 sal_Int16 _nFormComponentType,
66 sal_Char const * & _rpValuePropertyName,
67 sal_Char const * & _rpDefaultValuePropertyName);
70 //.........................................................................
71 } // namespace xmloff
72 //.........................................................................
74 #endif // _XMLOFF_FORMS_VALUEPROPERTIES_HXX_
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */