]> git.saurik.com Git - wxWidgets.git/blame - include/wx/statbmp.h
Support for G_FILENAME_ENCODING=@locale
[wxWidgets.git] / include / wx / statbmp.h
CommitLineData
1e6feb95
VZ
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
65571936 9// Licence: wxWindows licence
1e6feb95
VZ
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_STATBMP_H_BASE_
13#define _WX_STATBMP_H_BASE_
c801d85f 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
1e6feb95
VZ
16 #pragma interface "statbmpbase.h"
17#endif
18
997176a3
VZ
19#include "wx/defs.h"
20
1e6feb95
VZ
21#if wxUSE_STATBMP
22
23#include "wx/control.h"
24#include "wx/bitmap.h"
25
26class WXDLLEXPORT wxIcon;
27class WXDLLEXPORT wxBitmap;
28
16cba29d 29extern WXDLLEXPORT_DATA(const wxChar*) wxStaticBitmapNameStr;
1e6feb95
VZ
30
31// a control showing an icon or a bitmap
32class WXDLLEXPORT wxStaticBitmapBase : public wxControl
33{
fc7a2a60
VZ
34public:
35 wxStaticBitmapBase() { }
799ea011 36 virtual ~wxStaticBitmapBase();
d775fa82 37
1e6feb95
VZ
38 // our interface
39 virtual void SetIcon(const wxIcon& icon) = 0;
40 virtual void SetBitmap(const wxBitmap& bitmap) = 0;
41 virtual wxBitmap GetBitmap() const = 0;
42
43 // overriden base class virtuals
d775fa82 44 virtual bool AcceptsFocus() const { return false; }
60acae65 45 virtual bool HasTransparentBackground() { return true; }
1e6feb95
VZ
46
47protected:
b3fcfa4d 48 virtual wxSize DoGetBestSize() const;
fc7a2a60
VZ
49
50 DECLARE_NO_COPY_CLASS(wxStaticBitmapBase)
1e6feb95
VZ
51};
52
53#if defined(__WXUNIVERSAL__)
54 #include "wx/univ/statbmp.h"
55#elif defined(__WXMSW__)
56 #include "wx/msw/statbmp.h"
2049ba38 57#elif defined(__WXMOTIF__)
1e6feb95 58 #include "wx/motif/statbmp.h"
2049ba38 59#elif defined(__WXGTK__)
1e6feb95 60 #include "wx/gtk/statbmp.h"
34138703 61#elif defined(__WXMAC__)
1e6feb95 62 #include "wx/mac/statbmp.h"
e64df9bc
DE
63#elif defined(__WXCOCOA__)
64 #include "wx/cocoa/statbmp.h"
1777b9bb 65#elif defined(__WXPM__)
1e6feb95 66 #include "wx/os2/statbmp.h"
c801d85f
KB
67#endif
68
1e6feb95
VZ
69#endif // wxUSE_STATBMP
70
c801d85f 71#endif
34138703 72 // _WX_STATBMP_H_BASE_