зеркало из https://github.com/mozilla/pjs.git
Added debug code to track my clipping. I am about to re-arrange some guts
so I wanted a fail-safe backup working version to be checked in. r=kedl
This commit is contained in:
Родитель
df3a5e0557
Коммит
169248dffe
|
@ -18,6 +18,8 @@
|
||||||
* Rights Reserved.
|
* Rights Reserved.
|
||||||
*
|
*
|
||||||
* Contributor(s):
|
* Contributor(s):
|
||||||
|
* Jerry.Kirk@Nexwarecorp.com
|
||||||
|
* Dale.Stansberry@Nexwarecorop.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "nsPhWidgetLog.h"
|
#include "nsPhWidgetLog.h"
|
||||||
|
@ -262,7 +264,8 @@ the PtRealizeWidget functions */
|
||||||
err=PtRealizeWidget(mWidget);
|
err=PtRealizeWidget(mWidget);
|
||||||
if (err == -1)
|
if (err == -1)
|
||||||
{
|
{
|
||||||
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWidget::Show Failed to Realize this=<%p>\n", this));
|
PtWidget_t *parent = PtWidgetParent(mWidget);
|
||||||
|
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWidget::Show Failed to Realize this=<%p> mWidget=<%p> mWidget->Parent=<%p> parent->IsRealized=<%d> \n", this, mWidget,parent, PtWidgetIsRealized(parent)));
|
||||||
}
|
}
|
||||||
|
|
||||||
EnableDamage( mWidget, PR_TRUE );
|
EnableDamage( mWidget, PR_TRUE );
|
||||||
|
@ -1082,7 +1085,7 @@ nsresult nsWidget::CreateWidget(nsIWidget *aParent,
|
||||||
nsWidgetInitData *aInitData,
|
nsWidgetInitData *aInitData,
|
||||||
nsNativeWidget aNativeParent)
|
nsNativeWidget aNativeParent)
|
||||||
{
|
{
|
||||||
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWidget::CreateWidget this=<%p> mRefCnt=<%d> aRect=<%d,%d,%d,%d>\n", this, mRefCnt, aRect.x, aRect.y, aRect.width, aRect.height));
|
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWidget::CreateWidget this=<%p> mRefCnt=<%d> aRect=<%d,%d,%d,%d> aContext=<%p>\n", this, mRefCnt, aRect.x, aRect.y, aRect.width, aRect.height, aContext));
|
||||||
|
|
||||||
if (aParent)
|
if (aParent)
|
||||||
{
|
{
|
||||||
|
@ -1111,8 +1114,8 @@ nsresult nsWidget::CreateWidget(nsIWidget *aParent,
|
||||||
NS_IF_ADDREF(mParent);
|
NS_IF_ADDREF(mParent);
|
||||||
|
|
||||||
|
|
||||||
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWidget::CreateWidget after BaseCreate mRefCnt=<%d> mBounds=<%d,%d,%d,%d>\n",
|
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWidget::CreateWidget after BaseCreate mRefCnt=<%d> mBounds=<%d,%d,%d,%d> mContext=<%p>\n",
|
||||||
mRefCnt, mBounds.x, mBounds.y, mBounds.width, mBounds.height));
|
mRefCnt, mBounds.x, mBounds.y, mBounds.width, mBounds.height, mContext));
|
||||||
|
|
||||||
|
|
||||||
if( aNativeParent )
|
if( aNativeParent )
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
||||||
*
|
*
|
||||||
* The contents of this file are subject to the Netscape Public
|
* The contents of this file are subject to the Netscape Public
|
||||||
* License Version 1.1 (the "License"); you may not use this file
|
* License Version 1.1 (the "License"); you may not use this file
|
||||||
|
@ -18,6 +18,8 @@
|
||||||
* Rights Reserved.
|
* Rights Reserved.
|
||||||
*
|
*
|
||||||
* Contributor(s):
|
* Contributor(s):
|
||||||
|
* Jerry.Kirk@Nexwarecorp.com
|
||||||
|
* Dale.Stansberry@Nexwarecorop.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "nsPhWidgetLog.h"
|
#include "nsPhWidgetLog.h"
|
||||||
|
@ -882,7 +884,7 @@ void nsWindow::RawDrawFunc( PtWidget_t * pWidget, PhTile_t * damage )
|
||||||
nsWindow * pWin = (nsWindow*) GetInstance( pWidget );
|
nsWindow * pWin = (nsWindow*) GetInstance( pWidget );
|
||||||
nsresult result;
|
nsresult result;
|
||||||
|
|
||||||
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc for %p %p\n", pWidget,pWin ));
|
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc for mWidget=<%p> this=<%p>\n", pWidget,pWin ));
|
||||||
//printf("nsWindow::RawDrawFunc for %p mWidget=<%p>\n", pWidget,pWin);
|
//printf("nsWindow::RawDrawFunc for %p mWidget=<%p>\n", pWidget,pWin);
|
||||||
|
|
||||||
if ( !pWin )
|
if ( !pWin )
|
||||||
|
@ -978,10 +980,11 @@ PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc clipped damage <%d,%d,%d,
|
||||||
nsDmg.height = rect.lr.y - rect.ul.y + 1;
|
nsDmg.height = rect.lr.y - rect.ul.y + 1;
|
||||||
|
|
||||||
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc nsDmg <%d,%d,%d,%d>\n", nsDmg.x, nsDmg.y, nsDmg.width, nsDmg.height));
|
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc nsDmg <%d,%d,%d,%d>\n", nsDmg.x, nsDmg.y, nsDmg.width, nsDmg.height));
|
||||||
//printf("nsWindow::RawDrawFunc nsDmg <%d,%d,%d,%d>\n", nsDmg.x, nsDmg.y, nsDmg.width, nsDmg.height);
|
|
||||||
|
|
||||||
if ( (nsDmg.width <= 0 ) || (nsDmg.height <= 0 ) )
|
if ( (nsDmg.width <= 0 ) || (nsDmg.height <= 0 ) )
|
||||||
|
{
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
nsPaintEvent pev;
|
nsPaintEvent pev;
|
||||||
pWin->InitEvent(pev, NS_PAINT);
|
pWin->InitEvent(pev, NS_PAINT);
|
||||||
|
@ -989,7 +992,6 @@ PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc nsDmg <%d,%d,%d,%d>\n", n
|
||||||
pev.rect = &nsDmg;
|
pev.rect = &nsDmg;
|
||||||
pev.eventStructType = NS_PAINT_EVENT;
|
pev.eventStructType = NS_PAINT_EVENT;
|
||||||
|
|
||||||
#if 1
|
|
||||||
pev.point.x = nsDmg.x;
|
pev.point.x = nsDmg.x;
|
||||||
pev.point.y = nsDmg.y;
|
pev.point.y = nsDmg.y;
|
||||||
|
|
||||||
|
@ -1005,40 +1007,28 @@ PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc nsDmg <%d,%d,%d,%d>\n", n
|
||||||
pev.renderingContext = pWin->GetRenderingContext();
|
pev.renderingContext = pWin->GetRenderingContext();
|
||||||
if (pev.renderingContext)
|
if (pev.renderingContext)
|
||||||
{
|
{
|
||||||
|
#if 0
|
||||||
if( pWin->SetWindowClipping( damage, offset ) == NS_OK )
|
if( pWin->SetWindowClipping( damage, offset ) == NS_OK )
|
||||||
{
|
{
|
||||||
PR_LOG(PhWidLog, PR_LOG_DEBUG, ( "Dispatching paint event (area=%ld,%ld,%ld,%ld).\n",nsDmg.x,nsDmg.y,nsDmg.width,nsDmg.height ));
|
PR_LOG(PhWidLog, PR_LOG_DEBUG, ( "Dispatching paint event (area=%ld,%ld,%ld,%ld).\n",nsDmg.x,nsDmg.y,nsDmg.width,nsDmg.height ));
|
||||||
//printf ( "Dispatching paint event (area=%ld,%ld,%ld,%ld).\n",nsDmg.x,nsDmg.y,nsDmg.width,nsDmg.height );
|
|
||||||
result = pWin->DispatchWindowEvent(&pev);
|
result = pWin->DispatchWindowEvent(&pev);
|
||||||
//printf ("kedl: dpe result: %d\n",result);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf("nsWindow::RawDrawFunc SetWindowClipping resulted in nothing to draw\n");
|
printf("nsWindow::RawDrawFunc SetWindowClipping resulted in nothing to draw\n");
|
||||||
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc SetWindowClipping resulted in nothing to draw this=<%p>\n", pWin));
|
PR_LOG(PhWidLog, PR_LOG_DEBUG, ("nsWindow::RawDrawFunc SetWindowClipping resulted in nothing to draw this=<%p>\n", pWin));
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
PhRect_t r = {nsDmg.x, nsDmg.y, nsDmg.x+nsDmg.width-1,
|
||||||
|
nsDmg.y+nsDmg.height-1};
|
||||||
|
|
||||||
NS_RELEASE(pev.renderingContext);
|
PgSetClipping( 1, &r );
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if 0
|
|
||||||
|
|
||||||
if (NS_OK == nsComponentManager::CreateInstance(kRenderingContextCID, nsnull, kRenderingContextIID, (void **)&pev.renderingContext))
|
|
||||||
{
|
|
||||||
pev.renderingContext->Init( pWin->mContext, pWin );
|
|
||||||
|
|
||||||
if( pWin->SetWindowClipping( damage, offset ) == NS_OK )
|
|
||||||
{
|
|
||||||
PR_LOG(PhWidLog, PR_LOG_DEBUG, ( "Dispatching paint event (area=%ld,%ld,%ld,%ld).\n",nsDmg.x,nsDmg.y,nsDmg.width,nsDmg.height ));
|
PR_LOG(PhWidLog, PR_LOG_DEBUG, ( "Dispatching paint event (area=%ld,%ld,%ld,%ld).\n",nsDmg.x,nsDmg.y,nsDmg.width,nsDmg.height ));
|
||||||
pWin->DispatchWindowEvent(&pev);
|
result = pWin->DispatchWindowEvent(&pev);
|
||||||
}
|
#endif
|
||||||
|
|
||||||
//Kirk took this out look at OnDrawSignal in GTK
|
|
||||||
NS_RELEASE(pev.renderingContext);
|
NS_RELEASE(pev.renderingContext);
|
||||||
}
|
}
|
||||||
#endif
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -1277,19 +1267,31 @@ NS_METHOD nsWindow::SetWindowClipping( PhTile_t *damage, PhPoint_t &offset )
|
||||||
if( dmg )
|
if( dmg )
|
||||||
{
|
{
|
||||||
rects = PhTilesToRects( dmg, &rect_count );
|
rects = PhTilesToRects( dmg, &rect_count );
|
||||||
|
#if 1
|
||||||
PgSetClipping( rect_count, rects );
|
PgSetClipping( rect_count, rects );
|
||||||
|
#else
|
||||||
|
|
||||||
//PR_LOG(PhWidLog, PR_LOG_DEBUG, (" damage clipped to:\n"));
|
//PR_LOG(PhWidLog, PR_LOG_DEBUG, (" damage clipped to:\n"));
|
||||||
//printf(" damage clipped to:\n");
|
//printf(" damage clipped to:\n");
|
||||||
|
|
||||||
int i;
|
|
||||||
for(i=0;i<rect_count;i++)
|
int bX=0, bY=0;
|
||||||
|
int aX=32767, aY=32767;
|
||||||
|
|
||||||
|
for(int i=0;i<rect_count;i++)
|
||||||
{
|
{
|
||||||
//PR_LOG(PhWidLog, PR_LOG_DEBUG, (" (%i,%i,%i,%i)\n", rects[i].ul.x, rects[i].ul.y, rects[i].lr.x, rects[i].lr.y));
|
//PR_LOG(PhWidLog, PR_LOG_DEBUG, (" (%i,%i,%i,%i)\n", rects[i].ul.x, rects[i].ul.y, rects[i].lr.x, rects[i].lr.y));
|
||||||
//printf(" (%i,%i,%i,%i)\n", rects[i].ul.x, rects[i].ul.y, rects[i].lr.x, rects[i].lr.y);
|
//printf(" (%i,%i,%i,%i)\n", rects[i].ul.x, rects[i].ul.y, rects[i].lr.x, rects[i].lr.y);
|
||||||
|
|
||||||
|
aX = min(aX, rects[i].ul.x);
|
||||||
|
aY = min(aY, rects[i].ul.y);
|
||||||
|
bX = max(bX, rects[i].lr.x);
|
||||||
|
bY = max(bY, rects[i].lr.y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PhRect_t r = {aX, aY, bX, bY};
|
||||||
|
PgSetClipping( 1, &r );
|
||||||
|
|
||||||
|
#endif
|
||||||
free( rects );
|
free( rects );
|
||||||
PhFreeTiles( dmg );
|
PhFreeTiles( dmg );
|
||||||
res = NS_OK;
|
res = NS_OK;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче