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 <stdtypes.h>
25 :
26 : #include <com/sun/star/lang/XServiceInfo.hpp>
27 : #include <com/sun/star/lang/XTypeProvider.hpp>
28 : #include <com/sun/star/lang/XInitialization.hpp>
29 : #include <com/sun/star/lang/XMultiServiceFactory.hpp>
30 : #include <com/sun/star/frame/XFrame.hpp>
31 : #include <com/sun/star/frame/XDispatchProvider.hpp>
32 : #include <com/sun/star/frame/XDispatch.hpp>
33 : #include <com/sun/star/frame/XStatusListener.hpp>
34 : #include <com/sun/star/frame/XPopupMenuController.hpp>
35 : #include <com/sun/star/beans/XPropertySet.hpp>
36 :
37 : #include <svtools/popupmenucontrollerbase.hxx>
38 : #include <toolkit/awt/vclxmenu.hxx>
39 : #include <cppuhelper/weak.hxx>
40 : #include <rtl/ustring.hxx>
41 :
42 : namespace framework
43 : {
44 0 : struct LoadRecentFile
45 : {
46 : ::com::sun::star::util::URL aTargetURL;
47 : ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgSeq;
48 : ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > xDispatch;
49 : };
50 :
51 : class RecentFilesMenuController : public svt::PopupMenuControllerBase
52 : {
53 : using svt::PopupMenuControllerBase::disposing;
54 :
55 : public:
56 : RecentFilesMenuController( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceManager );
57 : virtual ~RecentFilesMenuController();
58 :
59 : // XServiceInfo
60 : DECLARE_XSERVICEINFO
61 :
62 : // XPopupMenuController
63 : virtual void SAL_CALL updatePopupMenu() throw (::com::sun::star::uno::RuntimeException);
64 :
65 : // XStatusListener
66 : virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException );
67 :
68 : // XMenuListener
69 : virtual void SAL_CALL select( const ::com::sun::star::awt::MenuEvent& rEvent ) throw (::com::sun::star::uno::RuntimeException);
70 : virtual void SAL_CALL activate( const ::com::sun::star::awt::MenuEvent& rEvent ) throw (::com::sun::star::uno::RuntimeException);
71 :
72 : // XDispatchProvider
73 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > SAL_CALL queryDispatch( const ::com::sun::star::util::URL& aURL, const ::rtl::OUString& sTarget, sal_Int32 nFlags ) throw( ::com::sun::star::uno::RuntimeException );
74 :
75 : // XDispatch
76 : 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 );
77 : virtual void SAL_CALL addStatusListener( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener >& xControl, const ::com::sun::star::util::URL& aURL ) throw( ::com::sun::star::uno::RuntimeException );
78 : virtual void SAL_CALL removeStatusListener( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener >& xControl, const ::com::sun::star::util::URL& aURL ) throw( ::com::sun::star::uno::RuntimeException );
79 :
80 : // XEventListener
81 : virtual void SAL_CALL disposing( const com::sun::star::lang::EventObject& Source ) throw ( ::com::sun::star::uno::RuntimeException );
82 :
83 : DECL_STATIC_LINK( RecentFilesMenuController, ExecuteHdl_Impl, LoadRecentFile* );
84 :
85 : private:
86 : virtual void impl_setPopupMenu();
87 0 : struct RecentFile
88 : {
89 : rtl::OUString aURL;
90 : rtl::OUString aTitle;
91 : rtl::OUString aPassword;
92 : };
93 :
94 : void fillPopupMenu( com::sun::star::uno::Reference< com::sun::star::awt::XPopupMenu >& rPopupMenu );
95 : void executeEntry( sal_Int32 nIndex );
96 :
97 : std::vector< RecentFile > m_aRecentFilesItems;
98 : sal_Bool m_bDisabled : 1;
99 : };
100 : }
101 :
102 : #endif // __FRAMEWORK_UIELEMENT_RECENTFILESMENUCONTROLLER_HXX_
103 :
104 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|