1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticBitmap class interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_STATBMP_H_BASE_
13 #define _WX_STATBMP_H_BASE_
16 #pragma interface "statbmpbase.h"
21 #include "wx/control.h"
22 #include "wx/bitmap.h"
24 class WXDLLEXPORT wxIcon
;
25 class WXDLLEXPORT wxBitmap
;
27 WXDLLEXPORT_DATA(extern const wxChar
*) wxStaticBitmapNameStr
;
29 // a control showing an icon or a bitmap
30 class WXDLLEXPORT wxStaticBitmapBase
: public wxControl
34 ~wxStaticBitmapBase() { }
38 virtual void SetIcon(const wxIcon
& icon
) = 0;
39 virtual void SetBitmap(const wxBitmap
& bitmap
) = 0;
40 virtual wxBitmap
GetBitmap() const = 0;
42 // overriden base class virtuals
43 virtual bool AcceptsFocus() const { return FALSE
; }
46 virtual wxSize
DoGetBestClientSize() const;
49 #if defined(__WXUNIVERSAL__)
50 #include "wx/univ/statbmp.h"
51 #elif defined(__WXMSW__)
52 #include "wx/msw/statbmp.h"
53 #elif defined(__WXMOTIF__)
54 #include "wx/motif/statbmp.h"
55 #elif defined(__WXGTK__)
56 #include "wx/gtk/statbmp.h"
57 #elif defined(__WXMAC__)
58 #include "wx/mac/statbmp.h"
59 #elif defined(__WXPM__)
60 #include "wx/os2/statbmp.h"
61 #elif defined(__WXSTUBS__)
62 #include "wx/stubs/statbmp.h"
65 #endif // wxUSE_STATBMP
68 // _WX_STATBMP_H_BASE_