X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/debe6624c1e9d4bf3243381153d1e173c849bcd8..7b218dfaf47dc47705f6d6cba9408fa9f9cca70e:/include/wx/msw/statbmp.h diff --git a/include/wx/msw/statbmp.h b/include/wx/msw/statbmp.h index b9c9669a33..e4b0253978 100644 --- a/include/wx/msw/statbmp.h +++ b/include/wx/msw/statbmp.h @@ -5,12 +5,12 @@ // Modified by: // Created: 01/02/97 // RCS-ID: $Id$ -// Copyright: (c) Julian Smart and Markus Holzem -// Licence: wxWindows license +// Copyright: (c) Julian Smart +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __STATBMPH__ -#define __STATBMPH__ +#ifndef _WX_STATBMP_H_ +#define _WX_STATBMP_H_ #ifdef __GNUG__ #pragma interface "statbmp.h" @@ -49,9 +49,15 @@ class WXDLLEXPORT wxStaticBitmap: public wxControl virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {}; void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); + void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO) + { wxWindow::SetSize(rect, sizeFlags); } + void SetSize(const wxSize& size) { wxWindow::SetSize(size); } inline wxBitmap& GetBitmap(void) const { return (wxBitmap&) m_messageBitmap; } + // overriden base class virtuals + virtual bool AcceptsFocus() const { return FALSE; } + // Implementation virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item); virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam); @@ -61,4 +67,4 @@ class WXDLLEXPORT wxStaticBitmap: public wxControl }; #endif - // __STATBMPH__ + // _WX_STATBMP_H_