2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -07:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsIconDecoder_h__
|
|
|
|
#define nsIconDecoder_h__
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
#include "Decoder.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
2012-12-18 08:37:15 -08:00
|
|
|
#include "imgDecoderObserver.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-08-13 21:09:49 -07:00
|
|
|
namespace mozilla {
|
2012-01-06 08:02:27 -08:00
|
|
|
namespace image {
|
2010-08-13 21:09:49 -07:00
|
|
|
class RasterImage;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// The icon decoder is a decoder specifically tailored for loading icons
|
|
|
|
// from the OS. We've defined our own little format to represent these icons
|
|
|
|
// and this decoder takes that format and converts it into 24-bit RGB with alpha channel
|
|
|
|
// support. It was modeled a bit off the PPM decoder.
|
|
|
|
//
|
|
|
|
// Assumptions about the decoder:
|
|
|
|
// (1) We receive ALL of the data from the icon channel in one OnDataAvailable call. We don't
|
|
|
|
// support multiple ODA calls yet.
|
|
|
|
// (2) the format of the incoming data is as follows:
|
|
|
|
// The first two bytes contain the width and the height of the icon.
|
|
|
|
// The remaining bytes contain the icon data, 4 bytes per pixel, in
|
|
|
|
// ARGB order (platform endianness, A in highest bits, B in lowest
|
|
|
|
// bits), row-primary, top-to-bottom, left-to-right, with
|
|
|
|
// premultiplied alpha.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-08-22 19:30:46 -07:00
|
|
|
class nsIconDecoder : public Decoder
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2012-12-18 08:37:15 -08:00
|
|
|
nsIconDecoder(RasterImage &aImage, imgDecoderObserver* aObserver);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual ~nsIconDecoder();
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual void WriteInternal(const char* aBuffer, uint32_t aCount);
|
2010-08-22 19:30:46 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t mWidth;
|
|
|
|
uint8_t mHeight;
|
|
|
|
uint32_t mPixBytesRead;
|
|
|
|
uint32_t mPixBytesTotal;
|
|
|
|
uint8_t* mImageData;
|
|
|
|
uint32_t mState;
|
2009-09-12 15:44:18 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
iconStateStart = 0,
|
|
|
|
iconStateHaveHeight = 1,
|
|
|
|
iconStateReadPixels = 2,
|
2010-09-12 08:22:27 -07:00
|
|
|
iconStateFinished = 3
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2012-01-06 08:02:27 -08:00
|
|
|
} // namespace image
|
2010-08-22 19:30:46 -07:00
|
|
|
} // namespace mozilla
|
2009-09-12 15:44:18 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif // nsIconDecoder_h__
|