2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 22:01:16 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2001-01-22 21:53:32 +00:00
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
2001-01-22 21:53:32 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2001-01-22 21:53:32 +00:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 22:01:16 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2001-01-22 21:53:32 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
2001-01-22 21:53:32 +00:00
|
|
|
* Mike Pinkerton <pinkerton@netscape.com>
|
|
|
|
* Gus Verdun <gustavoverdun@aol.com>
|
2008-10-20 15:21:02 +00:00
|
|
|
* Kathleen Brade <brade@comcast.net>
|
|
|
|
* Mark Smith <mcs@pearlcrescent.com>
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 22:01:16 +00:00
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
2001-09-28 20:14:13 +00:00
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 22:01:16 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 22:01:16 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2001-01-22 21:53:32 +00:00
|
|
|
|
|
|
|
/* Things To Do 11/8/00
|
|
|
|
|
|
|
|
Check image metrics, can we support them? Do we need to?
|
|
|
|
Any other render format? HTML?
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2003-10-07 20:39:25 +00:00
|
|
|
#include "nsError.h"
|
2001-01-23 00:28:36 +00:00
|
|
|
#include <windows.h>
|
2001-01-22 21:53:32 +00:00
|
|
|
|
2001-01-23 00:28:36 +00:00
|
|
|
#include "nsCOMPtr.h"
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
#include "imgIContainer.h"
|
2006-09-13 19:52:44 +00:00
|
|
|
#include "nsIInputStream.h"
|
2001-01-22 21:53:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// nsImageToClipboard
|
|
|
|
//
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
// A utility class that takes an imgIContainer and does all the bitmap magic
|
2001-01-22 21:53:32 +00:00
|
|
|
// to allow us to put it on the clipboard
|
|
|
|
//
|
|
|
|
class nsImageToClipboard
|
|
|
|
{
|
|
|
|
public:
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
nsImageToClipboard ( imgIContainer* inImage );
|
2001-01-22 21:53:32 +00:00
|
|
|
~nsImageToClipboard();
|
|
|
|
|
|
|
|
// Call to get the actual bits that go on the clipboard. If |nsnull|, the
|
|
|
|
// setup operations have failed.
|
|
|
|
//
|
2001-03-27 06:02:54 +00:00
|
|
|
// NOTE: The caller owns the handle and must delete it with ::GlobalRelease()
|
2001-01-22 21:53:32 +00:00
|
|
|
nsresult GetPicture ( HANDLE* outBits ) ;
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// Computes # of bytes needed by a bitmap with the specified attributes.
|
|
|
|
PRInt32 CalcSize(PRInt32 aHeight, PRInt32 aColors, WORD aBitsPerPixel, PRInt32 aSpanBytes);
|
|
|
|
PRInt32 CalcSpanLength(PRUint32 aWidth, PRUint32 aBitCount);
|
|
|
|
|
|
|
|
// Do the work
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
nsresult CreateFromImage ( imgIContainer* inImage, HANDLE* outBitmap );
|
2001-01-22 21:53:32 +00:00
|
|
|
|
Bug 753 - Remove nsIImage, gfxIImageFrame, and their implementations, and expose an equivalent api on imgIContainer. r=roc,josh,bz,longsonr,vlad,karlt,jimm,bsmedberg,mfinkle,peterw,peterv sr=vlad,roc
--HG--
rename : gfx/src/shared/gfxImageFrame.cpp => modules/libpr0n/src/imgFrame.cpp
rename : gfx/src/shared/gfxImageFrame.h => modules/libpr0n/src/imgFrame.h
2009-07-21 01:50:15 +00:00
|
|
|
nsCOMPtr<imgIContainer> mImage; // the image we're working with
|
2001-01-22 21:53:32 +00:00
|
|
|
|
|
|
|
}; // class nsImageToClipboard
|
|
|
|
|
|
|
|
|
2006-09-13 19:52:44 +00:00
|
|
|
struct bitFields {
|
|
|
|
PRUint32 red;
|
|
|
|
PRUint32 green;
|
|
|
|
PRUint32 blue;
|
|
|
|
PRUint8 redLeftShift;
|
|
|
|
PRUint8 redRightShift;
|
|
|
|
PRUint8 greenLeftShift;
|
|
|
|
PRUint8 greenRightShift;
|
|
|
|
PRUint8 blueLeftShift;
|
|
|
|
PRUint8 blueRightShift;
|
|
|
|
};
|
|
|
|
|
2001-01-22 21:53:32 +00:00
|
|
|
//
|
|
|
|
// nsImageFromClipboard
|
|
|
|
//
|
|
|
|
// A utility class that takes a DIB from the win32 clipboard and does
|
2006-09-13 19:52:44 +00:00
|
|
|
// all the bitmap magic to convert it to a PNG or a JPEG in the form of a nsIInputStream
|
2001-01-22 21:53:32 +00:00
|
|
|
//
|
|
|
|
class nsImageFromClipboard
|
|
|
|
{
|
|
|
|
public:
|
2006-09-13 19:52:44 +00:00
|
|
|
nsImageFromClipboard () ;
|
2001-01-22 21:53:32 +00:00
|
|
|
~nsImageFromClipboard ( ) ;
|
|
|
|
|
|
|
|
// Retrieve the newly created image
|
2008-10-20 15:21:02 +00:00
|
|
|
nsresult GetEncodedImageStream (unsigned char * aClipboardData, const char * aMIMEFormat, nsIInputStream** outImage);
|
2001-01-22 21:53:32 +00:00
|
|
|
|
2006-09-13 19:52:44 +00:00
|
|
|
private:
|
2001-01-22 21:53:32 +00:00
|
|
|
|
2006-09-13 19:52:44 +00:00
|
|
|
void InvertRows(unsigned char * aInitialBuffer, PRUint32 aSizeOfBuffer, PRUint32 aNumBytesPerRow);
|
|
|
|
nsresult ConvertColorBitMap(unsigned char * aInputBuffer, PBITMAPINFO pBitMapInfo, unsigned char * aOutBuffer);
|
|
|
|
void CalcBitmask(PRUint32 aMask, PRUint8& aBegin, PRUint8& aLength);
|
|
|
|
void CalcBitShift(bitFields * aColorMask);
|
2001-01-22 21:53:32 +00:00
|
|
|
|
|
|
|
}; // nsImageFromClipboard
|