Home
last modified time | relevance | path

Searched refs:ScPostIt (Results 1 – 25 of 39) sorted by path

12

/trunk/main/sc/inc/
H A Dcell.hxx54 class ScPostIt;
118 inline const ScPostIt* GetNote() const { return mpNote; } in GetNote()
120 inline ScPostIt* GetNote() { return mpNote; } in GetNote()
122 void TakeNote( ScPostIt* pNote );
124 ScPostIt* ReleaseNote();
163 ScPostIt* mpNote; /// The cell note. Cell takes ownership!
184 explicit ScNoteCell( ScPostIt* pNote, SvtBroadcaster* pBC = 0 );
H A Dcolumn.hxx59 class ScPostIt;
262 ScPostIt* GetNote( SCROW nRow );
264 void TakeNote( SCROW nRow, ScPostIt* pNote );
266 ScPostIt* ReleaseNote( SCROW nRow );
H A Ddetfunc.hxx36 class ScPostIt;
H A Ddocument.hxx844 ScPostIt* GetNote( const ScAddress& rPos );
846 void TakeNote( const ScAddress& rPos, ScPostIt*& rpNote );
848 ScPostIt* ReleaseNote( const ScAddress& rPos );
850 SC_DLLPUBLIC ScPostIt* GetOrCreateNote( const ScAddress& rPos );
H A Dnotesuno.hxx38 class ScPostIt;
116 const ScPostIt* ImplGetNote() const;
H A Dpostit.hxx63 class SC_DLLPUBLIC ScPostIt class
68 explicit ScPostIt( ScDocument& rDoc, const ScAddress& rPos, bool bShown );
71 explicit ScPostIt( ScDocument& rDoc, const ScAddress& rPos, const ScPostIt& rNote );
83 explicit ScPostIt(
88 ~ScPostIt();
98 ScPostIt* Clone(
152 ScPostIt( const ScPostIt& );
153 ScPostIt& operator=( const ScPostIt& );
194 static ScPostIt* CreateNoteFromCaption(
229 static ScPostIt* CreateNoteFromObjectData(
[all …]
H A Dtable.hxx65 class ScPostIt;
350 ScPostIt* GetNote( SCCOL nCol, SCROW nRow );
352 void TakeNote( SCCOL nCol, SCROW nRow, ScPostIt*& rpNote );
354 ScPostIt* ReleaseNote( SCCOL nCol, SCROW nRow );
/trunk/main/sc/source/core/data/
H A Dcell.cxx186 void ScBaseCell::TakeNote( ScPostIt* pNote ) in TakeNote()
192 ScPostIt* ScBaseCell::ReleaseNote() in ReleaseNote()
194 ScPostIt* pNote = mpNote; in ReleaseNote()
562 ScNoteCell::ScNoteCell( ScPostIt* pNote, SvtBroadcaster* pBC ) : in ScNoteCell()
H A Dcolumn.cxx951 ScPostIt* pNote1 = pCell1->ReleaseNote(); in SwapRow()
H A Dcolumn3.cxx376 if ( ScPostIt* pNote = pItems[ nIdx ].pCell->GetNote() ) in DeleteRange()
473 ScPostIt* pNote = bDeleteNote ? 0 : pOldCell->ReleaseNote(); in DeleteRange()
784 const ScPostIt* pSourceNote = pSourceCell ? pSourceCell->GetNote() : 0; in CopyFromClip()
912 if (ScPostIt* pNote = rSource.GetNote()) in CloneCell()
917 ScPostIt* pNewNote = pNote->Clone( aOwnPos, rDestDoc, rDestPos, bCloneCaption ); in CloneCell()
1438 ScPostIt* pNote = pOldCell->ReleaseNote(); in SetString()
1542 ScPostIt aCellNote( ScPostIt::UNINITIALIZED ); in GetFilterEntries()
1921 ScPostIt* ScColumn::GetNote( SCROW nRow ) in GetNote()
1928 void ScColumn::TakeNote( SCROW nRow, ScPostIt* pNote ) in TakeNote()
1938 ScPostIt* ScColumn::ReleaseNote( SCROW nRow ) in ReleaseNote()
[all …]
H A Ddocument.cxx2963 ScPostIt* ScDocument::GetNote( const ScAddress& rPos ) in GetNote()
2970 void ScDocument::TakeNote( const ScAddress& rPos, ScPostIt*& rpNote ) in TakeNote()
2979 ScPostIt* ScDocument::ReleaseNote( const ScAddress& rPos ) in ReleaseNote()
2986 ScPostIt* ScDocument::GetOrCreateNote( const ScAddress& rPos ) in GetOrCreateNote()
2988 ScPostIt* pNote = GetNote( rPos ); in GetOrCreateNote()
2991 pNote = new ScPostIt( *this, rPos, false ); in GetOrCreateNote()
H A Ddrwlayer.cxx557 if( ScPostIt* pNote = pDoc->GetNote( rData.maStart ) ) in RecalcPos()
H A Dpostit.cxx507 ScPostIt::ScPostIt( ScDocument& rDoc, const ScAddress& rPos, bool bShown ) : in ScPostIt() function in ScPostIt
515 ScPostIt::ScPostIt( ScDocument& rDoc, const ScAddress& rPos, const ScPostIt& rNote ) : in ScPostIt() function in ScPostIt
531 ScPostIt::~ScPostIt() in ~ScPostIt()
542 void ScPostIt::AutoStamp() in AutoStamp()
563 OUString ScPostIt::GetText() const in GetText()
581 bool ScPostIt::HasMultiLineText() const in HasMultiLineText()
603 void ScPostIt::ForgetCaption() in ForgetCaption()
749 void ScPostIt::RemoveCaption() in RemoveCaption()
856 ScPostIt* pNote = new ScPostIt( rDoc, rPos, aNoteData, false ); in CreateNoteFromCaption()
893 ScPostIt* pNote = new ScPostIt( rDoc, rPos, aNoteData, bAlwaysCreateCaption ); in CreateNoteFromObjectData()
[all …]
H A Dtable2.cxx1104 ScPostIt* ScTable::GetNote( SCCOL nCol, SCROW nRow ) in GetNote()
1110 void ScTable::TakeNote( SCCOL nCol, SCROW nRow, ScPostIt*& rpNote ) in TakeNote()
1127 ScPostIt* ScTable::ReleaseNote( SCCOL nCol, SCROW nRow ) in ReleaseNote()
1145 if( ScPostIt* pNote = GetNote( aIt->first, aIt->second ) ) in InitializeNoteCaptions()
H A Dtable6.cxx98 if(const ScPostIt* pNote = pCell->GetNote()) in SearchCell()
214 if( ScPostIt* pNote = pCell->GetNote() ) in SearchCell()
/trunk/main/sc/source/core/tool/
H A Ddetfunc.cxx1442 ScPostIt* pNote = rDoc.GetNote( pData->maStart ); in UpdateAllComments()
H A Dinterpr2.cxx1620 ScPostIt* pNote = 0; in ScBackSolver()
/trunk/main/sc/source/filter/excel/
H A Dxeescher.cxx982 const ScPostIt* pScNote, const String& rAddText ) : in XclExpNote()
H A Dxetable.cxx2490 const ScPostIt* pScNote = pScCell ? pScCell->GetNote() : 0; in XclExpCellTable()
/trunk/main/sc/source/filter/inc/
H A Dxeescher.hxx322 const ScPostIt* pScNote,
/trunk/main/sc/source/filter/xml/
H A Dxmlcelli.cxx604 ScPostIt* pNote = 0; in SetAnnotation()
H A Dxmlexprt.cxx2299 ScPostIt* pNote = pDoc->GetNote( aPos ); in _ExportAutoStyles()
2346 ScPostIt* pNote = pDoc->GetNote( aPos ); in _ExportAutoStyles()
2381 ScPostIt* pNote = pDoc->GetNote( aPos ); in _ExportAutoStyles()
/trunk/main/sc/source/ui/Accessibility/
H A DAccessibleDocumentPagePreview.cxx189 if( ScPostIt* pNote = pDoc->GetNote( aNote.maNoteCell ) ) in AddNotes()
366 if( ScPostIt* pNote = pDoc->GetNote( aNote.maNoteCell ) ) in CheckChanges()
/trunk/main/sc/source/ui/docshell/
H A Ddocfunc.cxx1076 ScPostIt* pNote = rDoc.GetNote( rPos ); in ShowNote()
1110 …if( ScPostIt* pNote = (aNewText.Len() > 0) ? pDoc->GetOrCreateNote( rPos ) : pDoc->GetNote( rPos )… in SetNoteText()
1139 ScPostIt* pOldNote = rDoc.ReleaseNote( rPos ); in ReplaceNote()
1157 … if( ScPostIt* pNewNote = ScNoteUtil::CreateNoteFromString( rDoc, rPos, rNoteText, false, true ) ) in ReplaceNote()
/trunk/main/sc/source/ui/drawfunc/
H A Dfutext3.cxx75 ScPostIt* pNote = 0; in StopEditMode()
203 ScPostIt* pNote = rDoc.GetNote( rPos ); in StopDragMode()

Completed in 193 milliseconds

12