LCOV - code coverage report
Current view: top level - sfx2/source/appl - appquit.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 40 43 93.0 %
Date: 2012-08-25 Functions: 2 2 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 22 48 45.8 %

           Branch data     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                 :            : #include <basic/basmgr.hxx>
      21                 :            : #include <basic/sbstar.hxx>
      22                 :            : 
      23                 :            : #include <svl/svdde.hxx>
      24                 :            : #include <vcl/msgbox.hxx>
      25                 :            : #include <svl/eitem.hxx>
      26                 :            : 
      27                 :            : #include <unotools/saveopt.hxx>
      28                 :            : #include <unotools/misccfg.hxx>
      29                 :            : 
      30                 :            : #include "app.hrc"
      31                 :            : #include <sfx2/app.hxx>
      32                 :            : #include <sfx2/evntconf.hxx>
      33                 :            : #include <sfx2/unoctitm.hxx>
      34                 :            : #include "appdata.hxx"
      35                 :            : #include <sfx2/viewsh.hxx>
      36                 :            : #include <sfx2/dispatch.hxx>
      37                 :            : #include <sfx2/printer.hxx>
      38                 :            : #include "arrdecl.hxx"
      39                 :            : #include "sfx2/sfxresid.hxx"
      40                 :            : #include <sfx2/event.hxx>
      41                 :            : #include <sfx2/mnumgr.hxx>
      42                 :            : #include <sfx2/templdlg.hxx>
      43                 :            : #include <sfx2/msgpool.hxx>
      44                 :            : #include <sfx2/docfile.hxx>
      45                 :            : #include "sfxtypes.hxx"
      46                 :            : #include "sfxlocal.hrc"
      47                 :            : #include <sfx2/fcontnr.hxx>
      48                 :            : #include "nochaos.hxx"
      49                 :            : #include <sfx2/appuno.hxx>
      50                 :            : #include <sfx2/doctempl.hxx>
      51                 :            : #include <sfx2/viewfrm.hxx>
      52                 :            : #include <sfx2/objsh.hxx>
      53                 :            : #include <sfx2/docfac.hxx>
      54                 :            : #include "appbaslib.hxx"
      55                 :            : #include <basic/basicmanagerrepository.hxx>
      56                 :            : #include <svtools/svtresid.hxx>
      57                 :            : 
      58                 :            : using ::basic::BasicManagerRepository;
      59                 :            : 
      60                 :            : //===================================================================
      61                 :        158 : sal_Bool SfxApplication::QueryExit_Impl()
      62                 :            : {
      63                 :        158 :     sal_Bool bQuit = sal_True;
      64                 :            : 
      65                 :            :     // Does some instance, that can not be shut down, still require the app?
      66         [ -  + ]:        158 :     if ( !bQuit )
      67                 :            :     {
      68                 :            :         // Not really exit, only minimize
      69 [ #  # ][ #  # ]:          0 :         InfoBox aInfoBox( NULL, SfxResId(MSG_CANT_QUIT) );
      70         [ #  # ]:          0 :         aInfoBox.Execute();
      71                 :            :         OSL_TRACE( "QueryExit => sal_False (in use)" );
      72         [ #  # ]:          0 :         return sal_False;
      73                 :            :     }
      74                 :            : 
      75                 :        158 :     return sal_True;
      76                 :            : }
      77                 :            : 
      78                 :            : //-------------------------------------------------------------------------
      79                 :            : 
      80                 :        158 : void SfxApplication::Deinitialize()
      81                 :            : {
      82         [ -  + ]:        158 :     if ( pAppData_Impl->bDowning )
      83                 :        158 :         return;
      84                 :            : 
      85                 :            : #ifndef DISABLE_SCRIPTING
      86                 :        158 :     StarBASIC::Stop();
      87                 :            : 
      88                 :        158 :     SaveBasicAndDialogContainer();
      89                 :            : #endif
      90                 :            : 
      91                 :        158 :     pAppData_Impl->bDowning = sal_True; // due to Timer from DecAliveCount and QueryExit
      92                 :            : 
      93         [ +  + ]:        158 :     DELETEZ( pAppData_Impl->pTemplates );
      94                 :            : 
      95                 :            :     // By definition there shouldn't be any open view frames when we reach
      96                 :            :     // this method. Therefore this call makes no sense and is the source of
      97                 :            :     // some stack traces, which we don't understand.
      98                 :            :     // For more information see:
      99                 :        158 :     pAppData_Impl->bDowning = sal_False;
     100                 :            :     DBG_ASSERT( !SfxViewFrame::GetFirst(),
     101                 :            :                 "existing SfxViewFrame after Execute" );
     102                 :            :     DBG_ASSERT( !SfxObjectShell::GetFirst(),
     103                 :            :                 "existing SfxObjectShell after Execute" );
     104                 :        158 :     pAppData_Impl->pAppDispat->Pop( *this, SFX_SHELL_POP_UNTIL );
     105                 :        158 :     pAppData_Impl->pAppDispat->Flush();
     106                 :        158 :     pAppData_Impl->bDowning = sal_True;
     107                 :        158 :     pAppData_Impl->pAppDispat->DoDeactivate_Impl( sal_True, NULL );
     108                 :            : 
     109                 :            :     // call derived application-exit
     110                 :        158 :     Exit();
     111                 :            : 
     112                 :            :     // Release Controller and others
     113                 :            :     // then the remaining components should alse disapear ( Beamer! )
     114                 :            : 
     115                 :            : #ifndef DISABLE_SCRIPTING
     116                 :        158 :     BasicManagerRepository::resetApplicationBasicManager();
     117                 :        158 :     pAppData_Impl->pBasicManager->reset( NULL );
     118                 :            :         // this will also delete pBasMgr
     119                 :            : #endif
     120                 :            : 
     121                 :            :     DBG_ASSERT( pAppData_Impl->pViewFrame == 0, "active foreign ViewFrame" );
     122                 :            : 
     123         [ +  - ]:        158 :     delete[] pAppData_Impl->pInterfaces, pAppData_Impl->pInterfaces = 0;
     124                 :            : 
     125                 :            :     // free administration managers
     126         [ +  - ]:        158 :     DELETEZ(pAppData_Impl->pAppDispat);
     127                 :        158 :     SfxResId::DeleteResMgr();
     128                 :        158 :     SvtResId::DeleteResMgr();
     129         [ +  - ]:        158 :     DELETEZ(pAppData_Impl->pOfaResMgr);
     130                 :            : 
     131                 :            :     // from here no SvObjects have to exists
     132         [ +  + ]:        158 :     DELETEZ(pAppData_Impl->pMatcher);
     133                 :            : 
     134         [ +  - ]:        158 :     DELETEX(pAppData_Impl->pSlotPool);
     135         [ +  - ]:        158 :     DELETEX(pAppData_Impl->pFactArr);
     136                 :            : 
     137         [ +  - ]:        158 :     DELETEX(pAppData_Impl->pTbxCtrlFac);
     138         [ +  - ]:        158 :     DELETEX(pAppData_Impl->pStbCtrlFac);
     139         [ +  - ]:        158 :     DELETEX(pAppData_Impl->pMenuCtrlFac);
     140         [ +  - ]:        158 :     DELETEX(pAppData_Impl->pViewFrames);
     141         [ +  - ]:        158 :     DELETEX(pAppData_Impl->pViewShells);
     142         [ +  - ]:        158 :     DELETEX(pAppData_Impl->pObjShells);
     143                 :            : 
     144                 :            :     //TODO/CLEANTUP
     145                 :            :     //ReleaseArgs could be used instead!
     146                 :        158 :     pAppData_Impl->pPool = NULL;
     147                 :        158 :     NoChaos::ReleaseItemPool();
     148                 :            : 
     149         [ +  - ]:        158 :     DELETEZ(pAppData_Impl->pBasicResMgr);
     150         [ +  - ]:        158 :     DELETEZ(pAppData_Impl->pSvtResMgr);
     151                 :            : 
     152         [ +  - ]:        158 :     delete pAppData_Impl->m_pSbxErrorHdl;
     153         [ +  - ]:        158 :     delete pAppData_Impl->m_pSoErrorHdl;
     154         [ +  - ]:        158 :     delete pAppData_Impl->m_pToolsErrorHdl;
     155                 :            : #ifdef DBG_UTIL
     156                 :            :     delete pAppData_Impl->m_pSimpleErrorHdl;
     157                 :            : #endif
     158                 :            : }
     159                 :            : 
     160                 :            : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10