Files
libreoffice/sw/source/core/fields/flddat.cxx

271 lines
7.4 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 23:08:29 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 23:08:29 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 23:08:29 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 23:08:29 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 23:08:29 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 23:08:29 +00:00
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 23:08:29 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 23:08:29 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
2000-11-17 13:32:37 +00:00
#include <tools/datetime.hxx>
#include <svl/zforlist.hxx>
2000-11-17 13:32:37 +00:00
#include <com/sun/star/util/DateTime.hpp>
#include <doc.hxx>
#include <fldbas.hxx>
#include <flddat.hxx>
#include <unofldmid.h>
2000-09-18 23:08:29 +00:00
using namespace ::com::sun::star;
/*--------------------------------------------------
Beschreibung: Datum/Zeit-Typ
---------------------------------------------------*/
SwDateTimeFieldType::SwDateTimeFieldType(SwDoc* pInitDoc)
: SwValueFieldType( pInitDoc, RES_DATETIMEFLD )
2000-09-18 23:08:29 +00:00
{}
SwFieldType* SwDateTimeFieldType::Copy() const
{
SwDateTimeFieldType *pTmp = new SwDateTimeFieldType(GetDoc());
return pTmp;
}
/*--------------------------------------------------------------------
Beschreibung: Datum/Zeit-Feld
--------------------------------------------------------------------*/
SwDateTimeField::SwDateTimeField(SwDateTimeFieldType* pInitType, USHORT nSub, ULONG nFmt, USHORT nLng)
: SwValueField(pInitType, nFmt, nLng, 0.0),
2000-09-18 23:08:29 +00:00
nSubType(nSub),
nOffset(0)
{
if (!nFmt)
{
SvNumberFormatter* pFormatter = GetDoc()->GetNumberFormatter();
if (nSubType & DATEFLD)
ChangeFormat(pFormatter->GetFormatIndex(NF_DATE_SYSTEM_SHORT, GetLanguage()));
else
ChangeFormat(pFormatter->GetFormatIndex(NF_TIME_HHMMSS, GetLanguage()));
}
if (IsFixed())
{
DateTime aDateTime;
SetDateTime(aDateTime);
2000-09-18 23:08:29 +00:00
}
}
String SwDateTimeField::Expand() const
{
double fVal;
if (!(IsFixed()))
{
DateTime aDateTime;
fVal = GetDateTime(GetDoc(), aDateTime);
2000-09-18 23:08:29 +00:00
}
else
fVal = GetValue();
if (nOffset)
fVal += (double)(nOffset * 60L) / 86400.0;
return ExpandValue(fVal, GetFormat(), GetLanguage());
}
SwField* SwDateTimeField::Copy() const
{
SwDateTimeField *pTmp =
new SwDateTimeField((SwDateTimeFieldType*)GetTyp(), nSubType,
GetFormat(), GetLanguage());
pTmp->SetValue(GetValue());
pTmp->SetOffset(nOffset);
pTmp->SetAutomaticLanguage(IsAutomaticLanguage());
2000-09-18 23:08:29 +00:00
return pTmp;
}
USHORT SwDateTimeField::GetSubType() const
{
return nSubType;
}
void SwDateTimeField::SetSubType(USHORT nType)
{
nSubType = nType;
}
void SwDateTimeField::SetPar2(const String& rStr)
{
nOffset = rStr.ToInt32();
}
String SwDateTimeField::GetPar2() const
{
if (nOffset)
return String::CreateFromInt32(nOffset);
else
return aEmptyStr;
}
void SwDateTimeField::SetDateTime(const DateTime& rDT)
2000-09-18 23:08:29 +00:00
{
SetValue(GetDateTime(GetDoc(), rDT));
2000-09-18 23:08:29 +00:00
}
double SwDateTimeField::GetDateTime(SwDoc* pDoc, const DateTime& rDT)
2000-09-18 23:08:29 +00:00
{
SvNumberFormatter* pFormatter = pDoc->GetNumberFormatter();
Date* pNullDate = pFormatter->GetNullDate();
double fResult = rDT - DateTime(*pNullDate);
2000-09-18 23:08:29 +00:00
return fResult;
2000-09-18 23:08:29 +00:00
}
double SwDateTimeField::GetValue() const
{
if (IsFixed())
return SwValueField::GetValue();
else
return GetDateTime(GetDoc(), DateTime());
2000-09-18 23:08:29 +00:00
}
Date SwDateTimeField::GetDate(BOOL bUseOffset) const
2000-09-18 23:08:29 +00:00
{
SvNumberFormatter* pFormatter = GetDoc()->GetNumberFormatter();
Date* pNullDate = pFormatter->GetNullDate();
long nVal = static_cast<long>( GetValue() );
2000-09-18 23:08:29 +00:00
if (bUseOffset && nOffset)
nVal += nOffset / 60 / 24;
Date aDate = *pNullDate + nVal;
return aDate;
2000-09-18 23:08:29 +00:00
}
Time SwDateTimeField::GetTime(BOOL bUseOffset) const
2000-09-18 23:08:29 +00:00
{
double fDummy;
double fFract = modf(GetValue(), &fDummy);
DateTime aDT((long)fDummy, 0);
aDT += fFract;
2000-09-18 23:08:29 +00:00
if (bUseOffset)
aDT += Time(0, nOffset);
return (Time)aDT;
2000-09-18 23:08:29 +00:00
}
2010-10-04 15:23:52 +01:00
bool SwDateTimeField::QueryValue( uno::Any& rVal, USHORT nWhichId ) const
2000-09-18 23:08:29 +00:00
{
switch( nWhichId )
2000-09-18 23:08:29 +00:00
{
case FIELD_PROP_BOOL1:
{
BOOL bTmp = IsFixed();
rVal.setValue(&bTmp, ::getCppuBooleanType());
}
break;
case FIELD_PROP_BOOL2:
{
BOOL bTmp = IsDate();
rVal.setValue(&bTmp, ::getCppuBooleanType());
}
break;
case FIELD_PROP_FORMAT:
2000-09-18 23:08:29 +00:00
rVal <<= (sal_Int32)GetFormat();
break;
case FIELD_PROP_SUBTYPE:
2000-09-18 23:08:29 +00:00
rVal <<= (sal_Int32)nOffset;
break;
case FIELD_PROP_DATE_TIME:
{
DateTime aDateTime(GetDate(), GetTime());
util::DateTime DateTimeValue;
DateTimeValue.HundredthSeconds = aDateTime.Get100Sec();
DateTimeValue.Seconds = aDateTime.GetSec();
DateTimeValue.Minutes = aDateTime.GetMin();
DateTimeValue.Hours = aDateTime.GetHour();
DateTimeValue.Day = aDateTime.GetDay();
DateTimeValue.Month = aDateTime.GetMonth();
DateTimeValue.Year = aDateTime.GetYear();
rVal <<= DateTimeValue;
}
break;
default:
return SwField::QueryValue(rVal, nWhichId);
2000-11-17 13:32:37 +00:00
}
2010-10-04 15:23:52 +01:00
return true;
2000-09-18 23:08:29 +00:00
}
2010-10-04 15:23:52 +01:00
bool SwDateTimeField::PutValue( const uno::Any& rVal, USHORT nWhichId )
2000-09-18 23:08:29 +00:00
{
sal_Int32 nTmp = 0;
switch( nWhichId )
2000-09-18 23:08:29 +00:00
{
case FIELD_PROP_BOOL1:
if(*(sal_Bool*)rVal.getValue())
2000-09-18 23:08:29 +00:00
nSubType |= FIXEDFLD;
else
nSubType &= ~FIXEDFLD;
break;
case FIELD_PROP_BOOL2:
nSubType &= ~(DATEFLD|TIMEFLD);
nSubType |= *(sal_Bool*)rVal.getValue() ? DATEFLD : TIMEFLD;
break;
case FIELD_PROP_FORMAT:
2000-09-18 23:08:29 +00:00
rVal >>= nTmp;
ChangeFormat(nTmp);
break;
case FIELD_PROP_SUBTYPE:
rVal >>= nTmp;
nOffset = nTmp;
break;
case FIELD_PROP_DATE_TIME:
{
util::DateTime aDateTimeValue;
if(!(rVal >>= aDateTimeValue))
return FALSE;
DateTime aDateTime;
aDateTime.Set100Sec(aDateTimeValue.HundredthSeconds);
aDateTime.SetSec(aDateTimeValue.Seconds);
aDateTime.SetMin(aDateTimeValue.Minutes);
aDateTime.SetHour(aDateTimeValue.Hours);
aDateTime.SetDay(aDateTimeValue.Day);
aDateTime.SetMonth(aDateTimeValue.Month);
aDateTime.SetYear(aDateTimeValue.Year);
SetDateTime(aDateTime);
}
break;
default:
return SwField::PutValue(rVal, nWhichId);
2000-09-18 23:08:29 +00:00
}
2010-10-04 15:23:52 +01:00
return true;
2000-09-18 23:08:29 +00:00
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */