summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/SdtHelper.hxx
blob: 72a0096bd1c726fb4425d489506eebf4af55ee26 (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
/* -*- 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/.
 */

#ifndef INCLUDED_SDTHELPER_HXX
#define INCLUDED_SDTHELPER_HXX

#include <boost/optional.hpp>

#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <rtl/ustrbuf.hxx>

#include <WriterFilterDllApi.hxx>

namespace com { namespace sun { namespace star {
        namespace awt{
            struct Size;
            class XControlModel;
        }
}}}

namespace writerfilter {
    namespace dmapper {

        /**
         * Helper to create form controls from w:sdt tokens.
         *
         * w:sdt tokens can't be imported as form fields, as w:sdt supports
         * e.g. date picking as well.
         */
        class SdtHelper
        {
            DomainMapper_Impl& m_rDM_Impl;

            /// Items of the drop-down control.
            std::vector<rtl::OUString> m_aDropDownItems;
            /// Pieces of the default text -- currently used only by the dropdown control.
            rtl::OUStringBuffer m_aSdtTexts;
            /// Date format, see com/sun/star/awt/UnoControlDateFieldModel.idl
            boost::optional<sal_Int16> m_oDateFormat;

            /// Create and append the drawing::XControlShape, containing the various models.
            void createControlShape(com::sun::star::awt::Size aSize, com::sun::star::uno::Reference<com::sun::star::awt::XControlModel>);
        public:
            SdtHelper(DomainMapper_Impl& rDM_Impl);
            virtual ~SdtHelper();

            std::vector<rtl::OUString>& getDropDownItems();
            rtl::OUStringBuffer& getSdtTexts();
            boost::optional<sal_Int16>& getDateFormat();

            /// Create drop-down control from w:sdt's w:dropDownList.
            void createDropDownControl();
            /// Create date control from w:sdt's w:date.
            void createDateControl(rtl::OUString& rDefaultText);
        };

    } // namespace dmapper
} // namespace writerfilter

#endif

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