1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: bitmap.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-05-28 15:54:07 -04:00
|
|
|
// RCS-ID: $Id$
|
1998-10-24 13:12:05 -04:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1998-09-04 08:45:34 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKBITMAPH__
|
|
|
|
#define __GTKBITMAPH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
#include "wx/palette.h"
|
1999-12-04 05:37:39 -05:00
|
|
|
#include "wx/gdiobj.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxMask;
|
|
|
|
class wxBitmap;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxMask
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxMask: public wxObject
|
|
|
|
{
|
1998-11-06 03:50:52 -05:00
|
|
|
public:
|
1999-08-24 16:26:06 -04:00
|
|
|
wxMask();
|
|
|
|
wxMask( const wxBitmap& bitmap, const wxColour& colour );
|
|
|
|
wxMask( const wxBitmap& bitmap, int paletteIndex );
|
|
|
|
wxMask( const wxBitmap& bitmap );
|
|
|
|
~wxMask();
|
1999-06-13 11:24:01 -04:00
|
|
|
|
1999-08-24 16:26:06 -04:00
|
|
|
bool Create( const wxBitmap& bitmap, const wxColour& colour );
|
|
|
|
bool Create( const wxBitmap& bitmap, int paletteIndex );
|
|
|
|
bool Create( const wxBitmap& bitmap );
|
|
|
|
|
|
|
|
// implementation
|
|
|
|
GdkBitmap *m_bitmap;
|
|
|
|
|
|
|
|
GdkBitmap *GetBitmap() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxMask)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxBitmap
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-12-04 05:37:39 -05:00
|
|
|
class wxBitmap: public wxGDIObject
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1998-11-06 03:50:52 -05:00
|
|
|
public:
|
1999-08-24 16:26:06 -04:00
|
|
|
wxBitmap();
|
|
|
|
wxBitmap( int width, int height, int depth = -1 );
|
|
|
|
wxBitmap( const char bits[], int width, int height, int depth = 1 );
|
1999-12-16 14:36:05 -05:00
|
|
|
wxBitmap( const char **bits ) { (void)CreateFromXpm(bits); }
|
|
|
|
wxBitmap( char **bits ) { (void)CreateFromXpm((const char **)bits); }
|
1999-08-24 16:26:06 -04:00
|
|
|
wxBitmap( const wxBitmap& bmp );
|
|
|
|
wxBitmap( const wxString &filename, int type = wxBITMAP_TYPE_XPM );
|
|
|
|
~wxBitmap();
|
|
|
|
wxBitmap& operator = ( const wxBitmap& bmp );
|
|
|
|
bool operator == ( const wxBitmap& bmp );
|
|
|
|
bool operator != ( const wxBitmap& bmp );
|
|
|
|
bool Ok() const;
|
|
|
|
|
|
|
|
int GetHeight() const;
|
|
|
|
int GetWidth() const;
|
|
|
|
int GetDepth() const;
|
|
|
|
|
|
|
|
wxMask *GetMask() const;
|
|
|
|
void SetMask( wxMask *mask );
|
1999-12-23 13:18:43 -05:00
|
|
|
|
|
|
|
wxBitmap GetSubBitmap( const wxRect& rect ) const;
|
1999-08-24 16:26:06 -04:00
|
|
|
|
|
|
|
bool SaveFile( const wxString &name, int type, wxPalette *palette = (wxPalette *) NULL );
|
|
|
|
bool LoadFile( const wxString &name, int type = wxBITMAP_TYPE_XPM );
|
|
|
|
|
|
|
|
wxPalette *GetPalette() const;
|
|
|
|
wxPalette *GetColourMap() const
|
1998-11-06 03:50:52 -05:00
|
|
|
{ return GetPalette(); };
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-08-24 16:26:06 -04:00
|
|
|
// implementation
|
1999-11-22 14:44:25 -05:00
|
|
|
// --------------
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-08-24 16:26:06 -04:00
|
|
|
void SetHeight( int height );
|
|
|
|
void SetWidth( int width );
|
|
|
|
void SetDepth( int depth );
|
|
|
|
void SetPixmap( GdkPixmap *pixmap );
|
2000-01-12 12:57:18 -05:00
|
|
|
void SetBitmap( GdkBitmap *bitmap );
|
1998-12-09 12:30:17 -05:00
|
|
|
|
1999-08-24 16:26:06 -04:00
|
|
|
GdkPixmap *GetPixmap() const;
|
|
|
|
GdkBitmap *GetBitmap() const;
|
|
|
|
|
1999-12-16 14:36:05 -05:00
|
|
|
protected:
|
|
|
|
bool CreateFromXpm(const char **bits);
|
|
|
|
|
1999-08-24 16:26:06 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBitmap)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKBITMAPH__
|