2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-09-18 15:18:56 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 10:34:04 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-11 10:34:04 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-11 10:34:04 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-11 10:34:04 +00:00
|
|
|
* 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.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-11 10:34:04 +00:00
|
|
|
* 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).
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
2008-04-11 10:34:04 +00:00
|
|
|
* 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.
|
2000-09-18 15:18:56 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 08:56:11 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_basic.hxx"
|
2007-06-27 13:13:57 +00:00
|
|
|
#include <basic/sbx.hxx>
|
|
|
|
#include <basic/sbmod.hxx>
|
|
|
|
#include <basic/sbstar.hxx>
|
|
|
|
#include <basic/sbmeth.hxx>
|
2000-09-18 15:18:56 +00:00
|
|
|
#include <vcl/image.hxx>
|
|
|
|
#include <svtools/textdata.hxx>
|
2004-01-06 18:39:13 +00:00
|
|
|
#include <tools/config.hxx>
|
2000-09-18 15:18:56 +00:00
|
|
|
#include <vcl/gradient.hxx>
|
|
|
|
|
2007-06-27 13:13:57 +00:00
|
|
|
#include <basic/ttstrhlp.hxx>
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2006-06-19 16:34:43 +00:00
|
|
|
#include "brkpnts.hxx"
|
2000-09-18 15:18:56 +00:00
|
|
|
#include "basic.hrc"
|
|
|
|
#include "resids.hrc"
|
2007-04-26 07:31:31 +00:00
|
|
|
#include "basrid.hxx"
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
struct Breakpoint
|
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
sal_uInt32 nLine;
|
|
|
|
Breakpoint( sal_uInt32 nL ) { nLine = nL; }
|
2000-09-18 15:18:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
ImageList* BreakpointWindow::pImages = NULL;
|
|
|
|
|
|
|
|
BreakpointWindow::BreakpointWindow( Window *pParent )
|
|
|
|
: Window( pParent )
|
|
|
|
, nCurYOffset( 0 )
|
2004-09-20 11:28:53 +00:00
|
|
|
, nMarkerPos( MARKER_NOMARKER )
|
2006-06-19 16:34:43 +00:00
|
|
|
, pModule( NULL )
|
2011-01-10 14:40:57 +01:00
|
|
|
, bErrorMarker( sal_False )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
if ( !pImages )
|
2007-04-26 07:31:31 +00:00
|
|
|
pImages = new ImageList( SttResId( RID_IMGLST_LAYOUT ) );
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
Gradient aGradient( GRADIENT_AXIAL, Color( 185, 182, 215 ), Color( 250, 245, 255 ) );
|
|
|
|
aGradient.SetAngle(900);
|
|
|
|
SetBackground( aGradient );
|
|
|
|
Show();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BreakpointWindow::Reset()
|
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
for ( size_t i = 0, n = BreakpointList.size(); i < n; ++i )
|
|
|
|
delete BreakpointList[ i ];
|
|
|
|
BreakpointList.clear();
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
pModule->ClearAllBP();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BreakpointWindow::SetModule( SbModule *pMod )
|
|
|
|
{
|
|
|
|
pModule = pMod;
|
2011-01-10 14:40:57 +01:00
|
|
|
sal_uInt16 i;
|
2000-09-18 15:18:56 +00:00
|
|
|
for ( i=0 ; i < pModule->GetBPCount() ; i++ )
|
|
|
|
{
|
|
|
|
InsertBreakpoint( pModule->GetBP( i ) );
|
|
|
|
}
|
|
|
|
SetBPsInModule();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BreakpointWindow::SetBPsInModule()
|
|
|
|
{
|
|
|
|
pModule->ClearAllBP();
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
for ( size_t i = 0, n = BreakpointList.size(); i < n; ++i )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* pBrk = BreakpointList[ i ];
|
2011-01-10 14:40:57 +01:00
|
|
|
pModule->SetBP( (sal_uInt16)pBrk->nLine );
|
2003-04-15 16:12:02 +00:00
|
|
|
#if OSL_DEBUG_LEVEL > 1
|
2011-03-12 02:42:58 +01:00
|
|
|
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( (sal_uInt16)pBrk->nLine ), "Brechpunkt wurde nicht gesetzt" );
|
2000-09-18 15:18:56 +00:00
|
|
|
#endif
|
|
|
|
}
|
2011-01-10 14:40:57 +01:00
|
|
|
for ( sal_uInt16 nMethod = 0; nMethod < pModule->GetMethods()->Count(); nMethod++ )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
SbMethod* pMethod = (SbMethod*)pModule->GetMethods()->Get( nMethod );
|
|
|
|
DBG_ASSERT( pMethod, "Methode nicht gefunden! (NULL)" );
|
|
|
|
pMethod->SetDebugFlags( pMethod->GetDebugFlags() | SbDEBUG_BREAK );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
void BreakpointWindow::InsertBreakpoint( sal_uInt32 nLine )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
Breakpoint* pNewBrk = new Breakpoint( nLine );
|
2010-12-15 21:10:10 -08:00
|
|
|
|
|
|
|
for ( ::std::vector< Breakpoint* >::iterator i = BreakpointList.begin();
|
|
|
|
i < BreakpointList.end();
|
|
|
|
++ i
|
|
|
|
)
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* pBrk = *i;
|
2000-09-18 15:18:56 +00:00
|
|
|
if ( nLine <= pBrk->nLine )
|
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
if ( nLine != pBrk->nLine )
|
|
|
|
BreakpointList.insert( i, pNewBrk );
|
2000-09-18 15:18:56 +00:00
|
|
|
else
|
|
|
|
delete pNewBrk;
|
|
|
|
pNewBrk = NULL;
|
2010-12-15 21:10:10 -08:00
|
|
|
break;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-15 21:10:10 -08:00
|
|
|
|
2009-04-25 00:18:20 +00:00
|
|
|
// No insert position found => LIST_APPEND
|
2000-09-18 15:18:56 +00:00
|
|
|
if ( pNewBrk )
|
2010-12-15 21:10:10 -08:00
|
|
|
BreakpointList.push_back( pNewBrk );
|
2000-09-18 15:18:56 +00:00
|
|
|
|
|
|
|
Invalidate();
|
|
|
|
|
|
|
|
if ( pModule->SetBP( nLine ) )
|
|
|
|
{
|
2003-04-15 16:12:02 +00:00
|
|
|
#if OSL_DEBUG_LEVEL > 1
|
2009-03-24 14:11:39 +00:00
|
|
|
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( nLine ), "Brechpunkt wurde nicht gesetzt" );
|
2000-09-18 15:18:56 +00:00
|
|
|
#endif
|
|
|
|
if ( StarBASIC::IsRunning() )
|
|
|
|
{
|
2011-01-10 14:40:57 +01:00
|
|
|
for ( sal_uInt16 nMethod = 0; nMethod < pModule->GetMethods()->Count(); nMethod++ )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
SbMethod* pMethod = (SbMethod*)pModule->GetMethods()->Get( nMethod );
|
|
|
|
DBG_ASSERT( pMethod, "Methode nicht gefunden! (NULL)" );
|
|
|
|
pMethod->SetDebugFlags( pMethod->GetDebugFlags() | SbDEBUG_BREAK );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-04-15 16:12:02 +00:00
|
|
|
#if OSL_DEBUG_LEVEL > 1
|
2009-03-24 14:11:39 +00:00
|
|
|
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( nLine ), "Brechpunkt wurde nicht gesetzt" );
|
2000-09-18 15:18:56 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* BreakpointWindow::FindBreakpoint( sal_uInt32 nLine )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
for ( size_t i = 0, n = BreakpointList.size(); i < n; ++i )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* pBP = BreakpointList[ i ];
|
|
|
|
if ( pBP->nLine == nLine )
|
|
|
|
return pBP;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2010-12-15 21:10:10 -08:00
|
|
|
return NULL;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
void BreakpointWindow::AdjustBreakpoints( sal_uInt32 nLine, bool bInserted )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2006-10-12 13:22:01 +00:00
|
|
|
if ( nLine == 0 ) //TODO: nLine == TEXT_PARA_ALL+1
|
2000-09-18 15:18:56 +00:00
|
|
|
return;
|
2010-12-15 21:10:10 -08:00
|
|
|
|
|
|
|
for ( size_t i = 0; i < BreakpointList.size(); )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* pBrk = BreakpointList[ i ];
|
|
|
|
bool bDelBrk = false;
|
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
if ( pBrk->nLine == nLine )
|
|
|
|
{
|
|
|
|
if ( bInserted )
|
|
|
|
pBrk->nLine++;
|
|
|
|
else
|
2010-12-15 21:10:10 -08:00
|
|
|
bDelBrk = true;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
else if ( pBrk->nLine > nLine )
|
|
|
|
{
|
|
|
|
if ( bInserted )
|
|
|
|
pBrk->nLine++;
|
|
|
|
else
|
|
|
|
pBrk->nLine--;
|
|
|
|
}
|
|
|
|
if ( bDelBrk )
|
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
delete pBrk;
|
|
|
|
::std::vector< Breakpoint* >::iterator it = BreakpointList.begin();
|
|
|
|
::std::advance( it, i );
|
|
|
|
BreakpointList.erase( it );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
++i;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
2010-12-15 21:10:10 -08:00
|
|
|
|
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++ )
|
|
|
|
{
|
2011-01-10 14:40:57 +01:00
|
|
|
InsertBreakpoint( (sal_uInt16)aBreakpoints.GetToken( i, ';' ).ToInt32() );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BreakpointWindow::SaveBreakpoints( String aFilename )
|
|
|
|
{
|
|
|
|
ByteString aBreakpoints;
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
for ( size_t i = 0, n = BreakpointList.size(); i < n; ++i )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* pBrk = BreakpointList[ i ];
|
2000-09-18 15:18:56 +00:00
|
|
|
if ( aBreakpoints.Len() )
|
|
|
|
aBreakpoints += ';';
|
|
|
|
aBreakpoints += ByteString::CreateFromInt32( pBrk->nLine );
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
for ( size_t i = 0, n = BreakpointList.size(); i < n; ++i )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* pBrk = BreakpointList[ i ];
|
2003-04-15 16:12:02 +00:00
|
|
|
#if OSL_DEBUG_LEVEL > 1
|
2009-03-24 14:11:39 +00:00
|
|
|
DBG_ASSERT( !pModule->IsCompiled() || pModule->IsBP( pBrk->nLine ), "Brechpunkt wurde nicht gesetzt" );
|
2000-09-18 15:18:56 +00:00
|
|
|
#endif
|
2010-12-15 21:10:10 -08:00
|
|
|
sal_Int32 nLine = pBrk->nLine-1;
|
|
|
|
sal_Int32 nY = nLine*nLineHeight - nCurYOffset;
|
2000-09-18 15:18:56 +00:00
|
|
|
DrawImage( Point( 0, nY ) + aBmpOff, aBrk );
|
|
|
|
}
|
2011-01-10 14:40:57 +01:00
|
|
|
ShowMarker( sal_True );
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Breakpoint* BreakpointWindow::FindBreakpoint( const Point& rMousePos )
|
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
sal_Int32 nLineHeight = GetTextHeight();
|
|
|
|
sal_Int32 nYPos = rMousePos.Y() + nCurYOffset;
|
2000-09-18 15:18:56 +00:00
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
for ( size_t i = 0, n = BreakpointList.size(); i < n; ++i )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* pBrk = BreakpointList[ i ];
|
|
|
|
sal_Int32 nLine = pBrk->nLine-1;
|
|
|
|
sal_Int32 nY = nLine * nLineHeight;
|
2000-09-18 15:18:56 +00:00
|
|
|
if ( ( nYPos > nY ) && ( nYPos < ( nY + nLineHeight ) ) )
|
|
|
|
return pBrk;
|
|
|
|
}
|
2010-12-15 21:10:10 -08:00
|
|
|
return NULL;
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
void BreakpointWindow::ToggleBreakpoint( sal_uInt32 nLine )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
bool Removed = false;
|
|
|
|
for ( size_t i = 0, n = BreakpointList.size(); i < n; ++i )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
Breakpoint* pBP = BreakpointList[ i ];
|
|
|
|
if ( pBP->nLine == nLine ) // remove
|
|
|
|
{
|
|
|
|
pModule->ClearBP( nLine );
|
|
|
|
delete pBP;
|
|
|
|
::std::vector< Breakpoint* >::iterator it = BreakpointList.begin();
|
|
|
|
::std::advance( it, i );
|
|
|
|
BreakpointList.erase( it );
|
|
|
|
Removed = true;
|
|
|
|
break;
|
|
|
|
}
|
2000-09-18 15:18:56 +00:00
|
|
|
}
|
2010-12-15 21:10:10 -08:00
|
|
|
|
|
|
|
if ( !Removed ) // create one
|
2000-09-18 15:18:56 +00:00
|
|
|
InsertBreakpoint( nLine );
|
2009-04-25 00:18:20 +00:00
|
|
|
|
2000-09-18 15:18:56 +00:00
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
void BreakpointWindow::ShowMarker( bool bShow )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2011-01-10 14:40:57 +01:00
|
|
|
sal_uIntPtr nY = nMarkerPos*nLineHeight - nCurYOffset;
|
2000-09-18 15:18:56 +00:00
|
|
|
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;
|
2011-01-10 14:40:57 +01:00
|
|
|
ToggleBreakpoint( sal::static_int_cast< sal_uInt16 >(nLine) );
|
2000-09-18 15:18:56 +00:00
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-15 21:10:10 -08:00
|
|
|
void BreakpointWindow::SetMarkerPos( sal_uInt32 nLine, bool bError )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2010-12-15 21:10:10 -08:00
|
|
|
ShowMarker( false ); // Remove old one
|
2000-09-18 15:18:56 +00:00
|
|
|
nMarkerPos = nLine;
|
|
|
|
bErrorMarker = bError;
|
2010-12-15 21:10:10 -08:00
|
|
|
ShowMarker( true ); // Draw new one
|
2000-09-18 15:18:56 +00:00
|
|
|
Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-01-10 14:40:57 +01:00
|
|
|
void BreakpointWindow::Scroll( long nHorzScroll, long nVertScroll, sal_uInt16 nFlags )
|
2000-09-18 15:18:56 +00:00
|
|
|
{
|
2006-06-19 16:34:43 +00:00
|
|
|
(void) nFlags; /* avoid warning about unused parameter */
|
2000-09-18 15:18:56 +00:00
|
|
|
nCurYOffset -= nVertScroll;
|
|
|
|
Window::Scroll( nHorzScroll, nVertScroll );
|
|
|
|
}
|
|
|
|
|
2010-10-12 15:53:47 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|