1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-01-23 02:28:01 +00:00
|
|
|
// Name: wx/gtk1/bitmap.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-24 17:12:05 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKBITMAPH__
|
|
|
|
#define __GTKBITMAPH__
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/palette.h"
|
1999-12-04 10:37:39 +00:00
|
|
|
#include "wx/gdiobj.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxPixelDataBase;
|
2005-02-13 17:14:19 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxMask;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxBitmap;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxImage;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxMask
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxMask: public wxObject
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-11-06 08:50:52 +00:00
|
|
|
public:
|
1999-08-24 20:26:06 +00:00
|
|
|
wxMask();
|
|
|
|
wxMask( const wxBitmap& bitmap, const wxColour& colour );
|
2005-11-30 07:58:37 +00:00
|
|
|
#if wxUSE_PALETTE
|
1999-08-24 20:26:06 +00:00
|
|
|
wxMask( const wxBitmap& bitmap, int paletteIndex );
|
2005-11-30 07:58:37 +00:00
|
|
|
#endif // wxUSE_PALETTE
|
1999-08-24 20:26:06 +00:00
|
|
|
wxMask( const wxBitmap& bitmap );
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxMask();
|
2005-11-30 07:58:37 +00:00
|
|
|
|
1999-08-24 20:26:06 +00:00
|
|
|
bool Create( const wxBitmap& bitmap, const wxColour& colour );
|
2005-11-30 07:58:37 +00:00
|
|
|
#if wxUSE_PALETTE
|
1999-08-24 20:26:06 +00:00
|
|
|
bool Create( const wxBitmap& bitmap, int paletteIndex );
|
2005-11-30 07:58:37 +00:00
|
|
|
#endif // wxUSE_PALETTE
|
1999-08-24 20:26:06 +00:00
|
|
|
bool Create( const wxBitmap& bitmap );
|
|
|
|
|
|
|
|
// implementation
|
|
|
|
GdkBitmap *m_bitmap;
|
2005-11-30 07:58:37 +00:00
|
|
|
|
1999-08-24 20:26:06 +00:00
|
|
|
GdkBitmap *GetBitmap() const;
|
2005-11-30 07:58:37 +00:00
|
|
|
|
1999-08-24 20:26:06 +00:00
|
|
|
private:
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxMask);
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxBitmap
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBitmap: public wxBitmapBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1998-11-06 08:50:52 +00:00
|
|
|
public:
|
2009-03-14 13:57:51 +00:00
|
|
|
wxBitmap() {}
|
|
|
|
wxBitmap( int width, int height, int depth = -1 ) { Create( width, height, depth ); }
|
|
|
|
wxBitmap( const wxSize& sz, int depth = -1 ) { Create( sz, depth ); }
|
1999-08-24 20:26:06 +00:00
|
|
|
wxBitmap( const char bits[], int width, int height, int depth = 1 );
|
2006-10-08 08:04:49 +00:00
|
|
|
wxBitmap( const char* const* bits );
|
2006-11-01 01:16:01 +00:00
|
|
|
#ifdef wxNEEDS_CHARPP
|
2006-10-30 08:07:51 +00:00
|
|
|
// needed for old GCC
|
|
|
|
wxBitmap(char** data)
|
|
|
|
{
|
2008-11-02 02:39:52 +00:00
|
|
|
*this = wxBitmap(const_cast<const char* const*>(data));
|
2006-10-30 08:07:51 +00:00
|
|
|
}
|
|
|
|
#endif
|
2008-09-21 20:03:14 +00:00
|
|
|
wxBitmap( const wxString &filename, wxBitmapType type = wxBITMAP_DEFAULT_TYPE );
|
2015-11-15 12:49:25 +00:00
|
|
|
wxBitmap( const wxImage& image, int depth = -1, double WXUNUSED(scale) = 1.0 ) { (void)CreateFromImage(image, depth); }
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxBitmap();
|
1999-08-24 20:26:06 +00:00
|
|
|
|
2009-03-14 13:57:51 +00:00
|
|
|
bool Create(int width, int height, int depth = wxBITMAP_SCREEN_DEPTH);
|
|
|
|
bool Create(const wxSize& sz, int depth = wxBITMAP_SCREEN_DEPTH)
|
|
|
|
{ return Create(sz.GetWidth(), sz.GetHeight(), depth); }
|
2013-06-25 17:15:10 +00:00
|
|
|
bool Create(int width, int height, const wxDC& WXUNUSED(dc))
|
|
|
|
{ return Create(width,height); }
|
2005-11-30 07:58:37 +00:00
|
|
|
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual int GetHeight() const;
|
|
|
|
virtual int GetWidth() const;
|
|
|
|
virtual int GetDepth() const;
|
2005-11-30 07:58:37 +00:00
|
|
|
|
2001-04-04 23:15:36 +00:00
|
|
|
wxImage ConvertToImage() const;
|
1999-08-24 20:26:06 +00:00
|
|
|
|
2001-09-23 22:36:17 +00:00
|
|
|
// copies the contents and mask of the given (colour) icon to the bitmap
|
|
|
|
virtual bool CopyFromIcon(const wxIcon& icon);
|
|
|
|
|
1999-08-24 20:26:06 +00:00
|
|
|
wxMask *GetMask() const;
|
|
|
|
void SetMask( wxMask *mask );
|
2005-11-30 07:58:37 +00:00
|
|
|
|
1999-12-23 18:18:43 +00:00
|
|
|
wxBitmap GetSubBitmap( const wxRect& rect ) const;
|
1999-08-24 20:26:06 +00:00
|
|
|
|
2005-02-05 13:08:44 +00:00
|
|
|
bool SaveFile(const wxString &name, wxBitmapType type,
|
2009-01-19 13:55:27 +00:00
|
|
|
const wxPalette *palette = NULL) const;
|
2008-09-21 20:03:14 +00:00
|
|
|
bool LoadFile(const wxString &name, wxBitmapType type = wxBITMAP_DEFAULT_TYPE);
|
1999-08-24 20:26:06 +00:00
|
|
|
|
2005-02-05 13:08:44 +00:00
|
|
|
#if wxUSE_PALETTE
|
1999-08-24 20:26:06 +00:00
|
|
|
wxPalette *GetPalette() const;
|
2005-02-05 13:08:44 +00:00
|
|
|
void SetPalette(const wxPalette& palette);
|
2011-12-29 14:42:13 +00:00
|
|
|
wxPalette *GetColourMap() const { return GetPalette(); }
|
2005-02-05 13:08:44 +00:00
|
|
|
#endif // wxUSE_PALETTE
|
2003-06-30 20:11:23 +00:00
|
|
|
|
2005-02-05 14:17:27 +00:00
|
|
|
static void InitStandardHandlers();
|
1998-12-09 17:30:17 +00:00
|
|
|
|
1999-08-24 20:26:06 +00:00
|
|
|
// implementation
|
1999-11-22 19:44:25 +00:00
|
|
|
// --------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-08-24 20:26:06 +00:00
|
|
|
void SetHeight( int height );
|
|
|
|
void SetWidth( int width );
|
|
|
|
void SetDepth( int depth );
|
|
|
|
void SetPixmap( GdkPixmap *pixmap );
|
2000-01-12 17:57:18 +00:00
|
|
|
void SetBitmap( GdkBitmap *bitmap );
|
1998-12-09 17:30:17 +00:00
|
|
|
|
1999-08-24 20:26:06 +00:00
|
|
|
GdkPixmap *GetPixmap() const;
|
|
|
|
GdkBitmap *GetBitmap() const;
|
2004-08-21 22:42:06 +00:00
|
|
|
bool HasPixmap() const;
|
2005-11-30 07:58:37 +00:00
|
|
|
|
2003-10-09 20:01:49 +00:00
|
|
|
// Basically, this corresponds to Win32 StretchBlt()
|
|
|
|
wxBitmap Rescale( int clipx, int clipy, int clipwidth, int clipheight, int width, int height );
|
2005-11-30 07:58:37 +00:00
|
|
|
|
2005-02-13 15:35:43 +00:00
|
|
|
// raw bitmap access support functions
|
|
|
|
void *GetRawData(wxPixelDataBase& data, int bpp);
|
|
|
|
void UngetRawData(wxPixelDataBase& data);
|
|
|
|
|
2005-02-15 20:27:46 +00:00
|
|
|
bool HasAlpha() const;
|
2005-02-13 17:16:33 +00:00
|
|
|
|
1999-12-16 19:36:05 +00:00
|
|
|
protected:
|
2001-04-04 23:15:36 +00:00
|
|
|
bool CreateFromImage(const wxImage& image, int depth);
|
1999-12-16 19:36:05 +00:00
|
|
|
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
2006-11-01 01:36:32 +00:00
|
|
|
|
1999-08-24 20:26:06 +00:00
|
|
|
private:
|
2004-08-21 22:42:06 +00:00
|
|
|
// to be called from CreateFromImage only!
|
|
|
|
bool CreateFromImageAsBitmap(const wxImage& image);
|
|
|
|
bool CreateFromImageAsPixmap(const wxImage& image);
|
|
|
|
|
2005-02-05 14:17:27 +00:00
|
|
|
friend class wxBitmapHandler;
|
|
|
|
|
2005-11-30 07:58:37 +00:00
|
|
|
private:
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxBitmap);
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2005-02-05 14:17:27 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif // __GTKBITMAPH__
|