Line data Source code
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_IDOCUMENTFIELDSACCESS_HXX
21 : #define INCLUDED_SW_INC_IDOCUMENTFIELDSACCESS_HXX
22 :
23 : #include <sal/types.h>
24 : #include <tools/solar.h>
25 :
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 SwNode;
39 :
40 : namespace com { namespace sun { namespace star { namespace uno { class Any; } } } }
41 :
42 : /** Document fields related interfaces
43 : */
44 0 : class IDocumentFieldsAccess
45 : {
46 : public:
47 : virtual const SwFldTypes *GetFldTypes() const = 0;
48 :
49 : virtual SwFieldType *InsertFldType(const SwFieldType &) = 0;
50 :
51 : virtual SwFieldType *GetSysFldType( const sal_uInt16 eWhich ) const = 0;
52 :
53 : virtual SwFieldType* GetFldType(sal_uInt16 nResId, const OUString& rName, bool bDbFieldMatching) const = 0;
54 :
55 : virtual void RemoveFldType(sal_uInt16 nFld) = 0;
56 :
57 : virtual void UpdateFlds( SfxPoolItem* pNewHt, bool bCloseDB) = 0;
58 :
59 : virtual void InsDeletedFldType(SwFieldType &) = 0;
60 :
61 : /**
62 : Puts a value into a field at a certain position.
63 :
64 : A missing field at the given position leads to a failure.
65 :
66 : @param rPosition position of the field
67 : @param rVal the value
68 : @param nMId
69 :
70 : @retval sal_True putting of value was successful
71 : @retval sal_False else
72 : */
73 : virtual bool PutValueToField(const SwPosition & rPos, const com::sun::star::uno::Any& rVal, sal_uInt16 nWhich) = 0;
74 :
75 : // Call update of expression fields. All expressions are re-evaluated.
76 :
77 : /** Updates a field.
78 :
79 : @param rDstFmtFld field to update
80 : @param rSrcFld field containing the new values
81 : @param pMsgHnt
82 : @param bUpdateTblFlds TRUE: update table fields, too.
83 :
84 : @retval sal_True update was successful
85 : @retval sal_False else
86 : */
87 : virtual bool UpdateFld(SwTxtFld * rDstFmtFld, SwField & rSrcFld, SwMsgPoolItem * pMsgHnt, bool bUpdateTblFlds) = 0;
88 :
89 : virtual void UpdateRefFlds(SfxPoolItem* pHt) = 0;
90 :
91 : virtual void UpdateTblFlds(SfxPoolItem* pHt) = 0;
92 :
93 : virtual void UpdateExpFlds(SwTxtFld* pFld, bool bUpdateRefFlds) = 0;
94 :
95 : virtual void UpdateUsrFlds() = 0;
96 :
97 : virtual void UpdatePageFlds(SfxPoolItem*) = 0;
98 :
99 : virtual void LockExpFlds() = 0;
100 :
101 : virtual void UnlockExpFlds() = 0;
102 :
103 : virtual bool IsExpFldsLocked() const = 0;
104 :
105 : virtual SwDocUpdtFld& GetUpdtFlds() const = 0;
106 :
107 : /* @@@MAINTAINABILITY-HORROR@@@
108 : SwNode (see parameter pChk) is (?) part of the private
109 : data structure of SwDoc and should not be exposed
110 : */
111 : virtual bool SetFieldsDirty(bool b, const SwNode* pChk, sal_uLong nLen) = 0;
112 :
113 : virtual void SetFixFields(bool bOnlyTimeDate, const DateTime* pNewDateTime) = 0;
114 :
115 : // In Calculator set all SetExpression fields that are valid up to the indicated position
116 : // (Node [ + ::com::sun::star::ucb::Content]).
117 : // A generated list of all fields may be passed along too
118 : // (if the addreess != 0 and the pointer == 0 a new list will be returned).
119 : virtual void FldsToCalc(SwCalc& rCalc, sal_uLong nLastNd, sal_uInt16 nLastCnt) = 0;
120 :
121 : virtual void FldsToCalc(SwCalc& rCalc, const _SetGetExpFld& rToThisFld) = 0;
122 :
123 : virtual void FldsToExpand(SwHash**& ppTbl, sal_uInt16& rTblSize, const _SetGetExpFld& rToThisFld) = 0;
124 :
125 : virtual bool IsNewFldLst() const = 0;
126 :
127 : virtual void SetNewFldLst( bool bFlag) = 0;
128 :
129 : virtual void InsDelFldInFldLst(bool bIns, const SwTxtFld& rFld) = 0;
130 :
131 : protected:
132 0 : virtual ~IDocumentFieldsAccess() {};
133 : };
134 :
135 : #endif // INCLUDED_SW_INC_IDOCUMENTFIELDSACCESS_HXX
136 :
137 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|