]>
git.saurik.com Git - wxWidgets.git/blob - utils/ogl/src/bmpshape.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxBitmapShape
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _OGL_BITMAP_H_
13 #define _OGL_BITMAP_H_
16 #pragma interface "bmpshape.h"
21 class wxBitmapShape
: public wxRectangleShape
23 DECLARE_DYNAMIC_CLASS(wxBitmapShape
)
28 void OnDraw(wxDC
& dc
);
32 void WriteAttributes(wxExpr
*clause
);
33 void ReadAttributes(wxExpr
*clause
);
36 // Does the copying for this object
37 void Copy(wxShape
& copy
);
39 void SetSize(double w
, double h
, bool recursive
= TRUE
);
40 inline wxBitmap
& GetBitmap() const { return (wxBitmap
&) m_bitmap
; }
41 void SetBitmap(const wxBitmap
& bm
);
42 inline void SetFilename(const wxString
& f
) { m_filename
= f
; };
43 inline wxString
GetFilename() const { return m_filename
; }