LCOV - code coverage report
Current view: top level - starmath/inc - unomodel.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 1 0.0 %
Date: 2014-11-03 Functions: 0 1 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : #ifndef INCLUDED_STARMATH_INC_UNOMODEL_HXX
      20             : #define INCLUDED_STARMATH_INC_UNOMODEL_HXX
      21             : 
      22             : #include <com/sun/star/beans/XPropertySet.hpp>
      23             : #include <com/sun/star/beans/XMultiPropertySet.hpp>
      24             : #include <com/sun/star/beans/XPropertyState.hpp>
      25             : #include <com/sun/star/lang/XServiceInfo.hpp>
      26             : #include <com/sun/star/view/XRenderable.hpp>
      27             : 
      28             : #include <sfx2/sfxbasemodel.hxx>
      29             : #include <comphelper/propertysethelper.hxx>
      30             : #include <vcl/print.hxx>
      31             : #include <oox/mathml/export.hxx>
      32             : #include <oox/mathml/import.hxx>
      33             : 
      34             : 
      35             : 
      36             : #define PRTUIOPT_TITLE_ROW          "TitleRow"
      37             : #define PRTUIOPT_FORMULA_TEXT       "FormulaText"
      38             : #define PRTUIOPT_BORDER             "Border"
      39             : #define PRTUIOPT_PRINT_FORMAT       "PrintFormat"
      40             : #define PRTUIOPT_PRINT_SCALE        "PrintScale"
      41             : 
      42           0 : class SmPrintUIOptions : public vcl::PrinterOptionsHelper
      43             : {
      44             : public:
      45             :     SmPrintUIOptions();
      46             : };
      47             : 
      48             : 
      49             : 
      50             : 
      51             : 
      52             : class SmModel : public SfxBaseModel,
      53             :                 public comphelper::PropertySetHelper,
      54             :                 public com::sun::star::lang::XServiceInfo,
      55             :                 public com::sun::star::view::XRenderable,
      56             :                 public oox::FormulaExportBase,
      57             :                 public oox::FormulaImportBase
      58             : {
      59             :     SmPrintUIOptions* m_pPrintUIOptions;
      60             : protected:
      61             :     virtual void _setPropertyValues( const comphelper::PropertyMapEntry** ppEntries, const ::com::sun::star::uno::Any* pValues )
      62             :         throw (css::uno::RuntimeException, css::beans::UnknownPropertyException, css::beans::PropertyVetoException, css::lang::IllegalArgumentException, css::lang::WrappedTargetException, std::exception) SAL_OVERRIDE;
      63             :     virtual void _getPropertyValues( const comphelper::PropertyMapEntry** ppEntries, ::com::sun::star::uno::Any* pValue )
      64             :         throw (css::uno::RuntimeException, css::beans::UnknownPropertyException, css::lang::WrappedTargetException, std::exception) SAL_OVERRIDE;
      65             : public:
      66             :     SmModel( SfxObjectShell *pObjSh = 0 );
      67             :     virtual ~SmModel() throw ();
      68             : 
      69             :     //XInterface
      70             :     virtual     ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      71             :     virtual void SAL_CALL acquire(  ) throw() SAL_OVERRIDE;
      72             :     virtual void SAL_CALL release(  ) throw() SAL_OVERRIDE;
      73             : 
      74             :     //XTypeProvider
      75             :     virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes(  ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      76             : 
      77             :     static const ::com::sun::star::uno::Sequence< sal_Int8 > & getUnoTunnelId();
      78             : 
      79             :     //XUnoTunnel
      80             :     virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      81             : 
      82             :     //XRenderable
      83             :     virtual sal_Int32 SAL_CALL getRendererCount( const ::com::sun::star::uno::Any& rSelection, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rxOptions ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      84             :     virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL getRenderer( sal_Int32 nRenderer, const ::com::sun::star::uno::Any& rSelection, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rxOptions ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      85             :     virtual void SAL_CALL render( sal_Int32 nRenderer, const ::com::sun::star::uno::Any& rSelection, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& rxOptions ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
      86             : 
      87             :     //XServiceInfo
      88             :     virtual OUString SAL_CALL getImplementationName(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
      89             :     virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
      90             :     virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
      91             : 
      92             :     virtual void SAL_CALL setParent( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& xParent ) throw( ::com::sun::star::lang::NoSupportException, ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
      93             : 
      94             :     // oox::FormulaExportBase
      95             :     virtual void writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer, oox::core::OoxmlVersion version ) SAL_OVERRIDE;
      96             :     virtual void writeFormulaRtf(OStringBuffer& rBuffer, rtl_TextEncoding nEncoding) SAL_OVERRIDE;
      97             :     // oox::FormulaImportBase
      98             :     virtual void readFormulaOoxml( oox::formulaimport::XmlStream& stream ) SAL_OVERRIDE;
      99             :     virtual Size getFormulaSize() const SAL_OVERRIDE;
     100             : 
     101             :     static ::com::sun::star::uno::Sequence< OUString > getSupportedServiceNames_Static();
     102             :     static OUString getImplementationName_Static();
     103             : };
     104             : 
     105             : 
     106             : 
     107             : #endif
     108             : 
     109             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10