LCOV - code coverage report
Current view: top level - toolkit/inc/toolkit/awt - vclxgraphics.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 3 3 100.0 %
Date: 2012-08-25 Functions: 3 3 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 0 0 -

           Branch data     Line data    Source code
       1                 :            : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2                 :            : /*************************************************************************
       3                 :            :  *
       4                 :            :  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       5                 :            :  *
       6                 :            :  * Copyright 2000, 2010 Oracle and/or its affiliates.
       7                 :            :  *
       8                 :            :  * OpenOffice.org - a multi-platform office productivity suite
       9                 :            :  *
      10                 :            :  * This file is part of OpenOffice.org.
      11                 :            :  *
      12                 :            :  * OpenOffice.org is free software: you can redistribute it and/or modify
      13                 :            :  * it under the terms of the GNU Lesser General Public License version 3
      14                 :            :  * only, as published by the Free Software Foundation.
      15                 :            :  *
      16                 :            :  * OpenOffice.org is distributed in the hope that it will be useful,
      17                 :            :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      18                 :            :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      19                 :            :  * GNU Lesser General Public License version 3 for more details
      20                 :            :  * (a copy is included in the LICENSE file that accompanied this code).
      21                 :            :  *
      22                 :            :  * You should have received a copy of the GNU Lesser General Public License
      23                 :            :  * version 3 along with OpenOffice.org.  If not, see
      24                 :            :  * <http://www.openoffice.org/license.html>
      25                 :            :  * for a copy of the LGPLv3 License.
      26                 :            :  *
      27                 :            :  ************************************************************************/
      28                 :            : 
      29                 :            : #ifndef _TOOLKIT_AWT_VCLXGRAPHICS_HXX_
      30                 :            : #define _TOOLKIT_AWT_VCLXGRAPHICS_HXX_
      31                 :            : 
      32                 :            : 
      33                 :            : #include <com/sun/star/awt/XGraphics.hpp>
      34                 :            : #include <com/sun/star/lang/XTypeProvider.hpp>
      35                 :            : #include <com/sun/star/lang/XUnoTunnel.hpp>
      36                 :            : #include <cppuhelper/weak.hxx>
      37                 :            : #include <osl/mutex.hxx>
      38                 :            : 
      39                 :            : #include <vcl/font.hxx>
      40                 :            : #include <tools/color.hxx>
      41                 :            : #include <vcl/vclenum.hxx>
      42                 :            : 
      43                 :            : class OutputDevice;
      44                 :            : class Region;
      45                 :            : 
      46                 :            : 
      47                 :            : #define INITOUTDEV_FONT         0x0001
      48                 :            : #define INITOUTDEV_COLORS       0x0002
      49                 :            : #define INITOUTDEV_RASTEROP     0x0004
      50                 :            : #define INITOUTDEV_CLIPREGION   0x0008
      51                 :            : #define INITOUTDEV_ALL          0xFFFF
      52                 :            : 
      53                 :            : 
      54                 :            : //  ----------------------------------------------------
      55                 :            : //  class VCLXGraphics
      56                 :            : //  ----------------------------------------------------
      57                 :            : 
      58                 :            : class VCLXGraphics :    public ::com::sun::star::awt::XGraphics,
      59                 :            :                         public ::com::sun::star::lang::XTypeProvider,
      60                 :            :                         public ::com::sun::star::lang::XUnoTunnel,
      61                 :            :                         public ::cppu::OWeakObject
      62                 :            : {
      63                 :            : private:
      64                 :            :     // used to return same reference on each call to getDevice()
      65                 :            :     ::com::sun::star::uno::Reference< ::com::sun::star::awt::XDevice> mxDevice;
      66                 :            : 
      67                 :            :     OutputDevice*   mpOutputDevice;
      68                 :            :     Font            maFont;
      69                 :            :     Color           maTextColor;
      70                 :            :     Color           maTextFillColor;
      71                 :            :     Color           maLineColor;
      72                 :            :     Color           maFillColor;
      73                 :            :     RasterOp        meRasterOp;
      74                 :            :     Region*         mpClipRegion;
      75                 :            : 
      76                 :            : public:
      77                 :            :                     VCLXGraphics();
      78                 :            :                     ~VCLXGraphics();
      79                 :            : 
      80                 :            :     void            Init( OutputDevice* pOutDev );
      81                 :            :     void            InitOutputDevice( sal_uInt16 nFlags );
      82                 :            : 
      83                 :            :     void            SetOutputDevice( OutputDevice* pOutDev );
      84                 :      24530 :     OutputDevice*   GetOutputDevice() const { return mpOutputDevice; }
      85                 :            : 
      86                 :            :     const Font&     GetFont() const { return maFont; }
      87                 :            : 
      88                 :            :     // ::com::sun::star::uno::XInterface
      89                 :            :     ::com::sun::star::uno::Any                  SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException);
      90                 :      78519 :     void                                        SAL_CALL acquire() throw()  { OWeakObject::acquire(); }
      91                 :      78519 :     void                                        SAL_CALL release() throw()  { OWeakObject::release(); }
      92                 :            : 
      93                 :            :     // ::com::sun::star::lang::XUnoTunnel
      94                 :            :     static const ::com::sun::star::uno::Sequence< sal_Int8 >&   GetUnoTunnelId() throw();
      95                 :            :     static VCLXGraphics*                                        GetImplementation( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& rxIFace ) throw();
      96                 :            :     sal_Int64                                                   SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rIdentifier ) throw(::com::sun::star::uno::RuntimeException);
      97                 :            : 
      98                 :            :     // ::com::sun::star::lang::XTypeProvider
      99                 :            :     ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >  SAL_CALL getTypes() throw(::com::sun::star::uno::RuntimeException);
     100                 :            :     ::com::sun::star::uno::Sequence< sal_Int8 >                     SAL_CALL getImplementationId() throw(::com::sun::star::uno::RuntimeException);
     101                 :            : 
     102                 :            :     // ::com::sun::star::awt::XGraphics
     103                 :            :     ::com::sun::star::uno::Reference< ::com::sun::star::awt::XDevice >  SAL_CALL getDevice(  ) throw(::com::sun::star::uno::RuntimeException);
     104                 :            :     ::com::sun::star::awt::SimpleFontMetric                             SAL_CALL getFontMetric() throw(::com::sun::star::uno::RuntimeException);
     105                 :            :     void        SAL_CALL setFont( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XFont >& xNewFont ) throw(::com::sun::star::uno::RuntimeException);
     106                 :            :     void        SAL_CALL selectFont( const ::com::sun::star::awt::FontDescriptor& aDescription ) throw(::com::sun::star::uno::RuntimeException);
     107                 :            :     void        SAL_CALL setTextColor( sal_Int32 nColor ) throw(::com::sun::star::uno::RuntimeException);
     108                 :            :     void        SAL_CALL setTextFillColor( sal_Int32 nColor ) throw(::com::sun::star::uno::RuntimeException);
     109                 :            :     void        SAL_CALL setLineColor( sal_Int32 nColor ) throw(::com::sun::star::uno::RuntimeException);
     110                 :            :     void        SAL_CALL setFillColor( sal_Int32 nColor ) throw(::com::sun::star::uno::RuntimeException);
     111                 :            :     void        SAL_CALL setRasterOp( ::com::sun::star::awt::RasterOperation ROP ) throw(::com::sun::star::uno::RuntimeException);
     112                 :            :     void        SAL_CALL setClipRegion( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XRegion >& Clipping ) throw(::com::sun::star::uno::RuntimeException);
     113                 :            :     void        SAL_CALL intersectClipRegion( const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XRegion >& xClipping ) throw(::com::sun::star::uno::RuntimeException);
     114                 :            :     void        SAL_CALL push(  ) throw(::com::sun::star::uno::RuntimeException);
     115                 :            :     void        SAL_CALL pop(  ) throw(::com::sun::star::uno::RuntimeException);
     116                 :            :     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);
     117                 :            :     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);
     118                 :            :     void        SAL_CALL drawPixel( sal_Int32 X, sal_Int32 Y ) throw(::com::sun::star::uno::RuntimeException);
     119                 :            :     void        SAL_CALL drawLine( sal_Int32 X1, sal_Int32 Y1, sal_Int32 X2, sal_Int32 Y2 ) throw(::com::sun::star::uno::RuntimeException);
     120                 :            :     void        SAL_CALL drawRect( sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height ) throw(::com::sun::star::uno::RuntimeException);
     121                 :            :     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);
     122                 :            :     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);
     123                 :            :     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);
     124                 :            :     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);
     125                 :            :     void        SAL_CALL drawEllipse( sal_Int32 X, sal_Int32 Y, sal_Int32 Width, sal_Int32 Height ) throw(::com::sun::star::uno::RuntimeException);
     126                 :            :     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);
     127                 :            :     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);
     128                 :            :     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);
     129                 :            :     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);
     130                 :            :     void        SAL_CALL drawText( sal_Int32 X, sal_Int32 Y, const ::rtl::OUString& Text ) throw(::com::sun::star::uno::RuntimeException);
     131                 :            :     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);
     132                 :            : };
     133                 :            : 
     134                 :            : 
     135                 :            : 
     136                 :            : 
     137                 :            : #endif // _TOOLKIT_AWT_VCLXGRAPHICS_HXX_
     138                 :            : 
     139                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10