LibreOffice Module oox (master) 1
textfield.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#ifndef INCLUDED_OOX_DRAWINGML_TEXTFIELD_HXX
21#define INCLUDED_OOX_DRAWINGML_TEXTFIELD_HXX
22
23#include <drawingml/textrun.hxx>
25
26enum class SvxTimeFormat;
27enum class SvxDateFormat;
28
29namespace oox::drawingml {
30
31struct TextCharacterProperties;
32
33class TextField final
34 : public TextRun
35{
36public:
37 TextField();
38
41
42 void setType( const OUString& sType ) { msType = sType; }
43 const OUString& getType() const { return msType; }
44 void setUuid( const OUString & sUuid ) { msUuid = sUuid; }
45 const OUString& getUuid() const { return msUuid; }
46
47 virtual sal_Int32 insertAt(
48 const ::oox::core::XmlFilterBase& rFilterBase,
49 const css::uno::Reference < css::text::XText > & xText,
50 const css::uno::Reference < css::text::XTextCursor > &xAt,
51 const TextCharacterProperties& rTextCharacterStyle,
52 float nDefaultCharHeight) const override;
53
58 static SvxDateFormat getLODateFormat( std::u16string_view rDateTimeType );
63 static SvxTimeFormat getLOTimeFormat( std::u16string_view rDateTimeType );
64private:
66 OUString msType;
67 OUString msUuid;
68};
69
70}
71
72#endif
73
74/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
OptionalString sType
TextParagraphProperties maTextParagraphProperties
Definition: textfield.hxx:65
const OUString & getUuid() const
Definition: textfield.hxx:45
void setUuid(const OUString &sUuid)
Definition: textfield.hxx:44
TextParagraphProperties & getTextParagraphProperties()
Definition: textfield.hxx:39
static SvxDateFormat getLODateFormat(std::u16string_view rDateTimeType)
Gets the corresponding LO Date format for given OOXML datetime field type.
Definition: textfield.cxx:211
void setType(const OUString &sType)
Definition: textfield.hxx:42
const TextParagraphProperties & getTextParagraphProperties() const
Definition: textfield.hxx:40
const OUString & getType() const
Definition: textfield.hxx:43
virtual sal_Int32 insertAt(const ::oox::core::XmlFilterBase &rFilterBase, const css::uno::Reference< css::text::XText > &xText, const css::uno::Reference< css::text::XTextCursor > &xAt, const TextCharacterProperties &rTextCharacterStyle, float nDefaultCharHeight) const override
Definition: textfield.cxx:153
static SvxTimeFormat getLOTimeFormat(std::u16string_view rDateTimeType)
Gets the corresponding LO Time format for given OOXML datetime field type.
Definition: textfield.cxx:244
SvxTimeFormat
SvxDateFormat