]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/statbmpg.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/statbmpg.cpp
3 // Purpose: wxGenericStaticBitmap
4 // Author: Marcin Wojdyr, Stefan Csomor
7 // Copyright: wxWidgets developers
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #include "wx/wxprec.h"
16 #include "wx/dcclient.h"
19 #include "wx/generic/statbmpg.h"
21 IMPLEMENT_DYNAMIC_CLASS(wxGenericStaticBitmap
, wxStaticBitmapBase
)
23 bool wxGenericStaticBitmap::Create(wxWindow
*parent
, wxWindowID id
,
24 const wxBitmap
& bitmap
,
25 const wxPoint
& pos
, const wxSize
& size
,
26 long style
, const wxString
& name
)
28 if (! wxControl::Create(parent
, id
, pos
, size
, style
,
29 wxDefaultValidator
, name
))
32 Connect(wxEVT_PAINT
, wxPaintEventHandler(wxGenericStaticBitmap::OnPaint
));
36 void wxGenericStaticBitmap::OnPaint(wxPaintEvent
& WXUNUSED(event
))
40 dc
.DrawBitmap(m_bitmap
, 0, 0, true);
43 #endif // wxUSE_STATBMP