summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/FFDataHandler.hxx
blob: 1603d39b0ad046074adcfdfa2fe1fa2be8978a01 (plain)
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
/* -*- 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_WRITERFILTER_SOURCE_DMAPPER_FFDATAHANDLER_HXX
#define INCLUDED_WRITERFILTER_SOURCE_DMAPPER_FFDATAHANDLER_HXX
#include "LoggedResources.hxx"
#include <rtl/ustring.hxx>
#include <vector>
namespace writerfilter::dmapper
{
class FFDataHandler : public LoggedProperties
{
public:
    // typedefs
    typedef ::tools::SvRef<FFDataHandler> Pointer_t;
    typedef ::std::vector<OUString> DropDownEntries_t;

    // constructor
    FFDataHandler();
    // destructor
    virtual ~FFDataHandler() override;

    // member: name
    const OUString& getName() const { return m_sName; }

    // member: helpText
    const OUString& getHelpText() const { return m_sHelpText; }

    // member: statusText
    const OUString& getStatusText() const { return m_sStatusText; }

    const OUString& getEntryMacro() const { return m_sEntryMacro; }
    const OUString& getExitMacro() const { return m_sExitMacro; }

    // member: checkboxHeight
    sal_uInt32 getCheckboxHeight() const { return m_nCheckboxHeight; }

    // member: checkboxAutoHeight
    bool getCheckboxAutoHeight() const { return m_bCheckboxAutoHeight; }

    // member: checkboxChecked or checkboxDefault (if the previous is not set)
    bool getCheckboxChecked() const;

    // member: dropDownResult
    const OUString& getDropDownResult() const { return m_sDropDownResult; }

    // member: dropDownEntries
    const DropDownEntries_t& getDropDownEntries() const { return m_DropDownEntries; }

    // member: textDefault
    const OUString& getTextDefault() const { return m_sTextDefault; }

    const OUString& getTextType() const { return m_sTextType; }
    const OUString& getTextFormat() const { return m_sTextFormat; }
    sal_uInt16 getTextMaxLength() const { return m_nTextMaxLength; }

    // sprm
    void resolveSprm(Sprm& r_sprm);

private:
    OUString m_sName;
    OUString m_sHelpText;
    OUString m_sStatusText;
    OUString m_sEntryMacro;
    OUString m_sExitMacro;
    sal_uInt32 m_nCheckboxHeight;
    bool m_bCheckboxAutoHeight;
    int m_nCheckboxChecked;
    int m_nCheckboxDefault;
    OUString m_sDropDownResult;
    DropDownEntries_t m_DropDownEntries;
    OUString m_sTextDefault;
    OUString m_sTextType;
    OUString m_sTextFormat;
    sal_uInt16 m_nTextMaxLength;

    // sprm
    void lcl_sprm(Sprm& r_sprm) override;

    // attribute
    void lcl_attribute(Id name, Value& val) override;
};
}
#endif // INCLUDED_WRITERFILTER_SOURCE_DMAPPER_FFDATAHANDLER_HXX

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */