/************************************************************************* * * $RCSfile: appquit.cxx,v $ * * $Revision: 1.19 $ * * last change: $Author: mba $ $Date: 2002-03-19 17:17:19 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (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.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ #ifndef _BASMGR_HXX //autogen #include #endif #ifndef _SB_SBSTAR_HXX //autogen #include #endif #ifdef WIN #define _TL_LANG_SPECIAL #endif #ifndef _SVDDE_HXX //autogen #include #endif #ifndef _MSGBOX_HXX //autogen #include #endif #ifndef _SFXENUMITEM_HXX #include #endif #include #include #pragma hdrstop #include "app.hrc" #include "app.hxx" #include "unoctitm.hxx" #include "appdata.hxx" #include "viewsh.hxx" #include "dispatch.hxx" #include "printer.hxx" #include "picklist.hxx" #include "plugobj.hxx" #include "arrdecl.hxx" #include "sfxresid.hxx" #include "newhdl.hxx" #include "cfgmgr.hxx" #include "accmgr.hxx" #include "event.hxx" #include "macrconf.hxx" #include "mnumgr.hxx" #include "imgmgr.hxx" #include "templdlg.hxx" #include "tbxconf.hxx" #include "msgpool.hxx" #include "frameobj.hxx" #include "docfile.hxx" #include "sfxtypes.hxx" #include "appimp.hxx" #include "sfxlocal.hrc" #include "dataurl.hxx" #include "fcontnr.hxx" #include "nochaos.hxx" #include "appuno.hxx" #include "doctempl.hxx" #include "viewfrm.hxx" #include "bmkmenu.hxx" #include "objsh.hxx" #include "dlgcont.hxx" #include "scriptcont.hxx" #include #ifndef PRODUCT DECLARE_LIST( SfxFrameWindowFactoryArray_Impl, SfxFrameWindowFactory* ) SV_DECL_PTRARR(SfxInitLinkList, Link*, 2, 2); #endif //=================================================================== /* void SfxApplication::Quit() { QueryExit_Impl(); } */ //-------------------------------------------------------------------- BOOL SfxApplicationClass::QueryExit() { const SfxBoolItem *pRet = (const SfxBoolItem*) SFX_APP()->GetAppDispatcher_Impl()->Execute( SID_QUITAPP, SFX_CALLMODE_SYNCHRON ); return pRet ? pRet->GetValue() : FALSE; } BOOL SfxApplication::QueryExit_Impl() /* [Beschreibung] Liefert FALSE, wenn entweder ein modaler Dialog offen ist, oder der Printer einer SfxViewShell einen laufenden Druckjob hat. [Anmerkung] Wenn diese aus StarView stammende virtuelle Methode vom Applikations- entwickler "uberladen wird, mu"s diese SfxApplication::QueryExit() rufen und falls diese FALSE zur"uckgibt, ebenfalls FALSE zur"uckgeben. */ { SaveConfiguration(); BOOL bQuit = TRUE; /* BOOL bPrinting = FALSE; for ( SfxViewShell *pViewSh = SfxViewShell::GetFirst(); !bPrinting && pViewSh; pViewSh = SfxViewShell::GetNext(*pViewSh) ) { SfxPrinter *pPrinter = pViewSh->GetPrinter(); bPrinting = pPrinter && pPrinter->IsPrinting(); } if ( bPrinting ) { // Benutzer fragen, ob abgebrochen werden soll if ( RET_OK == QueryBox( 0, SfxResId( MSG_ISPRINTING_QUERYABORT ) ).Execute() ) { // alle Jobs canceln for ( SfxViewShell *pViewSh = SfxViewShell::GetFirst(); !bPrinting && pViewSh; pViewSh = SfxViewShell::GetNext(*pViewSh) ) { SfxPrinter *pPrinter = pViewSh->GetPrinter(); if ( pPrinter && pPrinter->IsPrinting() ) pPrinter->AbortJob(); } // da das Canceln asynchron ist, Quit erstmal wieder verlassen GetDispatcher_Impl()->Execute( SID_QUITAPP, SFX_CALLMODE_ASYNCHRON ); DBG_TRACE( "QueryExit => FALSE (printing)" ); return FALSE; } } */ // alles canceln was zu canceln ist GetCancelManager()->Cancel(TRUE); // direkte Benutzung is beendet if ( pAppData_Impl->bDirectAliveCount ) { SvFactory::DecAliveCount(); pAppData_Impl->bDirectAliveCount = FALSE; } // alle "normal" bearbeiteten Dokumente schlie\sen MemCache_Impl &rCache = SfxPickList_Impl::Get()->GetMemCache(); rCache.ClearObjects(); /* SfxObjectShell *pLastDocSh = SfxObjectShell::GetFirst(); if ( bQuit ) { // Jetzt zur Sicherheit auch hidden Frames abr"aumen SfxViewFrame::CloseHiddenFrames_Impl(); pLastDocSh = SfxObjectShell::GetFirst(); } */ // will trotzdem noch jemand, den man nicht abschiessen kann, die App haben? if ( !bQuit ) { // nicht wirklich beenden, nur minimieren pAppData_Impl->bOLEResize = TRUE; InfoBox aInfoBox( NULL, SfxResId(MSG_CANT_QUIT) ); aInfoBox.Execute(); DBG_TRACE( "QueryExit => FALSE (in use)" ); return FALSE; } return TRUE; } //------------------------------------------------------------------------- void SfxApplication::Deinitialize() { if ( bDowning ) return; // Falls man nochmal beim Runterfahren in ein Reschedule l"auft pAppData_Impl->EndListening( *this ); if ( pAppData_Impl->pCancelMgr ) pAppData_Impl->EndListening( *pAppData_Impl->pCancelMgr ); // Falls noch mal zwischendurch eine Task ( BasicIDE! ) angelegt wurde ... do { SfxObjectShell* pFirst = SfxObjectShell::GetFirst(); if ( pFirst ) pFirst->DoClose(); else break; } while ( sal_True ); //!Wait(); StarBASIC::Stop(); // Pickliste (nicht in StoreConfig wegen letztem Doc) SfxPickList_Impl::Get()->SavePicklist(); // ggf. BASIC speichern if ( pImp->pBasicMgr && pImp->pBasicMgr->IsModified() ) SaveBasicManager(); SaveBasicContainer(); SaveDialogContainer(); bDowning = TRUE; // wegen Timer aus DecAliveCount und QueryExit DELETEZ( pAppData_Impl->pTemplates ); SvFactory::ClearDemandObjects(); DELETEZ(pImp->pTemplateDlg); SetViewFrame(0); bDowning = FALSE; DBG_ASSERT( !SfxViewFrame::GetFirst(), "existing SfxViewFrame after Execute" ); DBG_ASSERT( !SfxObjectShell::GetFirst(), "existing SfxObjectShell after Execute" ); pAppDispat->Pop( *this, SFX_SHELL_POP_UNTIL ); pAppDispat->Flush(); bDowning = TRUE; pAppDispat->DoDeactivate_Impl( TRUE ); INetURLHistory::Delete(); // call derived application-exit bInExit = TRUE; Exit(); // Controller u."a. freigeben // dabei sollten auch restliche Komponenten ( Beamer! ) verschwinden DELETEZ(pMenuMgr); DELETEZ(pAcceleratorMgr); DELETEZ( pImp->pBasicMgr ); if( pImp->pBasicLibContainer ) pImp->pBasicLibContainer->release(); if( pImp->pDialogLibContainer ) pImp->pDialogLibContainer->release(); SvFactory::ClearDemandObjects(); bInExit = FALSE; DBG_ASSERT( pViewFrame == 0, "active foreign ViewFrame" ); DELETEZ(pInterfaces); DELETEZ(pImageMgr); // free administration managers DELETEZ(pImp->pAutoSaveTimer); DELETEZ(pAppDispat); DELETEZ(pImp->pSfxResManager); // ab hier d"urfen keine SvObjects mehr existieren DELETEX(pAppData_Impl->pMatcher); DELETEX(pAppData_Impl->pSfxFrameObjectFactoryPtr); DELETEX(pAppData_Impl->pSfxPluginObjectFactoryPtr); SfxPickList_Impl::Delete(); delete pAppData_Impl->pLabelResMgr; #ifndef PRODUCT DELETEX(pSlotPool); DELETEX(pAppData_Impl->pEventConfig); DELETEX(pAppData_Impl->pMiscConfig); SfxMacroConfig::Release_Impl(); DELETEX(pAppData_Impl->pVerbs); DELETEX(pAppData_Impl->pFactArr); DELETEX(pAppData_Impl->pInitLinkList); #endif #ifndef PRODUCT DELETEX(pImp->pTbxCtrlFac); DELETEX(pImp->pStbCtrlFac); DELETEX(pImp->pMenuCtrlFac); DELETEX(pImp->pEventHdl); SfxNewHdl::Delete(); DELETEX(pImp->pAutoSaveTimer); DELETEX(pImp->pViewFrames); DELETEX(pImp->pViewShells); DELETEX(pImp->pObjShells); #endif NoChaos::ReleaseItemPool(); pAppData_Impl->pPool = NULL; }