]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/statbmp.h
minor fixes to wxLocale::GetSystemLanguage(), test code for it added to the console...
[wxWidgets.git] / include / wx / mac / statbmp.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbmp.h
3// Purpose: wxStaticBitmap class
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_STATBMP_H_
13#define _WX_STATBMP_H_
14
15#ifdef __GNUG__
16#pragma interface "statbmp.h"
17#endif
18
19#include "wx/control.h"
20
21WXDLLEXPORT_DATA(extern const char*) wxStaticBitmapNameStr;
22
23class WXDLLEXPORT wxStaticBitmap: public wxControl
24{
25 DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
26 public:
27 inline wxStaticBitmap() { }
28
29 inline wxStaticBitmap(wxWindow *parent, wxWindowID id,
30 const wxBitmap& label,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = 0,
34 const wxString& name = wxStaticBitmapNameStr)
35 {
36 Create(parent, id, label, pos, size, style, name);
37 }
38
39 bool Create(wxWindow *parent, wxWindowID id,
40 const wxBitmap& label,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
43 long style = 0,
44 const wxString& name = wxStaticBitmapNameStr);
45
46 virtual void SetBitmap(const wxBitmap& bitmap);
47
48 virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
49 virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
519cb848 50 virtual void OnPaint( wxPaintEvent &event ) ;
0dbd6262
SC
51 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
52
53 inline wxBitmap& GetBitmap() const { return (wxBitmap&) m_messageBitmap; }
54
56d4016a
SC
55 // for compatibility with wxMSW
56 const wxIcon& GetIcon() const
57 {
58 // don't use wxDynamicCast, icons and bitmaps are really the same thing
59 // in wxGTK
60 return (const wxIcon &)m_messageBitmap;
61 }
62
63 // for compatibility with wxMSW
64 void SetIcon(const wxIcon& icon)
65 {
66 SetBitmap( icon );
67 }
68
0dbd6262
SC
69 // overriden base class virtuals
70 virtual bool AcceptsFocus() const { return FALSE; }
4765d335 71 wxSize DoGetBestSize() const ;
0dbd6262
SC
72
73 protected:
74 wxBitmap m_messageBitmap;
519cb848 75 DECLARE_EVENT_TABLE()
0dbd6262
SC
76};
77
78#endif
79 // _WX_STATBMP_H_