]> git.saurik.com Git - wxWidgets.git/blob - include/wx/statbmp.h
Get/SetTitle only for wxTopLevelWindow (wxMSW part).
[wxWidgets.git] / include / wx / statbmp.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/statbmp.h
3 // Purpose: wxStaticBitmap class interface
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 25.08.00
7 // RCS-ID: $Id$
8 // Copyright: (c) 2000 Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_STATBMP_H_BASE_
13 #define _WX_STATBMP_H_BASE_
14
15 #include "wx/defs.h"
16
17 #if wxUSE_STATBMP
18
19 #include "wx/control.h"
20 #include "wx/bitmap.h"
21
22 class WXDLLEXPORT wxIcon;
23 class WXDLLEXPORT wxBitmap;
24
25 extern WXDLLEXPORT_DATA(const wxChar*) wxStaticBitmapNameStr;
26
27 // a control showing an icon or a bitmap
28 class WXDLLEXPORT wxStaticBitmapBase : public wxControl
29 {
30 public:
31 wxStaticBitmapBase() { }
32 virtual ~wxStaticBitmapBase();
33
34 // our interface
35 virtual void SetIcon(const wxIcon& icon) = 0;
36 virtual void SetBitmap(const wxBitmap& bitmap) = 0;
37 virtual wxBitmap GetBitmap() const = 0;
38
39 // overriden base class virtuals
40 virtual bool AcceptsFocus() const { return false; }
41 virtual bool HasTransparentBackground() { return true; }
42
43 protected:
44 virtual wxSize DoGetBestSize() const;
45
46 DECLARE_NO_COPY_CLASS(wxStaticBitmapBase)
47 };
48
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(__WXCOCOA__)
60 #include "wx/cocoa/statbmp.h"
61 #elif defined(__WXPM__)
62 #include "wx/os2/statbmp.h"
63 #endif
64
65 #endif // wxUSE_STATBMP
66
67 #endif
68 // _WX_STATBMP_H_BASE_