]> git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/statbox.h
extracted platform-specific code to determine static box borders to wxStaticBox:...
[wxWidgets.git] / include / wx / cocoa / statbox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/statbox.h
3 // Purpose: wxStaticBox class
4 // Author: David Elliott
5 // Modified by:
6 // Created: 2003/03/18
7 // RCS-ID: $Id:
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef __WX_COCOA_STATBOX_H__
13 #define __WX_COCOA_STATBOX_H__
14
15 #include "wx/cocoa/NSBox.h"
16
17 // ========================================================================
18 // wxStaticBox
19 // ========================================================================
20 class WXDLLEXPORT wxStaticBox: public wxStaticBoxBase, protected wxCocoaNSBox
21 {
22 DECLARE_DYNAMIC_CLASS(wxStaticBox)
23 DECLARE_EVENT_TABLE()
24 WX_DECLARE_COCOA_OWNER(NSBox,NSView,NSView)
25 // ------------------------------------------------------------------------
26 // initialization
27 // ------------------------------------------------------------------------
28 public:
29 wxStaticBox() { }
30 wxStaticBox(wxWindow *parent, wxWindowID winid, const wxString& title,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = 0, const wxString& name = wxStaticBoxNameStr)
34 {
35 Create(parent, winid, title, pos, size, style, name);
36 }
37
38 bool Create(wxWindow *parent, wxWindowID winid, const wxString& title,
39 const wxPoint& pos = wxDefaultPosition,
40 const wxSize& size = wxDefaultSize,
41 long style = 0, const wxString& name = wxStaticBoxNameStr);
42 virtual ~wxStaticBox();
43
44 // ------------------------------------------------------------------------
45 // Cocoa callbacks
46 // ------------------------------------------------------------------------
47 protected:
48 // Static boxes cannot be enabled/disabled
49 virtual void CocoaSetEnabled(bool enable) { }
50 // ------------------------------------------------------------------------
51 // Implementation
52 // ------------------------------------------------------------------------
53 public:
54 virtual void GetBordersForSizer(int *borderTop, int *borderOther) const;
55 protected:
56 };
57
58 #endif // __WX_COCOA_STATBOX_H__