/* -*- 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 #include #include #include #include #include #include #include #include #include #include "sfxtypes.hxx" #include "appdata.hxx" #include #include #include "arrdecl.hxx" #include #include #include #include #include #include #include "app.hrc" #include #include "workwin.hxx" TYPEINIT2(SfxApplication,SfxShell,SfxBroadcaster); void SfxApplication::Init ( ) /* [Description] This virtual method is called from SFx through Application::Main(), before Execute() is called and: - the Intro is already displayed, - the Applications window exists, but it is still hidden, - the Bindings already exist (Controller can be registered), - the Init and Config-Manager already exists, - the Standard-Controller already exists, - the SFx-Shells have alredy registered their Interfaces. [Cross-reference] */ { } void SfxApplication::Exit() /* [Description] This virtual method is called from SFx through Application::Main(), after Execute() has finished and - the configuration (SfxConfigManager) was already saved, - the window postions etc. in the SfxIniManager were written, - the Application widow still exists, but is hidden - all Documents and their Views already are closed. - Dispatcher, Bindings etc. already destroyed. [Cross-reference] */ { } SfxFilterMatcher& SfxApplication::GetFilterMatcher() { if( !pAppData_Impl->pMatcher ) { pAppData_Impl->pMatcher = new SfxFilterMatcher(); URIHelper::SetMaybeFileHdl( STATIC_LINK( pAppData_Impl->pMatcher, SfxFilterMatcher, MaybeFileHdl_Impl ) ); } return *pAppData_Impl->pMatcher; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */