tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / sfx2 / source / appl / shutdownicon.hxx
blob535a24b4dff42c9ecded2ad8ad14aab48e10fd35
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 <rtl/ref.hxx>
31 #include <comphelper/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 comphelper::WeakComponentImplHelper<
48 css::lang::XInitialization,
49 css::frame::XTerminateListener,
50 css::lang::XServiceInfo,
51 css::beans::XFastPropertySet > ShutdownIconServiceBase;
53 inline constexpr OUString WRITER_URL = u"private:factory/swriter"_ustr;
54 inline constexpr OUString CALC_URL = u"private:factory/scalc"_ustr;
55 inline constexpr OUString IMPRESS_URL = u"private:factory/simpress"_ustr;
56 inline constexpr OUString IMPRESS_WIZARD_URL = u"private:factory/simpress?slot=6686"_ustr;
57 inline constexpr OUString DRAW_URL = u"private:factory/sdraw"_ustr;
58 inline constexpr OUString MATH_URL = u"private:factory/smath"_ustr;
59 inline constexpr OUString BASE_URL = u"private:factory/sdatabase?Interactive"_ustr;
60 inline constexpr OUString STARTMODULE_URL = u".uno:ShowStartModule"_ustr;
62 class ShutdownIcon : public ShutdownIconServiceBase
64 bool m_bVeto;
65 bool m_bListenForTermination;
66 bool m_bSystemDialogs;
67 std::unique_ptr<sfx2::FileDialogHelper> m_pFileDlg;
68 css::uno::Reference< css::uno::XComponentContext > m_xContext;
69 css::uno::Reference< css::frame::XDesktop2 > m_xDesktop;
71 static rtl::Reference<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( css::uno::Reference< css::uno::XComponentContext > xContext );
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( std::u16string_view 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 disposing(std::unique_lock<std::mutex>&) 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 #ifdef _WIN32
140 static void EnableAutostartW32( const OUString &aShortcutName );
141 static OUString GetAutostartFolderNameW32();
142 #endif
145 extern "C" {
146 # ifdef _WIN32
147 // builtin win32 systray
148 void win32_init_sys_tray();
149 void win32_shutdown_sys_tray();
150 # elif defined MACOSX
151 void aqua_init_systray();
152 void aqua_shutdown_systray();
153 # endif
156 #endif
158 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */