Home
last modified time | relevance | path

Searched refs:RealPoint2D (Results 1 – 25 of 106) sorted by relevance

12345

/AOO41X/main/canvas/workben/
H A Dcanvasdemo.cxx165 mxCanvas->drawLine( geometry::RealPoint2D( d, 0 ), in drawGrid()
166 geometry::RealPoint2D( d, maSize.Height() ), in drawGrid()
170 mxCanvas->drawLine( geometry::RealPoint2D( 0, d ), in drawGrid()
171 geometry::RealPoint2D( maSize.Width(), d ), in drawGrid()
190 uno::Sequence< geometry::RealPoint2D > aPoints(4); in drawRect()
193 aPoints[0] = geometry::RealPoint2D( rRect.Left(), rRect.Top() ); in drawRect()
194 aPoints[1] = geometry::RealPoint2D( rRect.Left(), rRect.Bottom() ); in drawRect()
195 aPoints[2] = geometry::RealPoint2D( rRect.Right(), rRect.Bottom() ); in drawRect()
196 aPoints[3] = geometry::RealPoint2D( rRect.Right(), rRect.Top() ); in drawRect()
198 uno::Sequence< uno::Sequence< geometry::RealPoint2D > > aPolys(1); in drawRect()
[all …]
/AOO41X/main/sdext/source/presenter/
H A DPresenterGeometryHelper.cxx174 const css::geometry::RealPoint2D& rPoint) in IsInside()
257 Sequence<Sequence<geometry::RealPoint2D> > aPoints(1); in CreatePolygon()
258 aPoints[0] = Sequence<geometry::RealPoint2D>(4); in CreatePolygon()
259 aPoints[0][0] = geometry::RealPoint2D(rBox.X, rBox.Y); in CreatePolygon()
260 aPoints[0][1] = geometry::RealPoint2D(rBox.X, rBox.Y+rBox.Height); in CreatePolygon()
261 aPoints[0][2] = geometry::RealPoint2D(rBox.X+rBox.Width, rBox.Y+rBox.Height); in CreatePolygon()
262 aPoints[0][3] = geometry::RealPoint2D(rBox.X+rBox.Width, rBox.Y); in CreatePolygon()
282 Sequence<Sequence<geometry::RealPoint2D> > aPoints(1); in CreatePolygon()
283 aPoints[0] = Sequence<geometry::RealPoint2D>(4); in CreatePolygon()
284 aPoints[0][0] = geometry::RealPoint2D(rBox.X1, rBox.Y1); in CreatePolygon()
[all …]
H A DPresenterSlideSorter.cxx106 geometry::RealPoint2D GetLocalPosition (const geometry::RealPoint2D& rWindowPoint) const;
107 geometry::RealPoint2D GetWindowPosition(const geometry::RealPoint2D& rLocalPoint) const;
108 sal_Int32 GetColumn (const geometry::RealPoint2D& rLocalPoint,
110 sal_Int32 GetRow (const geometry::RealPoint2D& rLocalPoint,
112 sal_Int32 GetSlideIndexForPosition (const css::geometry::RealPoint2D& rPoint) const;
113 css::geometry::RealPoint2D GetPoint (
593 const geometry::RealPoint2D aPosition (rEvent.X, rEvent.Y); in mousePressed()
603 const geometry::RealPoint2D aPosition (rEvent.X, rEvent.Y); in mouseReleased()
656 const geometry::RealPoint2D aPosition (rEvent.X, rEvent.Y); in mouseMoved()
942 mpCloseButton->SetCenter(geometry::RealPoint2D( in PlaceCloseButton()
[all …]
H A DPresenterPaneAnimator.cxx148 const css::geometry::RealPoint2D& rStartLocation,
149 const css::geometry::RealPoint2D& rEndLocation);
230 const ::boost::function<void(geometry::RealPoint2D)>& rSetter,
232 const geometry::RealPoint2D rInitialBox,
233 const geometry::RealPoint2D rFinalBox);
256 const geometry::RealPoint2D& rLocation);
258 geometry::RealPoint2D GetLocation (const geometry::RealRectangle2D& rBox);
793 geometry::RealPoint2D aStartLocation (maCenterPaneBox.X1, aWindowBox.Height); in ShowPane()
794 geometry::RealPoint2D aEndLocation (maCenterPaneBox.X1, maCenterPaneBox.Y1); in ShowPane()
857 geometry::RealPoint2D(maCenterPaneBox.X1, maCenterPaneBox.Y1), in HidePane()
[all …]
H A DPresenterClock.cxx88 geometry::RealPoint2D maScaledOffset;
130 geometry::RealPoint2D maCenter;
184 geometry::RealPoint2D maCenter;
875 Sequence<Sequence<geometry::RealPoint2D> > aPoints(1); in PaintAngledLine()
876 aPoints[0] = Sequence<geometry::RealPoint2D>(2); in PaintAngledLine()
877 aPoints[0][0] = geometry::RealPoint2D( in PaintAngledLine()
880 aPoints[0][1] = geometry::RealPoint2D( in PaintAngledLine()
902 maCenter = geometry::RealPoint2D(rWindowSize.Width/2.0, rWindowSize.Height/2.0); in Resize()
1006 maCenter = geometry::RealPoint2D(rWindowSize.Width/2.0, rWindowSize.Height/2.0); in Resize()
1214 rDescriptor.maScaledOffset = geometry::RealPoint2D( in ScaleBitmaps()
H A DPresenterSprite.hxx68 void MoveTo (const css::geometry::RealPoint2D& rLocation);
69 css::geometry::RealPoint2D GetLocation (void) const;
83 css::geometry::RealPoint2D maLocation;
H A DPresenterScrollBar.hxx185 css::geometry::RealPoint2D maDragAnchor;
206 … virtual css::geometry::RealPoint2D GetPoint (const double nMajor, const double nMinor) const = 0;
277 virtual css::geometry::RealPoint2D GetPoint (const double nMajor, const double nMinor) const;
312 virtual css::geometry::RealPoint2D GetPoint (const double nMajor, const double nMinor) const;
H A DPresenterHelpView.cxx332 geometry::RealPoint2D(aWindowBox.Width/2, gnVerticalBorder), in Paint()
333 geometry::RealPoint2D(aWindowBox.Width/2, mnSeparatorY - gnVerticalBorder), in Paint()
339 geometry::RealPoint2D(0, mnSeparatorY), in Paint()
340 geometry::RealPoint2D(aWindowBox.Width, mnSeparatorY), in Paint()
547 mpCloseButton->SetCenter(geometry::RealPoint2D( in Resize()
/AOO41X/main/canvas/source/simplecanvas/
H A Dsimplecanvasimpl.cxx71 uno::Sequence< geometry::RealPoint2D > rectSequence( 4 ); in rect2Poly()
72 geometry::RealPoint2D* pOutput = rectSequence.getArray(); in rect2Poly()
73 pOutput[0] = geometry::RealPoint2D( rRect.X1, rRect.Y1 ); in rect2Poly()
74 pOutput[1] = geometry::RealPoint2D( rRect.X2, rRect.Y1 ); in rect2Poly()
75 pOutput[2] = geometry::RealPoint2D( rRect.X2, rRect.Y2 ); in rect2Poly()
76 pOutput[3] = geometry::RealPoint2D( rRect.X1, rRect.Y2 ); in rect2Poly()
78 uno::Sequence< uno::Sequence< geometry::RealPoint2D > > sequenceSequence( 1 ); in rect2Poly()
230 …virtual void SAL_CALL drawPixel( const geometry::RealPoint2D& aPoint ) throw (uno::RuntimeExceptio… in drawPixel()
238 virtual void SAL_CALL drawLine( const geometry::RealPoint2D& aStartPoint, in drawLine()
239 … const geometry::RealPoint2D& aEndPoint ) throw (uno::RuntimeException) in drawLine()
[all …]
/AOO41X/main/basegfx/source/tools/
H A Dcanvastools.cxx89 …uno::Sequence< geometry::RealPoint2D > pointSequenceFromB2DPolygon( const ::basegfx::B2DPolygon& r… in pointSequenceFromB2DPolygon()
93 uno::Sequence< geometry::RealPoint2D > outputSequence( nNumPoints ); in pointSequenceFromB2DPolygon()
94 geometry::RealPoint2D* pOutput = outputSequence.getArray(); in pointSequenceFromB2DPolygon()
102 pOutput[i] = geometry::RealPoint2D( aPoint.getX(), in pointSequenceFromB2DPolygon()
130 …uno::Sequence< uno::Sequence< geometry::RealPoint2D > > pointSequenceSequenceFromB2DPolyPolygon( c… in pointSequenceSequenceFromB2DPolyPolygon()
135 uno::Sequence< uno::Sequence< geometry::RealPoint2D > > outputSequence( nNumPolies ); in pointSequenceSequenceFromB2DPolyPolygon()
136 uno::Sequence< geometry::RealPoint2D >* pOutput = outputSequence.getArray(); in pointSequenceSequenceFromB2DPolyPolygon()
166 uno::Sequence< uno::Sequence< geometry::RealPoint2D > > outputSequence( 1 ); in xPolyPolygonFromB2DPolygon()
215 …egfx::B2DPolygon polygonFromPoint2DSequence( const uno::Sequence< geometry::RealPoint2D >& points ) in polygonFromPoint2DSequence()
229 …romPoint2DSequenceSequence( const uno::Sequence< uno::Sequence< geometry::RealPoint2D > >& points ) in polyPolygonFromPoint2DSequenceSequence()
[all …]
H A Dunopolypolygon.cxx60 const geometry::RealPoint2D& position, in addPolyPolygon()
205 uno::Sequence< uno::Sequence< geometry::RealPoint2D > > SAL_CALL UnoPolyPolygon::getPoints( in getPoints()
221 const uno::Sequence< uno::Sequence< geometry::RealPoint2D > >& points, in setPoints()
242 geometry::RealPoint2D SAL_CALL UnoPolyPolygon::getPoint( in getPoint()
258 const geometry::RealPoint2D& point, in setPoint()
/AOO41X/main/basegfx/inc/basegfx/tools/
H A Dcanvastools.hxx36 struct RealPoint2D;
96 ::com::sun::star::geometry::RealPoint2D > >
101 ::com::sun::star::geometry::RealPoint2D >& rPoints );
105 … ::com::sun::star::uno::Sequence< ::com::sun::star::geometry::RealPoint2D > >& rPoints );
149 … ::com::sun::star::geometry::RealPoint2D point2DFromB2DPoint( const ::basegfx::B2DPoint& );
154 … ::basegfx::B2DPoint b2DPointFromRealPoint2D( const ::com::sun::star::geometry::RealPoint2D& );
178 …DAreEqual( const ::com::sun::star::geometry::RealPoint2D& rA, const ::com::sun::star::geometry::Re…
H A Dunopolypolygon.hxx52 …virtual void SAL_CALL addPolyPolygon( const ::com::sun::star::geometry::RealPoint2D& position, con…
61 …Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::geometry::RealPoint2D > > SAL_CALL ge…
62 …Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::geometry::RealPoint2D > >& points, ::…
63 …virtual ::com::sun::star::geometry::RealPoint2D SAL_CALL getPoint( ::sal_Int32 nPolygonIndex, ::sa…
64 …virtual void SAL_CALL setPoint( const ::com::sun::star::geometry::RealPoint2D& point, ::sal_Int32 …
/AOO41X/main/sd/source/ui/presenter/
H A DPresenterCanvas.cxx108 virtual void SAL_CALL move (const geometry::RealPoint2D& rNewPos,
138 geometry::RealPoint2D maPosition;
290 const css::geometry::RealPoint2D& aPoint, in drawPoint()
303 const css::geometry::RealPoint2D& aStartPoint, in drawLine()
304 const css::geometry::RealPoint2D& aEndPoint, in drawLine()
318 const css::geometry::RealPoint2D& aEndPoint, in drawBezier()
992 const geometry::RealPoint2D& rLocation, in UpdateSpriteClip()
1035 Sequence<Sequence<geometry::RealPoint2D> > aPoints (1); in UpdateSpriteClip()
1036 aPoints[0] = Sequence<geometry::RealPoint2D>(4); in UpdateSpriteClip()
1037 aPoints[0][0] = geometry::RealPoint2D(nMinX,nMinY); in UpdateSpriteClip()
[all …]
H A DPresenterCanvas.hxx146 const css::geometry::RealPoint2D& rLocation,
163 const css::geometry::RealPoint2D& aPoint,
169 const css::geometry::RealPoint2D& aStartPoint,
170 const css::geometry::RealPoint2D& aEndPoint,
177 const css::geometry::RealPoint2D& aEndPoint,
/AOO41X/main/offapi/com/sun/star/geometry/
H A DXMapping2D.idl30 #include <com/sun/star/geometry/RealPoint2D.idl>
53 RealPoint2D map( [in] RealPoint2D aPoint );
63 RealPoint2D mapInverse( [in] RealPoint2D aPoint );
H A DEllipticalArc.idl27 #include <com/sun/star/geometry/RealPoint2D.idl>
49 RealPoint2D StartPosition;
54 RealPoint2D EndPosition;
/AOO41X/main/canvas/source/directx/
H A Ddx_impltools.cxx182 …us::PointF implGdiPlusPointFromRealPoint2D( const ::com::sun::star::geometry::RealPoint2D& rPoint ) in implGdiPlusPointFromRealPoint2D()
313 …Gdiplus::PointF gdiPlusPointFromRealPoint2D( const ::com::sun::star::geometry::RealPoint2D& rPoint… in gdiPlusPointFromRealPoint2D()
344 geometry::RealPoint2D realPoint2DFromGdiPlusPointF( const Gdiplus::PointF& rPoint ) in realPoint2DFromGdiPlusPointF()
346 return geometry::RealPoint2D( rPoint.X, rPoint.Y ); in realPoint2DFromGdiPlusPointF()
436 …athFromRealPoint2DSequence( const uno::Sequence< uno::Sequence< geometry::RealPoint2D > >& points ) in graphicsPathFromRealPoint2DSequence()
452 …::std::transform( const_cast< uno::Sequence< geometry::RealPoint2D >& >(points[nCurrPoly]).getArra… in graphicsPathFromRealPoint2DSequence()
453 … const_cast< uno::Sequence< geometry::RealPoint2D >& >(points[nCurrPoly]).getArray()+nCurrSize, in graphicsPathFromRealPoint2DSequence()
H A Ddx_impltools.hxx51 struct RealPoint2D;
84 … Gdiplus::PointF gdiPlusPointFFromRealPoint2D( const ::com::sun::star::geometry::RealPoint2D& );
89 …::com::sun::star::geometry::RealPoint2D realPoint2DFromGdiPlusPointF( const Gdiplus::PointF& );
101 … ::com::sun::star::uno::Sequence< ::com::sun::star::geometry::RealPoint2D > >& );
/AOO41X/main/vcl/inc/vcl/
H A Dcanvastools.hxx57 struct RealPoint2D;
100 ::com::sun::star::geometry::RealPoint2D >& rPoints );
106 … ::com::sun::star::uno::Sequence< ::com::sun::star::geometry::RealPoint2D > >& rPoints );
213 … ::com::sun::star::geometry::RealPoint2D VCL_DLLPUBLIC point2DFromPoint( const Point& );
217 … VCL_DLLPUBLIC pointFromRealPoint2D( const ::com::sun::star::geometry::RealPoint2D& );
/AOO41X/main/sd/source/core/annotations/
H A DAnnotation.cxx84 virtual RealPoint2D SAL_CALL getPosition() throw (RuntimeException);
85 virtual void SAL_CALL setPosition(const RealPoint2D & the_value) throw (RuntimeException);
111 RealPoint2D m_Position;
134 RealPoint2D m_Position;
252 RealPoint2D SAL_CALL Annotation::getPosition() throw (RuntimeException) in getPosition()
258 void SAL_CALL Annotation::setPosition(const RealPoint2D & the_value) throw (RuntimeException) in setPosition()
/AOO41X/main/offapi/com/sun/star/rendering/
H A DXLinePolyPolygon2D.idl33 #include <com/sun/star/geometry/RealPoint2D.idl>
72 …sequence< sequence< ::com::sun::star::geometry::RealPoint2D > > getPoints( [in] long nPolygonIndex…
98 …void setPoints( [in] sequence< sequence< ::com::sun::star::geometry::RealPoint2D > > points, [in] …
105 … ::com::sun::star::geometry::RealPoint2D getPoint( [in] long nPolygonIndex, [in] long nPointIndex )
113 …void setPoint( [in] ::com::sun::star::geometry::RealPoint2D point, [in] long nPolygonIndex, [in] l…
H A DXSimpleCanvas.idl30 #include <com/sun/star/geometry/RealPoint2D.idl>
136 void drawPixel( [in] ::com::sun::star::geometry::RealPoint2D aPoint );
142 void drawLine( [in] ::com::sun::star::geometry::RealPoint2D aStartPoint,
143 [in] ::com::sun::star::geometry::RealPoint2D aEndPoint );
177 [in] ::com::sun::star::geometry::RealPoint2D aOutPos,
191 [in] ::com::sun::star::geometry::RealPoint2D aLeftTop );
/AOO41X/main/canvas/source/null/
H A Dnull_canvashelper.cxx85 const geometry::RealPoint2D& /*aPoint*/, in drawPoint() argument
92 const geometry::RealPoint2D& /*aPoint1*/, in drawLine() argument
93 const geometry::RealPoint2D& /*aPoint2*/, in drawLine()
101 const geometry::RealPoint2D& /*aEndPoint*/, in drawBezier() argument
/AOO41X/main/canvas/inc/canvas/rendering/
H A Dbitmap.hxx179 void drawPoint( const ::com::sun::star::geometry::RealPoint2D& aPoint,
183 void drawLine( const ::com::sun::star::geometry::RealPoint2D& aStartPoint,
184 const ::com::sun::star::geometry::RealPoint2D& aEndPoint,
189 const ::com::sun::star::geometry::RealPoint2D& aEndPoint,

12345