Lines Matching refs:pWin

118 		ObjectWin *pWin = pObjLst->GetObject( i );  in HideObjectsAndConnections()  local
119 pWin->Hide(); in HideObjectsAndConnections()
130 ObjectWin *pWin = pObjLst->GetObject( i ); in ShowObjectsAndConnections() local
131 pWin->Show(); in ShowObjectsAndConnections()
202 ObjectWin* pWin; in ObjIdToPtr() local
207 pWin = pObjLst->GetObject( i ); in ObjIdToPtr()
208 nWinId = pWin->GetId(); in ObjIdToPtr()
211 while( i < nObjCount && pWin->GetId() != nId ); in ObjIdToPtr()
212 if ( pWin->GetId() == nId ) in ObjIdToPtr()
213 return pWin; in ObjIdToPtr()
282 ObjectWin* pWin; in Zoom() local
293 pWin = pObjList->GetObject( i - 1 ); in Zoom()
294 aPos = pWin->PixelToLogic( pWin->GetPosPixel()); in Zoom()
295 aSize = pWin->PixelToLogic( pWin->GetSizePixel()); in Zoom()
296 pWin->SetMapMode( rMapMode ); in Zoom()
297 aPos = pWin->LogicToPixel( aPos ); in Zoom()
298 aSize = pWin->LogicToPixel( aSize ); in Zoom()
299 pWin->SetPosSizePixel( aPos, aSize ); in Zoom()
317 ObjectWin* pWin = new ObjectWin( pParentWin, WB_BORDER ); in AddObjectToList() local
319 pWin->SetGlobalViewMask(mnViewMask); // Set ViewMask for all ObjectWin and Connector objects in AddObjectToList()
322 aNewSize.Width() = pWin->GetTextWidth( String( rBodyText, RTL_TEXTENCODING_UTF8 )); in AddObjectToList()
323 aNewSize.Height() = pWin->GetTextHeight(); in AddObjectToList()
331 pWin->SetPosSizePixel( rPos,aNewSize); in AddObjectToList()
334 pWin->SetMapMode( aMapMode ); in AddObjectToList()
336 pObjLst->Insert( pWin, LIST_APPEND ); in AddObjectToList()
337 pWin->SetId( LastID ); in AddObjectToList()
340 pWin->SetBodyText( rBodyText ); in AddObjectToList()
342 return pWin->GetId(); in AddObjectToList()
358 ObjectWin* pWin = ObjIdToPtr( pObjLst, nId ); in RemoveObjectFromList() local
360 if ( pWin ) in RemoveObjectFromList()
362 pObjLst->Remove( pWin ); in RemoveObjectFromList()
365 delete pWin; in RemoveObjectFromList()
366 return pWin; in RemoveObjectFromList()