Version 7.1.7.1, tag libreoffice-7.1.7.1
[LibreOffice.git] / sfx2 / source / appl / shutdownicon.hxx
blob6829330409de1c452159b14917c14d79dc14b515
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SFX2_SOURCE_APPL_SHUTDOWNICON_HXX
21 #define INCLUDED_SFX2_SOURCE_APPL_SHUTDOWNICON_HXX
23 #include <com/sun/star/frame/XTerminateListener.hpp>
24 #include <com/sun/star/frame/XDesktop2.hpp>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <com/sun/star/lang/XInitialization.hpp>
27 #include <com/sun/star/beans/XFastPropertySet.hpp>
28 #include <com/sun/star/uno/XComponentContext.hpp>
29 #include <rtl/ustring.hxx>
30 #include <osl/mutex.hxx>
31 #include <cppuhelper/compbase.hxx>
32 #include <tools/link.hxx>
33 #include <memory>
35 extern "C" {
37 void SAL_DLLPUBLIC_EXPORT plugin_init_sys_tray();
38 void SAL_DLLPUBLIC_EXPORT plugin_shutdown_sys_tray();
42 namespace sfx2
44 class FileDialogHelper;
47 typedef ::cppu::WeakComponentImplHelper<
48 css::lang::XInitialization,
49 css::frame::XTerminateListener,
50 css::lang::XServiceInfo,
51 css::beans::XFastPropertySet > ShutdownIconServiceBase;
53 #define WRITER_URL "private:factory/swriter"
54 #define CALC_URL "private:factory/scalc"
55 #define IMPRESS_URL "private:factory/simpress"
56 #define IMPRESS_WIZARD_URL "private:factory/simpress?slot=6686"
57 #define DRAW_URL "private:factory/sdraw"
58 #define MATH_URL "private:factory/smath"
59 #define BASE_URL "private:factory/sdatabase?Interactive"
60 #define STARTMODULE_URL ".uno:ShowStartModule"
62 class ShutdownIcon : public ShutdownIconServiceBase
64 ::osl::Mutex m_aMutex;
65 bool m_bVeto;
66 bool m_bListenForTermination;
67 bool m_bSystemDialogs;
68 std::unique_ptr<sfx2::FileDialogHelper> m_pFileDlg;
69 css::uno::Reference< css::uno::XComponentContext > m_xContext;
71 static ShutdownIcon *pShutdownIcon; // one instance
73 bool m_bInitialized;
74 void initSystray();
75 void deInitSystray();
77 static void EnterModalMode();
78 static void LeaveModalMode();
79 static OUString getShortcutName();
81 friend class SfxNotificationListener_Impl;
83 public:
84 explicit ShutdownIcon( const css::uno::Reference< css::uno::XComponentContext > & rxContext );
86 virtual ~ShutdownIcon() override;
88 virtual OUString SAL_CALL getImplementationName() override;
90 virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName) override;
92 virtual css::uno::Sequence<OUString> SAL_CALL getSupportedServiceNames() override;
94 static ShutdownIcon* getInstance();
95 static ShutdownIcon* createInstance();
97 static void terminateDesktop();
98 static void addTerminateListener();
100 static void FileOpen();
101 static void OpenURL( const OUString& aURL, const OUString& rTarget, const css::uno::Sequence< css::beans::PropertyValue >& =
102 css::uno::Sequence< css::beans::PropertyValue >( 0 ) );
103 static void FromTemplate();
105 static void SetAutostart( bool bActivate );
106 static bool GetAutostart();
107 static bool bModalMode;
109 /// @throws css::uno::Exception
110 void init();
112 static OUString GetUrlDescription( const OUString& aUrl );
114 void SetVeto( bool bVeto ) { m_bVeto = bVeto;}
116 void StartFileDialog();
117 DECL_LINK(DialogClosedHdl_Impl, sfx2::FileDialogHelper*, void);
119 static bool IsQuickstarterInstalled();
121 // Component Helper - force override
122 virtual void SAL_CALL disposing() override;
124 // XEventListener
125 virtual void SAL_CALL disposing( const css::lang::EventObject& Source ) override;
127 // XTerminateListener
128 virtual void SAL_CALL queryTermination( const css::lang::EventObject& aEvent ) override;
129 virtual void SAL_CALL notifyTermination( const css::lang::EventObject& aEvent ) override;
131 // XInitialization
132 virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) override;
134 // XFastPropertySet
135 virtual void SAL_CALL setFastPropertyValue( ::sal_Int32 nHandle,
136 const css::uno::Any& aValue ) override;
137 virtual css::uno::Any SAL_CALL getFastPropertyValue( ::sal_Int32 nHandle ) override;
139 css::uno::Reference< css::frame::XDesktop2 > m_xDesktop;
141 #ifdef _WIN32
142 static void EnableAutostartW32( const OUString &aShortcutName );
143 static OUString GetAutostartFolderNameW32();
144 #endif
147 extern "C" {
148 # ifdef _WIN32
149 // builtin win32 systray
150 void win32_init_sys_tray();
151 void win32_shutdown_sys_tray();
152 # elif defined MACOSX
153 void aqua_init_systray();
154 void aqua_shutdown_systray();
155 # endif
158 #endif
160 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */