Added impls of new methods ramiro added to nsIRenderingContext

This commit is contained in:
rods%netscape.com 1999-07-20 13:40:51 +00:00
parent 8457b2ad17
commit c8b75c3279
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);