X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/452418c4b0763eb611432e84f077c9766e282057..e0976f6db35b304f16519437c9d9e2450a373783:/include/wx/dfb/bitmap.h?ds=sidebyside diff --git a/include/wx/dfb/bitmap.h b/include/wx/dfb/bitmap.h index 19767564f9..28bd0b0f28 100644 --- a/include/wx/dfb/bitmap.h +++ b/include/wx/dfb/bitmap.h @@ -13,6 +13,8 @@ #include "wx/dfb/dfbptr.h" +class WXDLLIMPEXP_FWD_CORE wxPixelDataBase; + wxDFB_DECLARE_INTERFACE(IDirectFBSurface); //----------------------------------------------------------------------------- @@ -37,9 +39,8 @@ public: wxBitmap(const wxImage& image, int depth = -1); #endif - bool Ok() const; - bool operator==(const wxBitmap& bmp) const; - bool operator!=(const wxBitmap& bmp) const { return !(*this == bmp); } + bool Ok() const { return IsOk(); } + bool IsOk() const; bool Create(const wxIDirectFBSurfacePtr& surface); bool Create(int width, int height, int depth = -1); @@ -70,6 +71,12 @@ public: static void InitStandardHandlers(); + // raw bitmap access support functions + void *GetRawData(wxPixelDataBase& data, int bpp); + void UngetRawData(wxPixelDataBase& data); + + bool HasAlpha() const; + // implementation: virtual void SetHeight(int height); virtual void SetWidth(int width); @@ -83,6 +90,8 @@ protected: virtual wxObjectRefData *CreateRefData() const; virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; + bool CreateWithFormat(int width, int height, int dfbFormat); + DECLARE_DYNAMIC_CLASS(wxBitmap) };