1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <config_features.h>
#include <sfx2/app.hxx>
#include <com/sun/star/frame/XTerminateListener.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/frame/theGlobalEventBroadcaster.hpp>
#include <com/sun/star/frame/Desktop.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <basic/sbdef.hxx>
#include <tools/svlibrary.h>
#include <svtools/soerr.hxx>
#include <unotools/configmgr.hxx>
#include <svtools/ehdl.hxx>
#include <comphelper/processfactory.hxx>
#include <osl/module.hxx>
#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <vcl/specialchars.hxx>
#include <vcl/help.hxx>
#include <vcl/svapp.hxx>
#include <unoctitm.hxx>
#include <appdata.hxx>
#include <sfx2/dispatch.hxx>
#include <nochaos.hxx>
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::frame;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star;
namespace {
class SfxTerminateListener_Impl : public ::cppu::WeakImplHelper< XTerminateListener, XServiceInfo >
{
public:
// XTerminateListener
virtual void SAL_CALL queryTermination( const EventObject& aEvent ) override;
virtual void SAL_CALL notifyTermination( const EventObject& aEvent ) override;
virtual void SAL_CALL disposing( const EventObject& Source ) override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName() override;
virtual sal_Bool SAL_CALL supportsService( const OUString& sServiceName ) override;
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
};
}
void SAL_CALL SfxTerminateListener_Impl::disposing( const EventObject& )
{
}
void SAL_CALL SfxTerminateListener_Impl::queryTermination( const EventObject& )
{
}
void SAL_CALL SfxTerminateListener_Impl::notifyTermination( const EventObject& aEvent )
{
Reference< XDesktop > xDesktop( aEvent.Source, UNO_QUERY );
if( xDesktop.is() )
xDesktop->removeTerminateListener( this );
SolarMutexGuard aGuard;
utl::ConfigManager::storeConfigItems();
SfxApplication* pApp = SfxGetpApp();
pApp->Broadcast( SfxHint( SfxHintId::Deinitializing ) );
pApp->Get_Impl()->mxAppDispatch->ReleaseAll();
pApp->Get_Impl()->mxAppDispatch.clear();
css::uno::Reference< css::uno::XComponentContext > xContext = ::comphelper::getProcessComponentContext();
css::uno::Reference< css::document::XDocumentEventListener > xGlobalBroadcaster(css::frame::theGlobalEventBroadcaster::get(xContext), css::uno::UNO_QUERY_THROW);
css::document::DocumentEvent aEvent2;
aEvent2.EventName = "OnCloseApp";
xGlobalBroadcaster->documentEventOccured(aEvent2);
delete pApp;
Application::Quit();
}
OUString SAL_CALL SfxTerminateListener_Impl::getImplementationName()
{
return "com.sun.star.comp.sfx2.SfxTerminateListener";
}
sal_Bool SAL_CALL SfxTerminateListener_Impl::supportsService( const OUString& sServiceName )
{
return cppu::supportsService(this, sServiceName);
}
Sequence< OUString > SAL_CALL SfxTerminateListener_Impl::getSupportedServiceNames()
{
// Note: That service does not really exists .-)
// But this implementation is not thought to be registered really within our service.rdb.
// At least we need the implementation name only to identify these service at the global desktop instance.
// The desktop must know, which listener will terminate the SfxApplication in real !
// It must call this special listener as last one ... otherwise we shutdown the SfxApplication BEFORE other listener
// can react ...
return { "com.sun.star.frame.TerminateListener" };
}
typedef bool (*PFunc_getSpecialCharsForEdit)(weld::Widget* i_pParent, const vcl::Font& i_rFont, OUString& o_rOutString);
// Lazy binding of the GetSpecialCharsForEdit function as it resides in
// a library above us.
#ifndef DISABLE_DYNLOADING
extern "C" { static void thisModule() {} }
#else
extern "C" bool GetSpecialCharsForEdit(weld::Widget* i_pParent, const vcl::Font& i_rFont, OUString& o_rOutString);
#endif
static OUString SfxGetSpecialCharsForEdit(weld::Widget* pParent, const vcl::Font& rFont)
{
static const PFunc_getSpecialCharsForEdit pfunc_getSpecialCharsForEdit = [] {
PFunc_getSpecialCharsForEdit pfunc = nullptr;
#ifndef DISABLE_DYNLOADING
osl::Module aMod;
aMod.loadRelative(&thisModule, SVLIBRARY("cui"));
// get symbol
pfunc = reinterpret_cast<PFunc_getSpecialCharsForEdit>(aMod.getFunctionSymbol("GetSpecialCharsForEdit"));
DBG_ASSERT( pfunc, "GetSpecialCharsForEdit() not found!" );
aMod.release();
#else
pfunc = GetSpecialCharsForEdit;
#endif
return pfunc;
}();
OUString aRet;
if ( pfunc_getSpecialCharsForEdit )
{
SolarMutexGuard aGuard;
(*pfunc_getSpecialCharsForEdit)( pParent, rFont, aRet );
}
return aRet;
}
void SfxApplication::Initialize_Impl()
{
#ifdef TLX_VALIDATE
StgIo::SetErrorLink( LINK( this, SfxStorageErrHdl, Error ) );
#endif
Reference < XDesktop2 > xDesktop = Desktop::create ( ::comphelper::getProcessComponentContext() );
xDesktop->addTerminateListener( new SfxTerminateListener_Impl );
pImpl->mxAppDispatch = new SfxStatusDispatcher;
// SV-Look
Help::EnableContextHelp();
Help::EnableExtHelp();
pImpl->m_pToolsErrorHdl.emplace(
RID_ERRHDL, ErrCodeArea::Io, ErrCodeArea::Vcl);
pImpl->m_pSoErrorHdl.emplace(
RID_SO_ERROR_HANDLER, ErrCodeArea::So, ErrCodeArea::So, SvtResLocale());
#if HAVE_FEATURE_SCRIPTING
pImpl->m_pSbxErrorHdl.emplace(
RID_BASIC_START, ErrCodeArea::Sbx, ErrCodeArea::Sbx, BasResLocale());
#endif
if (!utl::ConfigManager::IsFuzzing())
{
SolarMutexGuard aGuard;
//ensure instantiation of listener that manages the internal recently-used
//list
pImpl->mxAppPickList.emplace(*this);
}
DBG_ASSERT( !pImpl->pAppDispat, "AppDispatcher already exists" );
pImpl->pAppDispat.emplace();
pImpl->pSlotPool.emplace();
Registrations_Impl();
// initialize the subclass
pImpl->bDowning = false;
// get CHAOS item pool...
pImpl->pPool = NoChaos::GetItemPool();
SetPool( pImpl->pPool );
if ( pImpl->bDowning )
return;
// build the app dispatcher
pImpl->pAppDispat->Push(*this);
pImpl->pAppDispat->Flush();
pImpl->pAppDispat->DoActivate_Impl( true );
{
SolarMutexGuard aGuard;
// Set special characters callback on vcl edit control
vcl::SetGetSpecialCharsFunction(&SfxGetSpecialCharsForEdit);
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|