LCOV - code coverage report
Current view: top level - libreoffice/basic/source/runtime - basrdll.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 10 32 31.2 %
Date: 2012-12-27 Functions: 2 6 33.3 %
Legend: Lines: hit not hit

          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 <tools/shl.hxx>
      21             : #include <vcl/svapp.hxx>
      22             : #include <svl/solar.hrc>
      23             : #include <tools/debug.hxx>
      24             : #include <vcl/msgbox.hxx>
      25             : 
      26             : #include <basic/sbstar.hxx>
      27             : #include <basic/basrdll.hxx>
      28             : #include <basrid.hxx>
      29             : #include <sb.hrc>
      30             : 
      31           0 : BasResId::BasResId( sal_uInt32 nId ) :
      32           0 :     ResId( nId, *(BASIC_DLL()->GetBasResMgr()) )
      33             : {
      34           0 : }
      35             : 
      36          22 : BasicDLL::BasicDLL()
      37             : {
      38          22 :     BASIC_DLL() = this;
      39          22 :     ::com::sun::star::lang::Locale aLocale = Application::GetSettings().GetUILanguageTag().getLocale();
      40          22 :     pBasResMgr = ResMgr::CreateResMgr("sb", aLocale );
      41          22 :     bDebugMode = false;
      42          22 :     bBreakEnabled = true;
      43          22 : }
      44             : 
      45           3 : BasicDLL::~BasicDLL()
      46             : {
      47           3 :     delete pBasResMgr;
      48           3 : }
      49             : 
      50           0 : void BasicDLL::EnableBreak( bool bEnable )
      51             : {
      52           0 :     BasicDLL* pThis = BASIC_DLL();
      53             :     DBG_ASSERT( pThis, "BasicDLL::EnableBreak: Noch keine Instanz!" );
      54           0 :     if ( pThis )
      55             :     {
      56           0 :         pThis->bBreakEnabled = bEnable;
      57             :     }
      58           0 : }
      59             : 
      60           0 : void BasicDLL::SetDebugMode( bool bDebugMode )
      61             : {
      62           0 :     BasicDLL* pThis = BASIC_DLL();
      63             :     DBG_ASSERT( pThis, "BasicDLL::EnableBreak: Noch keine Instanz!" );
      64           0 :     if ( pThis )
      65             :     {
      66           0 :         pThis->bDebugMode = bDebugMode;
      67             :     }
      68           0 : }
      69             : 
      70             : 
      71           0 : void BasicDLL::BasicBreak()
      72             : {
      73             :     // bJustStopping: if there's someone pressing STOP like crazy umpteen times,
      74             :     // but the Basic doesn't stop early enough, the box might appear more often...
      75             :     static bool bJustStopping = false;
      76             : 
      77           0 :     BasicDLL* pThis = BASIC_DLL();
      78             :     DBG_ASSERT( pThis, "BasicDLL::EnableBreak: Noch keine Instanz!" );
      79           0 :     if ( pThis )
      80             :     {
      81           0 :         if ( StarBASIC::IsRunning() && !bJustStopping && ( pThis->bBreakEnabled || pThis->bDebugMode ) )
      82             :         {
      83           0 :             bJustStopping = true;
      84           0 :             StarBASIC::Stop();
      85           0 :             InfoBox( 0, BasResId(IDS_SBERR_TERMINATED).toString() ).Execute();
      86           0 :             bJustStopping = false;
      87             :         }
      88             :     }
      89           0 : }
      90             : 
      91             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10