Coverage Report

Created: 2025-12-31 10:39

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libreoffice/sw/inc/flddat.hxx
Line
Count
Source
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_SW_INC_FLDDAT_HXX
21
#define INCLUDED_SW_INC_FLDDAT_HXX
22
23
#include <tools/solar.h>
24
25
#include "fldbas.hxx"
26
27
class DateTime;
28
class Date;
29
namespace tools { class Time; }
30
31
enum SwDateSubFormat
32
{
33
    DATE_FIX,
34
    DATE_VAR
35
};
36
37
class SAL_DLLPUBLIC_RTTI SwDateTimeFieldType final : public SwValueFieldType
38
{
39
public:
40
        SwDateTimeFieldType(SwDoc* pDoc);
41
42
        virtual std::unique_ptr<SwFieldType> Copy() const override;
43
};
44
45
class SW_DLLPUBLIC SwDateTimeField final : public SwValueField
46
{
47
        SwDateTimeSubType          m_nSubType;
48
        tools::Long                m_nOffset;    // Offset in minutes.
49
50
        virtual OUString    ExpandImpl(SwRootFrame const* pLayout) const override;
51
        virtual std::unique_ptr<SwField> Copy() const override;
52
53
public:
54
        SwDateTimeField(SwDateTimeFieldType* pType, SwDateTimeSubType nSubType = SwDateTimeSubType::Date,
55
                    sal_uLong nFormat = 0, LanguageType nLng = LANGUAGE_SYSTEM);
56
57
        SwDateTimeSubType       GetSubType() const;
58
        void                    SetSubType(SwDateTimeSubType nSub);
59
60
        virtual double          GetValue() const override;
61
62
        virtual void            SetPar2(const OUString& rStr) override;
63
        virtual OUString        GetPar2() const override;
64
65
35.0k
        void             SetOffset(tools::Long nMinutes)    { m_nOffset = nMinutes; }
66
0
        tools::Long             GetOffset() const           { return m_nOffset; }
67
68
        Date                    GetDate() const;
69
        tools::Time             GetTime() const;
70
        void                    SetDateTime(const DateTime& rDT);
71
        static double           GetDateTime(SwDoc& rDoc, const DateTime& rDT);
72
73
        virtual bool            QueryValue( css::uno::Any& rVal, sal_uInt16 nMId ) const override;
74
        virtual bool            PutValue( const css::uno::Any& rVal, sal_uInt16 nMId ) override;
75
};
76
77
#endif // INCLUDED_SW_INC_FLDDAT_HXX
78
79
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */