Added impls of new methods ramiro added to nsIRenderingContext

git-svn-id: svn://10.0.0.236/trunk@40284 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rods%netscape.com
1999-07-20 13:40:51 +00:00
parent 34ccc5ad67
commit fed65e04bb
2 changed files with 13 additions and 0 deletions

View File

@@ -1394,3 +1394,13 @@ NS_IMETHODIMP nsRenderingContextMac::RetrieveCurrentNativeGraphicData(PRUint32 *
{
return NS_OK;
}
NS_IMETHODIMP nsRenderingContextMac::InvertRect(const nsRect& aRect)
{
return NS_OK;
}
NS_IMETHODIMP nsRenderingContextMac::InvertRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight)
{
return NS_OK;
}

View File

@@ -120,6 +120,9 @@ public:
const nsRect &aDestBounds, PRUint32 aCopyFlags);
NS_IMETHOD RetrieveCurrentNativeGraphicData(PRUint32 * ngd);
NS_IMETHOD InvertRect(const nsRect& aRect);
NS_IMETHOD InvertRect(nscoord aX, nscoord aY, nscoord aWidth, nscoord aHeight);
//locals
NS_IMETHOD SetPortTextState();
nsresult Init(nsIDeviceContext* aContext, GrafPtr aPort);