Home
last modified time | relevance | path

Searched refs:aPos (Results 1 – 25 of 748) sorted by relevance

12345678910>>...30

/AOO41X/main/comphelper/source/property/
H A Dpropertycontainerhelper.cxx118 PropertiesIterator aPos = searchHandle( _nHandle ); in revokeProperty() local
119 if ( aPos == m_aProperties.end() ) in revokeProperty()
121 m_aProperties.erase( aPos ); in revokeProperty()
251 PropertiesIterator aPos = searchHandle(_nHandle); in convertFastPropertyValue() local
252 if (aPos == m_aProperties.end()) in convertFastPropertyValue()
260 switch (aPos->eLocated) in convertFastPropertyValue()
266 … sal_Bool bMayBeVoid = ((aPos->aProperty.Attributes & PropertyAttribute::MAYBEVOID) != 0); in convertFastPropertyValue()
275 if ( !aNewRequestedValue.getValueType().equals( aPos->aProperty.Type ) ) in convertFastPropertyValue()
277 Any aProperlyTyped( NULL, aPos->aProperty.Type.getTypeLibType() ); in convertFastPropertyValue()
296 …|| (aNewRequestedValue.getValueType().equals(aPos->aProperty.Type)) // else the types have to … in convertFastPropertyValue()
[all …]
/AOO41X/main/sw/source/core/frmedt/
H A Dfews.cxx119 SwPosition aPos( *GetCrsr()->GetPoint() ); in GetAnyCurRect() local
121 GetLayout()->GetCrsrOfst( &aPos, aPt ); in GetAnyCurRect()
122 SwCntntNode *pNd = aPos.nNode.GetNode().GetCntntNode(); in GetAnyCurRect()
266 SwPosition aPos( *GetCrsr()->GetPoint() ); in GetFrmType() local
268 GetLayout()->GetCrsrOfst( &aPos, aPt ); in GetFrmType()
269 SwCntntNode *pNd = aPos.nNode.GetNode().GetCntntNode(); in GetFrmType()
778 Point aPos; in CalcBoundRect() local
804 aPos = pFrm->Frm().TopRight(); in CalcBoundRect()
806 aPos = (pFrm->Frm().*fnRect->fnGetPos)(); in CalcBoundRect()
820 case text::RelOrientation::FRAME_RIGHT: aPos.Y() += pFrm->Prt().Height(); in CalcBoundRect()
[all …]
H A Dfecopy.cxx153 SwPosition aPos( aSttIdx ); in Copy() local
156 aPos.nContent.Assign( pTxtNd, 0 ); in Copy()
158 aAnchor.SetAnchor( &aPos ); in Copy()
195 SwPosition aPos( aSttIdx, SwIndex( pTxtNd, 0 )); in Copy() local
207 aAnchor.SetAnchor( &aPos ); in Copy()
213 SwPaM aTemp(aPos); in Copy()
226 aAnchor.SetAnchor( &aPos ); in Copy()
278 SwPosition aPos( rIdx ); in lcl_SetAnchor() local
279 rAnchor.SetAnchor( &aPos ); in lcl_SetAnchor()
357 SwPosition aPos( *GetCrsr()->GetPoint() ); in CopyDrawSel() local
[all …]
/AOO41X/main/sc/source/ui/cctrl/
H A Ddpcontrol.cxx202 Point aPos; in drawPopupButton() local
204 getPopupBoundingBox(aPos, aSize); in drawPopupButton()
209 mpOutDev->DrawRect(Rectangle(aPos, aSize)); in drawPopupButton()
215 … mpOutDev->DrawLine(Point(aPos.X()+1, aPos.Y()+1), Point(aPos.X()+1, aPos.Y()+aSize.Height()-2)); in drawPopupButton()
216 … mpOutDev->DrawLine(Point(aPos.X()+1, aPos.Y()+1), Point(aPos.X()+aSize.Width()-2, aPos.Y()+1)); in drawPopupButton()
219 mpOutDev->DrawLine(Point(aPos.X()+1, aPos.Y()+aSize.Height()-2), in drawPopupButton()
220 Point(aPos.X()+aSize.Width()-2, aPos.Y()+aSize.Height()-2)); in drawPopupButton()
221 mpOutDev->DrawLine(Point(aPos.X()+aSize.Width()-2, aPos.Y()+1), in drawPopupButton()
222 Point(aPos.X()+aSize.Width()-2, aPos.Y()+aSize.Height()-2)); in drawPopupButton()
229 Point aCenter(aPos.X() + (aSize.Width() >> 1), aPos.Y() + (aSize.Height() >> 1)); in drawPopupButton()
[all …]
/AOO41X/main/starmath/source/
H A Dnode.cxx768 Point aPos; in Arrange() local
777 aPos = rNodeRect.AlignTo(*this, RP_BOTTOM, in Arrange()
780 aPos.Y() += nDist; in Arrange()
781 pNode->MoveTo(aPos); in Arrange()
867 Point aPos; in Arrange() local
875 aPos = pNode->AlignTo(*this, RP_RIGHT, RHA_CENTER, RVA_BASELINE); in Arrange()
878 aPos.X() += nDist; in Arrange()
880 pNode->MoveTo(aPos); in Arrange()
917 Point aPos = pOper->AlignTo(*pBody, bIsPostfix ? RP_RIGHT : RP_LEFT, in Arrange() local
923 aPos.X() += nDelta; in Arrange()
[all …]
/AOO41X/main/svx/source/table/
H A Dsvdotable.cxx378 CellPos aPos; in ApplyCellStyles() local
379 for( aPos.mnRow = 0; aPos.mnRow < nRowCount; ++aPos.mnRow ) in ApplyCellStyles()
381 const bool bFirstRow = (aPos.mnRow == 0) && rStyle.mbUseFirstRow; in ApplyCellStyles()
382 const bool bLastRow = (aPos.mnRow == nRowCount-1) && rStyle.mbUseLastRow; in ApplyCellStyles()
384 for( aPos.mnCol = 0; aPos.mnCol < nColCount; ++aPos.mnCol ) in ApplyCellStyles()
401 if( rStyle.mbUseFirstColumn && (aPos.mnCol == 0) ) in ApplyCellStyles()
405 else if( rStyle.mbUseLastColumn && (aPos.mnCol == nColCount-1) ) in ApplyCellStyles()
413 if( (aPos.mnRow & 1) == 0 ) in ApplyCellStyles()
425 if( (aPos.mnCol & 1) == 0 ) in ApplyCellStyles()
448 CellRef xCell( getCell( aPos ) ); in ApplyCellStyles()
[all …]
H A Dtablelayouter.cxx92 CellPos aPos( rPos ); in getCellSize() local
96 while( nRowSpan && (aPos.mnRow < nRowCount) ) in getCellSize()
98 if( ((sal_Int32)maRows.size()) <= aPos.mnRow ) in getCellSize()
101 height += maRows[aPos.mnRow++].mnSize; in getCellSize()
107 while( nColSpan && (aPos.mnCol < nColCount ) ) in getCellSize()
109 if( ((sal_Int32)maColumns.size()) <= aPos.mnCol ) in getCellSize()
112 width += maColumns[aPos.mnCol++].mnSize; in getCellSize()
878 CellPos aPos; in updateCells() local
879 for( aPos.mnRow = 0; aPos.mnRow < nRowCount; aPos.mnRow++ ) in updateCells()
881 for( aPos.mnCol = 0; aPos.mnCol < nColCount; aPos.mnCol++ ) in updateCells()
[all …]
/AOO41X/main/vcl/source/window/
H A Dsplit.cxx266 Point aPos = rMEvt.GetPosPixel(); in MouseButtonDown() local
268 aPos.X() = mnLastSplitPos; in MouseButtonDown()
270 aPos.Y() = mnLastSplitPos; in MouseButtonDown()
271 ImplSplitMousePos( aPos ); in MouseButtonDown()
272 Splitting( aPos ); in MouseButtonDown()
273 ImplSplitMousePos( aPos ); in MouseButtonDown()
276 SetSplitPosPixel( aPos.X() ); in MouseButtonDown()
278 SetSplitPosPixel( aPos.Y() ); in MouseButtonDown()
402 Point aPos = GetPosPixel(); in ImplKbdTracking() local
408 …aNewPos = Point( ImplSplitterActive() ? aPos.X() : mnSplitPos, aKeyCode.IsShift() ? 0 : aSize.Heig… in ImplKbdTracking()
[all …]
H A Dfloatwin.cxx248 Point aPos; in ImplCalcPos() local
324 aPos.X() = devRect.Left()-aSize.Width()+1; in ImplCalcPos()
325 aPos.Y() = devRect.Top(); in ImplCalcPos()
326 aPos.Y() -= pWindow->mpWindowImpl->mnTopBorder; in ImplCalcPos()
334 if ( aPos.X() < aScreenRect.Left() ) in ImplCalcPos()
349 aPos = devRect.TopRight(); in ImplCalcPos()
350 aPos.Y() -= pWindow->mpWindowImpl->mnTopBorder; in ImplCalcPos()
358 if ( aPos.X()+aSize.Width() > aScreenRect.Right() ) in ImplCalcPos()
373 aPos.X() = devRect.Left(); in ImplCalcPos()
374 aPos.Y() = devRect.Top()-aSize.Height()+1; in ImplCalcPos()
[all …]
H A Ddockwin.cxx308 Point aPos = ImplOutputToFrame( Point() ); in ImplStartDocking() local
310 mnTrackX = aPos.X(); in ImplStartDocking()
311 mnTrackY = aPos.Y(); in ImplStartDocking()
410 Point aPos; in ImplLoadRes() local
418 aPos.X() = ReadShortRes(); in ImplLoadRes()
419 aPos.X() = ImplLogicUnitToPixelX( aPos.X(), ePosMap ); in ImplLoadRes()
424 aPos.Y() = ReadShortRes(); in ImplLoadRes()
425 aPos.Y() = ImplLogicUnitToPixelY( aPos.Y(), ePosMap ); in ImplLoadRes()
428 SetFloatingPos( aPos ); in ImplLoadRes()
567 Point aPos; in Tracking() local
[all …]
/AOO41X/main/sc/source/core/data/
H A Dcell2.cxx334 const ScAddress& aPos, deque<ScToken*>& rReferences, in lcl_refListFormsOneRange() argument
339 bind(&ScToken::CalcAbsIfRel, _1, aPos)) in lcl_refListFormsOneRange()
460 rPos = aPos; in GetMatrixOrigin()
470 rRef.CalcAbsIfRel( aPos ); in GetMatrixOrigin()
567 aPos.Format( aTmp, SCA_VALID_COL | SCA_VALID_ROW, pDocument ); in GetMatrixEdge()
578 SCsCOL dC = aPos.Col() - aOrg.Col(); in GetMatrixEdge()
579 SCsROW dR = aPos.Row() - aOrg.Row(); in GetMatrixEdge()
599 aPos.Format( aTmp, SCA_VALID_COL | SCA_VALID_ROW, pDocument ); in GetMatrixEdge()
650 p->CalcAbsIfRel( aPos ); in HasOneReference()
712 return lcl_refListFormsOneRange(aPos, aReferences, rRange); in HasRefListExpressibleAsOneReference()
[all …]
H A Dcell.cxx133 aDestPos = static_cast< const ScFormulaCell* >( this )->aPos; in CloneWithoutNote()
256 rRef1.CalcAbsIfRel( pFormCell->aPos ); in StartListeningTo()
266 t->CalcAbsIfRel( pFormCell->aPos ); in StartListeningTo()
317 ScAddress aPos ) in EndListeningTo() argument
333 aPos = pFormCell->aPos; in EndListeningTo()
346 rRef1.CalcAbsIfRel( aPos ); in EndListeningTo()
356 t->CalcAbsIfRel( aPos ); in EndListeningTo()
646 aPos(0,0,0) in ScFormulaCell()
676 aPos( rPos ) in ScFormulaCell()
708 aPos( rPos ) in ScFormulaCell()
[all …]
/AOO41X/main/vcl/source/app/
H A Dhelp.cxx703 Point aPos = rPos; in ImplSetHelpWindowPos() local
706 aPos = pHelpWin->GetParent()->ImplGetFrameWindow()->OutputToAbsoluteScreenPixel( aPos ); in ImplSetHelpWindowPos()
716 aPos.X() -= 4; in ImplSetHelpWindowPos()
717 if ( aPos.Y() > aScreenRect.Top()+nScreenHeight-(nScreenHeight/4) ) in ImplSetHelpWindowPos()
718 aPos.Y() -= aSz.Height()+4; in ImplSetHelpWindowPos()
720 aPos.Y() += 21; in ImplSetHelpWindowPos()
727 if ( aPos == mPos ) in ImplSetHelpWindowPos()
729 aPos.X() += 12; in ImplSetHelpWindowPos()
730 aPos.Y() += 16; in ImplSetHelpWindowPos()
744 aPos = devHelpArea.Center(); in ImplSetHelpWindowPos()
[all …]
/AOO41X/main/sw/source/core/undo/
H A Dundel.cxx672 SwPosition aPos( aIdx ); in UndoImpl() local
680 aPos.nNode = aIdx; in UndoImpl()
681 aPos.nContent.Assign( pInsNd->GetCntntNode(), nSttCntnt ); in UndoImpl()
686 aPos.nContent.Assign( (SwCntntNode*)pInsNd, nSttCntnt ); in UndoImpl()
699 SwTxtNode* pTxtNd = aPos.nNode.GetNode().GetTxtNode(); in UndoImpl()
709 sal_uLong nOldIdx = aPos.nNode.GetIndex(); in UndoImpl()
710 pDoc->SplitNode( aPos, false ); in UndoImpl()
715 lcl_ReAnchorAtCntntFlyFrames( *pDoc->GetSpzFrmFmts(), aPos, nOldIdx ); in UndoImpl()
716 pTxtNd = aPos.nNode.GetNode().GetTxtNode(); in UndoImpl()
720 pTxtNd->InsertText( *pEndStr, aPos.nContent, in UndoImpl()
[all …]
/AOO41X/main/editeng/source/accessibility/
H A DAccessibleStaticTextBase.cxx711 EPosition aPos( mpImpl->Index2Internal(nIndex) ); in getCharacter() local
713 return mpImpl->GetParagraph( aPos.nPara ).getCharacter( aPos.nIndex ); in getCharacter()
722 EPosition aPos( mpImpl->Index2Internal(nIndex) ); in getCharacterAttributes() local
724 …return mpImpl->GetParagraph( aPos.nPara ).getCharacterAttributes( aPos.nIndex, aRequestedAttribute… in getCharacterAttributes()
733 EPosition aPos( mpImpl->Range2Internal(nIndex) ); in getCharacterBounds() local
736 AccessibleEditableTextPara& rPara = mpImpl->GetParagraph( aPos.nPara ); in getCharacterBounds()
738 awt::Rectangle aBounds( rPara.getCharacterBounds( aPos.nIndex ) ); in getCharacterBounds()
940 EPosition aPos( mpImpl->Range2Internal(nIndex) ); in getTextAtIndex() local
953 aResult.SegmentText = mpImpl->GetParagraph( aPos.nPara ).getText(); in getTextAtIndex()
956 aResult.SegmentStart = mpImpl->Internal2Index( EPosition( aPos.nPara, 0 ) ); in getTextAtIndex()
[all …]
/AOO41X/main/desktop/source/deployment/gui/
H A Ddp_gui_dialog2.cxx1126 Point aPos( RSC_SP_DLG_INNERBORDER_LEFT, in Resize() local
1129 m_aHelpBtn.SetPosPixel( aPos ); in Resize()
1131 aPos.X() = aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_RIGHT - aBtnSize.Width(); in Resize()
1132 m_aCloseBtn.SetPosPixel( aPos ); in Resize()
1134 aPos.X() -= ( RSC_SP_CTRL_X + aUpdBtnSize.Width() ); in Resize()
1135 m_aUpdateBtn.SetPosPixel( aPos ); in Resize()
1137 aPos.X() -= ( RSC_SP_CTRL_GROUP_Y + aBtnSize.Width() ); in Resize()
1138 m_aAddBtn.SetPosPixel( aPos ); in Resize()
1141 aPos = Point( 0, aPos.Y() - LINE_SIZE - RSC_SP_DLG_INNERBORDER_BOTTOM ); in Resize()
1142 m_aDivider.SetPosSizePixel( aPos, aDivSize ); in Resize()
[all …]
/AOO41X/main/sc/source/ui/formdlg/
H A Dprivsplt.cxx49 Point aPos=GetPosPixel(); in ScPrivatSplit() local
50 nOldX=(short)aPos.X(); in ScPrivatSplit()
51 nOldY=(short)aPos.Y(); in ScPrivatSplit()
52 nNewX=(short)aPos.X(); in ScPrivatSplit()
53 nNewY=(short)aPos.Y(); in ScPrivatSplit()
92 Point aPos=LogicToPixel(rMEvt.GetPosPixel()); in MouseButtonDown() local
94 nOldX=(short)aPos.X(); in MouseButtonDown()
95 nOldY=(short)aPos.Y(); in MouseButtonDown()
120 Point aPos=LogicToPixel(rMEvt.GetPosPixel()); in MouseButtonUp() local
126 nNewX=(short)aPos.X(); in MouseButtonUp()
[all …]
/AOO41X/main/avmedia/source/framework/
H A Dmediacontrol.cxx218 Point aPos( 0, 0 ); in Resize() local
231 maPlayToolBox.SetPosSizePixel( aPos, maPlayToolBox.GetSizePixel() ); in Resize()
233 aPos.X() += nPlayToolBoxWidth; in Resize()
234 maTimeSlider.SetPosSizePixel( aPos, Size( nTimeSliderWidth, nTimeSliderHeight ) ); in Resize()
236 aPos.X() += nTimeSliderWidth + AVMEDIA_CONTROLOFFSET; in Resize()
237 maTimeEdit.SetPosSizePixel( aPos, maTimeEdit.GetSizePixel() ); in Resize()
239 aPos.X() += nTimeEditWidth + AVMEDIA_CONTROLOFFSET; in Resize()
240 maMuteToolBox.SetPosSizePixel( aPos, maMuteToolBox.GetSizePixel() ); in Resize()
242 aPos.X() += nMuteToolBoxWidth; in Resize()
243 maVolumeSlider.SetPosSizePixel( aPos, maVolumeSlider.GetSizePixel() ); in Resize()
[all …]
/AOO41X/main/sw/source/core/crsr/
H A Dcrstrvl.cxx891 SwPosition aPos( *(GetCrsr()->Start()) ); in DocPtInsideInputFld() local
893 if ( GetLayout()->GetCrsrOfst( &aPos, aDocPt ) ) in DocPtInsideInputFld()
895 return PosInsideInputFld( aPos ); in DocPtInsideInputFld()
1151 SwPosition aPos( *pCurCrsr->GetPoint() ); in GetContentAtPos() local
1166 const sal_Bool bCrsrFoundExact = GetLayout()->GetCrsrOfst( &aPos, aPt, &aTmpState ); in GetContentAtPos()
1167 pTxtNd = aPos.nNode.GetNode().GetTxtNode(); in GetContentAtPos()
1206 xub_StrLen nCurrent = aPos.nContent.GetIndex(); in GetContentAtPos()
1229 *pCurCrsr->GetPoint() = aPos; in GetContentAtPos()
1240 pFrm->GetCharRect( *pFldRect, aPos, &aTmpState ); in GetContentAtPos()
1249 pTxtAttr = pTxtNd->GetFldTxtAttrAt( aPos.nContent.GetIndex() ); in GetContentAtPos()
[all …]
/AOO41X/main/sc/workben/
H A Dtest.cxx377 CellAddress aPos; in lcl_DoCount() local
378 aPos.Sheet = 0; in lcl_DoCount()
382 aPos.Row = nRow; in lcl_DoCount()
385 aPos.Column = nCol; in lcl_DoCount()
386 XCellRef xCell = xDoc->getCell(aPos); in lcl_DoCount()
422 CellAddress aPos; in lcl_Annotations() local
423 aPos.Sheet = 0; in lcl_Annotations()
424 aPos.Column = 1; in lcl_Annotations()
425 aPos.Row = 2; in lcl_Annotations()
426 XCellRef xCell = xDoc->getCell(aPos); in lcl_Annotations()
[all …]
/AOO41X/main/sw/source/ui/uiview/
H A Dviewport.cxx598 Point aPos(aVisArea.TopLeft()); in PageUp() local
599 aPos.Y() -= aVisArea.GetHeight() - (GetYScroll() / 2); in PageUp()
600 aPos.Y() = Max(0L, aPos.Y()); in PageUp()
601 SetVisArea( aPos ); in PageUp()
610 Point aPos( aVisArea.TopLeft() ); in PageDown() local
611 aPos.Y() += aVisArea.GetHeight() - (GetYScroll() / 2); in PageDown()
612 aPos.Y() = SetVScrollMax( aPos.Y() ); in PageDown()
613 SetVisArea( aPos ); in PageDown()
723 Point aPos( aVisArea.TopLeft() ); in IMPL_LINK() local
724 lcl_GetPos(this, aPos, pScrollbar, IsDocumentBorder()); in IMPL_LINK()
[all …]
/AOO41X/main/editeng/source/items/
H A Dsvxfont.cxx517 Point aPos( rPos ); in DrawText() local
521 aPos.Y() -= ((nEsc*long(aSize.Height()))/ 100L); in DrawText()
526 DrawCapital( pOut, aPos, rTxt, nIdx, nTmp ); in DrawText()
532 pOut->DrawStretchText( aPos, aSize.Width(), rTxt, nIdx, nTmp ); in DrawText()
534 pOut->DrawStretchText( aPos, aSize.Width(), CalcCaseMap( rTxt ), in DrawText()
551 Point aPos( rPos ); in QuickDrawText() local
560 aPos.Y() -= nDiff; in QuickDrawText()
562 aPos.X() += nDiff; in QuickDrawText()
568 DrawCapital( pOut, aPos, rTxt, nIdx, nLen ); in QuickDrawText()
577 pOut->DrawStretchText( aPos, aSize.Width(), rTxt, nIdx, nLen ); in QuickDrawText()
[all …]
/AOO41X/main/chart2/source/tools/
H A DRelativePositionHelper.cxx257 chart2::RelativePosition aPos( rInOutPosition ); in centerGrow() local
275 aPos.Primary -= fShiftAmountX; in centerGrow()
285 aPos.Primary += fShiftAmountX; in centerGrow()
297 aPos.Secondary -= fShiftAmountY; in centerGrow()
307 aPos.Secondary += fShiftAmountY; in centerGrow()
314 OSL_ASSERT( rInOutPosition.Anchor == aPos.Anchor ); in centerGrow()
316 if( rInOutPosition.Primary == aPos.Primary && in centerGrow()
317 rInOutPosition.Secondary == aPos.Secondary && in centerGrow()
333 … RelativePositionHelper::getReanchoredPosition( aPos, aSize, drawing::Alignment_TOP_LEFT )); in centerGrow()
335 … RelativePositionHelper::getReanchoredPosition( aPos, aSize, drawing::Alignment_BOTTOM_RIGHT )); in centerGrow()
[all …]
/AOO41X/main/svx/source/svdraw/
H A Dsvdxcgv.cxx171 Point aPos(rPos); in Paste() local
172 ImpGetPasteObjList(aPos,pLst); in Paste()
173 ImpLimitToWorkArea( aPos ); in Paste()
181 ImpPasteObject(pObj,*pLst,aPos,rMtf.GetPrefSize(),rMtf.GetPrefMapMode(),nOptions); in Paste()
187 Point aPos(rPos); in Paste() local
188 ImpGetPasteObjList(aPos,pLst); in Paste()
189 ImpLimitToWorkArea( aPos ); in Paste()
197 ImpPasteObject(pObj,*pLst,aPos,rBmp.GetSizePixel(),MapMode(MAP_PIXEL),nOptions); in Paste()
206 Point aPos(rPos); in Paste() local
207 ImpGetPasteObjList(aPos,pLst); in Paste()
[all …]
/AOO41X/main/sw/source/ui/dbui/
H A Dmmoutputpage.cxx543 … Point aPos(m_aFromRB.GetPosPixel()); aPos.Y() = m_nFromToRBPos; m_aFromRB.SetPosPixel(aPos); in IMPL_LINK() local
544aPos = m_aToFT.GetPosPixel(); aPos.Y() = m_nFromToFTPos; m_aToFT.SetPosPixel(aPos); in IMPL_LINK()
545aPos = m_aFromNF.GetPosPixel(); aPos.Y() = m_nFromToNFPos; m_aFromNF.SetPosPixel(aPos); in IMPL_LINK()
546aPos = m_aToNF.GetPosPixel(); aPos.Y() = m_nFromToNFPos; m_aToNF.SetPosPixel(aPos); in IMPL_LINK()
572 …Point aPos(m_aFromRB.GetPosPixel());aPos.Y() = nNewRBXPos; m_aFromRB.SetPosPixel(a… in IMPL_LINK() local
573aPos = m_aToFT.GetPosPixel(); aPos.Y() = nNewRBXPos + nRB_FT_Offset; m_aToFT.SetPosPixel(aPo… in IMPL_LINK()
574aPos = m_aFromNF.GetPosPixel(); aPos.Y() = nNewRBXPos + nRB_FT_Offset; m_aFromNF.SetPosPixel(a… in IMPL_LINK()
575aPos = m_aToNF.GetPosPixel(); aPos.Y() = nNewRBXPos + nRB_FT_Offset; m_aToNF.SetPosPixel(aPo… in IMPL_LINK()
640 …Point aPos(m_aFromRB.GetPosPixel());aPos.Y() = nNewRBXPos; m_aFromRB.SetPosPixel(a… in IMPL_LINK() local
641aPos = m_aToFT.GetPosPixel(); aPos.Y() = nNewRBXPos + nRB_FT_Offset; m_aToFT.SetPosPixel(aPo… in IMPL_LINK()
[all …]

12345678910>>...30