Home
last modified time | relevance | path

Searched refs:SvxSearchItem (Results 1 – 25 of 62) sorted by relevance

123

/trunk/main/svl/inc/svl/
H A Dsrchitem.hxx57 class SVL_DLLPUBLIC SvxSearchItem : class
84 SvxSearchItem( const sal_uInt16 nId );
85 SvxSearchItem( const SvxSearchItem& rItem );
86 virtual ~SvxSearchItem();
202 sal_Bool SvxSearchItem::GetWordOnly() const in GetWordOnly()
208 sal_Bool SvxSearchItem::GetExact() const in GetExact()
214 sal_Bool SvxSearchItem::GetSelection() const in GetSelection()
220 sal_Bool SvxSearchItem::GetRegExp() const in GetRegExp()
225 sal_Bool SvxSearchItem::IsLEVRelaxed() const in IsLEVRelaxed()
231 sal_uInt16 SvxSearchItem::GetLEVOther() const in GetLEVOther()
[all …]
/trunk/main/svl/source/items/
H A Dsrchitem.cxx65 TYPEINIT1_FACTORY(SvxSearchItem, SfxPoolItem, new SvxSearchItem(0));
105 SvxSearchItem::SvxSearchItem( const sal_uInt16 nId ) : in SvxSearchItem() function in SvxSearchItem
192 SvxSearchItem::SvxSearchItem( const SvxSearchItem& rItem ) : in SvxSearchItem() function in SvxSearchItem
215 SvxSearchItem::~SvxSearchItem() in ~SvxSearchItem()
222 return new SvxSearchItem(*this); in Clone()
245 const SvxSearchItem &rSItem = (SvxSearchItem &) rItem; in operator ==()
346 void SvxSearchItem::Commit() in Commit()
359 void SvxSearchItem::SetWordOnly( sal_Bool bVal ) in SetWordOnly()
368 void SvxSearchItem::SetExact( sal_Bool bVal ) in SetExact()
377 void SvxSearchItem::SetSelection( sal_Bool bVal ) in SetSelection()
[all …]
/trunk/main/sd/source/ui/docshell/
H A Ddocshel3.cxx100 const SvxSearchItem* pSearchItem = in Execute()
101 (const SvxSearchItem*) &pReqArgs->Get(SID_SEARCH_ITEM); in Execute()
104 SvxSearchItem* pAppSearchItem = SD_MOD()->GetSearchItem(); in Execute()
106 pAppSearchItem = (SvxSearchItem*) pSearchItem->Clone(); in Execute()
168 const SvxSearchItem* pSearchItem = in Execute()
169 (const SvxSearchItem*) &pReqArgs->Get(SID_SEARCH_ITEM); in Execute()
172 SvxSearchItem* pAppSearchItem = SD_MOD()->GetSearchItem(); in Execute()
174 pAppSearchItem = (SvxSearchItem*)pSearchItem->Clone(); in Execute()
/trunk/main/sc/source/core/data/
H A Dtable6.cxx60 sal_Bool ScTable::SearchCell(const SvxSearchItem& rSearchItem, SCCOL nCol, SCROW nRow, in SearchCell()
245 sal_Bool ScTable::Search(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow, in Search()
374 sal_Bool ScTable::SearchAll(const SvxSearchItem& rSearchItem, ScMarkData& rMark, in SearchAll()
397 sal_Bool ScTable::Replace(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow, in Replace()
426 sal_Bool ScTable::ReplaceAll(const SvxSearchItem& rSearchItem, ScMarkData& rMark, in ReplaceAll()
455 sal_Bool ScTable::SearchStyle(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow, in SearchStyle()
535 sal_Bool ScTable::ReplaceStyle(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow, in ReplaceStyle()
560 sal_Bool ScTable::SearchAllStyle(const SvxSearchItem& rSearchItem, ScMarkData& rMark) in SearchAllStyle()
598 sal_Bool ScTable::ReplaceAllStyle(const SvxSearchItem& rSearchItem, ScMarkData& rMark, in ReplaceAllStyle()
624 sal_Bool ScTable::SearchAndReplace(const SvxSearchItem& rSearchItem, in SearchAndReplace()
H A Dglobal.cxx95 SvxSearchItem* ScGlobal::pSearchItem = NULL;
266 const SvxSearchItem& ScGlobal::GetSearchItem() in GetSearchItem()
270 pSearchItem = new SvxSearchItem( SID_SEARCH_ITEM ); in GetSearchItem()
276 void ScGlobal::SetSearchItem( const SvxSearchItem& rNew ) in SetSearchItem()
280 pSearchItem = (SvxSearchItem*)rNew.Clone(); in SetSearchItem()
/trunk/main/sc/source/ui/view/
H A Dtabvwshe.cxx258 DBG_ASSERT( pItem->ISA(SvxSearchItem), "falsches Item" ); in ExecSearch()
259 const SvxSearchItem* pSearchItem = (const SvxSearchItem*) pItem; in ExecSearch()
293 DBG_ASSERT( pItem->ISA(SvxSearchItem), "falsches Item" ); in ExecSearch()
294 ScGlobal::SetSearchItem( *(const SvxSearchItem*) pItem ); in ExecSearch()
310 SvxSearchItem aSearchItem = ScGlobal::GetSearchItem(); in ExecSearch()
365 SvxSearchItem aSearchItem = ScGlobal::GetSearchItem(); in ExecSearch()
/trunk/main/sw/source/ui/inc/
H A Dsrcview.hxx34 class SvxSearchItem;
45 SvxSearchItem* pSearchItem;
56 sal_uInt16 StartSearchAndReplace(const SvxSearchItem& rItem,
85 SvxSearchItem* GetSearchItem();
86 void SetSearchItem( const SvxSearchItem& rItem );
/trunk/main/basctl/source/basicide/
H A Dbasides1.cxx79 class SvxSearchItem;
141 DBG_ASSERT( rItem.ISA( SvxSearchItem ), "Kein Searchitem!" ); in ExecuteCurrent()
142 if ( rItem.ISA( SvxSearchItem ) ) in ExecuteCurrent()
145 IDE_DLL()->GetExtraData()->SetSearchItem( (const SvxSearchItem&)rItem ); in ExecuteCurrent()
148 if ( ((const SvxSearchItem&)rItem).GetCommand() == SVX_SEARCHCMD_REPLACE_ALL ) in ExecuteCurrent()
165 … nFound = nFound + ((ModulWindow*)pWin)->StartSearchAndReplace( (const SvxSearchItem&)rItem ); in ExecuteCurrent()
170 nFound = ((ModulWindow*)pCurWin)->StartSearchAndReplace( (const SvxSearchItem&)rItem ); in ExecuteCurrent()
179 nFound = ((ModulWindow*)pCurWin)->StartSearchAndReplace( (const SvxSearchItem&)rItem ); in ExecuteCurrent()
180 if ( !nFound && !((const SvxSearchItem&)rItem).GetSelection() ) in ExecuteCurrent()
213 … nFound = ((ModulWindow*)pWin)->StartSearchAndReplace( (const SvxSearchItem&)rItem, sal_True ); in ExecuteCurrent()
[all …]
H A Diderdll2.hxx28 class SvxSearchItem;
44 SvxSearchItem* pSearchItem;
81 SvxSearchItem& GetSearchItem() const;
82 void SetSearchItem( const SvxSearchItem& rItem );
H A Diderdll.cxx140 pSearchItem = new SvxSearchItem( SID_SEARCH_ITEM ); in BasicIDEData()
161 SvxSearchItem& BasicIDEData::GetSearchItem() const in GetSearchItem()
166 void BasicIDEData::SetSearchItem( const SvxSearchItem& rItem ) in SetSearchItem()
169 pSearchItem = (SvxSearchItem*)rItem.Clone(); in SetSearchItem()
H A Dbaside2.hxx35 class SvxSearchItem;
427 …sal_uInt16 StartSearchAndReplace( const SvxSearchItem& rSearchItem, sal_Bool bFromStart = sal_Fa…
/trunk/main/sw/source/ui/uiview/
H A Dsrcview.cxx422 SetSearchItem( (const SvxSearchItem&)rItem); in Execute()
423 StartSearchAndReplace( (const SvxSearchItem&)rItem, sal_False, rReq.IsAPI() ); in Execute()
430 SvxSearchItem* pSrchItem = GetSearchItem(); in Execute()
534 SvxSearchItem * pSrchItem = GetSearchItem(); in GetState()
612 SvxSearchItem* SwSrcView::GetSearchItem() in GetSearchItem()
616 pSearchItem = new SvxSearchItem(SID_SEARCH_ITEM); in GetSearchItem()
626 void SwSrcView::SetSearchItem( const SvxSearchItem& rItem ) in SetSearchItem()
629 pSearchItem = (SvxSearchItem*)rItem.Clone(); in SetSearchItem()
637 sal_uInt16 SwSrcView::StartSearchAndReplace(const SvxSearchItem& rSearchItem, in StartSearchAndReplace()
H A Dviewsrch.cxx130 pSrchItem = (SvxSearchItem*) pArgs->Get(SID_SEARCH_ITEM).Clone(); in ExecSearch()
144 pSrchItem = (SvxSearchItem*) pArgs->Get(SID_SEARCH_ITEM).Clone(); in ExecSearch()
196 pSrchItem = new SvxSearchItem(SID_SEARCH_ITEM); in ExecSearch()
205 pSrchItem = (SvxSearchItem*) pArgs->Get(SID_SEARCH_ITEM).Clone(); in ExecSearch()
787 pSrchItem = new SvxSearchItem( SID_SEARCH_ITEM ); in StateSearch()
/trunk/main/sd/inc/
H A Dsdmod.hxx50 class SvxSearchItem;
119 SvxSearchItem* GetSearchItem() { return (pSearchItem); } in GetSearchItem()
120 void SetSearchItem(SvxSearchItem* pItem) { pSearchItem = pItem; } in SetSearchItem()
147 SvxSearchItem* pSearchItem;
H A DOutliner.hxx147 bool StartSearchAndReplace (const SvxSearchItem* pSearchItem);
314 const SvxSearchItem* mpSearchItem;
/trunk/main/sc/inc/
H A Dtable.hxx56 class SvxSearchItem;
514 sal_Bool SearchAndReplace(const SvxSearchItem& rSearchItem,
823 sal_Bool SearchCell(const SvxSearchItem& rSearchItem, SCCOL nCol, SCROW nRow,
825 sal_Bool Search(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
827 sal_Bool SearchAll(const SvxSearchItem& rSearchItem, ScMarkData& rMark,
829 sal_Bool Replace(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
831 sal_Bool ReplaceAll(const SvxSearchItem& rSearchItem, ScMarkData& rMark,
834 sal_Bool SearchStyle(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
836 sal_Bool ReplaceStyle(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
838 sal_Bool SearchAllStyle(const SvxSearchItem& rSearchItem, ScMarkData& rMark);
[all …]
H A Dsrchuno.hxx34 class SvxSearchItem;
44 SvxSearchItem* pSearchItem;
50 SvxSearchItem* GetSearchItem() const { return pSearchItem; } in GetSearchItem()
H A Dglobal.hxx493 class SvxSearchItem;
530 static SvxSearchItem* pSearchItem;
588 SC_DLLPUBLIC static const SvxSearchItem& GetSearchItem();
589 SC_DLLPUBLIC static void SetSearchItem( const SvxSearchItem& rNew );
/trunk/main/svx/inc/svx/
H A Dsrchdlg.hxx49 class SvxSearchItem;
238 SvxSearchItem* pSearchItem;
273 void SetItem_Impl( const SvxSearchItem* pItem );
/trunk/main/sd/source/ui/inc/
H A Dfusearch.hxx29 class SvxSearchItem;
44 void SearchAndReplace( const SvxSearchItem* pSearchItem );
/trunk/main/svx/source/dialog/
H A Dsrchctrl.cxx78 DBG_ASSERT( pState->ISA(SvxSearchItem), "wrong item type" ); in StateChanged()
79 rSrchDlg.SetItem_Impl( (const SvxSearchItem*)pState ); in StateChanged()
/trunk/main/editeng/inc/editeng/
H A Deditview.hxx37 class SvxSearchItem;
212 sal_uInt16 StartSearchAndReplace( const SvxSearchItem& rSearchItem );
/trunk/main/sw/inc/
H A DPostItMgr.hxx51 class SvxSearchItem;
281 sal_uInt16 Replace(SvxSearchItem* pItem);
/trunk/main/editeng/source/editeng/
H A Dimpedit.hxx85 class SvxSearchItem;
976 sal_Bool Search( const SvxSearchItem& rSearchItem, EditView* pView );
977 …sal_Bool ImpSearch( const SvxSearchItem& rSearchItem, const EditSelection& rSearchSelection, con…
978 sal_uInt16 StartSearchAndReplace( EditView* pEditView, const SvxSearchItem& rSearchItem );
979 sal_Bool HasText( const SvxSearchItem& rSearchItem );
/trunk/main/sc/source/ui/inc/
H A Dundoblk.hxx41 class SvxSearchItem;
500 const SvxSearchItem* pItem );
515 SvxSearchItem* pSearchItem;

Completed in 110 milliseconds

123