office-gobmx/basic/source/app/brkpnts.cxx
Ivo Hinkelmann a63e7873d3 CWS-TOOLING: integrate CWS cli005
2009-01-30 15:47:54 +0100 cli  r267204 : Translated comments to English.
2009-01-30 11:46:57 +0100 cli  r267188 : CWS-TOOLING: rebase CWS cli005 to trunk@267171 (milestone: DEV300:m41)
2009-01-29 17:57:42 +0100 cli  r267165 : Translated comments to English.
2009-01-29 11:40:24 +0100 cli  r267108 : Translated comments to English and fixed indentations.
2009-01-28 17:57:58 +0100 cli  r267075 : Remove Java parsing method stubs from basic parser^^
2009-01-28 17:38:47 +0100 cli  r267072 : Translated comments to English.
2009-01-28 16:55:51 +0100 cli  r267066 : Translated comments to English.
2009-01-28 12:19:02 +0100 cli  r267053 : Translated comments to English.
2009-01-27 13:24:28 +0100 cli  r266987 : Quick fix for #i92947#
2009-01-27 12:48:19 +0100 cli  r266983 : CWS-TOOLING: rebase CWS cli005 to trunk@266944 (milestone: DEV300:m40)
2009-01-26 18:20:48 +0100 cli  r266941 : Translated comments.
2009-01-26 17:04:09 +0100 cli  r266938 : Some translations. mgrtest.cxx needs HEAVY refactoring...
2009-01-26 16:49:09 +0100 cli  r266936 : Translated comments in all include files.
2009-01-26 14:18:54 +0100 cli  r266924 : Some comments translated.
2009-01-24 17:19:07 +0100 cli  r266883 : Translation of german comments to english.
2009-01-24 16:00:05 +0100 cli  r266881 : Indentation
2009-01-24 15:53:04 +0100 cli  r266880 : Apply patch for issue #i96836#
2009-04-25 00:18:20 +00:00

389 lines
9.8 KiB
C++

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: brkpnts.cxx,v $
* $Revision: 1.13 $
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_basic.hxx"
#include <tools/list.hxx>
#include <basic/sbx.hxx>
#include <basic/sbmod.hxx>
#include <basic/sbstar.hxx>
#include <basic/sbmeth.hxx>
#include <vcl/image.hxx>
#include <svtools/textdata.hxx>
#include <tools/config.hxx>
#include <vcl/gradient.hxx>
#ifndef _BASIC_TTRESHLP_HXX
#include <basic/ttstrhlp.hxx>
#endif
#include "brkpnts.hxx"
#include "basic.hrc"
#include "resids.hrc"
#include "basrid.hxx"
struct Breakpoint
{
USHORT nLine;
Breakpoint( USHORT nL ) { nLine = nL; }
};
ImageList* BreakpointWindow::pImages = NULL;
BreakpointWindow::BreakpointWindow( Window *pParent )
: Window( pParent )
, nCurYOffset( 0 )
, nMarkerPos( MARKER_NOMARKER )
, pModule( NULL )
, bErrorMarker( FALSE )
{
if ( !pImages )
pImages = new ImageList( SttResId( 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" );
#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();
}
// No insert position found => LIST_APPEND
if ( pNewBrk )
Insert( pNewBrk, LIST_APPEND );
Invalidate();
if ( pModule->SetBP( nLine ) )
{
#if OSL_DEBUG_LEVEL > 1
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( nLine ), "Brechpunkt wurde nicht gesetzt" );
#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" );
#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 == 0 ) //TODO: 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();
}
}
Invalidate();
}
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() );
}
}
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" );
#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 )
{
Breakpoint* pBrk = FindBreakpoint( nLine );
if ( pBrk ) // remove
{
pModule->ClearBP( nLine );
delete Remove( pBrk );
}
else // create one
{
InsertBreakpoint( nLine );
}
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( sal::static_int_cast< USHORT >(nLine) );
Invalidate();
}
}
void BreakpointWindow::SetMarkerPos( USHORT nLine, BOOL bError )
{
ShowMarker( FALSE ); // Remove old one
nMarkerPos = nLine;
bErrorMarker = bError;
ShowMarker( TRUE ); // Draw new one
Update();
}
void BreakpointWindow::Scroll( long nHorzScroll, long nVertScroll, USHORT nFlags )
{
(void) nFlags; /* avoid warning about unused parameter */
nCurYOffset -= nVertScroll;
Window::Scroll( nHorzScroll, nVertScroll );
}