1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/dfb/bitmap.h
3 // Purpose: wxBitmap class
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2006 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_DFB_BITMAP_H_
12 #define _WX_DFB_BITMAP_H_
14 #include "wx/dfb/dfbptr.h"
16 class WXDLLIMPEXP_FWD_CORE wxPixelDataBase
;
18 wxDFB_DECLARE_INTERFACE(IDirectFBSurface
);
20 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
24 class WXDLLIMPEXP_CORE wxBitmap
: public wxBitmapBase
28 wxBitmap(const wxIDirectFBSurfacePtr
& surface
) { Create(surface
); }
29 wxBitmap(int width
, int height
, int depth
= -1) { Create(width
, height
, depth
); }
30 wxBitmap(const wxSize
& sz
, int depth
= -1) { Create(sz
, depth
); }
31 wxBitmap(const char bits
[], int width
, int height
, int depth
= 1);
32 wxBitmap(const wxString
&filename
, wxBitmapType type
= wxBITMAP_DEFAULT_TYPE
);
33 wxBitmap(const char* const* bits
);
35 wxBitmap(const wxImage
& image
, int depth
= -1);
38 bool Create(const wxIDirectFBSurfacePtr
& surface
);
39 bool Create(int width
, int height
, int depth
= wxBITMAP_SCREEN_DEPTH
);
40 bool Create(const wxSize
& sz
, int depth
= wxBITMAP_SCREEN_DEPTH
)
41 { return Create(sz
.GetWidth(), sz
.GetHeight(), depth
); }
42 bool Create(int width
, int height
, const wxDC
& WXUNUSED(dc
))
43 { return Create(width
,height
); }
45 virtual int GetHeight() const;
46 virtual int GetWidth() const;
47 virtual int GetDepth() const;
50 virtual wxImage
ConvertToImage() const;
53 virtual wxMask
*GetMask() const;
54 virtual void SetMask(wxMask
*mask
);
56 virtual wxBitmap
GetSubBitmap(const wxRect
& rect
) const;
58 virtual bool SaveFile(const wxString
&name
, wxBitmapType type
,
59 const wxPalette
*palette
= NULL
) const;
60 virtual bool LoadFile(const wxString
&name
, wxBitmapType type
= wxBITMAP_DEFAULT_TYPE
);
63 virtual wxPalette
*GetPalette() const;
64 virtual void SetPalette(const wxPalette
& palette
);
67 // copies the contents and mask of the given (colour) icon to the bitmap
68 virtual bool CopyFromIcon(const wxIcon
& icon
);
70 static void InitStandardHandlers();
72 // raw bitmap access support functions
73 void *GetRawData(wxPixelDataBase
& data
, int bpp
);
74 void UngetRawData(wxPixelDataBase
& data
);
76 bool HasAlpha() const;
79 virtual void SetHeight(int height
);
80 virtual void SetWidth(int width
);
81 virtual void SetDepth(int depth
);
83 // get underlying native representation:
84 wxIDirectFBSurfacePtr
GetDirectFBSurface() const;
87 virtual wxGDIRefData
*CreateGDIRefData() const;
88 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
90 bool CreateWithFormat(int width
, int height
, int dfbFormat
);
92 DECLARE_DYNAMIC_CLASS(wxBitmap
)
95 #endif // _WX_DFB_BITMAP_H_