]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/statbox.h
added JPEG support
[wxWidgets.git] / include / wx / msw / statbox.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbox.h
3// Purpose: wxStaticBox 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_STATBOX_H_
13#define _WX_STATBOX_H_
2bda0e17
KB
14
15#ifdef __GNUG__
16#pragma interface "statbox.h"
17#endif
18
19#include "wx/control.h"
20
21WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr;
22
23// Group box
06b57134 24class WXDLLEXPORT wxStaticBox : public wxControl
2bda0e17 25{
06b57134
VZ
26DECLARE_DYNAMIC_CLASS(wxStaticBox)
27
28public:
29 wxStaticBox() {}
2bda0e17 30
06b57134
VZ
31 wxStaticBox(wxWindow *parent, wxWindowID id,
32 const wxString& label,
33 const wxPoint& pos = wxDefaultPosition,
34 const wxSize& size = wxDefaultSize,
35 long style = 0,
36 const wxString& name = wxStaticBoxNameStr)
37 {
38 Create(parent, id, label, pos, size, style, name);
39 }
40
41 bool Create(wxWindow *parent, wxWindowID id,
42 const wxString& label,
43 const wxPoint& pos = wxDefaultPosition,
44 const wxSize& size = wxDefaultSize,
45 long style = 0,
46 const wxString& name = wxStaticBoxNameStr);
47
48 virtual void Command(wxCommandEvent& WXUNUSED(event)) { }
49 virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) { }
50
51 void OnEraseBackground(wxEraseEvent& event);
52
53 virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
54
55 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
56 void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
57 { wxWindow::SetSize(rect, sizeFlags); }
58 void SetSize(const wxSize& size)
59 { wxWindow::SetSize(size); }
60 void SetLabel(const wxString& label);
2bda0e17 61
06b57134
VZ
62 virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
63 WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
64
65 // overriden base class virtuals
66 virtual bool AcceptsFocus() const { return FALSE; }
67
68private:
69 DECLARE_EVENT_TABLE()
2bda0e17
KB
70};
71
72#endif
bbcdf8bc 73 // _WX_STATBOX_H_