]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/statbmp.h
Added stub include files; also a couple more Dialog Editor files.
[wxWidgets.git] / include / wx / msw / statbmp.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbmp.h
3// Purpose: wxStaticBitmap class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_STATBMP_H_
13#define _WX_STATBMP_H_
2bda0e17
KB
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(void) { }
28
debe6624 29 inline wxStaticBitmap(wxWindow *parent, wxWindowID id,
2bda0e17
KB
30 const wxBitmap& label,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
debe6624 33 long style = 0,
2bda0e17
KB
34 const wxString& name = wxStaticBitmapNameStr)
35 {
36 Create(parent, id, label, pos, size, style, name);
37 }
38
debe6624 39 bool Create(wxWindow *parent, wxWindowID id,
2bda0e17
KB
40 const wxBitmap& label,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
debe6624 43 long style = 0,
2bda0e17
KB
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)) {};
50
debe6624 51 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
2bda0e17
KB
52
53 inline wxBitmap& GetBitmap(void) const { return (wxBitmap&) m_messageBitmap; }
54
19ddda84
VZ
55 // overriden base class virtuals
56 virtual bool AcceptsFocus() const { return FALSE; }
57
2bda0e17
KB
58 // Implementation
59 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
60 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
61 protected:
62 wxBitmap m_messageBitmap;
63
64};
65
66#endif
bbcdf8bc 67 // _WX_STATBMP_H_