LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/framework/inc/uielement - recentfilesmenucontroller.hxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 2 0.0 %
Date: 2013-07-09 Functions: 0 5 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             : 
      20             : #ifndef __FRAMEWORK_UIELEMENT_RECENTFILESMENUCONTROLLER_HXX_
      21             : #define __FRAMEWORK_UIELEMENT_RECENTFILESMENUCONTROLLER_HXX_
      22             : 
      23             : #include <macros/xserviceinfo.hxx>
      24             : #include <svtools/popupmenucontrollerbase.hxx>
      25             : #include <macros/xserviceinfo.hxx>
      26             : 
      27             : namespace framework
      28             : {
      29           0 :     struct LoadRecentFile
      30             :     {
      31             :         ::com::sun::star::util::URL                                                 aTargetURL;
      32             :         ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >   aArgSeq;
      33             :         ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >      xDispatch;
      34             :     };
      35             : 
      36             :     class RecentFilesMenuController :  public svt::PopupMenuControllerBase
      37             :     {
      38             :         using svt::PopupMenuControllerBase::disposing;
      39             : 
      40             :         public:
      41             :             RecentFilesMenuController( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext );
      42             :             virtual ~RecentFilesMenuController();
      43             : 
      44             :             // XServiceInfo
      45             :             DECLARE_XSERVICEINFO
      46             : 
      47             :             // XStatusListener
      48             :             virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException );
      49             : 
      50             :             // XMenuListener
      51             :             virtual void SAL_CALL itemSelected( const ::com::sun::star::awt::MenuEvent& rEvent ) throw (::com::sun::star::uno::RuntimeException);
      52             :             virtual void SAL_CALL itemActivated( const ::com::sun::star::awt::MenuEvent& rEvent ) throw (::com::sun::star::uno::RuntimeException);
      53             : 
      54             :             // XDispatchProvider
      55             :             virtual ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > SAL_CALL queryDispatch( const ::com::sun::star::util::URL& aURL, const OUString& sTarget, sal_Int32 nFlags ) throw( ::com::sun::star::uno::RuntimeException );
      56             : 
      57             :             // XDispatch
      58             :             virtual void SAL_CALL dispatch( const ::com::sun::star::util::URL& aURL, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& seqProperties ) throw( ::com::sun::star::uno::RuntimeException );
      59             : 
      60             :             // XEventListener
      61             :             virtual void SAL_CALL disposing( const com::sun::star::lang::EventObject& Source ) throw ( ::com::sun::star::uno::RuntimeException );
      62             : 
      63             :             DECL_STATIC_LINK( RecentFilesMenuController, ExecuteHdl_Impl, LoadRecentFile* );
      64             : 
      65             :         private:
      66             :             virtual void impl_setPopupMenu();
      67           0 :             struct RecentFile
      68             :             {
      69             :                 OUString aURL;
      70             :                 OUString aTitle;
      71             :             };
      72             : 
      73             :             void fillPopupMenu( com::sun::star::uno::Reference< com::sun::star::awt::XPopupMenu >& rPopupMenu );
      74             :             void executeEntry( sal_Int32 nIndex );
      75             : 
      76             :             std::vector< RecentFile > m_aRecentFilesItems;
      77             :             sal_Bool                  m_bDisabled : 1;
      78             :     };
      79             : }
      80             : 
      81             : #endif // __FRAMEWORK_UIELEMENT_RECENTFILESMENUCONTROLLER_HXX_
      82             : 
      83             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10