Files
libreoffice/basic/source/app/brkpnts.cxx

411 lines
10 KiB
C++
Raw Normal View History

2000-09-18 15:18:56 +00:00
/*************************************************************************
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 15:18:56 +00:00
*
* $RCSfile: brkpnts.cxx,v $
2000-09-18 15:18:56 +00:00
*
* $Revision: 1.7 $
2000-09-18 15:18:56 +00:00
*
* last change: $Author: rt $ $Date: 2005-09-07 21:14:16 $
2000-09-18 15:18:56 +00:00
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
2000-09-18 15:18:56 +00:00
*
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2005 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
2000-09-18 15:18:56 +00:00
*
* 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.
2000-09-18 15:18:56 +00:00
*
* 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.
2000-09-18 15:18:56 +00:00
*
* 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
2000-09-18 15:18:56 +00:00
*
************************************************************************/
#ifndef _LIST_HXX //autogen
#include <tools/list.hxx>
#endif
#ifndef _SBXCLASS_HXX //autogen
#include <sbx.hxx>
2000-09-18 15:18:56 +00:00
#endif
#ifndef _SB_SBMOD_HXX //autogen
#include <sbmod.hxx>
#endif
#ifndef _SB_SBSTAR_HXX //autogen
#include <sbstar.hxx>
#endif
#ifndef _SB_SBMETH_HXX //autogen
#include <sbmeth.hxx>
#endif
#ifndef _SV_IMAGE_HXX //autogen
#include <vcl/image.hxx>
#endif
#ifndef _TEXTDATA_HXX //autogen
#include <svtools/textdata.hxx>
#endif
#ifndef _CONFIG_HXX
#include <tools/config.hxx>
2000-09-18 15:18:56 +00:00
#endif
#ifndef _SV_GRADIENT_HXX
#include <vcl/gradient.hxx>
#endif
#ifndef _BASIC_TTRESHLP_HXX
#include "ttstrhlp.hxx"
#endif
#include <brkpnts.hxx>
#include "basic.hrc"
#include "resids.hrc"
struct Breakpoint
{
USHORT nLine;
Breakpoint( USHORT nL ) { nLine = nL; }
};
ImageList* BreakpointWindow::pImages = NULL;
BreakpointWindow::BreakpointWindow( Window *pParent )
: Window( pParent )
, nCurYOffset( 0 )
, pModule( NULL )
, nMarkerPos( MARKER_NOMARKER )
2000-09-18 15:18:56 +00:00
{
if ( !pImages )
pImages = new ImageList( ResId( RID_IMGLST_LAYOUT ) );
Gradient aGradient( GRADIENT_AXIAL, Color( 185, 182, 215 ), Color( 250, 245, 255 ) );
aGradient.SetAngle(900);
SetBackground( aGradient );
Show();
}
void BreakpointWindow::Reset()
{
Breakpoint* pBrk = First();
while ( pBrk )
{
delete pBrk;
pBrk = Next();
}
Clear();
pModule->ClearAllBP();
}
void BreakpointWindow::SetModule( SbModule *pMod )
{
pModule = pMod;
USHORT i;
for ( i=0 ; i < pModule->GetBPCount() ; i++ )
{
InsertBreakpoint( pModule->GetBP( i ) );
}
SetBPsInModule();
}
void BreakpointWindow::SetBPsInModule()
{
pModule->ClearAllBP();
Breakpoint* pBrk = First();
while ( pBrk )
{
pModule->SetBP( (USHORT)pBrk->nLine );
#if OSL_DEBUG_LEVEL > 1
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( (USHORT)pBrk->nLine ), "Brechpunkt wurde nicht gesetzt" )
2000-09-18 15:18:56 +00:00
#endif
pBrk = Next();
}
for ( USHORT nMethod = 0; nMethod < pModule->GetMethods()->Count(); nMethod++ )
{
SbMethod* pMethod = (SbMethod*)pModule->GetMethods()->Get( nMethod );
DBG_ASSERT( pMethod, "Methode nicht gefunden! (NULL)" );
pMethod->SetDebugFlags( pMethod->GetDebugFlags() | SbDEBUG_BREAK );
}
}
void BreakpointWindow::InsertBreakpoint( USHORT nLine )
{
Breakpoint* pNewBrk = new Breakpoint( nLine );
Breakpoint* pBrk = First();
while ( pBrk )
{
if ( nLine <= pBrk->nLine )
{
if ( pBrk->nLine != nLine )
Insert( pNewBrk );
else
delete pNewBrk;
pNewBrk = NULL;
pBrk = NULL;
}
else
pBrk = Next();
}
// Keine Einfuegeposition gefunden => LIST_APPEND
if ( pNewBrk )
Insert( pNewBrk, LIST_APPEND );
// vielleicht mal etwas genauer...
Invalidate();
if ( pModule->SetBP( nLine ) )
{
#if OSL_DEBUG_LEVEL > 1
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( nLine ), "Brechpunkt wurde nicht gesetzt" )
2000-09-18 15:18:56 +00:00
#endif
if ( StarBASIC::IsRunning() )
{
for ( USHORT nMethod = 0; nMethod < pModule->GetMethods()->Count(); nMethod++ )
{
SbMethod* pMethod = (SbMethod*)pModule->GetMethods()->Get( nMethod );
DBG_ASSERT( pMethod, "Methode nicht gefunden! (NULL)" );
pMethod->SetDebugFlags( pMethod->GetDebugFlags() | SbDEBUG_BREAK );
}
}
}
#if OSL_DEBUG_LEVEL > 1
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( nLine ), "Brechpunkt wurde nicht gesetzt" )
2000-09-18 15:18:56 +00:00
#endif
}
Breakpoint* BreakpointWindow::FindBreakpoint( ULONG nLine )
{
Breakpoint* pBrk = First();
while ( pBrk )
{
if ( pBrk->nLine == nLine )
return pBrk;
pBrk = Next();
}
return (Breakpoint*)0;
}
void BreakpointWindow::AdjustBreakpoints( ULONG nLine, BOOL bInserted )
{
if ( nLine == TEXT_PARA_ALL+1 )
return;
Breakpoint* pBrk = First();
while ( pBrk )
{
BOOL bDelBrk = FALSE;
if ( pBrk->nLine == nLine )
{
if ( bInserted )
pBrk->nLine++;
else
bDelBrk = TRUE;
}
else if ( pBrk->nLine > nLine )
{
if ( bInserted )
pBrk->nLine++;
else
pBrk->nLine--;
}
if ( bDelBrk )
{
ULONG n = GetCurPos();
delete Remove( pBrk );
pBrk = Seek( n );
}
else
{
pBrk = Next();
}
}
2002-04-11 07:38:47 +00:00
Invalidate();
2000-09-18 15:18:56 +00:00
}
void BreakpointWindow::LoadBreakpoints( String aFilename )
{
Config aConfig(Config::GetConfigName( Config::GetDefDirectory(), CUniString("testtool") ));
aConfig.SetGroup("Breakpoints");
ByteString aBreakpoints;
aBreakpoints = aConfig.ReadKey( ByteString( aFilename, RTL_TEXTENCODING_UTF8 ) );
xub_StrLen i;
for ( i = 0 ; i < aBreakpoints.GetTokenCount( ';' ) ; i++ )
{
InsertBreakpoint( (USHORT)aBreakpoints.GetToken( i, ';' ).ToInt32() );
2000-09-18 15:18:56 +00:00
}
}
void BreakpointWindow::SaveBreakpoints( String aFilename )
{
ByteString aBreakpoints;
Breakpoint* pBrk = First();
while ( pBrk )
{
if ( aBreakpoints.Len() )
aBreakpoints += ';';
aBreakpoints += ByteString::CreateFromInt32( pBrk->nLine );
pBrk = Next();
}
Config aConfig(Config::GetConfigName( Config::GetDefDirectory(), CUniString("testtool") ));
aConfig.SetGroup("Breakpoints");
if ( aBreakpoints.Len() )
aConfig.WriteKey( ByteString( aFilename, RTL_TEXTENCODING_UTF8 ), aBreakpoints );
else
aConfig.DeleteKey( ByteString( aFilename, RTL_TEXTENCODING_UTF8 ) );
}
void BreakpointWindow::Paint( const Rectangle& )
{
Size aOutSz( GetOutputSize() );
long nLineHeight = GetTextHeight();
Image aBrk( pImages->GetImage( IMGID_BRKENABLED ) );
Size aBmpSz( aBrk.GetSizePixel() );
aBmpSz = PixelToLogic( aBmpSz );
Point aBmpOff( 0, 0 );
aBmpOff.X() = ( aOutSz.Width() - aBmpSz.Width() ) / 2;
aBmpOff.Y() = ( nLineHeight - aBmpSz.Height() ) / 2;
Breakpoint* pBrk = First();
while ( pBrk )
{
#if OSL_DEBUG_LEVEL > 1
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( pBrk->nLine ), "Brechpunkt wurde nicht gesetzt" )
2000-09-18 15:18:56 +00:00
#endif
ULONG nLine = pBrk->nLine-1;
ULONG nY = nLine*nLineHeight - nCurYOffset;
DrawImage( Point( 0, nY ) + aBmpOff, aBrk );
pBrk = Next();
}
ShowMarker( TRUE );
}
Breakpoint* BreakpointWindow::FindBreakpoint( const Point& rMousePos )
{
long nLineHeight = GetTextHeight();
long nYPos = rMousePos.Y() + nCurYOffset;
Breakpoint* pBrk = First();
while ( pBrk )
{
ULONG nLine = pBrk->nLine-1;
long nY = nLine*nLineHeight;
if ( ( nYPos > nY ) && ( nYPos < ( nY + nLineHeight ) ) )
return pBrk;
pBrk = Next();
}
return 0;
}
void BreakpointWindow::ToggleBreakpoint( USHORT nLine )
{
BOOL bNewBreakPoint = FALSE;
Breakpoint* pBrk = FindBreakpoint( nLine );
if ( pBrk ) // entfernen
{
pModule->ClearBP( nLine );
delete Remove( pBrk );
}
else // einen erzeugen
{
InsertBreakpoint( nLine );
}
// vielleicht mal etwas genauer...
Invalidate();
}
void BreakpointWindow::ShowMarker( BOOL bShow )
{
if ( nMarkerPos == MARKER_NOMARKER )
return;
Size aOutSz( GetOutputSize() );
long nLineHeight = GetTextHeight();
Image aMarker;
if ( bErrorMarker )
aMarker = pImages->GetImage( IMGID_ERRORMARKER );
else
aMarker = pImages->GetImage( IMGID_STEPMARKER );
Size aMarkerSz( aMarker.GetSizePixel() );
aMarkerSz = PixelToLogic( aMarkerSz );
Point aMarkerOff( 0, 0 );
aMarkerOff.X() = ( aOutSz.Width() - aMarkerSz.Width() ) / 2;
aMarkerOff.Y() = ( nLineHeight - aMarkerSz.Height() ) / 2;
ULONG nY = nMarkerPos*nLineHeight - nCurYOffset;
Point aPos( 0, nY );
aPos += aMarkerOff;
if ( bShow )
DrawImage( aPos, aMarker );
else
Invalidate( Rectangle( aPos, aMarkerSz ) );
}
void BreakpointWindow::MouseButtonDown( const MouseEvent& rMEvt )
{
if ( rMEvt.GetClicks() == 2 )
{
Point aMousePos( PixelToLogic( rMEvt.GetPosPixel() ) );
long nLineHeight = GetTextHeight();
long nYPos = aMousePos.Y() + nCurYOffset;
long nLine = nYPos / nLineHeight + 1;
ToggleBreakpoint( nLine );
// vielleicht mal etwas genauer...
Invalidate();
}
}
void BreakpointWindow::SetMarkerPos( USHORT nLine, BOOL bError )
{
ShowMarker( FALSE ); // Alten wegzeichen...
nMarkerPos = nLine;
bErrorMarker = bError;
ShowMarker( TRUE ); // Neuen zeichnen...
Update();
}
void BreakpointWindow::Scroll( long nHorzScroll, long nVertScroll )
{
nCurYOffset -= nVertScroll;
Window::Scroll( nHorzScroll, nVertScroll );
}