2000-09-29 05:02:42 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: basobj3.cxx,v $
|
|
|
|
*
|
2003-04-11 11:38:11 -05:00
|
|
|
* $Revision: 1.20 $
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
2003-04-11 11:38:11 -05:00
|
|
|
* last change: $Author: vg $ $Date: 2003-04-11 17:38:11 $
|
2000-09-29 05:02:42 -05:00
|
|
|
*
|
|
|
|
* 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): _______________________________________
|
|
|
|
*
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#include <ide_pch.hxx>
|
|
|
|
|
|
|
|
#pragma hdrstop
|
2001-09-04 05:52:52 -05:00
|
|
|
#include <vector>
|
|
|
|
#include <algorithm>
|
2000-09-29 05:02:42 -05:00
|
|
|
#ifndef _SBXCLASS_HXX //autogen
|
|
|
|
#include <svtools/sbx.hxx>
|
|
|
|
#endif
|
|
|
|
#define _SVSTDARR_STRINGS
|
|
|
|
#include <svtools/svstdarr.hxx>
|
2001-09-11 09:40:15 -05:00
|
|
|
|
|
|
|
#ifndef INCLUDED_SVTOOLS_MODULEOPTIONS_HXX
|
|
|
|
#include <svtools/moduleoptions.hxx>
|
|
|
|
#endif
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
#include <iderdll.hxx>
|
2001-09-11 09:40:15 -05:00
|
|
|
#include <iderdll2.hxx>
|
2000-09-29 05:02:42 -05:00
|
|
|
#include <iderid.hxx>
|
|
|
|
#include <basobj.hxx>
|
|
|
|
#include <basidesh.hxx>
|
|
|
|
#include <basidesh.hrc>
|
|
|
|
#include <objdlg.hxx>
|
|
|
|
#include <bastypes.hxx>
|
2001-06-15 02:45:19 -05:00
|
|
|
#include <basdoc.hxx>
|
2000-09-29 05:02:42 -05:00
|
|
|
|
|
|
|
#include <baside2.hxx>
|
2001-06-15 02:45:19 -05:00
|
|
|
#include <baside3.hxx>
|
2001-09-11 09:40:15 -05:00
|
|
|
#include <basicmod.hxx>
|
2000-09-29 05:02:42 -05:00
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
#ifndef _BASCTL_DLGED_HXX
|
|
|
|
#include "dlged.hxx"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COMPHELPER_PROCESSFACTORY_HXX_
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#endif
|
2001-03-28 04:27:57 -06:00
|
|
|
#ifndef _COM_SUN_STAR_SCRIPT_XLIBRYARYCONTAINER_HPP_
|
|
|
|
#include <com/sun/star/script/XLibraryContainer.hpp>
|
|
|
|
#endif
|
2001-11-02 06:45:10 -06:00
|
|
|
#ifndef _COM_SUN_STAR_SCRIPT_XLIBRARYCONTAINERPASSWORD_HPP_
|
|
|
|
#include <com/sun/star/script/XLibraryContainerPassword.hpp>
|
|
|
|
#endif
|
2001-03-28 04:27:57 -06:00
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XNAMECONTAINER_HPP_
|
|
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
|
|
#endif
|
2001-06-15 02:45:19 -05:00
|
|
|
#ifndef _XMLSCRIPT_XMLDLG_IMEXP_HXX_
|
|
|
|
#include <xmlscript/xmldlg_imexp.hxx>
|
|
|
|
#endif
|
2001-03-28 04:27:57 -06:00
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
using namespace comphelper;
|
2001-03-28 04:27:57 -06:00
|
|
|
using namespace ::com::sun::star;
|
2001-06-15 02:45:19 -05:00
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::container;
|
2001-03-28 04:27:57 -06:00
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
|
|
|
|
#define LINE_SEP 0x0A
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-09-11 09:40:15 -05:00
|
|
|
extern "C" {
|
|
|
|
long basicide_handle_basic_error( void* pPtr )
|
|
|
|
{
|
|
|
|
return BasicIDE::HandleBasicError( (StarBASIC*)pPtr );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
SbMethod* BasicIDE::CreateMacro( SbModule* pModule, const String& rMacroName )
|
|
|
|
{
|
2001-09-06 03:21:02 -05:00
|
|
|
BasicIDEShell* pIDEShell = IDE_DLL()->GetShell();
|
|
|
|
SfxViewFrame* pViewFrame = pIDEShell ? pIDEShell->GetViewFrame() : NULL;
|
|
|
|
SfxDispatcher* pDispatcher = pViewFrame ? pViewFrame->GetDispatcher() : NULL;
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
if( pDispatcher )
|
|
|
|
{
|
|
|
|
pDispatcher->Execute( SID_BASICIDE_STOREALLMODULESOURCES );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( pModule->GetMethods()->Find( rMacroName, SbxCLASS_METHOD ) )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
String aMacroName( rMacroName );
|
|
|
|
if ( aMacroName.Len() == 0 )
|
|
|
|
{
|
|
|
|
if ( !pModule->GetMethods()->Count() )
|
|
|
|
aMacroName = String( RTL_CONSTASCII_USTRINGPARAM( "Main" ) );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BOOL bValid = FALSE;
|
2000-12-05 01:46:58 -06:00
|
|
|
String aStdMacroText( RTL_CONSTASCII_USTRINGPARAM( "Macro" ) );
|
|
|
|
//String aStdMacroText( IDEResId( RID_STR_STDMACRONAME ) );
|
2000-09-29 05:02:42 -05:00
|
|
|
USHORT nMacro = 1;
|
|
|
|
while ( !bValid )
|
|
|
|
{
|
|
|
|
aMacroName = aStdMacroText;
|
|
|
|
aMacroName += String::CreateFromInt32( nMacro );
|
|
|
|
// Pruefen, ob vorhanden...
|
|
|
|
bValid = pModule->GetMethods()->Find( aMacroName, SbxCLASS_METHOD ) ? FALSE : TRUE;
|
|
|
|
nMacro++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
String aSource( pModule->GetSource() );
|
|
|
|
aSource.ConvertLineEnd( LINEEND_LF );
|
|
|
|
|
|
|
|
// Nicht zu viele Leerzeilen erzeugen...
|
|
|
|
if ( aSource.Len() > 2 )
|
|
|
|
{
|
|
|
|
if ( aSource.GetChar( aSource.Len() - 1 ) != LINE_SEP )
|
|
|
|
aSource += String( RTL_CONSTASCII_USTRINGPARAM( "\n\n" ) );
|
|
|
|
else if ( aSource.GetChar( aSource.Len() - 2 ) != LINE_SEP )
|
|
|
|
aSource += String( RTL_CONSTASCII_USTRINGPARAM( "\n" ) );
|
|
|
|
else if ( aSource.GetChar( aSource.Len() - 3 ) == LINE_SEP )
|
|
|
|
aSource.Erase( (USHORT)(aSource.Len()-1), 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
String aSubStr;
|
|
|
|
aSubStr = String( RTL_CONSTASCII_USTRINGPARAM( "Sub " ) );
|
|
|
|
aSubStr += aMacroName;
|
|
|
|
aSubStr += String( RTL_CONSTASCII_USTRINGPARAM( "\n\nEnd Sub" ) );
|
|
|
|
|
|
|
|
aSource += aSubStr;
|
|
|
|
pModule->SetSource( aSource );
|
2001-08-29 06:29:09 -05:00
|
|
|
|
|
|
|
// update module in library
|
|
|
|
SbxObject* pParent = pModule->GetParent();
|
|
|
|
StarBASIC* pBasic = PTR_CAST(StarBASIC,pParent);
|
|
|
|
DBG_ASSERT(pBasic, "BasicIDE::CreateMacro: No Basic found!");
|
|
|
|
if ( pBasic )
|
|
|
|
{
|
|
|
|
BasicManager* pBasMgr = BasicIDE::FindBasicManager( pBasic );
|
|
|
|
DBG_ASSERT(pBasMgr, "BasicIDE::CreateMacro: No BasicManager found!");
|
|
|
|
if ( pBasMgr )
|
|
|
|
{
|
|
|
|
SfxObjectShell* pShell = BasicIDE::FindDocShell( pBasMgr );
|
|
|
|
String aLibName = pBasic->GetName();
|
|
|
|
String aModName = pModule->GetName();
|
|
|
|
::rtl::OUString aModule = pModule->GetSource();
|
|
|
|
|
|
|
|
BasicIDE::UpdateModule( pShell, aLibName, aModName, aModule );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
SbMethod* pMethod = (SbMethod*)pModule->GetMethods()->Find( aMacroName, SbxCLASS_METHOD );
|
2001-09-06 03:21:02 -05:00
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
if( pDispatcher )
|
|
|
|
{
|
|
|
|
pDispatcher->Execute( SID_BASICIDE_UPDATEALLMODULESOURCES );
|
|
|
|
}
|
2001-08-29 06:29:09 -05:00
|
|
|
|
|
|
|
if ( pBasic )
|
|
|
|
BasicIDE::MarkDocShellModified( pBasic );
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
return pMethod;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-08-29 06:29:09 -05:00
|
|
|
Reference< script::XLibraryContainer > BasicIDE::GetDialogLibraryContainer( SfxObjectShell* pShell )
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
2001-06-15 02:45:19 -05:00
|
|
|
// get library container
|
|
|
|
Reference< script::XLibraryContainer > xLibContainer;
|
|
|
|
if( pShell )
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
2001-06-15 02:45:19 -05:00
|
|
|
// document
|
|
|
|
xLibContainer = Reference< script::XLibraryContainer >( pShell->GetDialogContainer(), UNO_QUERY );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// application
|
|
|
|
xLibContainer = Reference< script::XLibraryContainer >( SFX_APP()->GetDialogContainer(), UNO_QUERY );
|
|
|
|
}
|
|
|
|
|
2001-08-29 06:29:09 -05:00
|
|
|
return xLibContainer;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BasicIDE::HasDialogLibrary( SfxObjectShell* pShell, const String& rLibName )
|
|
|
|
{
|
|
|
|
BOOL bHasDialogLibrary = FALSE;
|
|
|
|
|
|
|
|
// get library container
|
|
|
|
Reference< script::XLibraryContainer > xLibContainer = GetDialogLibraryContainer( pShell );
|
|
|
|
|
|
|
|
// check if library container has dialog library
|
|
|
|
::rtl::OUString aOULibName( rLibName );
|
|
|
|
if( xLibContainer.is() && xLibContainer->hasByName( aOULibName ) )
|
|
|
|
{
|
|
|
|
bHasDialogLibrary = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bHasDialogLibrary;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Reference< container::XNameContainer > BasicIDE::GetDialogLibrary( SfxObjectShell* pShell, const String& rLibName, BOOL bLoadLibrary )
|
|
|
|
throw(NoSuchElementException)
|
|
|
|
{
|
|
|
|
// get library container
|
|
|
|
Reference< script::XLibraryContainer > xLibContainer = GetDialogLibraryContainer( pShell );
|
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
// get library
|
|
|
|
Reference< container::XNameContainer > xLib;
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString aOULibName( rLibName );
|
2001-06-15 02:45:19 -05:00
|
|
|
if( xLibContainer.is() && xLibContainer->hasByName( aOULibName ) )
|
|
|
|
{
|
|
|
|
Any aElement = xLibContainer->getByName( aOULibName );
|
|
|
|
aElement >>= xLib;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw NoSuchElementException(
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("BasicIDE::GetDialogLibrary: NoSuchElementException!") ),
|
2001-06-15 02:45:19 -05:00
|
|
|
Reference<XInterface>() );
|
|
|
|
}
|
|
|
|
|
|
|
|
// load library
|
|
|
|
if( bLoadLibrary && !xLibContainer->isLibraryLoaded( aOULibName ) )
|
|
|
|
xLibContainer->loadLibrary( aOULibName );
|
|
|
|
|
|
|
|
return xLib;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-08-29 06:29:09 -05:00
|
|
|
Reference< ::com::sun::star::container::XNameContainer > BasicIDE::CreateDialogLibrary( SfxObjectShell* pShell, const String& rLibName )
|
|
|
|
throw(ElementExistException)
|
|
|
|
{
|
|
|
|
// get library container
|
|
|
|
Reference< script::XLibraryContainer > xLibContainer = GetDialogLibraryContainer( pShell );
|
|
|
|
|
|
|
|
// create dialog library
|
|
|
|
Reference< container::XNameContainer > xLib;
|
|
|
|
::rtl::OUString aOULibName( rLibName );
|
|
|
|
if( xLibContainer.is() && !xLibContainer->hasByName( aOULibName ) )
|
|
|
|
{
|
|
|
|
xLib = xLibContainer->createLibrary( aOULibName );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw ElementExistException(
|
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("BasicIDE::CreateDialogLibrary: ElementExistException!") ),
|
|
|
|
Reference<XInterface>() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return xLib;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-09-03 05:56:10 -05:00
|
|
|
Sequence< ::rtl::OUString > BasicIDE::GetDialogNames( SfxObjectShell* pShell, const String& rLibName )
|
|
|
|
throw(NoSuchElementException)
|
|
|
|
{
|
|
|
|
Sequence< ::rtl::OUString > aSeqDlgNames;
|
|
|
|
Reference< container::XNameContainer > xLib = GetDialogLibrary( pShell, rLibName );
|
|
|
|
if( xLib.is() )
|
|
|
|
{
|
|
|
|
Sequence< ::rtl::OUString > aDlgNames = xLib->getElementNames();
|
|
|
|
sal_Int32 nDlgCount = aDlgNames.getLength();
|
|
|
|
const ::rtl::OUString* pDlgNames = aDlgNames.getConstArray();
|
|
|
|
|
|
|
|
// sort dialog names
|
|
|
|
::std::vector<String> aDlgList( nDlgCount );
|
|
|
|
for ( sal_Int32 i = 0 ; i < nDlgCount ; i++ )
|
|
|
|
aDlgList[ i ] = pDlgNames[ i ];
|
|
|
|
::std::sort( aDlgList.begin() , aDlgList.end() , StringCompareLessThan );
|
|
|
|
|
|
|
|
// copy to sequence
|
|
|
|
aSeqDlgNames.realloc( nDlgCount );
|
|
|
|
for ( i = 0 ; i < nDlgCount ; i++ )
|
|
|
|
aSeqDlgNames.getArray()[ i ] = aDlgList[ i ];
|
|
|
|
}
|
|
|
|
|
|
|
|
return aSeqDlgNames;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
BOOL BasicIDE::HasDialog( SfxObjectShell* pShell, const String& rLibName, const String& rDlgName )
|
|
|
|
{
|
|
|
|
BOOL bHasDialog = FALSE;
|
|
|
|
|
|
|
|
Reference< container::XNameContainer > xLib;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// get library
|
|
|
|
xLib = GetDialogLibrary( pShell, rLibName, TRUE );
|
|
|
|
|
|
|
|
// check if library has dialog
|
|
|
|
::rtl::OUString aOUDlgName( rDlgName );
|
|
|
|
if( xLib.is() && xLib->hasByName( aOUDlgName ) )
|
|
|
|
{
|
|
|
|
bHasDialog = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch ( container::NoSuchElementException& e )
|
|
|
|
{
|
|
|
|
ByteString aBStr( String(e.Message), RTL_TEXTENCODING_ASCII_US );
|
|
|
|
DBG_ERROR( aBStr.GetBuffer() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return bHasDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
Reference< io::XInputStreamProvider > BasicIDE::GetDialog( SfxObjectShell* pShell, const String& rLibName, const String& rDlgName )
|
|
|
|
throw(NoSuchElementException)
|
|
|
|
{
|
|
|
|
// get library
|
|
|
|
Reference< container::XNameContainer > xLib = GetDialogLibrary( pShell, rLibName, TRUE );
|
|
|
|
|
|
|
|
// get dialog
|
|
|
|
Reference< io::XInputStreamProvider > xISP;
|
|
|
|
::rtl::OUString aOUDlgName( rDlgName );
|
|
|
|
if( xLib.is() && xLib->hasByName( aOUDlgName ) )
|
|
|
|
{
|
|
|
|
Any aElement = xLib->getByName( aOUDlgName );
|
|
|
|
aElement >>= xISP;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw NoSuchElementException(
|
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("BasicIDE::GetDialog: NoSuchElementException!") ),
|
|
|
|
Reference<XInterface>() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return xISP;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
String BasicIDE::CreateDialogName( SfxObjectShell* pShell, const String& rLibName )
|
|
|
|
{
|
|
|
|
String aDlgName;
|
|
|
|
String aDlgStdName( RTL_CONSTASCII_USTRINGPARAM( "Dialog" ) );
|
|
|
|
//String aDlgStdName( IDEResId( RID_STR_STDDIALOGNAME ) );
|
|
|
|
BOOL bValid = FALSE;
|
|
|
|
USHORT i = 1;
|
|
|
|
while ( !bValid )
|
|
|
|
{
|
|
|
|
aDlgName = aDlgStdName;
|
|
|
|
aDlgName += String::CreateFromInt32( i );
|
2001-06-22 08:45:11 -05:00
|
|
|
if ( !BasicIDE::HasDialog( pShell, rLibName, aDlgName ) )
|
2001-06-15 02:45:19 -05:00
|
|
|
bValid = TRUE;
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return aDlgName;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
Reference< io::XInputStreamProvider > BasicIDE::CreateDialog( SfxObjectShell* pShell, const String& rLibName, const String& rDlgName )
|
|
|
|
throw(ElementExistException, NoSuchElementException)
|
|
|
|
{
|
|
|
|
// get library
|
|
|
|
Reference< container::XNameContainer > xLib = GetDialogLibrary( pShell, rLibName, TRUE );
|
|
|
|
|
|
|
|
// create dialog
|
|
|
|
Reference< io::XInputStreamProvider > xISP;
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString aOUDlgName( rDlgName );
|
2001-06-15 02:45:19 -05:00
|
|
|
if( xLib.is() && !xLib->hasByName( aOUDlgName ) )
|
|
|
|
{
|
|
|
|
// create new dialog model
|
|
|
|
Reference< lang::XMultiServiceFactory > xMSF = getProcessServiceFactory();
|
|
|
|
Reference< container::XNameContainer > xDialogModel( xMSF->createInstance
|
|
|
|
( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlDialogModel" ) ) ), UNO_QUERY );
|
|
|
|
|
|
|
|
// set name property
|
|
|
|
Reference< beans::XPropertySet > xDlgPSet( xDialogModel, UNO_QUERY );
|
|
|
|
Any aName;
|
|
|
|
aName <<= aOUDlgName;
|
|
|
|
xDlgPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), aName );
|
|
|
|
|
|
|
|
// export dialog model
|
2001-09-20 03:07:32 -05:00
|
|
|
Reference< XComponentContext > xContext;
|
|
|
|
Reference< beans::XPropertySet > xProps( xMSF, UNO_QUERY );
|
|
|
|
OSL_ASSERT( xProps.is() );
|
|
|
|
OSL_VERIFY( xProps->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("DefaultContext")) ) >>= xContext );
|
|
|
|
xISP = ::xmlscript::exportDialogModel( xDialogModel, xContext );
|
2001-06-15 02:45:19 -05:00
|
|
|
Any aElement;
|
|
|
|
aElement <<= xISP;
|
|
|
|
|
|
|
|
// insert dialog into library
|
|
|
|
xLib->insertByName( aOUDlgName, aElement );
|
|
|
|
|
|
|
|
// doc shell modified
|
|
|
|
BasicIDE::MarkDocShellModified( pShell ); // here?
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw ElementExistException(
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("BasicIDE::CreateDialog: ElementExistException!") ),
|
2001-06-15 02:45:19 -05:00
|
|
|
Reference<XInterface>() );
|
|
|
|
}
|
|
|
|
|
|
|
|
return xISP;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
void BasicIDE::RenameDialog( SfxObjectShell* pShell, const String& rLibName, const String& rOldName, const String& rNewName )
|
|
|
|
throw(ElementExistException, NoSuchElementException)
|
|
|
|
{
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString aOUOldName( rOldName );
|
|
|
|
::rtl::OUString aOUNewName( rNewName );
|
2001-06-15 02:45:19 -05:00
|
|
|
|
|
|
|
// get library
|
|
|
|
Reference< container::XNameContainer > xLib = GetDialogLibrary( pShell, rLibName, TRUE );
|
|
|
|
|
|
|
|
// rename dialog
|
|
|
|
if( xLib.is() && xLib->hasByName( aOUOldName ) )
|
|
|
|
{
|
|
|
|
if ( xLib->hasByName( aOUNewName ) )
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
2001-06-15 02:45:19 -05:00
|
|
|
throw ElementExistException(
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("BasicIDE::RenameDialog: ElementExistException!") ),
|
2001-06-15 02:45:19 -05:00
|
|
|
Reference<XInterface>() );
|
|
|
|
}
|
2000-09-29 05:02:42 -05:00
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
// get dialog
|
|
|
|
Any aElement = xLib->getByName( aOUOldName );
|
|
|
|
|
|
|
|
// remove dialog from dialog container
|
|
|
|
xLib->removeByName( aOUOldName );
|
|
|
|
|
|
|
|
// create dialog model
|
|
|
|
Reference< lang::XMultiServiceFactory > xMSF = getProcessServiceFactory();
|
|
|
|
Reference< container::XNameContainer > xDialogModel( xMSF->createInstance
|
|
|
|
( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.awt.UnoControlDialogModel" ) ) ), UNO_QUERY );
|
|
|
|
|
|
|
|
Reference< io::XInputStreamProvider > xISP;
|
|
|
|
aElement >>= xISP;
|
|
|
|
if( xISP.is() )
|
|
|
|
{
|
|
|
|
// import dialog model
|
2001-09-20 03:07:32 -05:00
|
|
|
Reference< XComponentContext > xContext;
|
|
|
|
Reference< beans::XPropertySet > xProps( xMSF, UNO_QUERY );
|
|
|
|
OSL_ASSERT( xProps.is() );
|
|
|
|
OSL_VERIFY( xProps->getPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("DefaultContext")) ) >>= xContext );
|
2001-06-15 02:45:19 -05:00
|
|
|
Reference< io::XInputStream > xInput( xISP->createInputStream() );
|
2001-09-20 03:07:32 -05:00
|
|
|
::xmlscript::importDialogModel( xInput, xDialogModel, xContext );
|
2001-06-15 02:45:19 -05:00
|
|
|
|
|
|
|
// set new name as property
|
|
|
|
Reference< beans::XPropertySet > xDlgPSet( xDialogModel, UNO_QUERY );
|
|
|
|
Any aName;
|
|
|
|
aName <<= aOUNewName;
|
|
|
|
xDlgPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), aName );
|
|
|
|
|
|
|
|
// export dialog model
|
2001-09-20 03:07:32 -05:00
|
|
|
xISP = ::xmlscript::exportDialogModel( xDialogModel, xContext );
|
2001-06-15 02:45:19 -05:00
|
|
|
aElement <<= xISP;
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert dialog by new name in dialog container
|
|
|
|
xLib->insertByName( aOUNewName, aElement );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw NoSuchElementException(
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("BasicIDE::RenameDialog: NoSuchElementException!") ),
|
2001-06-15 02:45:19 -05:00
|
|
|
Reference<XInterface>() );
|
|
|
|
}
|
|
|
|
|
|
|
|
BasicIDEShell* pIDEShell = IDE_DLL()->GetShell();
|
|
|
|
if ( pIDEShell )
|
|
|
|
{
|
|
|
|
IDEBaseWindow* pWin = pIDEShell->FindWindow( pShell, rLibName, rOldName, BASICIDE_TYPE_DIALOG, FALSE );
|
|
|
|
if ( pWin )
|
|
|
|
{
|
2001-09-25 03:14:46 -05:00
|
|
|
// set new name in window
|
|
|
|
pWin->SetName( rNewName );
|
2001-06-15 02:45:19 -05:00
|
|
|
|
|
|
|
// get dialog model from dialog editor and set new name as property
|
|
|
|
Reference< container::XNameContainer > xDlgModel = ((DialogWindow*)pWin)->GetEditor()->GetDialog();
|
|
|
|
if( xDlgModel.is() )
|
|
|
|
{
|
|
|
|
Reference< beans::XPropertySet > xPSet( xDlgModel, UNO_QUERY );
|
|
|
|
Any aName;
|
|
|
|
aName <<= aOUNewName;
|
|
|
|
xPSet->setPropertyValue( ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), aName );
|
|
|
|
}
|
|
|
|
|
|
|
|
// update property browser
|
|
|
|
((DialogWindow*)pWin)->UpdateBrowser();
|
|
|
|
|
|
|
|
// update tabwriter
|
|
|
|
USHORT nId = (USHORT)(pIDEShell->GetIDEWindowTable()).GetKey( pWin );
|
|
|
|
DBG_ASSERT( nId, "No entry in Tabbar!" );
|
|
|
|
if ( nId )
|
2001-06-20 03:27:37 -05:00
|
|
|
{
|
|
|
|
BasicIDETabBar* pTabBar = (BasicIDETabBar*)pIDEShell->GetTabBar();
|
|
|
|
pTabBar->SetPageText( nId, rNewName );
|
|
|
|
pTabBar->Sort();
|
|
|
|
pTabBar->MakeVisible( pTabBar->GetCurPageId() );
|
|
|
|
}
|
2000-09-29 05:02:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
void BasicIDE::RemoveDialog( SfxObjectShell* pShell, const String& rLibName, const String& rDlgName )
|
|
|
|
throw(NoSuchElementException)
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
2001-06-15 02:45:19 -05:00
|
|
|
// get library
|
|
|
|
Reference< container::XNameContainer > xLib = GetDialogLibrary( pShell, rLibName, TRUE );
|
2000-09-29 05:02:42 -05:00
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
// remove dialog
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString aOUDlgName( rDlgName );
|
2001-06-15 02:45:19 -05:00
|
|
|
if( xLib.is() && xLib->hasByName( aOUDlgName ) )
|
|
|
|
{
|
|
|
|
xLib->removeByName( aOUDlgName );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw NoSuchElementException(
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("BasicIDE::RemoveDialog: NoSuchElementException!") ),
|
2001-06-15 02:45:19 -05:00
|
|
|
Reference<XInterface>() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
void BasicIDE::InsertDialog( SfxObjectShell* pShell, const String& rLibName, const String& rDlgName,
|
|
|
|
const Reference< io::XInputStreamProvider >& xISP )
|
|
|
|
throw(ElementExistException, NoSuchElementException)
|
|
|
|
{
|
|
|
|
// get library
|
|
|
|
Reference< container::XNameContainer > xLib = GetDialogLibrary( pShell, rLibName, TRUE );
|
|
|
|
|
|
|
|
// insert dialog into library
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString aOUDlgName( rDlgName );
|
2001-06-15 02:45:19 -05:00
|
|
|
if( xLib.is() && !xLib->hasByName( aOUDlgName ) )
|
|
|
|
{
|
|
|
|
Any aElement;
|
|
|
|
aElement <<= xISP;
|
|
|
|
xLib->insertByName( aOUDlgName, aElement );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw ElementExistException(
|
2001-06-22 08:45:11 -05:00
|
|
|
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("BasicIDE::InsertDialog: ElementExistException!") ),
|
2001-06-15 02:45:19 -05:00
|
|
|
Reference<XInterface>() );
|
|
|
|
}
|
2000-09-29 05:02:42 -05:00
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
StarBASIC* BasicIDE::FindBasic( const SbxVariable* pVar )
|
|
|
|
{
|
|
|
|
const SbxVariable* pSbx = pVar;
|
|
|
|
while ( pSbx && !pSbx->ISA( StarBASIC ) )
|
|
|
|
pSbx = pSbx->GetParent();
|
|
|
|
|
|
|
|
DBG_ASSERT( !pSbx || pSbx->ISA( StarBASIC ), "Find Basic: Kein Basic!" );
|
|
|
|
return (StarBASIC*)pSbx;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
BasicManager* BasicIDE::FindBasicManager( StarBASIC* pLib )
|
|
|
|
{
|
|
|
|
BasicManager* pBasicMgr = SFX_APP()->GetBasicManager();
|
|
|
|
SfxObjectShell* pDocShell = 0;
|
|
|
|
while ( pBasicMgr )
|
|
|
|
{
|
2001-09-03 05:56:10 -05:00
|
|
|
Sequence< ::rtl::OUString > aLibNames = GetLibraryNames( pDocShell );
|
|
|
|
sal_Int32 nLibCount = aLibNames.getLength();
|
|
|
|
const ::rtl::OUString* pLibNames = aLibNames.getConstArray();
|
|
|
|
|
|
|
|
for ( sal_Int32 i = 0 ; i < nLibCount ; i++ )
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
2001-09-03 05:56:10 -05:00
|
|
|
StarBASIC* pL = pBasicMgr->GetLib( pLibNames[ i ] );
|
2000-09-29 05:02:42 -05:00
|
|
|
if ( pL == pLib )
|
|
|
|
return pBasicMgr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( pDocShell )
|
|
|
|
pDocShell = SfxObjectShell::GetNext( *pDocShell );
|
|
|
|
else
|
|
|
|
pDocShell = SfxObjectShell::GetFirst();
|
|
|
|
|
|
|
|
pBasicMgr = ( pDocShell ? pDocShell->GetBasicManager() : 0 );
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
BasicManager* BasicIDE::FindBasicManager( const String& aBasMgr )
|
|
|
|
{
|
|
|
|
BasicManager* pBasicMgr = SFX_APP()->GetBasicManager();
|
|
|
|
SfxObjectShell* pDocShell = 0;
|
|
|
|
while ( pBasicMgr )
|
|
|
|
{
|
|
|
|
String aMgr;
|
|
|
|
if (pDocShell)
|
|
|
|
aMgr = pDocShell->GetTitle( SFX_TITLE_FILENAME );
|
|
|
|
else
|
|
|
|
aMgr = Application::GetAppName();
|
|
|
|
|
|
|
|
if ( aMgr == aBasMgr )
|
|
|
|
return pBasicMgr;
|
|
|
|
|
|
|
|
if ( pDocShell )
|
|
|
|
pDocShell = SfxObjectShell::GetNext( *pDocShell );
|
|
|
|
else
|
|
|
|
pDocShell = SfxObjectShell::GetFirst();
|
|
|
|
|
|
|
|
pBasicMgr = ( pDocShell ? pDocShell->GetBasicManager() : 0 );
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
String BasicIDE::FindTitle( BasicManager* pBasicManager, USHORT nSFXTitleType )
|
|
|
|
{
|
|
|
|
BasicManager* pBasicMgr = SFX_APP()->GetBasicManager();
|
|
|
|
SfxObjectShell* pDocShell = 0;
|
|
|
|
String aTitle;
|
|
|
|
while ( pBasicMgr )
|
|
|
|
{
|
|
|
|
if ( pBasicMgr == pBasicManager )
|
|
|
|
{
|
|
|
|
if (pDocShell)
|
|
|
|
aTitle = pDocShell->GetTitle( nSFXTitleType );
|
|
|
|
else
|
|
|
|
aTitle = Application::GetAppName();
|
|
|
|
return aTitle;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( pDocShell )
|
|
|
|
pDocShell = SfxObjectShell::GetNext( *pDocShell );
|
|
|
|
else
|
|
|
|
pDocShell = SfxObjectShell::GetFirst();
|
|
|
|
|
|
|
|
pBasicMgr = ( pDocShell ? pDocShell->GetBasicManager() : 0 );
|
|
|
|
}
|
|
|
|
return aTitle;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
SfxObjectShell* BasicIDE::FindDocShell( BasicManager* pBasMgr )
|
|
|
|
{
|
|
|
|
SfxObjectShell* pDocShell = SfxObjectShell::GetFirst();
|
|
|
|
while ( pDocShell )
|
|
|
|
{
|
|
|
|
if ( ( pDocShell->GetBasicManager() != SFX_APP()->GetBasicManager() ) &&
|
|
|
|
( pDocShell->GetBasicManager() == pBasMgr ) )
|
|
|
|
{
|
|
|
|
return pDocShell;
|
|
|
|
}
|
|
|
|
pDocShell = SfxObjectShell::GetNext( *pDocShell );
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
void BasicIDE::MarkDocShellModified( StarBASIC* pBasic )
|
|
|
|
{
|
|
|
|
// BasicManager suchen, der zur Lib passt...
|
|
|
|
BasicManager* pBasMgr = BasicIDE::FindBasicManager( pBasic );
|
|
|
|
// Koennte z.B. nach CloseDoc schon weg sein...
|
|
|
|
if ( pBasMgr )
|
|
|
|
{
|
|
|
|
SfxObjectShell* pShell = BasicIDE::FindDocShell( pBasMgr );
|
|
|
|
// Muss ja nicht aus einem Document kommen...
|
|
|
|
if ( pShell )
|
2001-09-26 09:25:17 -05:00
|
|
|
{
|
2000-09-29 05:02:42 -05:00
|
|
|
pShell->SetModified();
|
2001-09-26 09:25:17 -05:00
|
|
|
}
|
2001-09-25 03:14:46 -05:00
|
|
|
else
|
2001-09-26 09:25:17 -05:00
|
|
|
{
|
|
|
|
BasicIDEShell* pIDEShell = IDE_DLL()->GetShell();
|
|
|
|
if ( pIDEShell )
|
|
|
|
pIDEShell->SetAppBasicModified();
|
|
|
|
}
|
2000-09-29 05:02:42 -05:00
|
|
|
|
2002-11-01 04:36:29 -06:00
|
|
|
SfxBindings* pBindings = BasicIDE::GetBindingsPtr();
|
|
|
|
if( pBindings )
|
|
|
|
{
|
|
|
|
pBindings->Invalidate( SID_SAVEDOC );
|
|
|
|
pBindings->Update( SID_SAVEDOC );
|
|
|
|
}
|
2000-09-29 05:02:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Objectcatalog updaten...
|
|
|
|
BasicIDEShell* pShell = IDE_DLL()->GetShell();
|
|
|
|
ObjectCatalog* pObjCatalog = pShell ? pShell->GetObjectCatalog() : 0;
|
|
|
|
if ( pObjCatalog )
|
|
|
|
pObjCatalog->UpdateEntries();
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-06-15 02:45:19 -05:00
|
|
|
void BasicIDE::MarkDocShellModified( SfxObjectShell* pShell )
|
|
|
|
{
|
|
|
|
// Muss ja nicht aus einem Document kommen...
|
|
|
|
if ( pShell )
|
2001-09-26 09:25:17 -05:00
|
|
|
{
|
2001-06-15 02:45:19 -05:00
|
|
|
pShell->SetModified();
|
2001-09-26 09:25:17 -05:00
|
|
|
}
|
2001-09-25 03:14:46 -05:00
|
|
|
else
|
2001-09-26 09:25:17 -05:00
|
|
|
{
|
|
|
|
BasicIDEShell* pIDEShell = IDE_DLL()->GetShell();
|
|
|
|
if ( pIDEShell )
|
|
|
|
pIDEShell->SetAppBasicModified();
|
|
|
|
}
|
2001-06-15 02:45:19 -05:00
|
|
|
|
2001-09-25 03:14:46 -05:00
|
|
|
SfxBindings& rBindings = BasicIDE::GetBindings();
|
|
|
|
rBindings.Invalidate( SID_SAVEDOC );
|
|
|
|
rBindings.Update( SID_SAVEDOC );
|
2001-06-15 02:45:19 -05:00
|
|
|
|
|
|
|
// Objectcatalog updaten...
|
|
|
|
BasicIDEShell* pIDEShell = IDE_DLL()->GetShell();
|
|
|
|
ObjectCatalog* pObjCatalog = pIDEShell ? pIDEShell->GetObjectCatalog() : 0;
|
|
|
|
if ( pObjCatalog )
|
|
|
|
pObjCatalog->UpdateEntries();
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
void BasicIDE::RunMethod( SbMethod* pMethod )
|
|
|
|
{
|
|
|
|
SbxValues aRes;
|
|
|
|
aRes.eType = SbxVOID;
|
|
|
|
pMethod->Get( aRes );
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
void BasicIDE::StopBasic()
|
|
|
|
{
|
|
|
|
StarBASIC::Stop();
|
|
|
|
BasicIDEShell* pShell = IDE_DLL()->GetShell();
|
|
|
|
if ( pShell )
|
|
|
|
{
|
|
|
|
IDEWindowTable& rWindows = pShell->GetIDEWindowTable();
|
|
|
|
IDEBaseWindow* pWin = rWindows.First();
|
|
|
|
while ( pWin )
|
|
|
|
{
|
|
|
|
// BasicStopped von Hand rufen, da das Stop-Notify ggf. sonst nicht
|
|
|
|
// durchkommen kann.
|
|
|
|
pWin->BasicStopped();
|
|
|
|
pWin = rWindows.Next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BasicIDE::BasicStopped();
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
void BasicIDE::BasicStopped( BOOL* pbAppWindowDisabled,
|
|
|
|
BOOL* pbDispatcherLocked, USHORT* pnWaitCount,
|
|
|
|
SfxUInt16Item** ppSWActionCount, SfxUInt16Item** ppSWLockViewCount )
|
|
|
|
{
|
|
|
|
// Nach einem Error oder dem expliziten abbrechen des Basics muessen
|
|
|
|
// ggf. einige Locks entfernt werden...
|
|
|
|
|
|
|
|
if ( pbAppWindowDisabled )
|
|
|
|
*pbAppWindowDisabled = FALSE;
|
|
|
|
if ( pbDispatcherLocked )
|
|
|
|
*pbDispatcherLocked = FALSE;
|
|
|
|
if ( pnWaitCount )
|
|
|
|
*pnWaitCount = 0;
|
|
|
|
if ( ppSWActionCount )
|
|
|
|
*ppSWActionCount = 0;
|
|
|
|
if ( ppSWLockViewCount )
|
|
|
|
*ppSWLockViewCount = 0;
|
|
|
|
|
|
|
|
// AppWait ?
|
|
|
|
USHORT nWait = 0;
|
|
|
|
while ( Application::IsWait() )
|
|
|
|
{
|
|
|
|
Application::LeaveWait();
|
|
|
|
nWait++;
|
|
|
|
}
|
|
|
|
if ( pnWaitCount )
|
|
|
|
*pnWaitCount = nWait;
|
|
|
|
|
|
|
|
// Interactive = FALSE ?
|
|
|
|
if ( SFX_APP()->IsDispatcherLocked() )
|
|
|
|
{
|
|
|
|
SFX_APP()->LockDispatcher( FALSE );
|
|
|
|
if ( pbDispatcherLocked )
|
|
|
|
*pbDispatcherLocked = TRUE;
|
|
|
|
}
|
|
|
|
Window* pDefParent = Application::GetDefDialogParent();
|
2000-10-19 03:19:37 -05:00
|
|
|
if ( pDefParent && !pDefParent->IsEnabled() )
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
|
|
|
// Aber nicht wenn sich noch ein Dialog im Testmodus befindet!
|
|
|
|
// if ( pDefParent == Application::GetAppWindow() )
|
|
|
|
{
|
|
|
|
// Application::GetAppWindow()->Enable( TRUE );
|
|
|
|
pDefParent->Enable( TRUE );
|
|
|
|
if ( pbAppWindowDisabled )
|
|
|
|
*pbAppWindowDisabled = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
void BasicIDE::InvalidateDebuggerSlots()
|
|
|
|
{
|
|
|
|
SfxBindings& rBindings = BasicIDE::GetBindings();
|
|
|
|
rBindings.Invalidate( SID_BASICSTOP );
|
|
|
|
rBindings.Update( SID_BASICSTOP );
|
|
|
|
rBindings.Invalidate( SID_BASICRUN );
|
|
|
|
rBindings.Update( SID_BASICRUN );
|
|
|
|
rBindings.Invalidate( SID_BASICCOMPILE );
|
|
|
|
rBindings.Update( SID_BASICCOMPILE );
|
|
|
|
rBindings.Invalidate( SID_BASICSTEPOVER );
|
|
|
|
rBindings.Update( SID_BASICSTEPOVER );
|
|
|
|
rBindings.Invalidate( SID_BASICSTEPINTO );
|
|
|
|
rBindings.Update( SID_BASICSTEPINTO );
|
|
|
|
rBindings.Invalidate( SID_BASICSTEPOUT );
|
|
|
|
rBindings.Update( SID_BASICSTEPOUT );
|
|
|
|
rBindings.Invalidate( SID_BASICIDE_TOGGLEBRKPNT );
|
|
|
|
rBindings.Update( SID_BASICIDE_TOGGLEBRKPNT );
|
2003-04-11 11:38:11 -05:00
|
|
|
rBindings.Invalidate( SID_BASICIDE_MANAGEBRKPNTS );
|
|
|
|
rBindings.Update( SID_BASICIDE_MANAGEBRKPNTS );
|
2000-09-29 05:02:42 -05:00
|
|
|
rBindings.Invalidate( SID_BASICIDE_STAT_POS );
|
|
|
|
rBindings.Update( SID_BASICIDE_STAT_POS );
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-09-11 09:40:15 -05:00
|
|
|
long BasicIDE::HandleBasicError( StarBASIC* pBasic )
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
2001-09-11 09:40:15 -05:00
|
|
|
BASIC_MOD()->Load();
|
|
|
|
|
|
|
|
BasicIDE::BasicStopped();
|
|
|
|
|
|
|
|
// no error output during macro choosing
|
|
|
|
if ( IDE_DLL()->GetExtraData()->ChoosingMacro() )
|
|
|
|
return 1;
|
|
|
|
if ( IDE_DLL()->GetExtraData()->ShellInCriticalSection() )
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
long nRet = 0;
|
2001-11-02 06:45:10 -06:00
|
|
|
BasicIDEShell* pIDEShell = 0;
|
2001-09-11 09:40:15 -05:00
|
|
|
if ( SvtModuleOptions().IsBasicIDE() )
|
|
|
|
{
|
2001-11-02 06:45:10 -06:00
|
|
|
BasicManager* pBasMgr = BasicIDE::FindBasicManager( pBasic );
|
|
|
|
if ( pBasMgr )
|
2001-09-11 09:40:15 -05:00
|
|
|
{
|
2001-11-02 06:45:10 -06:00
|
|
|
BOOL bProtected = FALSE;
|
|
|
|
SfxObjectShell* pShell = BasicIDE::FindDocShell( pBasMgr );
|
|
|
|
::rtl::OUString aOULibName( pBasic->GetName() );
|
|
|
|
Reference< script::XLibraryContainer > xModLibContainer( BasicIDE::GetModuleLibraryContainer( pShell ), UNO_QUERY );
|
|
|
|
if ( xModLibContainer.is() && xModLibContainer->hasByName( aOULibName ) )
|
|
|
|
{
|
|
|
|
Reference< script::XLibraryContainerPassword > xPasswd( xModLibContainer, UNO_QUERY );
|
|
|
|
if ( xPasswd.is() && xPasswd->isLibraryPasswordProtected( aOULibName ) && !xPasswd->isLibraryPasswordVerified( aOULibName ) )
|
|
|
|
{
|
|
|
|
bProtected = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !bProtected )
|
|
|
|
{
|
|
|
|
pIDEShell = IDE_DLL()->GetShell();
|
|
|
|
if ( !pIDEShell )
|
2001-09-11 09:40:15 -05:00
|
|
|
{
|
|
|
|
SfxViewFrame* pCurFrame = SfxViewFrame::Current();
|
|
|
|
DBG_ASSERT( pCurFrame != NULL, "No current view frame!" );
|
|
|
|
SfxDispatcher* pDispatcher = pCurFrame ? pCurFrame->GetDispatcher() : NULL;
|
|
|
|
if( pDispatcher )
|
|
|
|
{
|
|
|
|
pDispatcher->Execute( SID_BASICIDE_APPEAR, SFX_CALLMODE_SYNCHRON );
|
|
|
|
}
|
2001-11-02 06:45:10 -06:00
|
|
|
pIDEShell = IDE_DLL()->GetShell();
|
2001-09-11 09:40:15 -05:00
|
|
|
}
|
2001-11-02 06:45:10 -06:00
|
|
|
}
|
2001-09-11 09:40:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-02 06:45:10 -06:00
|
|
|
if ( pIDEShell )
|
|
|
|
nRet = pIDEShell->CallBasicErrorHdl( pBasic );
|
2001-09-11 09:40:15 -05:00
|
|
|
else
|
|
|
|
ErrorHandler::HandleError( StarBASIC::GetErrorCode() );
|
|
|
|
|
|
|
|
return nRet;
|
2000-09-29 05:02:42 -05:00
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
SvStrings* BasicIDE::CreateBasicLibBoxEntries()
|
|
|
|
{
|
|
|
|
SvStrings* pStrings = new SvStrings;
|
|
|
|
pStrings->Insert( new String( IDEResId( RID_STR_ALL ) ), 0 );
|
|
|
|
|
|
|
|
BasicManager* pBasicMgr = SFX_APP()->GetBasicManager();
|
|
|
|
SfxObjectShell* pDocShell = 0;
|
|
|
|
while ( pBasicMgr )
|
|
|
|
{
|
|
|
|
// Nur, wenn es ein dazugehoeriges Fenster gibt, damit nicht die
|
|
|
|
// Gecachten Docs, die nicht sichtbar sind ( Remot-Dokumente )
|
|
|
|
if ( !pDocShell || ( ( pBasicMgr != SFX_APP()->GetBasicManager() )
|
2001-06-15 02:45:19 -05:00
|
|
|
&& !pDocShell->ISA(BasicDocShell)
|
2000-09-29 05:02:42 -05:00
|
|
|
&& ( SfxViewFrame::GetFirst( pDocShell ) ) ) )
|
|
|
|
{
|
|
|
|
String aBasMgr;
|
|
|
|
if (pDocShell)
|
|
|
|
aBasMgr = pDocShell->GetTitle( SFX_TITLE_FILENAME );
|
|
|
|
else
|
|
|
|
aBasMgr = Application::GetAppName();
|
|
|
|
|
2001-09-03 05:56:10 -05:00
|
|
|
// get a sorted list of library names
|
|
|
|
Sequence< ::rtl::OUString > aLibNames = BasicIDE::GetLibraryNames( pDocShell );
|
|
|
|
sal_Int32 nLibCount = aLibNames.getLength();
|
|
|
|
const ::rtl::OUString* pLibNames = aLibNames.getConstArray();
|
|
|
|
|
|
|
|
for ( sal_Int32 i = 0 ; i < nLibCount ; i++ )
|
2000-09-29 05:02:42 -05:00
|
|
|
{
|
2001-09-03 05:56:10 -05:00
|
|
|
String aLibName = pLibNames[ i ];
|
2000-09-29 05:02:42 -05:00
|
|
|
String* pEntry = new String( CreateMgrAndLibStr( aBasMgr, aLibName ) );
|
|
|
|
pStrings->Insert( pEntry, pStrings->Count() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( pDocShell )
|
|
|
|
pDocShell = SfxObjectShell::GetNext( *pDocShell );
|
|
|
|
else
|
|
|
|
pDocShell = SfxObjectShell::GetFirst();
|
|
|
|
|
|
|
|
pBasicMgr = ( pDocShell ? pDocShell->GetBasicManager() : 0 );
|
|
|
|
}
|
|
|
|
return pStrings;
|
|
|
|
}
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2000-09-29 05:02:42 -05:00
|
|
|
SfxBindings& BasicIDE::GetBindings()
|
|
|
|
{
|
|
|
|
BasicIDEDLL* pIDEDLL = IDE_DLL();
|
|
|
|
if ( pIDEDLL && pIDEDLL->GetShell() )
|
|
|
|
{
|
|
|
|
// #63960# fuer BasicIDE die Bindings der APP
|
|
|
|
// 07/00 Now the APP Dispatcher is 'dead', SFX changes...
|
|
|
|
// return SFX_APP()->GetAppBindings();
|
|
|
|
return pIDEDLL->GetShell()->GetFrame()->GetBindings();
|
|
|
|
}
|
|
|
|
SfxViewFrame* pCurFrame = SfxViewFrame::Current();
|
|
|
|
DBG_ASSERT( pCurFrame != NULL, "No current view frame!" );
|
|
|
|
return pCurFrame->GetBindings();
|
|
|
|
}
|
|
|
|
|
2002-11-01 04:36:29 -06:00
|
|
|
SfxBindings* BasicIDE::GetBindingsPtr()
|
|
|
|
{
|
|
|
|
SfxViewFrame* pFrame;
|
|
|
|
BasicIDEDLL* pIDEDLL = IDE_DLL();
|
|
|
|
if ( pIDEDLL && pIDEDLL->GetShell() )
|
|
|
|
pFrame = pIDEDLL->GetShell()->GetFrame();
|
|
|
|
else
|
|
|
|
pFrame = SfxViewFrame::Current();
|
|
|
|
|
|
|
|
SfxBindings* pBindings = NULL;
|
|
|
|
if( pFrame != NULL )
|
|
|
|
pBindings = &pFrame->GetBindings();
|
|
|
|
return pBindings;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-22 08:45:11 -05:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|