disable use of #pragma interface under Mac OS X
[wxWidgets.git] / include / wx / motif / statbox.h
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 #if defined(__GNUG__) && !defined(__APPLE__)
16 #pragma interface "statbox.h"
17 #endif
18
19 WXDLLEXPORT_DATA(extern const char*) wxStaticBoxNameStr;
20
21 // Group box
22 class WXDLLEXPORT wxStaticBox: public wxStaticBoxBase
23 {
24 DECLARE_DYNAMIC_CLASS(wxStaticBox)
25
26 public:
27 wxStaticBox();
28 wxStaticBox(wxWindow *parent, wxWindowID id,
29 const wxString& label,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& size = wxDefaultSize,
32 long style = 0,
33 const wxString& name = wxStaticBoxNameStr)
34 {
35 Create(parent, id, label, pos, size, style, name);
36 }
37
38 ~wxStaticBox();
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 bool ProcessCommand(wxCommandEvent& WXUNUSED(event))
48 {
49 return FALSE;
50 }
51
52 virtual WXWidget GetLabelWidget() const { return m_labelWidget; }
53
54 virtual void SetLabel(const wxString& label);
55
56 private:
57 WXWidget m_labelWidget;
58
59 private:
60 DECLARE_EVENT_TABLE()
61 };
62
63 #endif
64 // _WX_STATBOX_H_