1998-10-24 17:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: image.h
|
|
|
|
// Purpose: wxImage class
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_IMAGE_H_
|
|
|
|
#define _WX_IMAGE_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "image.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/gdicmn.h"
|
1999-01-22 11:06:20 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
1999-01-09 20:18:06 +00:00
|
|
|
#include "wx/stream.h"
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
1998-10-24 17:12:05 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxImageHandler;
|
1999-01-24 14:57:09 +00:00
|
|
|
#if wxUSE_LIBPNG
|
1998-10-24 17:12:05 +00:00
|
|
|
class WXDLLEXPORT wxPNGHandler;
|
1999-01-04 13:52:06 +00:00
|
|
|
#endif
|
1999-01-27 16:13:16 +00:00
|
|
|
#if wxUSE_LIBJPEG
|
|
|
|
class WXDLLEXPORT wxJPEGHandler;
|
|
|
|
#endif
|
1998-10-24 17:12:05 +00:00
|
|
|
class WXDLLEXPORT wxBMPHandler;
|
|
|
|
class WXDLLEXPORT wxImage;
|
|
|
|
|
1998-12-06 17:33:01 +00:00
|
|
|
class WXDLLEXPORT wxBitmap;
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxImageHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxImageHandler: public wxObject
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxImageHandler)
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxImageHandler() { m_name = ""; m_extension = ""; m_type = 0; }
|
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
#if wxUSE_STREAMS
|
1999-01-09 20:18:06 +00:00
|
|
|
virtual bool LoadFile( wxImage *image, wxInputStream& stream );
|
|
|
|
virtual bool SaveFile( wxImage *image, wxOutputStream& stream );
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
1998-10-24 17:12:05 +00:00
|
|
|
|
|
|
|
inline void SetName(const wxString& name) { m_name = name; }
|
|
|
|
inline void SetExtension(const wxString& ext) { m_extension = ext; }
|
|
|
|
inline void SetType(long type) { m_type = type; }
|
1999-04-11 19:07:17 +00:00
|
|
|
inline void SetMimeType(const wxString& type) { m_mime = type; }
|
1998-10-24 17:12:05 +00:00
|
|
|
inline wxString GetName() const { return m_name; }
|
|
|
|
inline wxString GetExtension() const { return m_extension; }
|
|
|
|
inline long GetType() const { return m_type; }
|
1999-04-11 19:07:17 +00:00
|
|
|
inline wxString GetMimeType() const { return m_mime; }
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
protected:
|
|
|
|
wxString m_name;
|
|
|
|
wxString m_extension;
|
1999-04-11 19:07:17 +00:00
|
|
|
wxString m_mime;
|
1998-10-24 17:12:05 +00:00
|
|
|
long m_type;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxPNGHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-01-24 14:57:09 +00:00
|
|
|
#if wxUSE_LIBPNG
|
1998-10-24 17:12:05 +00:00
|
|
|
class WXDLLEXPORT wxPNGHandler: public wxImageHandler
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxPNGHandler)
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
1998-11-06 08:50:52 +00:00
|
|
|
inline wxPNGHandler()
|
|
|
|
{
|
|
|
|
m_name = "PNG file";
|
|
|
|
m_extension = "png";
|
|
|
|
m_type = wxBITMAP_TYPE_PNG;
|
1999-04-11 19:07:17 +00:00
|
|
|
m_mime = "image/png";
|
1998-11-06 08:50:52 +00:00
|
|
|
};
|
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
#if wxUSE_STREAMS
|
1999-01-09 20:18:06 +00:00
|
|
|
virtual bool LoadFile( wxImage *image, wxInputStream& stream );
|
|
|
|
virtual bool SaveFile( wxImage *image, wxOutputStream& stream );
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
};
|
1999-01-04 13:52:06 +00:00
|
|
|
#endif
|
1998-10-24 17:12:05 +00:00
|
|
|
|
1999-01-27 16:13:16 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxJPEGHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-02-04 16:28:06 +00:00
|
|
|
#if wxUSE_LIBJPEG
|
1999-01-27 16:13:16 +00:00
|
|
|
class WXDLLEXPORT wxJPEGHandler: public wxImageHandler
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxJPEGHandler)
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
inline wxJPEGHandler()
|
|
|
|
{
|
|
|
|
m_name = "JPEG file";
|
|
|
|
m_extension = "jpg";
|
|
|
|
m_type = wxBITMAP_TYPE_JPEG;
|
1999-04-11 19:07:17 +00:00
|
|
|
m_mime = "image/jpeg";
|
1999-01-27 16:13:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
virtual bool LoadFile( wxImage *image, wxInputStream& stream );
|
|
|
|
virtual bool SaveFile( wxImage *image, wxOutputStream& stream );
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxBMPHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxBMPHandler: public wxImageHandler
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBMPHandler)
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
1998-11-06 08:50:52 +00:00
|
|
|
inline wxBMPHandler()
|
|
|
|
{
|
|
|
|
m_name = "BMP file";
|
|
|
|
m_extension = "bmp";
|
|
|
|
m_type = wxBITMAP_TYPE_BMP;
|
1999-04-11 19:07:17 +00:00
|
|
|
m_mime = "image/bmp";
|
1998-11-06 08:50:52 +00:00
|
|
|
};
|
1998-10-24 17:12:05 +00:00
|
|
|
|
1999-01-22 11:06:20 +00:00
|
|
|
#if wxUSE_STREAMS
|
1999-01-09 20:18:06 +00:00
|
|
|
virtual bool LoadFile( wxImage *image, wxInputStream& stream );
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
1998-10-24 17:12:05 +00:00
|
|
|
};
|
1998-11-06 08:50:52 +00:00
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxImage
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxImage: public wxObject
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxImage)
|
|
|
|
|
|
|
|
friend class WXDLLEXPORT wxImageHandler;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxImage();
|
|
|
|
wxImage( int width, int height );
|
|
|
|
wxImage( const wxString& name, long type = wxBITMAP_TYPE_PNG );
|
1999-01-09 20:18:06 +00:00
|
|
|
wxImage( wxInputStream& stream, long type = wxBITMAP_TYPE_PNG );
|
1999-04-11 19:07:17 +00:00
|
|
|
wxImage( const wxString& name, const wxString& mimetype );
|
|
|
|
wxImage( wxInputStream& stream, const wxString& mimetype );
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
wxImage( const wxImage& image );
|
|
|
|
wxImage( const wxImage* image );
|
1998-12-06 17:33:01 +00:00
|
|
|
|
|
|
|
// these functions get implemented in /src/(platform)/bitmap.cpp
|
|
|
|
wxImage( const wxBitmap &bitmap );
|
|
|
|
wxBitmap ConvertToBitmap() const;
|
1998-10-24 17:12:05 +00:00
|
|
|
|
|
|
|
void Create( int width, int height );
|
|
|
|
void Destroy();
|
|
|
|
|
1998-12-06 17:33:01 +00:00
|
|
|
wxImage Scale( int width, int height );
|
|
|
|
|
1998-12-06 21:35:49 +00:00
|
|
|
// these routines are slow but safe
|
|
|
|
void SetRGB( int x, int y, unsigned char r, unsigned char g, unsigned char b );
|
|
|
|
unsigned char GetRed( int x, int y );
|
|
|
|
unsigned char GetGreen( int x, int y );
|
|
|
|
unsigned char GetBlue( int x, int y );
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
virtual bool LoadFile( const wxString& name, long type = wxBITMAP_TYPE_PNG );
|
1999-04-11 19:07:17 +00:00
|
|
|
virtual bool LoadFile( const wxString& name, const wxString& mimetype );
|
1999-01-22 11:06:20 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
1999-01-09 20:18:06 +00:00
|
|
|
virtual bool LoadFile( wxInputStream& stream, long type = wxBITMAP_TYPE_PNG );
|
1999-04-11 19:07:17 +00:00
|
|
|
virtual bool LoadFile( wxInputStream& stream, const wxString& mimetype );
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
virtual bool SaveFile( const wxString& name, int type );
|
1999-04-11 19:07:17 +00:00
|
|
|
virtual bool SaveFile( const wxString& name, const wxString& mimetype );
|
1999-01-22 11:06:20 +00:00
|
|
|
|
|
|
|
#if wxUSE_STREAMS
|
1999-01-09 20:18:06 +00:00
|
|
|
virtual bool SaveFile( wxOutputStream& stream, int type );
|
1999-04-11 19:07:17 +00:00
|
|
|
virtual bool SaveFile( wxOutputStream& stream, const wxString& mimetype );
|
1999-01-22 11:06:20 +00:00
|
|
|
#endif
|
1998-10-24 17:12:05 +00:00
|
|
|
|
|
|
|
bool Ok() const;
|
|
|
|
int GetWidth() const;
|
|
|
|
int GetHeight() const;
|
|
|
|
|
|
|
|
char unsigned *GetData() const;
|
|
|
|
void SetData( char unsigned *data );
|
|
|
|
|
|
|
|
void SetMaskColour( unsigned char r, unsigned char g, unsigned char b );
|
|
|
|
unsigned char GetMaskRed() const;
|
|
|
|
unsigned char GetMaskGreen() const;
|
|
|
|
unsigned char GetMaskBlue() const;
|
|
|
|
void SetMask( bool mask = TRUE );
|
|
|
|
bool HasMask() const;
|
|
|
|
|
1999-01-16 00:13:58 +00:00
|
|
|
inline wxImage& operator = (const wxImage& image)
|
1999-01-19 11:00:22 +00:00
|
|
|
{ if ((*this) == image)
|
|
|
|
return (*this);
|
|
|
|
Ref(image);
|
|
|
|
return *this; }
|
|
|
|
|
1999-01-16 00:13:58 +00:00
|
|
|
inline bool operator == (const wxImage& image)
|
1998-10-24 17:12:05 +00:00
|
|
|
{ return m_refData == image.m_refData; }
|
|
|
|
inline bool operator != (const wxImage& image)
|
|
|
|
{ return m_refData != image.m_refData; }
|
|
|
|
|
|
|
|
static inline wxList& GetHandlers() { return sm_handlers; }
|
|
|
|
static void AddHandler( wxImageHandler *handler );
|
|
|
|
static void InsertHandler( wxImageHandler *handler );
|
|
|
|
static bool RemoveHandler( const wxString& name );
|
|
|
|
static wxImageHandler *FindHandler( const wxString& name );
|
|
|
|
static wxImageHandler *FindHandler( const wxString& extension, long imageType );
|
|
|
|
static wxImageHandler *FindHandler( long imageType );
|
1999-04-11 19:07:17 +00:00
|
|
|
static wxImageHandler *FindHandlerMime( const wxString& mimetype );
|
|
|
|
|
1998-10-24 17:12:05 +00:00
|
|
|
static void CleanUpHandlers();
|
1998-11-06 08:50:52 +00:00
|
|
|
static void InitStandardHandlers();
|
1998-10-24 17:12:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
static wxList sm_handlers;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_IMAGE_H_
|
1999-04-11 19:07:17 +00:00
|
|
|
|