From 04e70594d111e03047423d7814b8014a81fa207c Mon Sep 17 00:00:00 2001 From: "av%netscape.com" Date: Tue, 13 Nov 2001 00:30:44 +0000 Subject: [PATCH] Bug 109041 -- adding call to NPP_SetWindow for windowless plugins on paint event, patch by dbrittain@superscape.com, r=av, sr=beard git-svn-id: svn://10.0.0.236/trunk@107933 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/layout/generic/nsObjectFrame.cpp | 46 +++++++++---------- .../layout/html/base/src/nsObjectFrame.cpp | 46 +++++++++---------- 2 files changed, 44 insertions(+), 48 deletions(-) diff --git a/mozilla/layout/generic/nsObjectFrame.cpp b/mozilla/layout/generic/nsObjectFrame.cpp index 4834218e48a..a0e7c040917 100644 --- a/mozilla/layout/generic/nsObjectFrame.cpp +++ b/mozilla/layout/generic/nsObjectFrame.cpp @@ -1739,36 +1739,34 @@ nsObjectFrame::Paint(nsIPresContext* aPresContext, return rv; // done with printing } - -// --------------------------------------------------------------------------- // Screen painting code - #if defined (XP_MAC) - // delegate all painting to the plugin instance. - if ((NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) && (nsnull != mInstanceOwner)) { - mInstanceOwner->Paint(aDirtyRect); - } + // delegate all painting to the plugin instance. + if ((NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) && (nsnull != mInstanceOwner)) + mInstanceOwner->Paint(aDirtyRect); #elif defined (XP_PC) - if (NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) - { - nsIPluginInstance * inst; - if (NS_OK == GetPluginInstance(inst)) - { - NS_RELEASE(inst); - // Look if it's windowless - nsPluginWindow * window; - mInstanceOwner->GetWindow(window); - if (window->type == nsPluginWindowType_Drawable) - { - PRUint32 hdc; - aRenderingContext.RetrieveCurrentNativeGraphicData(&hdc); - mInstanceOwner->Paint(aDirtyRect, hdc); - } + if (NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) { + nsIPluginInstance * inst; + if (NS_OK == GetPluginInstance(inst)) { + // Look if it's windowless + nsPluginWindow * window; + mInstanceOwner->GetWindow(window); + + if (window->type == nsPluginWindowType_Drawable) { + PRUint32 hdc; + aRenderingContext.RetrieveCurrentNativeGraphicData(&hdc); + if(NS_REINTERPRET_CAST(PRUint32, window->window) != hdc) { + window->window = NS_REINTERPRET_CAST(nsPluginPort*, hdc); + inst->SetWindow(window); } + mInstanceOwner->Paint(aDirtyRect, hdc); + } + NS_RELEASE(inst); } + } #endif /* !XP_MAC */ - DO_GLOBAL_REFLOW_COUNT_DSP("nsObjectFrame", &aRenderingContext); - return NS_OK; + DO_GLOBAL_REFLOW_COUNT_DSP("nsObjectFrame", &aRenderingContext); + return NS_OK; } NS_IMETHODIMP diff --git a/mozilla/layout/html/base/src/nsObjectFrame.cpp b/mozilla/layout/html/base/src/nsObjectFrame.cpp index 4834218e48a..a0e7c040917 100644 --- a/mozilla/layout/html/base/src/nsObjectFrame.cpp +++ b/mozilla/layout/html/base/src/nsObjectFrame.cpp @@ -1739,36 +1739,34 @@ nsObjectFrame::Paint(nsIPresContext* aPresContext, return rv; // done with printing } - -// --------------------------------------------------------------------------- // Screen painting code - #if defined (XP_MAC) - // delegate all painting to the plugin instance. - if ((NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) && (nsnull != mInstanceOwner)) { - mInstanceOwner->Paint(aDirtyRect); - } + // delegate all painting to the plugin instance. + if ((NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) && (nsnull != mInstanceOwner)) + mInstanceOwner->Paint(aDirtyRect); #elif defined (XP_PC) - if (NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) - { - nsIPluginInstance * inst; - if (NS_OK == GetPluginInstance(inst)) - { - NS_RELEASE(inst); - // Look if it's windowless - nsPluginWindow * window; - mInstanceOwner->GetWindow(window); - if (window->type == nsPluginWindowType_Drawable) - { - PRUint32 hdc; - aRenderingContext.RetrieveCurrentNativeGraphicData(&hdc); - mInstanceOwner->Paint(aDirtyRect, hdc); - } + if (NS_FRAME_PAINT_LAYER_FOREGROUND == aWhichLayer) { + nsIPluginInstance * inst; + if (NS_OK == GetPluginInstance(inst)) { + // Look if it's windowless + nsPluginWindow * window; + mInstanceOwner->GetWindow(window); + + if (window->type == nsPluginWindowType_Drawable) { + PRUint32 hdc; + aRenderingContext.RetrieveCurrentNativeGraphicData(&hdc); + if(NS_REINTERPRET_CAST(PRUint32, window->window) != hdc) { + window->window = NS_REINTERPRET_CAST(nsPluginPort*, hdc); + inst->SetWindow(window); } + mInstanceOwner->Paint(aDirtyRect, hdc); + } + NS_RELEASE(inst); } + } #endif /* !XP_MAC */ - DO_GLOBAL_REFLOW_COUNT_DSP("nsObjectFrame", &aRenderingContext); - return NS_OK; + DO_GLOBAL_REFLOW_COUNT_DSP("nsObjectFrame", &aRenderingContext); + return NS_OK; } NS_IMETHODIMP