+ inline wxStaticBitmap() { Init(); }
+
+ inline wxStaticBitmap( wxWindow* pParent
+ ,wxWindowID nId
+ ,const wxGDIImage& rLabel
+ ,const wxPoint& rPos = wxDefaultPosition
+ ,const wxSize& rSize = wxDefaultSize
+ ,long lStyle = 0
+ ,const wxString& rName = wxStaticBitmapNameStr
+ )
+ {
+ Create(pParent, nId, rLabel, rPos, rSize, lStyle, rName);
+ }
+
+ bool Create( wxWindow* pParent
+ ,wxWindowID nId
+ ,const wxGDIImage& rLabel
+ ,const wxPoint& rPos = wxDefaultPosition
+ ,const wxSize& rSize = wxDefaultSize
+ ,long lStyle = 0
+ ,const wxString& rName = wxStaticBitmapNameStr
+ );
+ inline virtual ~wxStaticBitmap() { Free(); }