150e6b072SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 350e6b072SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 450e6b072SAndrew Rist * or more contributor license agreements. See the NOTICE file 550e6b072SAndrew Rist * distributed with this work for additional information 650e6b072SAndrew Rist * regarding copyright ownership. The ASF licenses this file 750e6b072SAndrew Rist * to you under the Apache License, Version 2.0 (the 850e6b072SAndrew Rist * "License"); you may not use this file except in compliance 950e6b072SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 1150e6b072SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 1350e6b072SAndrew Rist * Unless required by applicable law or agreed to in writing, 1450e6b072SAndrew Rist * software distributed under the License is distributed on an 1550e6b072SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 1650e6b072SAndrew Rist * KIND, either express or implied. See the License for the 1750e6b072SAndrew Rist * specific language governing permissions and limitations 1850e6b072SAndrew Rist * under the License. 19cdf0e10cSrcweir * 2050e6b072SAndrew Rist *************************************************************/ 2150e6b072SAndrew Rist 2250e6b072SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir #ifndef _TOOLKIT_AWT_VCLXGRAPHICS_HXX_ 25cdf0e10cSrcweir #define _TOOLKIT_AWT_VCLXGRAPHICS_HXX_ 26cdf0e10cSrcweir 27cdf0e10cSrcweir 28cdf0e10cSrcweir #include <com/sun/star/awt/XGraphics.hpp> 29*d1dc9aaeSAriel Constenla-Haile #include <com/sun/star/graphic/XGraphic.hpp> 30cdf0e10cSrcweir #include <com/sun/star/lang/XTypeProvider.hpp> 31cdf0e10cSrcweir #include <com/sun/star/lang/XUnoTunnel.hpp> 32cdf0e10cSrcweir #include <cppuhelper/weak.hxx> 33cdf0e10cSrcweir #include <vos/mutex.hxx> 34cdf0e10cSrcweir 35cdf0e10cSrcweir #include <vcl/font.hxx> 36cdf0e10cSrcweir #include <tools/color.hxx> 37cdf0e10cSrcweir #include <vcl/vclenum.hxx> 38cdf0e10cSrcweir 39cdf0e10cSrcweir class OutputDevice; 40cdf0e10cSrcweir class Region; 41cdf0e10cSrcweir 42cdf0e10cSrcweir 43cdf0e10cSrcweir #define INITOUTDEV_FONT 0x0001 44cdf0e10cSrcweir #define INITOUTDEV_COLORS 0x0002 45cdf0e10cSrcweir #define INITOUTDEV_RASTEROP 0x0004 46cdf0e10cSrcweir #define INITOUTDEV_CLIPREGION 0x0008 47cdf0e10cSrcweir #define INITOUTDEV_ALL 0xFFFF 48cdf0e10cSrcweir 49cdf0e10cSrcweir 50cdf0e10cSrcweir // ---------------------------------------------------- 51cdf0e10cSrcweir // class VCLXGraphics 52cdf0e10cSrcweir // ---------------------------------------------------- 53cdf0e10cSrcweir 54cdf0e10cSrcweir class VCLXGraphics : public ::com::sun::star::awt::XGraphics, 55cdf0e10cSrcweir public ::com::sun::star::lang::XTypeProvider, 56cdf0e10cSrcweir public ::com::sun::star::lang::XUnoTunnel, 57cdf0e10cSrcweir public ::cppu::OWeakObject 58cdf0e10cSrcweir { 59cdf0e10cSrcweir private: 60cdf0e10cSrcweir vos::IMutex& mrMutex; // Reference to SolarMutex 61cdf0e10cSrcweir ::com::sun::star::uno::Reference< ::com::sun::star::awt::XDevice> mxDevice; // nur um bei getDevice() immer das gleiche zurueckzugeben 62cdf0e10cSrcweir 63cdf0e10cSrcweir OutputDevice* mpOutputDevice; 64cdf0e10cSrcweir Font maFont; 65cdf0e10cSrcweir Color maTextColor; 66cdf0e10cSrcweir Color maTextFillColor; 67cdf0e10cSrcweir Color maLineColor; 68cdf0e10cSrcweir Color maFillColor; 69cdf0e10cSrcweir RasterOp meRasterOp; 70cdf0e10cSrcweir Region* mpClipRegion; 71cdf0e10cSrcweir 72*d1dc9aaeSAriel Constenla-Haile void initAttrs(); 73*d1dc9aaeSAriel Constenla-Haile 74cdf0e10cSrcweir protected: GetMutex()75cdf0e10cSrcweir vos::IMutex& GetMutex() { return mrMutex; } 76cdf0e10cSrcweir 77cdf0e10cSrcweir public: 78cdf0e10cSrcweir VCLXGraphics(); 79cdf0e10cSrcweir ~VCLXGraphics(); 80cdf0e10cSrcweir 81cdf0e10cSrcweir void Init( OutputDevice* pOutDev ); 82cdf0e10cSrcweir void InitOutputDevice( sal_uInt16 nFlags ); 83cdf0e10cSrcweir 84cdf0e10cSrcweir void SetOutputDevice( OutputDevice* pOutDev ); GetOutputDevice() const85cdf0e10cSrcweir OutputDevice* GetOutputDevice() const { return mpOutputDevice; } 86cdf0e10cSrcweir GetFont() const87cdf0e10cSrcweir const Font& GetFont() const { return maFont; } 88cdf0e10cSrcweir 89cdf0e10cSrcweir // ::com::sun::star::uno::XInterface 90cdf0e10cSrcweir ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException); acquire()91cdf0e10cSrcweir void SAL_CALL acquire() throw() { OWeakObject::acquire(); } release()92cdf0e10cSrcweir void SAL_CALL release() throw() { OWeakObject::release(); } 93cdf0e10cSrcweir 94cdf0e10cSrcweir // ::com::sun::star::lang::XUnoTunnel 95cdf0e10cSrcweir static const ::com::sun::star::uno::Sequence< sal_Int8 >& GetUnoTunnelId() throw(); 96cdf0e10cSrcweir static VCLXGraphics* GetImplementation( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& rxIFace ) throw(); 97cdf0e10cSrcweir sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rIdentifier ) throw(::com::sun::star::uno::RuntimeException); 98cdf0e10cSrcweir 99cdf0e10cSrcweir // ::com::sun::star::lang::XTypeProvider 100cdf0e10cSrcweir ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw(::com::sun::star::uno::RuntimeException); 101cdf0e10cSrcweir ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw(::com::sun::star::uno::RuntimeException); 102cdf0e10cSrcweir 103*d1dc9aaeSAriel Constenla-Haile // ::com::sun::star::awt::XGraphics Attributes 104*d1dc9aaeSAriel Constenla-Haile virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XDevice > SAL_CALL getDevice() throw (::com::sun::star::uno::RuntimeException); 105*d1dc9aaeSAriel Constenla-Haile virtual ::sal_Int32 SAL_CALL getTextColor() throw (::com::sun::star::uno::RuntimeException); 106*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL setTextColor( ::sal_Int32 _textcolor ) throw (::com::sun::star::uno::RuntimeException); 107*d1dc9aaeSAriel Constenla-Haile virtual ::sal_Int32 SAL_CALL getTextFillColor() throw (::com::sun::star::uno::RuntimeException); 108*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL setTextFillColor( ::sal_Int32 _textfillcolor ) throw (::com::sun::star::uno::RuntimeException); 109*d1dc9aaeSAriel Constenla-Haile virtual ::sal_Int32 SAL_CALL getLineColor() throw (::com::sun::star::uno::RuntimeException); 110*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL setLineColor( ::sal_Int32 _linecolor ) throw (::com::sun::star::uno::RuntimeException); 111*d1dc9aaeSAriel Constenla-Haile virtual ::sal_Int32 SAL_CALL getFillColor() throw (::com::sun::star::uno::RuntimeException); 112*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL setFillColor( ::sal_Int32 _fillcolor ) throw (::com::sun::star::uno::RuntimeException); 113*d1dc9aaeSAriel Constenla-Haile virtual ::com::sun::star::awt::RasterOperation SAL_CALL getRasterOp() throw (::com::sun::star::uno::RuntimeException); 114*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL setRasterOp( ::com::sun::star::awt::RasterOperation _rasterop ) throw (::com::sun::star::uno::RuntimeException); 115*d1dc9aaeSAriel Constenla-Haile virtual ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont > SAL_CALL getFont() throw (::com::sun::star::uno::RuntimeException); 116*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL setFont( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont >& _font ) throw (::com::sun::star::uno::RuntimeException); 117*d1dc9aaeSAriel Constenla-Haile virtual ::com::sun::star::awt::SimpleFontMetric SAL_CALL getFontMetric() throw (::com::sun::star::uno::RuntimeException); 118*d1dc9aaeSAriel Constenla-Haile 119*d1dc9aaeSAriel Constenla-Haile // ::com::sun::star::awt::XGraphics Methods 120*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL selectFont( const ::com::sun::star::awt::FontDescriptor& aDescription ) throw (::com::sun::star::uno::RuntimeException); 121*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL setClipRegion( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XRegion >& Clipping ) throw (::com::sun::star::uno::RuntimeException); 122*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL intersectClipRegion( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XRegion >& xClipping ) throw (::com::sun::star::uno::RuntimeException); 123*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL push( ) throw (::com::sun::star::uno::RuntimeException); 124*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL pop( ) throw (::com::sun::star::uno::RuntimeException); 125*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL clear( const ::com::sun::star::awt::Rectangle& aRect ) throw (::com::sun::star::uno::RuntimeException); 126*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL copy( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XDevice >& xSource, ::sal_Int32 nSourceX, ::sal_Int32 nSourceY, ::sal_Int32 nSourceWidth, ::sal_Int32 nSourceHeight, ::sal_Int32 nDestX, ::sal_Int32 nDestY, ::sal_Int32 nDestWidth, ::sal_Int32 nDestHeight ) throw (::com::sun::star::uno::RuntimeException); 127*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL draw( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XDisplayBitmap >& xBitmapHandle, ::sal_Int32 SourceX, ::sal_Int32 SourceY, ::sal_Int32 SourceWidth, ::sal_Int32 SourceHeight, ::sal_Int32 DestX, ::sal_Int32 DestY, ::sal_Int32 DestWidth, ::sal_Int32 DestHeight ) throw (::com::sun::star::uno::RuntimeException); 128*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawPixel( ::sal_Int32 X, ::sal_Int32 Y ) throw (::com::sun::star::uno::RuntimeException); 129*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawLine( ::sal_Int32 X1, ::sal_Int32 Y1, ::sal_Int32 X2, ::sal_Int32 Y2 ) throw (::com::sun::star::uno::RuntimeException); 130*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawRect( ::sal_Int32 X, ::sal_Int32 Y, ::sal_Int32 Width, ::sal_Int32 Height ) throw (::com::sun::star::uno::RuntimeException); 131*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawRoundedRect( ::sal_Int32 X, ::sal_Int32 Y, ::sal_Int32 Width, ::sal_Int32 Height, ::sal_Int32 nHorzRound, ::sal_Int32 nVertRound ) throw (::com::sun::star::uno::RuntimeException); 132*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawPolyLine( const ::com::sun::star::uno::Sequence< ::sal_Int32 >& DataX, const ::com::sun::star::uno::Sequence< ::sal_Int32 >& DataY ) throw (::com::sun::star::uno::RuntimeException); 133*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawPolygon( const ::com::sun::star::uno::Sequence< ::sal_Int32 >& DataX, const ::com::sun::star::uno::Sequence< ::sal_Int32 >& DataY ) throw (::com::sun::star::uno::RuntimeException); 134*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawPolyPolygon( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::sal_Int32 > >& DataX, const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::sal_Int32 > >& DataY ) throw (::com::sun::star::uno::RuntimeException); 135*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawEllipse( ::sal_Int32 X, ::sal_Int32 Y, ::sal_Int32 Width, ::sal_Int32 Height ) throw (::com::sun::star::uno::RuntimeException); 136*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawArc( ::sal_Int32 X, ::sal_Int32 Y, ::sal_Int32 Width, ::sal_Int32 Height, ::sal_Int32 X1, ::sal_Int32 Y1, ::sal_Int32 X2, ::sal_Int32 Y2 ) throw (::com::sun::star::uno::RuntimeException); 137*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawPie( ::sal_Int32 X, ::sal_Int32 Y, ::sal_Int32 Width, ::sal_Int32 Height, ::sal_Int32 X1, ::sal_Int32 Y1, ::sal_Int32 X2, ::sal_Int32 Y2 ) throw (::com::sun::star::uno::RuntimeException); 138*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawChord( ::sal_Int32 nX, ::sal_Int32 nY, ::sal_Int32 nWidth, ::sal_Int32 nHeight, ::sal_Int32 nX1, ::sal_Int32 nY1, ::sal_Int32 nX2, ::sal_Int32 nY2 ) throw (::com::sun::star::uno::RuntimeException); 139*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawGradient( ::sal_Int32 nX, ::sal_Int32 nY, ::sal_Int32 nWidth, ::sal_Int32 Height, const ::com::sun::star::awt::Gradient& aGradient ) throw (::com::sun::star::uno::RuntimeException); 140*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawText( ::sal_Int32 X, ::sal_Int32 Y, const ::rtl::OUString& Text ) throw (::com::sun::star::uno::RuntimeException); 141*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawTextArray( ::sal_Int32 X, ::sal_Int32 Y, const ::rtl::OUString& Text, const ::com::sun::star::uno::Sequence< ::sal_Int32 >& Longs ) throw (::com::sun::star::uno::RuntimeException); 142*d1dc9aaeSAriel Constenla-Haile virtual void SAL_CALL drawImage( ::sal_Int32 nX, ::sal_Int32 nY, ::sal_Int32 nWidth, ::sal_Int32 nHeight, ::sal_Int16 nStyle, const ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic >& aGraphic ) throw (::com::sun::star::uno::RuntimeException); 143*d1dc9aaeSAriel Constenla-Haile 144cdf0e10cSrcweir }; 145cdf0e10cSrcweir 146cdf0e10cSrcweir 147cdf0e10cSrcweir 148cdf0e10cSrcweir 149cdf0e10cSrcweir #endif // _TOOLKIT_AWT_VCLXGRAPHICS_HXX_ 150