]>
git.saurik.com Git - wxWidgets.git/blob - src/qt/statbmp.cpp
e4c3e6476b3f037a1cc6b8e9cb64791b1542062e
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "statbmp.h"
15 #include "wx/statbmp.h"
17 //-----------------------------------------------------------------------------
19 //-----------------------------------------------------------------------------
21 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap
,wxControl
)
23 wxStaticBitmap::wxStaticBitmap(void)
27 wxStaticBitmap::wxStaticBitmap( wxWindow
*parent
, wxWindowID id
, const wxBitmap
&bitmap
,
28 const wxPoint
&pos
, const wxSize
&size
,
29 long style
, const wxString
&name
)
31 Create( parent
, id
, bitmap
, pos
, size
, style
, name
);
34 bool wxStaticBitmap::Create( wxWindow
*parent
, wxWindowID id
, const wxBitmap
&bitmap
,
35 const wxPoint
&pos
, const wxSize
&size
,
36 long style
, const wxString
&name
)
41 void wxStaticBitmap::SetBitmap( const wxBitmap
&bitmap
)