LCOV - code coverage report
Current view: top level - cui/source/inc - macropg.hxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 6 0.0 %
Date: 2014-04-14 Functions: 0 7 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_CUI_SOURCE_INC_MACROPG_HXX
      20             : #define INCLUDED_CUI_SOURCE_INC_MACROPG_HXX
      21             : 
      22             : #include <sfx2/basedlgs.hxx>
      23             : #include <sfx2/tabdlg.hxx>
      24             : 
      25             : #include <com/sun/star/container/XNameReplace.hpp>
      26             : #include <com/sun/star/util/XModifiable.hpp>
      27             : #include <com/sun/star/beans/PropertyValue.hpp>
      28             : #include <com/sun/star/uno/Reference.hxx>
      29             : #include <svl/macitem.hxx>
      30             : #include <vcl/lstbox.hxx>
      31             : #include <rtl/ustring.hxx>
      32             : 
      33             : #include <boost/unordered_map.hpp>
      34             : #include <vector>
      35             : 
      36             : typedef ::boost::unordered_map< OUString, ::std::pair< OUString, OUString >, OUStringHash, ::std::equal_to< OUString > > EventsHash;
      37             : 
      38             : struct EventDisplayName
      39             : {
      40             :     const sal_Char* pAsciiEventName;
      41             :     sal_uInt16          nEventResourceID;
      42             :     EventDisplayName() : pAsciiEventName( NULL ), nEventResourceID(0) { }
      43           0 :     EventDisplayName( const sal_Char* _pAsciiName, const sal_uInt16 _nResId )
      44             :         : pAsciiEventName( _pAsciiName )
      45           0 :         , nEventResourceID( _nResId )
      46             :     {
      47           0 :     }
      48             : };
      49             : typedef ::std::vector< EventDisplayName >   EventDisplayNames;
      50             : 
      51             : class _SvxMacroTabPage;
      52             : class SvTabListBox;
      53             : 
      54             : class _SvxMacroTabPage_Impl;
      55             : 
      56             : 
      57             : class _SvxMacroTabPage : public SfxTabPage
      58             : {
      59             :     DECL_STATIC_LINK( _SvxMacroTabPage, SelectEvent_Impl, SvTabListBox * );
      60             :     DECL_STATIC_LINK( _SvxMacroTabPage, AssignDeleteHdl_Impl, PushButton * );
      61             :     DECL_STATIC_LINK( _SvxMacroTabPage, DoubleClickHdl_Impl, SvTabListBox * );
      62             : 
      63             :     static long GenericHandler_Impl( _SvxMacroTabPage* pThis, PushButton* pBtn );
      64             : 
      65             : protected:
      66             :     _SvxMacroTabPage_Impl*      mpImpl;
      67             :     ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > m_xAppEvents;
      68             :     ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > m_xDocEvents;
      69             :     ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifiable > m_xModifiable;
      70             :     EventsHash m_appEventsHash;
      71             :     EventsHash m_docEventsHash;
      72             :     bool bReadOnly, bDocModified, bAppEvents, bInitialized;
      73             :     EventDisplayNames aDisplayNames;
      74             : 
      75             :     _SvxMacroTabPage( Window* pParent, const OString& rID, const OUString& rUIXMLDescription, const SfxItemSet& rItemSet );
      76             : 
      77             :     void                        EnableButtons();
      78             :     ::com::sun::star::uno::Any  GetPropsByName( const OUString& eventName, EventsHash& eventsHash );
      79             :     ::std::pair< OUString, OUString > GetPairFromAny( ::com::sun::star::uno::Any aAny );
      80             : 
      81             : public:
      82             : 
      83             :     virtual                     ~_SvxMacroTabPage();
      84             :     void                        InitResources();
      85             : 
      86             :     void                        InitAndSetHandler( ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > xAppEvents, ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > xDocEvents, ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifiable > xModifiable );
      87             :     virtual bool                FillItemSet( SfxItemSet& rSet ) SAL_OVERRIDE;
      88             : 
      89             :     virtual void                Reset( const SfxItemSet& ) SAL_OVERRIDE;
      90             : 
      91             :     void                        DisplayAppEvents( bool appEvents);
      92             :     void                        SetReadOnly( sal_Bool bSet );
      93             :     bool                        IsReadOnly() const SAL_OVERRIDE;
      94             : };
      95             : 
      96           0 : class SvxMacroTabPage : public _SvxMacroTabPage
      97             : {
      98             : public:
      99             :     SvxMacroTabPage(
     100             :         Window* pParent,
     101             :         const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& _rxDocumentFrame,
     102             :         const SfxItemSet& rSet,
     103             :         ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > xNameReplace,
     104             :         sal_uInt16 nSelectedIndex
     105             :     );
     106             : };
     107             : 
     108             : // class SvxMacroAssignDlg --------------------------------------------------
     109             : 
     110             : typedef sal_uInt16* (*GetTabPageRanges)(); // gives international Which-values
     111             : 
     112           0 : class SvxMacroAssignSingleTabDialog : public SfxSingleTabDialog
     113             : {
     114             : public:
     115             :     SvxMacroAssignSingleTabDialog(Window* pParent, const SfxItemSet& rOptionsSet);
     116             : 
     117             : private:
     118             :     DECL_DLLPRIVATE_LINK( OKHdl_Impl, Button * );
     119             : };
     120             : 
     121             : 
     122           0 : class SvxMacroAssignDlg : public SvxMacroAssignSingleTabDialog
     123             : {
     124             : public:
     125             :     SvxMacroAssignDlg(
     126             :         Window* pParent,
     127             :         const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& _rxDocumentFrame,
     128             :         const SfxItemSet& rSet,
     129             :         const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace >& xNameReplace,
     130             :         sal_uInt16 nSelectedIndex
     131             :     );
     132             : };
     133             : 
     134             : #endif
     135             : 
     136             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10