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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
|
/* -*- 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sal/config.h>
#include <libxml/xmlwriter.h>
#include <o3tl/any.hxx>
#include <svl/numformat.hxx>
#include <unotools/charclass.hxx>
#include <calc.hxx>
#include <usrfld.hxx>
#include <doc.hxx>
#include <IDocumentFieldsAccess.hxx>
#include <IDocumentUndoRedo.hxx>
#include <IDocumentState.hxx>
#include <unofldmid.h>
using namespace ::com::sun::star;
namespace
{
/**
* Returns the language used for float <-> string conversions in
* SwUserFieldType.
*/
LanguageType GetFieldTypeLanguage()
{
return LANGUAGE_SYSTEM;
}
}
// Userfields
SwUserField::SwUserField(SwUserFieldType* pTyp, sal_uInt16 nSub, sal_uInt32 nFormat)
: SwValueField(pTyp, nFormat),
m_nSubType(nSub)
{
}
OUString SwUserField::ExpandImpl(SwRootFrame const*const) const
{
if(!(m_nSubType & nsSwExtendedSubType::SUB_INVISIBLE))
return static_cast<SwUserFieldType*>(GetTyp())->Expand(GetFormat(), m_nSubType, GetLanguage());
return OUString();
}
std::unique_ptr<SwField> SwUserField::Copy() const
{
std::unique_ptr<SwField> pTmp(new SwUserField(static_cast<SwUserFieldType*>(GetTyp()), m_nSubType, GetFormat()));
pTmp->SetAutomaticLanguage(IsAutomaticLanguage());
pTmp->SetTitle(GetTitle());
return pTmp;
}
OUString SwUserField::GetFieldName() const
{
return SwFieldType::GetTypeStr(SwFieldTypesEnum::User) +
" " + GetTyp()->GetName() + " = " +
static_cast<SwUserFieldType*>(GetTyp())->GetContent();
}
double SwUserField::GetValue() const
{
return static_cast<SwUserFieldType*>(GetTyp())->GetValue();
}
void SwUserField::SetValue( const double& rVal )
{
static_cast<SwUserFieldType*>(GetTyp())->SetValue(rVal);
}
/// Get name
OUString SwUserField::GetPar1() const
{
return static_cast<const SwUserFieldType*>(GetTyp())->GetName();
}
/// Get content
OUString SwUserField::GetPar2() const
{
return static_cast<SwUserFieldType*>(GetTyp())->GetContent(GetFormat());
}
void SwUserField::SetPar2(const OUString& rStr)
{
static_cast<SwUserFieldType*>(GetTyp())->SetContent(rStr, GetFormat());
}
sal_uInt16 SwUserField::GetSubType() const
{
return static_cast<SwUserFieldType*>(GetTyp())->GetType() | m_nSubType;
}
void SwUserField::SetSubType(sal_uInt16 nSub)
{
static_cast<SwUserFieldType*>(GetTyp())->SetType(nSub & 0x00ff);
m_nSubType = nSub & 0xff00;
}
bool SwUserField::QueryValue( uno::Any& rAny, sal_uInt16 nWhichId ) const
{
switch( nWhichId )
{
case FIELD_PROP_BOOL2:
rAny <<= 0 != (m_nSubType & nsSwExtendedSubType::SUB_CMD);
break;
case FIELD_PROP_BOOL1:
rAny <<= 0 == (m_nSubType & nsSwExtendedSubType::SUB_INVISIBLE);
break;
case FIELD_PROP_FORMAT:
rAny <<= static_cast<sal_Int32>(GetFormat());
break;
default:
return SwField::QueryValue(rAny, nWhichId);
}
return true;
}
bool SwUserField::PutValue( const uno::Any& rAny, sal_uInt16 nWhichId )
{
switch( nWhichId )
{
case FIELD_PROP_BOOL1:
if(*o3tl::doAccess<bool>(rAny))
m_nSubType &= (~nsSwExtendedSubType::SUB_INVISIBLE);
else
m_nSubType |= nsSwExtendedSubType::SUB_INVISIBLE;
break;
case FIELD_PROP_BOOL2:
if(*o3tl::doAccess<bool>(rAny))
m_nSubType |= nsSwExtendedSubType::SUB_CMD;
else
m_nSubType &= (~nsSwExtendedSubType::SUB_CMD);
break;
case FIELD_PROP_FORMAT:
{
sal_Int32 nTmp = 0;
rAny >>= nTmp;
SetFormat(nTmp);
}
break;
default:
return SwField::PutValue(rAny, nWhichId);
}
return true;
}
void SwUserField::dumpAsXml(xmlTextWriterPtr pWriter) const
{
(void)xmlTextWriterStartElement(pWriter, BAD_CAST("SwUserField"));
(void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("nSubType"), BAD_CAST(OString::number(m_nSubType).getStr()));
SwValueField::dumpAsXml(pWriter);
(void)xmlTextWriterEndElement(pWriter);
}
SwUserFieldType::SwUserFieldType( SwDoc* pDocPtr, const OUString& aNam )
: SwValueFieldType( pDocPtr, SwFieldIds::User ),
m_nValue( 0 ),
m_nType(nsSwGetSetExpType::GSE_STRING)
{
m_bValidValue = m_bDeleted = false;
m_aName = aNam;
EnableFormat(false); // Do not use a Numberformatter for nsSwGetSetExpType::GSE_STRING
}
OUString SwUserFieldType::Expand(sal_uInt32 nFormat, sal_uInt16 nSubType, LanguageType nLng)
{
if((m_nType & nsSwGetSetExpType::GSE_EXPR) && !(nSubType & nsSwExtendedSubType::SUB_CMD))
{
EnableFormat();
return ExpandValue(m_nValue, nFormat, nLng);
}
EnableFormat(false); // Do not use a Numberformatter
return m_aContent;
}
std::unique_ptr<SwFieldType> SwUserFieldType::Copy() const
{
std::unique_ptr<SwUserFieldType> pTmp(new SwUserFieldType( GetDoc(), m_aName ));
pTmp->m_aContent = m_aContent;
pTmp->m_aContentLang = m_aContentLang;
pTmp->m_nType = m_nType;
pTmp->m_bValidValue = m_bValidValue;
pTmp->m_nValue = m_nValue;
pTmp->m_bDeleted = m_bDeleted;
return pTmp;
}
OUString SwUserFieldType::GetName() const
{
return m_aName;
}
void SwUserFieldType::SwClientNotify(const SwModify&, const SfxHint& rHint)
{
if (rHint.GetId() == SfxHintId::SwLegacyModify)
{
auto pLegacy = static_cast<const sw::LegacyModifyHint*>(&rHint);
if (!pLegacy->m_pOld && !pLegacy->m_pNew)
m_bValidValue = false;
}
CallSwClientNotify(rHint);
// update input fields that might be connected to the user field
if (!IsModifyLocked())
{
LockModify();
GetDoc()->getIDocumentFieldsAccess().GetSysFieldType(SwFieldIds::Input)->UpdateFields();
UnlockModify();
}
}
double SwUserFieldType::GetValue( SwCalc& rCalc )
{
if(m_bValidValue)
return m_nValue;
if(!rCalc.Push( this ))
{
rCalc.SetCalcError( SwCalcError::Syntax );
return 0;
}
// See if we need to temporarily switch rCalc's language: in case it
// differs from the field type locale.
const CharClass* pCharClass = rCalc.GetCharClass();
LanguageTag aCharClassLanguage = pCharClass->getLanguageTag();
LanguageTag aContentLang(m_aContentLang);
// for the call of calculate we need the language that was used for putting/setting
// the m_aContent string, otherwise the aContent could be interpreted wrongly,
bool bSwitchLanguage = m_aContentLang != aCharClassLanguage.getBcp47();
if (bSwitchLanguage)
rCalc.SetCharClass(aContentLang);
m_nValue = rCalc.Calculate( m_aContent ).GetDouble();
// we than have to set the proper char class languageTag again
if (bSwitchLanguage)
rCalc.SetCharClass(aCharClassLanguage);
rCalc.Pop();
if( !rCalc.IsCalcError() )
m_bValidValue = true;
else
m_nValue = 0;
return m_nValue;
}
OUString SwUserFieldType::GetContent( sal_uInt32 nFormat )
{
if (nFormat && nFormat != SAL_MAX_UINT32)
{
OUString sFormattedValue;
const Color* pCol = nullptr;
SvNumberFormatter* pFormatter = GetDoc()->GetNumberFormatter();
pFormatter->GetOutputString(GetValue(), nFormat, sFormattedValue, &pCol);
return sFormattedValue;
}
return m_aContent;
}
void SwUserFieldType::SetContent( const OUString& rStr, sal_uInt32 nFormat )
{
if( m_aContent == rStr )
return;
m_aContent = rStr;
if (nFormat && nFormat != SAL_MAX_UINT32)
{
double fValue;
if (GetDoc()->IsNumberFormat(rStr, nFormat, fValue))
{
SetValue(fValue);
LanguageTag aContentLanguage(GetFieldTypeLanguage());
m_aContentLang = aContentLanguage.getBcp47();
m_aContent = DoubleToString(fValue, nFormat);
}
}
bool bModified = GetDoc()->getIDocumentState().IsModified();
GetDoc()->getIDocumentState().SetModified();
if( !bModified ) // Bug 57028
{
GetDoc()->GetIDocumentUndoRedo().SetUndoNoResetModified();
}
}
void SwUserFieldType::QueryValue( uno::Any& rAny, sal_uInt16 nWhichId ) const
{
switch( nWhichId )
{
case FIELD_PROP_DOUBLE:
rAny <<= m_nValue;
break;
case FIELD_PROP_PAR2:
rAny <<= m_aContent;
break;
case FIELD_PROP_BOOL1:
rAny <<= 0 != (nsSwGetSetExpType::GSE_EXPR&m_nType);
break;
default:
assert(false);
}
}
void SwUserFieldType::PutValue( const uno::Any& rAny, sal_uInt16 nWhichId )
{
switch( nWhichId )
{
case FIELD_PROP_DOUBLE:
{
double fVal = 0;
rAny >>= fVal;
m_nValue = fVal;
LanguageTag aContentLanguage(GetFieldTypeLanguage());
m_aContentLang = aContentLanguage.getBcp47();
m_aContent = DoubleToString(m_nValue, static_cast<sal_uInt16>(GetFieldTypeLanguage()));
}
break;
case FIELD_PROP_PAR2:
rAny >>= m_aContent;
break;
case FIELD_PROP_BOOL1:
if(*o3tl::doAccess<bool>(rAny))
{
m_nType |= nsSwGetSetExpType::GSE_EXPR;
m_nType &= ~nsSwGetSetExpType::GSE_STRING;
}
else
{
m_nType &= ~nsSwGetSetExpType::GSE_EXPR;
m_nType |= nsSwGetSetExpType::GSE_STRING;
}
break;
default:
assert(false);
}
}
void SwUserFieldType::dumpAsXml(xmlTextWriterPtr pWriter) const
{
(void)xmlTextWriterStartElement(pWriter, BAD_CAST("SwUserFieldType"));
(void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("nValue"), BAD_CAST(OString::number(m_nValue).getStr()));
(void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("aContent"), BAD_CAST(m_aContent.toUtf8().getStr()));
(void)xmlTextWriterWriteAttribute(pWriter, BAD_CAST("aContentLang"), BAD_CAST(m_aContentLang.toUtf8().getStr()));
SwFieldType::dumpAsXml(pWriter);
(void)xmlTextWriterEndElement(pWriter);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|