2000-09-29 10:02:42 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
|
|
|
* $RCSfile: basides3.cxx,v $
|
|
|
|
*
|
2001-03-03 14:12:53 +00:00
|
|
|
* $Revision: 1.3 $
|
2000-09-29 10:02:42 +00:00
|
|
|
*
|
2001-03-03 14:12:53 +00:00
|
|
|
* last change: $Author: ab $ $Date: 2001-03-03 15:12:53 $
|
2000-09-29 10:02:42 +00: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): _______________________________________
|
|
|
|
*
|
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#define SI_NOCONTROL
|
|
|
|
#define SI_NOSBXCONTROLS
|
|
|
|
|
|
|
|
#include <basidesh.hrc>
|
|
|
|
#include <ide_pch.hxx>
|
|
|
|
|
|
|
|
#pragma hdrstop
|
|
|
|
|
2000-12-07 15:15:26 +00:00
|
|
|
#define _SOLAR__PRIVATE 1
|
2000-09-29 10:02:42 +00:00
|
|
|
|
|
|
|
#include <basidesh.hxx>
|
|
|
|
#include <baside3.hxx>
|
|
|
|
#include <basobj.hxx>
|
|
|
|
|
2001-03-03 14:12:53 +00:00
|
|
|
#ifndef _COM_SUN_STAR_SCRIPT_XLIBRARYCONTAINER_HPP_
|
|
|
|
#include <com/sun/star/script/XLibraryContainer.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XNAMECONTAINER_HPP_
|
|
|
|
#include <com/sun/star/container/XNameContainer.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
|
|
|
|
2000-09-29 10:02:42 +00:00
|
|
|
DialogWindow* BasicIDEShell::CreateDlgWin( StarBASIC* pBasic, String aDlgName, SbxObject* pDlg )
|
|
|
|
{
|
|
|
|
bCreatingWindow = TRUE;
|
|
|
|
|
|
|
|
ULONG nKey = 0;
|
|
|
|
DialogWindow* pWin = 0;
|
2001-03-03 14:12:53 +00:00
|
|
|
|
|
|
|
BOOL bCreatedDialog = FALSE;
|
2000-09-29 10:02:42 +00:00
|
|
|
if ( !pDlg )
|
|
|
|
{
|
|
|
|
pDlg = BasicIDE::FindDialog( pBasic, aDlgName );
|
|
|
|
if ( !pDlg )
|
2001-03-03 14:12:53 +00:00
|
|
|
{
|
2000-09-29 10:02:42 +00:00
|
|
|
pDlg = BasicIDE::CreateDialog( pBasic, aDlgName );
|
2001-03-03 14:12:53 +00:00
|
|
|
bCreatedDialog = TRUE;
|
|
|
|
}
|
2000-09-29 10:02:42 +00:00
|
|
|
DBG_ASSERT( pDlg, "Es wurde kein Dialog erzeugt!" );
|
|
|
|
}
|
|
|
|
else // Vielleicht gibt es ein suspendiertes?
|
|
|
|
pWin = FindDlgWin( pBasic, aDlgName, FALSE, TRUE );
|
|
|
|
|
|
|
|
VCSbxDialogRef xNewDlg = (VCSbxDialog*)pDlg;
|
|
|
|
|
|
|
|
if ( !pWin )
|
|
|
|
{
|
2001-03-03 14:12:53 +00:00
|
|
|
#ifdef _DLGEDITOR_
|
|
|
|
|
|
|
|
// Document or application
|
|
|
|
BasicManager* pBasMgr = BasicIDE::FindBasicManager( pBasic );
|
|
|
|
if ( pBasMgr )
|
|
|
|
{
|
|
|
|
Reference< script::XLibraryContainer > xLibContainer;
|
|
|
|
String aLibName = pBasic->GetName();
|
|
|
|
String aDlgName = xNewDlg->GetName();
|
|
|
|
|
|
|
|
SfxObjectShell* pShell = BasicIDE::FindDocShell( pBasMgr );
|
|
|
|
if( !pShell )
|
|
|
|
{
|
|
|
|
// Application
|
|
|
|
xLibContainer = uno::Reference< script::XLibraryContainer >
|
|
|
|
( SFX_APP()->GetDialogContainer(), uno::UNO_QUERY );
|
|
|
|
|
|
|
|
uno::Reference< container::XNameAccess > xLib;
|
|
|
|
|
|
|
|
// Check if the lib/dialog already exists
|
|
|
|
rtl::OUString aOULibName( aLibName );
|
|
|
|
if( xLibContainer->hasByName( aOULibName ) )
|
|
|
|
{
|
|
|
|
Any aElement = xLibContainer->getByName( aOULibName );
|
|
|
|
aElement >>= xLib;
|
|
|
|
}
|
|
|
|
|
|
|
|
Reference< container::XNameContainer > xLibNC;
|
|
|
|
if( !xLib.is() )
|
|
|
|
{
|
|
|
|
xLibNC = xLibContainer->createLibrary( aOULibName );
|
|
|
|
xLib = Reference< container::XNameAccess >( xLibNC, uno::UNO_QUERY );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does the dialog exist?
|
|
|
|
rtl::OUString aOUDlgName( aDlgName );
|
|
|
|
BOOL bCreateWin = FALSE;
|
|
|
|
if( xLib->hasByName( aOUDlgName ) )
|
|
|
|
{
|
|
|
|
bCreateWin = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( !xLibNC.is() )
|
|
|
|
xLibNC = Reference< container::XNameContainer >( xLib, uno::UNO_QUERY );
|
|
|
|
if( xLibNC.is() )
|
|
|
|
{
|
|
|
|
bCreateWin = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// TODO: ReadOnlyLib
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if( bCreateWin )
|
|
|
|
{
|
|
|
|
// New dialog window
|
|
|
|
pWin = new DialogWindow( &GetViewFrame()->GetWindow(), xNewDlg, pBasic,
|
|
|
|
xLibContainer, aLibName, aDlgName );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* TODO Docs
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
|
|
|
if( !pWin )
|
|
|
|
{
|
|
|
|
// Something went wrong: Return old stuff
|
|
|
|
pWin = new DialogWindow( &GetViewFrame()->GetWindow(), xNewDlg, pBasic );
|
|
|
|
}
|
|
|
|
#else
|
2000-09-29 10:02:42 +00:00
|
|
|
pWin = new DialogWindow( &GetViewFrame()->GetWindow(), xNewDlg, pBasic );
|
2001-03-03 14:12:53 +00:00
|
|
|
#endif
|
2000-09-29 10:02:42 +00:00
|
|
|
nKey = InsertWindowInTable( pWin );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pWin->SetStatus( pWin->GetStatus() & ~BASWIN_SUSPENDED );
|
|
|
|
IDEBaseWindow* pTmp = aIDEWindowTable.First();
|
|
|
|
while ( pTmp && !nKey )
|
|
|
|
{
|
|
|
|
if ( pTmp == pWin )
|
|
|
|
nKey = aIDEWindowTable.GetCurKey();
|
|
|
|
pTmp = aIDEWindowTable.Next();
|
|
|
|
}
|
|
|
|
DBG_ASSERT( nKey, "CreateDlgWin: Kein Key - Fenster nicht gefunden!" );
|
|
|
|
}
|
|
|
|
pWin->GrabScrollBars( &aHScrollBar, &aVScrollBar );
|
|
|
|
pTabBar->InsertPage( (USHORT)nKey, xNewDlg->GetName() );
|
|
|
|
if ( !pCurWin )
|
|
|
|
SetCurWindow( pWin, FALSE, FALSE );
|
|
|
|
|
|
|
|
bCreatingWindow = FALSE;
|
|
|
|
return pWin;
|
|
|
|
}
|
|
|
|
|
|
|
|
DialogWindow* BasicIDEShell::FindDlgWin( StarBASIC* pBasic, const String& rDlgName, BOOL bCreateIfNotExist, BOOL bFindSuspended )
|
|
|
|
{
|
|
|
|
DialogWindow* pDlgWin = 0;
|
|
|
|
IDEBaseWindow* pWin = aIDEWindowTable.First();
|
|
|
|
while ( pWin && !pDlgWin )
|
|
|
|
{
|
|
|
|
if ( ( !pWin->IsSuspended() || bFindSuspended ) && pWin->IsA( TYPE( DialogWindow ) ) )
|
|
|
|
{
|
|
|
|
String aDlgStr( ((DialogWindow*)pWin)->GetDialogName() );
|
|
|
|
if ( !pBasic ) // nur irgendeins finden...
|
|
|
|
pDlgWin = (DialogWindow*)pWin;
|
|
|
|
else if ( ( pWin->GetBasic() == pBasic ) &&
|
|
|
|
( ( rDlgName.Len() == 0 ) || ( aDlgStr == rDlgName ) ) )
|
|
|
|
pDlgWin = (DialogWindow*)pWin;
|
|
|
|
}
|
|
|
|
pWin = aIDEWindowTable.Next();
|
|
|
|
}
|
|
|
|
if ( !pDlgWin && bCreateIfNotExist )
|
|
|
|
pDlgWin = CreateDlgWin( pBasic, rDlgName );
|
|
|
|
|
|
|
|
return pDlgWin;
|
|
|
|
}
|
|
|
|
|
|
|
|
SdrView* BasicIDEShell::GetCurDlgView()
|
|
|
|
{
|
|
|
|
if ( !pCurWin || !pCurWin->IsA( TYPE( DialogWindow ) ) )
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
DialogWindow* pWin = (DialogWindow*)pCurWin;
|
|
|
|
return pWin->GetView();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Nur wenn Dialogfenster oben:
|
|
|
|
void __EXPORT BasicIDEShell::ExecuteDialog( SfxRequest& rReq )
|
|
|
|
{
|
|
|
|
if ( !pCurWin || !pCurWin->IsA( TYPE( DialogWindow ) ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
pCurWin->ExecuteCommand( rReq );
|
|
|
|
}
|
|
|
|
|