]> git.saurik.com Git - wxWidgets.git/blame - src/generic/statbmpg.cpp
Don't forbid creating wxSplitterWindow with border style.
[wxWidgets.git] / src / generic / statbmpg.cpp
CommitLineData
a30e7029 1///////////////////////////////////////////////////////////////////////////////
b4715d08 2// Name: src/generic/statbmpg.cpp
48e487e3 3// Purpose: wxGenericStaticBitmap
a30e7029
VZ
4// Author: Marcin Wojdyr, Stefan Csomor
5// Created: 2008-06-16
6// RCS-ID: $Id$
7// Copyright: wxWidgets developers
8// Licence: wxWindows licence
9///////////////////////////////////////////////////////////////////////////////
10
11#include "wx/wxprec.h"
12
13#if wxUSE_STATBMP
14
48e487e3
VZ
15#ifndef WX_PRECOMP
16 #include "wx/dcclient.h"
17#endif
a30e7029 18
48e487e3 19#include "wx/generic/statbmpg.h"
a30e7029
VZ
20
21IMPLEMENT_DYNAMIC_CLASS(wxGenericStaticBitmap, wxStaticBitmapBase)
22
48e487e3 23bool wxGenericStaticBitmap::Create(wxWindow *parent, wxWindowID id,
a30e7029
VZ
24 const wxBitmap& bitmap,
25 const wxPoint& pos, const wxSize& size,
26 long style, const wxString& name)
27{
48e487e3 28 if (! wxControl::Create(parent, id, pos, size, style,
a30e7029
VZ
29 wxDefaultValidator, name))
30 return false;
31 SetBitmap(bitmap);
32 Connect(wxEVT_PAINT, wxPaintEventHandler(wxGenericStaticBitmap::OnPaint));
33 return true;
34}
35
36void wxGenericStaticBitmap::OnPaint(wxPaintEvent& WXUNUSED(event))
37{
38 wxPaintDC dc(this);
e75390d4 39 if (m_bitmap.IsOk())
a30e7029
VZ
40 dc.DrawBitmap(m_bitmap, 0, 0, true);
41}
42
43#endif // wxUSE_STATBMP
44