]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/statbox.h
range with m_minimumPaneSize and m_maximumPaneSize
[wxWidgets.git] / include / wx / motif / statbox.h
CommitLineData
9b6dbb09
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbox.h
3// Purpose: wxStaticBox class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_STATBOX_H_
13#define _WX_STATBOX_H_
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
24class WXDLLEXPORT wxStaticBox: public wxControl
25{
26 DECLARE_DYNAMIC_CLASS(wxStaticBox)
27
28 public:
47bc1060 29 wxStaticBox();
9b6dbb09
JS
30 inline wxStaticBox(wxWindow *parent, wxWindowID id,
31 const wxString& label,
32 const wxPoint& pos = wxDefaultPosition,
33 const wxSize& size = wxDefaultSize,
34 long style = 0,
35 const wxString& name = wxStaticBoxNameStr)
36 {
37 Create(parent, id, label, pos, size, style, name);
38 }
39
40 bool Create(wxWindow *parent, wxWindowID id,
41 const wxString& label,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = 0,
45 const wxString& name = wxStaticBoxNameStr);
46
47 virtual void Command(wxCommandEvent& WXUNUSED(event)) {};
48 virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
49
50 void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
4fabb575
JS
51 void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
52 { wxWindow::SetSize(rect, sizeFlags); }
53 void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
54
9b6dbb09 55 void SetLabel(const wxString& label);
47bc1060
JS
56 wxString GetLabel() const;
57
0d57be45 58// Implementation
4b5f3fe6 59 virtual void ChangeFont(bool keepOriginalSize = TRUE);
0d57be45
JS
60 virtual void ChangeBackgroundColour();
61 virtual void ChangeForegroundColour();
47bc1060
JS
62 WXWidget GetTopWidget() const { return m_formWidget; }
63 WXWidget GetLabelWidget() const { return m_labelWidget; }
9b6dbb09
JS
64
65DECLARE_EVENT_TABLE()
47bc1060
JS
66
67protected:
68 // Motif-specific
69 WXWidget m_formWidget;
70 WXWidget m_labelWidget;
9b6dbb09
JS
71};
72
73#endif
74 // _WX_STATBOX_H_