Home
last modified time | relevance | path

Searched refs:nYPos (Results 1 – 25 of 44) sorted by path

12

/trunk/main/basctl/source/basicide/
H A Dbaside2b.cxx1064 long nYPos = rMousePos.Y() + nCurYOffset; in FindBreakPoint() local
1074 if ( ( nYPos > nY ) && ( nYPos < ( nY + nLineHeight ) ) ) in FindBreakPoint()
1087 long nYPos = aMousePos.Y() + nCurYOffset; in MouseButtonDown() local
1088 long nLine = nYPos / nLineHeight + 1; in MouseButtonDown()
/trunk/main/chart2/source/controller/dialogs/
H A Dtp_ChartType.cxx1026 long nYPos = m_nYTopPos; in showAllControls() local
1034 m_pAxisTypeResourceGroup->setPosition( Point( nXPos, nYPos ) ); in showAllControls()
1035 nYPos += m_pAxisTypeResourceGroup->getHeight() + lcl_getDistance(); in showAllControls()
1042 m_pDim3DLookResourceGroup->setPosition( Point( nXPos, nYPos ) ); in showAllControls()
1043 nYPos += m_pDim3DLookResourceGroup->getHeight() + lcl_getDistance(); in showAllControls()
1054 nYPos += m_pStackingResourceGroup->getHeight() + lcl_getDistance(); in showAllControls()
1061 m_pSplineResourceGroup->setPosition( Point( nXPos, nYPos ) ); in showAllControls()
1062 nYPos += m_pSplineResourceGroup->getHeight() + lcl_getDistance(); in showAllControls()
1069 m_pGeometryResourceGroup->setPosition( Point( nXPos+17, nYPos ) ); in showAllControls()
1070 nYPos += m_pGeometryResourceGroup->getHeight() + lcl_getDistance(); in showAllControls()
[all …]
/trunk/main/cui/source/tabpages/
H A Dswpossizetabpage.cxx1652 long nYPos = static_cast<long>(m_aVertByMF.Denormalize(m_aVertByMF.GetValue(FUNIT_TWIP))); in UpdateExample() local
1653 m_aExampleWN.SetRelPos(Point(nXPos, nYPos)); in UpdateExample()
/trunk/main/dbaccess/source/ui/browser/
H A Dbrwview.cxx181 long nYPos = m_pSplitter->GetPosPixel().Y(); variable
182 m_pSplitter->SetPosPixel( Point( m_pSplitter->GetSplitPosPixel(), nYPos ) );
/trunk/main/drawinglayer/source/processor2d/
H A Dvclprocessor2d.cxx578 … for(sal_Int32 nYPos(nBTop); nYPos < nOTop + nOHeight; nYPos += nBHeight, nPosY++) in RenderFillGraphicPrimitive2D() local
583 … const Rectangle aOutRectPixel(Point(nXPos, nYPos), aNeededBitmapSizePixel); in RenderFillGraphicPrimitive2D()
607 … for(sal_Int32 nYPos(nPosX % 2 ? nBTop - nBHeight + nOffsetY : nBTop); in RenderFillGraphicPrimitive2D() local
608 nYPos < nOTop + nOHeight; nYPos += nBHeight) in RenderFillGraphicPrimitive2D()
610 … const Rectangle aOutRectPixel(Point(nXPos, nYPos), aNeededBitmapSizePixel); in RenderFillGraphicPrimitive2D()
/trunk/main/filter/source/graphicfilter/eras/
H A Deras.cxx82 void RASWriter::ImplCallback( sal_uLong nYPos ) in ImplCallback() argument
85 xStatusIndicator->setValue( (sal_uInt16)( ( 100 * nYPos ) / mnHeight ) ); in ImplCallback()
/trunk/main/forms/qa/integration/forms/
H A DFormControlTest.java565 …private void insertRadio( int nYPos, String label, String refValue ) throws com.sun.star.uno.Excep… in insertRadio() argument
567 …XPropertySet xRadio = m_formLayer.createControlAndShape( "DatabaseRadioButton", 106, nYPos, 25, 6 … in insertRadio()
H A DFormLayer.java92 int nYPos, int nWidth, int nHeight, Object _parentForm ) throws java.lang.Exception in createControlAndShape() argument
102 xShape.setPosition( new Point( nXPos * 100, nYPos * 100 ) ); in createControlAndShape()
161 int nYPos, int nWidth, int nHeight ) throws java.lang.Exception in createControlAndShape() argument
163 return createControlAndShape( sFormComponentService, nXPos, nYPos, nWidth, nHeight, null ); in createControlAndShape()
223 int nXPos, int nYPos, int nHeight ) in insertControlLine() argument
227 XPropertySet xLabelModel = createControlAndShape( "FixedText", nXPos, nYPos, 25, 6 ); in insertControlLine()
231 … XPropertySet xFieldModel = createControlAndShape( sControlType, nXPos + 26, nYPos, 40, nHeight ); in insertControlLine()
263 … insertControlLine( String sControlType, String sFieldName, String sControlNamePostfix, int nYPos ) in insertControlLine() argument
266 return insertControlLine( sControlType, sFieldName, sControlNamePostfix, 10, nYPos, 6 ); in insertControlLine()
H A DRadioButtons.java82 …private XPropertySet insertRadio( int nXPos, int nYPos, String label, String name, String refValue… in insertRadio() argument
84 return insertRadio( nXPos, nYPos, label, name, refValue, null ); in insertRadio()
88 …private XPropertySet insertRadio( int nXPos, int nYPos, String label, String name, String refValue… in insertRadio() argument
91 …xRadio = m_formLayer.createControlAndShape( "DatabaseRadioButton", nXPos, nYPos, 25, 6, parentCont… in insertRadio()
/trunk/main/framework/source/services/
H A Dbackingwindow.cxx437 long nYPos = 0; in initControls() local
458 nYPos += maWelcomeSize.Height(); in initControls()
557 nYPos += 10; in initControls()
824 long nYPos = maControlRect.Top(); in Resize() local
825 nYPos += nW2Delta - nDiff; in Resize()
828 nYPos += nWDelta - nDiff; in Resize()
830 nYPos += nPDelta - nDiff; in Resize()
832 nYPos += nWDelta/2 - nDiff; in Resize()
839 nYPos += nBDelta - nDiff; in Resize()
842 nYPos += nBDelta - nDiff; in Resize()
[all …]
/trunk/main/odk/examples/DevelopersGuide/Forms/
H A DDataAwareness.java597 …protected XPropertySet createButton( int nXPos, int nYPos, int nXSize, String sName, String sLabel… in createButton() argument
599 …XPropertySet xButton = m_formLayer.createControlAndShape( "CommandButton", nXPos, nYPos, nXSize, 6… in createButton()
H A DFormLayer.java96 int nYPos, int nWidth, int nHeight, XIndexContainer xParentForm ) throws java.lang.Exception in createControlAndShape() argument
106 xShape.setPosition( new Point( nXPos * 100, nYPos * 100 ) ); in createControlAndShape()
179 int nYPos, int nWidth, int nHeight ) throws java.lang.Exception in createControlAndShape() argument
181 return createControlAndShape( sFormComponentService, nXPos, nYPos, nWidth, nHeight, null ); in createControlAndShape()
203 …ng sControlType, String sFieldName, String sControlNamePostfix, int nXPos, int nYPos, int nHeight ) in insertControlLine() argument
207 XPropertySet xLabelModel = createControlAndShape( "FixedText", nXPos, nYPos, 25, 6 ); in insertControlLine()
211 … XPropertySet xFieldModel = createControlAndShape( sControlType, nXPos + 26, nYPos, 40, nHeight ); in insertControlLine()
235 … insertControlLine( String sControlType, String sFieldName, String sControlNamePostfix, int nYPos ) in insertControlLine() argument
238 return insertControlLine( sControlType, sFieldName, sControlNamePostfix, 2, nYPos, 6 ); in insertControlLine()
/trunk/main/sdext/source/minimizer/
H A Dinformationdialog.cxx73 sal_Int32 nYPos, in InsertFixedText() argument
94 Any( nYPos ), in InsertFixedText()
146 sal_Int32 nYPos, in InsertCheckBox() argument
168 Any( nYPos ), in InsertCheckBox()
184 sal_Int32 nYPos, in InsertButton() argument
206 Any( nYPos ), in InsertButton()
H A Dinformationdialog.hxx80 sal_Int32 nYPos,
98 sal_Int32 nYPos,
105 sal_Int32 nYPos,
H A Doptimizerdialog.hxx153 sal_Int32 nYPos,
163 sal_Int32 nYPos,
173 sal_Int32 nYPos,
180 sal_Int32 nYPos,
190 sal_Int32 nYPos,
199 sal_Int32 nYPos,
209 sal_Int32 nYPos,
H A Doptimizerdialogcontrols.cxx113 sal_Int32 nYPos, in ImplInsertButton() argument
139 Any( nYPos ), in ImplInsertButton()
161 sal_Int32 nYPos, in ImplInsertFixedText() argument
183 Any( nYPos ), in ImplInsertFixedText()
206 sal_Int32 nYPos, in ImplInsertCheckBox() argument
228 Any( nYPos ), in ImplInsertCheckBox()
249 sal_Int32 nYPos, in ImplInsertFormattedField() argument
276 Any( nYPos ), in ImplInsertFormattedField()
330 Any( nYPos ), in ImplInsertComboBox()
377 Any( nYPos ), in ImplInsertRadioButton()
[all …]
/trunk/main/svx/source/dialog/
H A Dpagectrl.cxx126 long nYPos = (aSz.Height() - aSize.Height()) / 2; in Paint() local
143 nYPos = (aSz.Height() - aSize.Height()) / 2; in Paint()
145 DrawPage(Point(nXPos,nYPos),sal_True,sal_True); in Paint()
149 DrawPage(Point((aSz.Width() - aSize.Width()) / 2,nYPos),sal_True,sal_True); in Paint()
154 DrawPage(Point(0,nYPos),sal_False,(sal_Bool)(eUsage & SVX_PAGE_LEFT)); in Paint()
155 DrawPage(Point(aSize.Width() + aSize.Width() / 8,nYPos),sal_True, in Paint()
/trunk/main/svx/source/svdraw/
H A Dsvdhdl.cxx133 const sal_uInt16 nYPos(nInd * 11); in GetBitmapEx() local
144 …return impGetOrCreateTargetBitmap((0 * INDEX_COUNT) + nInd, Rectangle(Point(0, nYPos), Size(7, 7))… in GetBitmapEx()
149 …return impGetOrCreateTargetBitmap((1 * INDEX_COUNT) + nInd, Rectangle(Point(7, nYPos), Size(9, 9))… in GetBitmapEx()
154 …return impGetOrCreateTargetBitmap((2 * INDEX_COUNT) + nInd, Rectangle(Point(16, nYPos), Size(11, 1… in GetBitmapEx()
193 …return impGetOrCreateTargetBitmap((4 * INDEX_COUNT) + nInd, Rectangle(Point(27, nYPos), Size(7, 7)… in GetBitmapEx()
199 …return impGetOrCreateTargetBitmap((5 * INDEX_COUNT) + nInd, Rectangle(Point(34, nYPos), Size(9, 9)… in GetBitmapEx()
210 …return impGetOrCreateTargetBitmap((7 * INDEX_COUNT) + nInd, Rectangle(Point(54, nYPos), Size(7, 9)… in GetBitmapEx()
215 …return impGetOrCreateTargetBitmap((8 * INDEX_COUNT) + nInd, Rectangle(Point(61, nYPos), Size(9, 11… in GetBitmapEx()
220 …return impGetOrCreateTargetBitmap((9 * INDEX_COUNT) + nInd, Rectangle(Point(70, nYPos), Size(9, 7)… in GetBitmapEx()
230 …return impGetOrCreateTargetBitmap((11 * INDEX_COUNT) + nInd, Rectangle(Point(90, nYPos), Size(7, 7… in GetBitmapEx()
[all …]
/trunk/main/sw/inc/
H A Dfesh.hxx603 …sal_Bool GetPageNumber( long nYPos, sal_Bool bAtCrsrPos, sal_uInt16& rPhyNum, sal_uInt16& rVirtNum…
H A Dfmtornt.hxx42 SwTwips nYPos; //Enthaelt _immer_ die aktuelle RelPos. member in SwFmtVertOrient
67 SwTwips GetPos() const { return nYPos; } in GetPos()
68 void SetPos( SwTwips nNew ) { nYPos = nNew; } in SetPos()
114 nYPos = rCpy.GetPos(); in operator =()
/trunk/main/sw/source/core/frmedt/
H A Dfews.cxx202 sal_Bool SwFEShell::GetPageNumber( long nYPos, sal_Bool bAtCrsrPos, sal_uInt16& rPhyNum, sal_uInt16… in GetPageNumber() argument
212 else if ( nYPos > -1 ) //Seite ueber die Positon ermitteln in GetPageNumber()
215 while( pPage && (pPage->Frm().Bottom() < nYPos || in GetPageNumber()
216 nYPos < pPage->Frm().Top() ) ) in GetPageNumber()
H A Dtblsel.cxx645 long nYPos = LONG_MAX; in ChkChartSel() local
652 if( (rCF.pFrm->Frm().*fnRect->fnGetTop)() != nYPos ) in ChkChartSel()
666 nYPos = (rCF.pFrm->Frm().*fnRect->fnGetTop)(); in ChkChartSel()
698 nYPos = LONG_MAX; in ChkChartSel()
703 if( (rCF.pFrm->Frm().*fnRect->fnGetTop)() != nYPos ) in ChkChartSel()
708 nYPos = (rCF.pFrm->Frm().*fnRect->fnGetTop)(); in ChkChartSel()
/trunk/main/sw/source/core/layout/
H A Datrfrm.cxx1249 nYPos( nY ), in SwFmtVertOrient()
1257 return ( nYPos == ((SwFmtVertOrient&)rAttr).nYPos && in operator ==()
1264 return new SwFmtVertOrient( nYPos, eOrient, eRelation ); in Clone()
/trunk/main/sw/source/core/text/
H A Dporfld.cxx836 nYPos = pGrfOrient->GetPos(); in SwGrfNumPortion()
841 nYPos = 0; in SwGrfNumPortion()
H A Dporfld.hxx196 SwTwips nYPos; //Enthaelt _immer_ die aktuelle RelPos. member in SwGrfNumPortion
222 inline void SetRelPos( SwTwips nNew ) { nYPos = nNew; } in SetRelPos()
225 inline SwTwips GetRelPos() const { return nYPos; } in GetRelPos()

Completed in 121 milliseconds

12