update credits
[LibreOffice.git] / sw / inc / IDocumentFieldsAccess.hxx
blobc68a6e841151b9f1c58827a3d25945b6c4222ced
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 IDOCUMENTFIELDSACCESS_HXX_INCLUDED
21 #define IDOCUMENTFIELDSACCESS_HXX_INCLUDED
23 #include <sal/types.h>
24 #include <tools/solar.h>
26 class SwFldTypes;
27 class SwFieldType;
28 class SfxPoolItem;
29 struct SwPosition;
30 class SwDocUpdtFld;
31 class SwCalc;
32 class SwTxtFld;
33 class SwField;
34 class SwMsgPoolItem;
35 class DateTime;
36 class _SetGetExpFld;
37 struct SwHash;
38 class String;
39 class SwNode;
41 namespace com { namespace sun { namespace star { namespace uno { class Any; } } } }
43 /** Document fields related interfaces
45 class IDocumentFieldsAccess
47 public:
48 virtual const SwFldTypes *GetFldTypes() const = 0;
50 virtual SwFieldType *InsertFldType(const SwFieldType &) = 0;
52 virtual SwFieldType *GetSysFldType( const sal_uInt16 eWhich ) const = 0;
54 virtual SwFieldType* GetFldType(sal_uInt16 nResId, const String& rName, bool bDbFieldMatching) const = 0;
56 virtual void RemoveFldType(sal_uInt16 nFld) = 0;
58 virtual void UpdateFlds( SfxPoolItem* pNewHt, bool bCloseDB) = 0;
60 virtual void InsDeletedFldType(SwFieldType &) = 0;
62 /**
63 Puts a value into a field at a certain position.
65 A missing field at the given position leads to a failure.
67 @param rPosition position of the field
68 @param rVal the value
69 @param nMId
71 @retval sal_True putting of value was successful
72 @retval sal_False else
74 virtual bool PutValueToField(const SwPosition & rPos, const com::sun::star::uno::Any& rVal, sal_uInt16 nWhich) = 0;
76 // Call update of expression fields. All expressions are re-evaluated.
78 /** Updates a field.
80 @param rDstFmtFld field to update
81 @param rSrcFld field containing the new values
82 @param pMsgHnt
83 @param bUpdateTblFlds TRUE: update table fields, too.
85 @retval sal_True update was successful
86 @retval sal_False else
88 virtual bool UpdateFld(SwTxtFld * rDstFmtFld, SwField & rSrcFld, SwMsgPoolItem * pMsgHnt, bool bUpdateTblFlds) = 0;
90 virtual void UpdateRefFlds(SfxPoolItem* pHt) = 0;
92 virtual void UpdateTblFlds(SfxPoolItem* pHt) = 0;
94 virtual void UpdateExpFlds(SwTxtFld* pFld, bool bUpdateRefFlds) = 0;
96 virtual void UpdateUsrFlds() = 0;
98 virtual void UpdatePageFlds(SfxPoolItem*) = 0;
100 virtual void LockExpFlds() = 0;
102 virtual void UnlockExpFlds() = 0;
104 virtual bool IsExpFldsLocked() const = 0;
106 virtual SwDocUpdtFld& GetUpdtFlds() const = 0;
108 /* @@@MAINTAINABILITY-HORROR@@@
109 SwNode (see parameter pChk) is (?) part of the private
110 data structure of SwDoc and should not be exposed
112 virtual bool SetFieldsDirty(bool b, const SwNode* pChk, sal_uLong nLen) = 0;
114 virtual void SetFixFields(bool bOnlyTimeDate, const DateTime* pNewDateTime) = 0;
117 // In Calculator set all SetExpression fields that are valid up to the indicated position
118 // (Node [ + ::com::sun::star::ucb::Content]).
119 // A generated list of all fields may be passed along too
120 // (if the addreess != 0 and the pointer == 0 a new list will be returned).
121 virtual void FldsToCalc(SwCalc& rCalc, sal_uLong nLastNd, sal_uInt16 nLastCnt) = 0;
123 virtual void FldsToCalc(SwCalc& rCalc, const _SetGetExpFld& rToThisFld) = 0;
125 virtual void FldsToExpand(SwHash**& ppTbl, sal_uInt16& rTblSize, const _SetGetExpFld& rToThisFld) = 0;
127 virtual bool IsNewFldLst() const = 0;
129 virtual void SetNewFldLst( bool bFlag) = 0;
131 virtual void InsDelFldInFldLst(bool bIns, const SwTxtFld& rFld) = 0;
133 protected:
134 virtual ~IDocumentFieldsAccess() {};
137 #endif // IDOCUMENTLINKSADMINISTRATION_HXX_INCLUDED
139 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */