| /AOO42X/main/sw/inc/ |
| H A D | docufld.hxx | 146 class SwPageNumberFieldType : public SwFieldType 158 virtual SwFieldType* Copy() const; 194 class SwAuthorFieldType : public SwFieldType 200 virtual SwFieldType* Copy() const; 228 class SwFileNameFieldType : public SwFieldType 235 virtual SwFieldType* Copy() const; 263 class SwTemplNameFieldType : public SwFieldType 270 virtual SwFieldType* Copy() const; 293 class SwDocStatFieldType : public SwFieldType 301 virtual SwFieldType* Copy() const; [all …]
|
| H A D | fldbas.hxx | 260 DBG_NAMEEX(SwFieldType) 262 class SW_DLLPUBLIC SwFieldType : public SwModify class 273 explicit SwFieldType( sal_uInt16 nWhichId ); 278 virtual ~SwFieldType(); 284 virtual SwFieldType* Copy() const = 0; 293 inline void SwFieldType::UpdateFlds() const in UpdateFlds() 295 ((SwFieldType*)this)->ModifyNotification( 0, 0 ); in UpdateFlds() 315 SwFieldType* pType; 323 SwField( SwFieldType* pTyp, 332 inline SwFieldType* GetTyp() const; [all …]
|
| H A D | dbfld.hxx | 51 virtual SwFieldType* Copy() const; 85 virtual SwFieldType* ChgTyp( SwFieldType* ); 147 SwDBNameInfField(SwFieldType* pTyp, const SwDBData& rDBData, sal_uLong nFmt = 0); 169 class SW_DLLPUBLIC SwDBNextSetFieldType : public SwFieldType 174 virtual SwFieldType* Copy() const; 215 class SwDBNumSetFieldType : public SwFieldType 220 virtual SwFieldType* Copy() const; 269 class SwDBNameFieldType : public SwFieldType 276 virtual SwFieldType* Copy() const; 298 class SW_DLLPUBLIC SwDBSetNumberFieldType : public SwFieldType [all …]
|
| H A D | IDocumentFieldsAccess.hxx | 31 class SwFieldType; 58 virtual SwFieldType *InsertFldType(const SwFieldType &) = 0; 62 virtual SwFieldType *GetSysFldType( const sal_uInt16 eWhich ) const = 0; 66 …virtual SwFieldType* GetFldType(sal_uInt16 nResId, const String& rName, bool bDbFieldMatching) con… 78 virtual void InsDeletedFldType(SwFieldType &) = 0;
|
| H A D | expfld.hxx | 76 virtual SwFieldType* Copy() const; 170 virtual SwFieldType* Copy() const; 298 class SwInputFieldType : public SwFieldType 304 virtual SwFieldType* Copy() const; 415 virtual SwFieldType* Copy() const;
|
| H A D | authfld.hxx | 72 class SW_DLLPUBLIC SwAuthorityFieldType : public SwFieldType 96 virtual SwFieldType* Copy() const; 179 virtual SwFieldType* ChgTyp( SwFieldType* );
|
| H A D | flddropdown.hxx | 35 class SwDropDownFieldType : public SwFieldType 53 virtual SwFieldType * Copy () const; 112 SwDropDownField(SwFieldType * pTyp);
|
| H A D | editsh.hxx | 57 class SwFieldType; 337 …SwFieldType* GetFldType(sal_uInt16 nId, sal_uInt16 nResId = USHRT_MAX, sal_Bool bUsed = sal_False)… 338 SwFieldType* GetFldType(sal_uInt16 nResId, const String& rName) const; 343 void FieldToText( SwFieldType* pType ); 371 SwFieldType* InsertFldType(const SwFieldType &);
|
| H A D | unofield.hxx | 38 class SwFieldType; 82 SwXFieldMaster(SwFieldType& rType, SwDoc* pDoc); 111 static rtl::OUString GetProgrammaticName(const SwFieldType& rType, SwDoc& rDoc); 114 SwFieldType* GetFldType(sal_Bool bDontCreate = sal_False) const; 241 static sal_Bool getInstanceName(const SwFieldType& rFldType, String& rName);
|
| H A D | calc.hxx | 36 class SwFieldType; 155 const SwFieldType* pFldType; 158 const SwFieldType* pFldType = 0 );
|
| /AOO42X/main/sw/source/core/fields/ |
| H A D | fldbas.cxx | 80 SvStringsDtor* SwFieldType::pFldNames = 0; 82 DBG_NAME(SwFieldType) 130 const String& SwFieldType::GetTypeStr(sal_uInt16 nTypeId) in GetTypeStr() 135 if( nTypeId < SwFieldType::pFldNames->Count() ) in GetTypeStr() 136 return *SwFieldType::pFldNames->GetObject( nTypeId ); in GetTypeStr() 147 SwFieldType::SwFieldType( sal_uInt16 nWhichId ) in SwFieldType() function in SwFieldType 151 DBG_CTOR( SwFieldType, 0 ); in SwFieldType() 156 SwFieldType::~SwFieldType() in ~SwFieldType() 158 DBG_DTOR( SwFieldType, 0 ); in ~SwFieldType() 163 const String& SwFieldType::GetName() const in GetName() [all …]
|
| H A D | docufld.cxx | 116 : SwFieldType( RES_PAGENUMBERFLD ), in SwPageNumberFieldType() 139 SwFieldType* SwPageNumberFieldType::Copy() const in Copy() 328 : SwFieldType( RES_AUTHORFLD ) in SwAuthorFieldType() 343 SwFieldType* SwAuthorFieldType::Copy() const in Copy() 430 : SwFieldType( RES_FILENAMEFLD ) in SwFileNameFieldType() 484 SwFieldType* SwFileNameFieldType::Copy() const in Copy() 486 SwFieldType *pTmp = new SwFileNameFieldType(pDoc); in Copy() 608 : SwFieldType( RES_TEMPLNAMEFLD ) in SwTemplNameFieldType() 662 SwFieldType* SwTemplNameFieldType::Copy() const in Copy() 664 SwFieldType *pTmp = new SwTemplNameFieldType(pDoc); in Copy() [all …]
|
| H A D | dbfld.cxx | 92 SwFieldType* SwDBFieldType::Copy() const in Copy() 161 SwIterator<SwFmtFld,SwFieldType> aIter( *this ); in PutValue() 304 SwFieldType* SwDBField::ChgTyp( SwFieldType* pNewType ) in ChgTyp() 306 SwFieldType* pOld = SwValueField::ChgTyp( pNewType ); in ChgTyp() 462 SwIterator<SwFmtFld,SwFieldType> aIter( *GetTyp() ); in PutValue() 501 SwDBNameInfField::SwDBNameInfField(SwFieldType* pTyp, const SwDBData& rDBData, sal_uLong nFmt) : in SwDBNameInfField() 613 : SwFieldType( RES_DBNEXTSETFLD ) in SwDBNextSetFieldType() 619 SwFieldType* SwDBNextSetFieldType::Copy() const in Copy() 711 SwFieldType( RES_DBNUMSETFLD ) in SwDBNumSetFieldType() 717 SwFieldType* SwDBNumSetFieldType::Copy() const in Copy() [all …]
|
| H A D | fldlst.cxx | 57 SwFieldType* pFldType = (SwFieldType*)rFldTypes[ i ]; in SwInputFieldList() 62 SwIterator<SwFmtFld,SwFieldType> aIter( *pFldType ); in SwInputFieldList() 153 SwFieldType* pFldType = (SwFieldType*)rFldTypes[ i ]; in BuildSortLst() 158 SwIterator<SwFmtFld,SwFieldType> aIter( *pFldType ); in BuildSortLst()
|
| H A D | reffld.cxx | 748 : SwFieldType( RES_GETREFFLD ), pDoc( pDc ) in SwGetRefFieldType() 752 SwFieldType* SwGetRefFieldType::Copy() const in Copy() 763 SwIterator<SwFmtFld,SwFieldType> aIter( *this ); in Modify() 809 SwFieldType* pFldType = pDoc->GetFldType( RES_SETEXPFLD, rRefMark, false ); in FindAnchor() 813 SwIterator<SwFmtFld,SwFieldType> aIter( *pFldType ); in FindAnchor() 925 SwFieldType* pType; in SV_IMPL_PTRARR() 928 SwIterator<SwFmtFld,SwFieldType> aIter( *pType ); in SV_IMPL_PTRARR() 937 SwIterator<SwFmtFld,SwFieldType> aIter( *pType ); in SV_IMPL_PTRARR() 984 SwFieldType* pType = rDoc.GetFldType( RES_SETEXPFLD, aName, false ); in SV_IMPL_PTRARR() 987 SwIterator<SwFmtFld,SwFieldType> aIter( *pType ); in SV_IMPL_PTRARR() [all …]
|
| H A D | expfld.cxx | 277 SwFieldType* SwGetExpFieldType::Copy() const in Copy() 313 String aStr( SwFieldType::GetTypeStr( in GetFieldName() 361 SwFieldType* pSetExpFld = rDoc.GetFldType(RES_SETEXPFLD, GetFormula(), sal_False); in ChangeExpansion() 512 SwFieldType* SwSetExpFieldType::Copy() const in Copy() 534 SwIterator<SwFmtFld,SwFieldType> aIter(*this); in SetSeqFormat() 560 SwIterator<SwFmtFld,SwFieldType> aIter( *this ); in SetSeqRefNo() 597 SwIterator<SwFmtFld,SwFieldType> aIter( *this ); in GetSeqFldList() 833 String aStr( SwFieldType::GetTypeStr( static_cast<sal_uInt16>(nStrType) ) ); in GetFieldName() 1131 : SwFieldType( RES_INPUTFLD ) in SwInputFieldType() 1136 SwFieldType* SwInputFieldType::Copy() const in Copy()
|
| H A D | authfld.cxx | 88 : SwFieldType( RES_AUTHORITY ), in SwAuthorityFieldType() 102 : SwFieldType( RES_AUTHORITY ), in SwAuthorityFieldType() 126 SwFieldType* SwAuthorityFieldType::Copy() const in Copy() 318 SwIterator<SwFmtFld,SwFieldType> aIter( *this ); in GetSequencePos() 736 SwFieldType* SwAuthorityField::ChgTyp( SwFieldType* pFldTyp ) in ChgTyp()
|
| H A D | flddropdown.cxx | 48 : SwFieldType(RES_DROPDOWN) in SwDropDownFieldType() 56 SwFieldType * SwDropDownFieldType::Copy() const in Copy() 61 SwDropDownField::SwDropDownField(SwFieldType * pTyp) in SwDropDownField()
|
| /AOO42X/main/sw/source/core/unocore/ |
| H A D | unofield.cxx | 295 sal_uInt16 GetFieldTypeMId( const OUString& rProperty, const SwFieldType& rTyp ) in GetFieldTypeMId() 484 SwXFieldMaster::SwXFieldMaster(SwFieldType& rType, SwDoc* pDoc) : in SwXFieldMaster() 518 SwFieldType* pType = GetFldType(sal_True); in setPropertyValue() 574 SwFieldType* pType2 = m_pDoc->GetFldType(nResTypeId, sTypeName, sal_False); in setPropertyValue() 705 SwFieldType* SwXFieldMaster::GetFldType(sal_Bool bDontCreate) const in GetFldType() 722 SwFieldType* pType = m_pDoc->InsertFldType(aType); in GetFldType() 730 return (SwFieldType*)GetRegisteredIn(); in GetFldType() 743 SwFieldType* pType = GetFldType(sal_True); in SV_IMPL_PTRARR() 761 SwIterator<SwFmtFld,SwFieldType> aIter( *pType ); in SV_IMPL_PTRARR() 915 SwFieldType* pFldType = GetFldType( sal_True ); in dispose() [all …]
|
| /AOO42X/main/sw/source/core/edit/ |
| H A D | edfld.cxx | 76 SwFieldType& rFldType = *((*pFldTypes)[i]); in GetFldTypeCount() 87 SwFieldType* SwEditShell::GetFldType(sal_uInt16 nFld, sal_uInt16 nResId, sal_Bool bUsed ) const in GetFldType() 115 SwFieldType* pFldType = (*pFldTypes)[i]; in GetFldType() 132 SwFieldType* SwEditShell::GetFldType(sal_uInt16 nResId, const String& rName) const in GetFldType() 175 SwFieldType* pFldType = (*pFldTypes)[i]; in RemoveFldType() 188 void SwEditShell::FieldToText( SwFieldType* pType ) in FieldToText() 429 SwFieldType* SwEditShell::InsertFldType(const SwFieldType& rFldType) in InsertFldType() 493 SwFieldType& rFldType = *((*pFldTypes)[i]); in IsAnyDatabaseFieldInDoc() 504 SwIterator<SwFmtFld,SwFieldType> aIter( rFldType ); in IsAnyDatabaseFieldInDoc()
|
| /AOO42X/main/sw/source/ui/inc/ |
| H A D | fldmgr.hxx | 46 class SwFieldType; 156 void InsertFldType(SwFieldType& rType); 165 sal_Bool GoNextPrev( sal_Bool bNext = sal_True, SwFieldType* pTyp = 0 ); 166 sal_Bool GoNext( SwFieldType* pTyp = 0 ) { return GoNextPrev( sal_True, pTyp ); } in GoNext() 167 sal_Bool GoPrev( SwFieldType* pTyp = 0 ) { return GoNextPrev( sal_False, pTyp ); } in GoPrev() 180 SwFieldType* GetFldType(sal_uInt16 nResId, sal_uInt16 nId = 0) const; 181 SwFieldType* GetFldType(sal_uInt16 nResId, const String& rName) const;
|
| /AOO42X/main/sw/source/core/doc/ |
| H A D | docfld.cxx | 91 SwFieldType* SwDoc::InsertFldType(const SwFieldType &rFldTyp) in SV_IMPL_OP_PTRARR_SORT() 134 SwFieldType* pNew = rFldTyp.Copy(); in SV_IMPL_OP_PTRARR_SORT() 165 void SwDoc::InsDeletedFldType( SwFieldType& rFldTyp ) in InsDeletedFldType() 182 SwFieldType* pFnd; in InsDeletedFldType() 237 SwFieldType* pTmp = (*pFldTypes)[nFld]; in RemoveFldType() 281 SwFieldType* SwDoc::GetFldType( in GetFldType() 309 SwFieldType* pRet = 0; in GetFldType() 312 SwFieldType* pFldType = (*pFldTypes)[i]; in GetFldType() 401 const SwFieldType* pFldType; in UpdateUsrFlds() 423 SwFieldType* pFldType; in UpdateRefFlds() [all …]
|
| /AOO42X/main/sw/source/core/inc/ |
| H A D | docfld.hxx | 125 const SwFieldType* pFldType; 127 SwCalcFldType( const String& rStr, const SwFieldType* pFldTyp ) in SwCalcFldType() 172 void InsertFldType( const SwFieldType& rType ); 173 void RemoveFldType( const SwFieldType& rType );
|
| /AOO42X/main/sw/source/ui/fldui/ |
| H A D | fldmgr.cxx | 323 SwFieldType* SwFldMgr::GetFldType(sal_uInt16 nResId, sal_uInt16 nId) const in GetFldType() 331 SwFieldType* SwFldMgr::GetFldType(sal_uInt16 nResId, const String& rName) const in GetFldType() 475 return SwFieldType::GetTypeStr( nFldWh ); in GetTypeStr() 542 SwFieldType* pFldType = pSh->GetFldType( i ); in GetSubTypes() 803 sal_Bool SwFldMgr::GoNextPrev( sal_Bool bNext, SwFieldType* pTyp ) in GoNextPrev() 834 void SwFldMgr::InsertFldType(SwFieldType& rType) in InsertFldType() 1483 SwFieldType* pType = pTmpFld->GetTyp(); in UpdateCurFld() 1659 void SwFieldType::_GetFldName() in _GetFldName() 1711 SwFieldType::pFldNames = new SvStringsDtor( (sal_uInt8)coFldCnt, 2 ); in _GetFldName() 1716 SwFieldType::pFldNames->Insert(pTmp, nIdx ); in _GetFldName()
|
| H A D | fldvar.cxx | 496 SwFieldType* pFldTyp; in IMPL_LINK() 900 SwFieldType* pType = GetFldMgr().GetFldType(RES_DDEFLD, sName); in IMPL_LINK() 914 SwFieldType* pType = GetFldMgr().GetFldType(RES_USERFLD, sName); in IMPL_LINK() 953 SwFieldType* pType = (*p)[ i ]; in IMPL_LINK() 1035 SwFieldType* pType = 0; in IMPL_LINK() 1245 SwFieldType* pType = GetFldMgr().GetFldType(RES_USERFLD, aName); in FillItemSet()
|