Lines Matching refs:place

115 void CFX_Edit_Iterator::SetAt(const CPVT_WordPlace & place)  in SetAt()  argument
119 m_pVTIterator->SetAt(place); in SetAt()
852 CFXEU_SetSecProps::CFXEU_SetSecProps(CFX_Edit * pEdit, const CPVT_WordPlace & place, EDIT_PROPS_E e… in CFXEU_SetSecProps() argument
856 m_wpPlace(place), in CFXEU_SetSecProps()
900 CFXEU_SetWordProps::CFXEU_SetWordProps(CFX_Edit * pEdit, const CPVT_WordPlace & place, EDIT_PROPS_E… in CFXEU_SetWordProps() argument
903 m_wpPlace(place), in CFXEU_SetWordProps()
1241 CPVT_WordPlace place = pIterator->GetAt(); in GetText() local
1255 if (oldplace.SecCmp(place) != 0) in GetText()
1261 oldplace = place; in GetText()
1288 CPVT_WordPlace place = pIterator->GetAt(); in GetRangeText() local
1289 if (place.WordCmp(wrTemp.EndPos) > 0)break; in GetRangeText()
1303 if (oldplace.SecCmp(place) != 0) in GetRangeText()
1309 oldplace = place; in GetRangeText()
1497 CPVT_WordPlace place = pIterator->GetAt(); in SetRichTextProps() local
1498 if (place.WordCmp(wrTemp.EndPos) > 0) break; in SetRichTextProps()
1499 bSet1 = SetSecProps(eProps,place,pSecProps,pWordProps,wrTemp,TRUE); in SetRichTextProps()
1500 bSet2 = SetWordProps(eProps,place,pWordProps,wrTemp,TRUE); in SetRichTextProps()
1556 FX_BOOL CFX_Edit::SetSecProps(EDIT_PROPS_E eProps, const CPVT_WordPlace & place, in SetSecProps() argument
1574 pIterator->SetAt(place); in SetSecProps()
1610 if (pWordProps && place == m_pVT->GetSectionBeginPlace(place)) in SetSecProps()
1612 pIterator->SetAt(place); in SetSecProps()
1747 …(this,place,eProps,OldSecinfo.SecProps,OldSecinfo.WordProps,secinfo.SecProps,secinfo.WordProps,wr)… in SetSecProps()
1760 FX_BOOL CFX_Edit::SetWordProps(EDIT_PROPS_E eProps, const CPVT_WordPlace & place, in SetWordProps() argument
1775 pIterator->SetAt(place); in SetWordProps()
1912 (this,place,eProps,OldWordinfo.WordProps,wordinfo.WordProps,wr)); in SetWordProps()
2471 CPVT_WordPlace place; in RefreshPushRandomRects() local
2475 place = pIterator->GetAt(); in RefreshPushRandomRects()
2476 if (place.WordCmp(wrTemp.EndPos) > 0) break; in RefreshPushRandomRects()
2481 if (place.LineCmp(wrTemp.BeginPos) == 0 || place.LineCmp(wrTemp.EndPos) == 0) in RefreshPushRandomRects()
2518 CPVT_WordPlace place; in RefreshWordRange() local
2522 place = pIterator->GetAt(); in RefreshWordRange()
2523 if (place.WordCmp(wrTemp.EndPos) > 0) break; in RefreshWordRange()
2528 if (place.LineCmp(wrTemp.BeginPos) == 0 || place.LineCmp(wrTemp.EndPos) == 0) in RefreshWordRange()
2570 void CFX_Edit::SetCaret(const CPVT_WordPlace & place) in SetCaret() argument
2573 m_wpCaret = place; in SetCaret()
3207 CPVT_WordPlace place = pIterator->GetAt(); in Clear() local
3208 if (place.WordCmp(range.BeginPos) <= 0)break; in Clear()
3210 CPVT_WordPlace oldplace = m_pVT->GetPrevWordPlace(place); in Clear()
3212 if (oldplace.SecCmp(place) != 0) in Clear()
3216 AddEditUndoItem(new CFXEU_ClearRich(this,oldplace,place,range,wordinfo.Word, in Clear()
3225 place = m_pVT->AjustLineHeader(place,TRUE); in Clear()
3227 AddEditUndoItem(new CFXEU_ClearRich(this,oldplace,place,range,wordinfo.Word, in Clear()
3363 FX_INT32 CFX_Edit::WordPlaceToWordIndex(const CPVT_WordPlace & place) const in WordPlaceToWordIndex()
3366 return m_pVT->WordPlaceToWordIndex(place); in WordPlaceToWordIndex()
3407 CPVT_WordPlace CFX_Edit::GetLineBeginPlace(const CPVT_WordPlace & place) const in GetLineBeginPlace()
3409 return m_pVT->GetLineBeginPlace(place); in GetLineBeginPlace()
3412 CPVT_WordPlace CFX_Edit::GetLineEndPlace(const CPVT_WordPlace & place) const in GetLineEndPlace()
3414 return m_pVT->GetLineEndPlace(place); in GetLineEndPlace()
3417 CPVT_WordPlace CFX_Edit::GetSectionBeginPlace(const CPVT_WordPlace & place) const in GetSectionBeginPlace()
3419 return m_pVT->GetSectionBeginPlace(place); in GetSectionBeginPlace()
3422 CPVT_WordPlace CFX_Edit::GetSectionEndPlace(const CPVT_WordPlace & place) const in GetSectionEndPlace()
3424 return m_pVT->GetSectionEndPlace(place); in GetSectionEndPlace()
3477 FX_FLOAT CFX_Edit::GetLineTop(const CPVT_WordPlace& place) const in GetLineTop()
3483 pIterator->SetAt(place); in GetLineTop()
3495 FX_FLOAT CFX_Edit::GetLineBottom(const CPVT_WordPlace& place) const in GetLineBottom()
3501 pIterator->SetAt(place); in GetLineBottom()
3513 CPVT_WordPlace CFX_Edit::DoInsertText(const CPVT_WordPlace& place, FX_LPCWSTR text, FX_INT32 charse… in DoInsertText() argument
3516 CPVT_WordPlace wp = place; in DoInsertText()