Home
last modified time | relevance | path

Searched refs:pDerivedFrom (Results 1 – 10 of 10) sorted by relevance

/trunk/main/sw/source/core/undo/
H A DSwUndoFmt.cxx78 SwFmt * pDerivedFrom = Find(sDerivedFrom); in RedoImpl() local
79 SwFmt * pFmt = Create(pDerivedFrom); in RedoImpl()
124 SwFmt * pDerivedFrom = Find(sDerivedFrom); in UndoImpl() local
126 SwFmt * pFmt = Create(pDerivedFrom); in UndoImpl()
208 SwFmt * SwUndoTxtFmtCollCreate::Create(SwFmt * pDerivedFrom) in Create() argument
210 return pDoc->MakeTxtFmtColl(sNewName, (SwTxtFmtColl *)pDerivedFrom, sal_True); in Create()
229 SwFmt * SwUndoTxtFmtCollDelete::Create(SwFmt * pDerivedFrom) in Create() argument
231 return pDoc->MakeTxtFmtColl(sOldName, (SwTxtFmtColl *) pDerivedFrom, sal_True); in Create()
257 SwCharFmt * pDerivedFrom, in SwUndoCharFmtCreate() argument
259 : SwUndoFmtCreate(UNDO_CHARFMT_CREATE, pNewFmt, pDerivedFrom, pDocument) in SwUndoCharFmtCreate()
[all …]
/trunk/main/sw/source/core/inc/
H A DSwUndoFmt.hxx50 SwUndoFmtCreate(SwUndoId nUndoId, SwFmt * pNew, SwFmt * pDerivedFrom,
59 virtual SwFmt * Create(SwFmt * pDerivedFrom) = 0;
83 virtual SwFmt * Create(SwFmt * pDerivedFrom) = 0;
112 SwUndoTxtFmtCollCreate(SwTxtFmtColl * pNew, SwTxtFmtColl * pDerivedFrom,
115 virtual SwFmt * Create(SwFmt * pDerivedFrom);
125 virtual SwFmt * Create(SwFmt * pDerivedFrom);
143 SwUndoCharFmtCreate(SwCharFmt * pNew, SwCharFmt * pDerivedFrom,
146 virtual SwFmt * Create(SwFmt * pDerivedFrom);
156 virtual SwFmt * Create(SwFmt * pDerivedFrom);
176 SwUndoFrmFmtCreate(SwFrmFmt * pNew, SwFrmFmt * pDerivedFrom,
[all …]
/trunk/main/sw/source/core/doc/
H A Ddocfmt.cxx1461 SwFrmFmt *pDerivedFrom ) in MakeFlyFrmFmt() argument
1463 SwFlyFrmFmt *pFmt = new SwFlyFrmFmt( GetAttrPool(), rFmtName, pDerivedFrom ); in MakeFlyFrmFmt()
1470 SwFrmFmt *pDerivedFrom ) in MakeDrawFrmFmt() argument
1472 SwDrawFrmFmt *pFmt = new SwDrawFrmFmt( GetAttrPool(), rFmtName, pDerivedFrom); in MakeDrawFrmFmt()
1515 SwFrmFmt *pDerivedFrom ) in MakeTblFrmFmt() argument
1517 SwTableFmt* pFmt = new SwTableFmt( GetAttrPool(), rFmtName, pDerivedFrom ); in MakeTblFrmFmt()
1525 SwFrmFmt *pDerivedFrom, in MakeFrmFmt() argument
1529 SwFrmFmt *pFmt = new SwFrmFmt( GetAttrPool(), rFmtName, pDerivedFrom ); in MakeFrmFmt()
1542 SwUndo * pUndo = new SwUndoFrmFmtCreate(pFmt, pDerivedFrom, this); in MakeFrmFmt()
1552 SwFmt *pDerivedFrom, in _MakeFrmFmt() argument
[all …]
/trunk/main/sw/inc/
H A Dcharfmt.hxx34 SwCharFmt *pDerivedFrom ) in SwCharFmt() argument
35 : SwFmt( rPool, pFmtName, aCharFmtSetRange, pDerivedFrom, RES_CHRFMT ) in SwCharFmt()
38 SwCharFmt *pDerivedFrom ) in SwCharFmt() argument
39 : SwFmt( rPool, rFmtName, aCharFmtSetRange, pDerivedFrom, RES_CHRFMT ) in SwCharFmt()
H A Ddoc.hxx1089 SwFlyFrmFmt *MakeFlyFrmFmt (const String &rFmtName, SwFrmFmt *pDerivedFrom);
1090 SwDrawFrmFmt *MakeDrawFrmFmt(const String &rFmtName, SwFrmFmt *pDerivedFrom);
1282 SwFrmFmt *MakeFrmFmt(const String &rFmtName, SwFrmFmt *pDerivedFrom,
1289 SwCharFmt *MakeCharFmt(const String &rFmtName, SwCharFmt *pDerivedFrom,
1304 SwTxtFmtColl *pDerivedFrom,
1309 SwTxtFmtColl *pDerivedFrom,
1336 SwGrfFmtColl *pDerivedFrom);
1345 SwTableFmt* MakeTblFrmFmt(const String &rFmtName, SwFrmFmt *pDerivedFrom);
1827 SwSectionFmt *MakeSectionFmt( SwSectionFmt *pDerivedFrom );
H A Deditsh.hxx285 SwCharFmt* MakeCharFmt( const String& rName, SwCharFmt* pDerivedFrom = 0 );
310 SwTxtFmtColl *pDerivedFrom = 0);
H A Dformat.hxx93 sal_Bool SetDerivedFrom(SwFmt *pDerivedFrom = 0);
/trunk/main/sw/source/core/edit/
H A Dedfmt.cxx144 SwCharFmt* pDerivedFrom ) in MakeCharFmt() argument
146 if( !pDerivedFrom ) in MakeCharFmt()
147 pDerivedFrom = GetDoc()->GetDfltCharFmt(); in MakeCharFmt()
149 return GetDoc()->MakeCharFmt( rName, pDerivedFrom ); in MakeCharFmt()
/trunk/main/sw/source/ui/uiview/
H A Dviewdlg2.cxx123 SwTxtFmtColl* pDerivedFrom = rSh.GetTxtCollFromPool(RES_POOLCOLL_LABEL); in InsertCaption() local
124 rSh.MakeTxtFmtColl(rName, pDerivedFrom); in InsertCaption()
/trunk/main/sw/source/core/docnode/
H A Dndsect.cxx511 SwSectionFmt* SwDoc::MakeSectionFmt( SwSectionFmt *pDerivedFrom ) in MakeSectionFmt() argument
513 if( !pDerivedFrom ) in MakeSectionFmt()
514 pDerivedFrom = (SwSectionFmt*)pDfltFrmFmt; in MakeSectionFmt()
515 SwSectionFmt* pNew = new SwSectionFmt( pDerivedFrom, this ); in MakeSectionFmt()