Cleanup restoring last position
[LibreOffice.git] / sw / inc / flddat.hxx
blob6c452072e9269de6e5af600b17d93d2bc1b3fcdc
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 INCLUDED_SW_INC_FLDDAT_HXX
21 #define INCLUDED_SW_INC_FLDDAT_HXX
23 #include <tools/solar.h>
25 #include "fldbas.hxx"
27 class DateTime;
28 class Date;
29 namespace tools { class Time; }
31 enum SwDateSubFormat
33 DATE_VAR,
34 DATE_FIX,
37 class SAL_DLLPUBLIC_RTTI SwDateTimeFieldType final : public SwValueFieldType
39 public:
40 SwDateTimeFieldType(SwDoc* pDoc);
42 virtual std::unique_ptr<SwFieldType> Copy() const override;
45 class SW_DLLPUBLIC SwDateTimeField final : public SwValueField
47 sal_uInt16 m_nSubType;
48 tools::Long m_nOffset; // Offset in minutes.
50 virtual OUString ExpandImpl(SwRootFrame const* pLayout) const override;
51 virtual std::unique_ptr<SwField> Copy() const override;
53 public:
54 SwDateTimeField(SwDateTimeFieldType* pType, sal_uInt16 nSubType = DATEFLD,
55 sal_uLong nFormat = 0, LanguageType nLng = LANGUAGE_SYSTEM);
57 virtual sal_uInt16 GetSubType() const override;
58 virtual void SetSubType(sal_uInt16 nSub) override;
60 virtual double GetValue() const override;
62 virtual void SetPar2(const OUString& rStr) override;
63 virtual OUString GetPar2() const override;
65 void SetOffset(tools::Long nMinutes) { m_nOffset = nMinutes; }
66 tools::Long GetOffset() const { return m_nOffset; }
68 Date GetDate() const;
69 tools::Time GetTime() const;
70 void SetDateTime(const DateTime& rDT);
71 static double GetDateTime(SwDoc& rDoc, const DateTime& rDT);
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;
77 #endif // INCLUDED_SW_INC_FLDDAT_HXX
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */