]> git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/frame.h
Position the status bar properly
[wxWidgets.git] / include / wx / cocoa / frame.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/frame.h
3 // Purpose: wxFrame class
4 // Author: David Elliott
5 // Modified by:
6 // Created: 2003/03/16
7 // RCS-ID: $Id:
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_COCOA_FRAME_H_
13 #define _WX_COCOA_FRAME_H_
14
15 class WXDLLEXPORT wxMenuBar;
16 class WXDLLEXPORT wxMenuItem;
17 class WXDLLEXPORT wxStatusBar;
18
19 class WXDLLEXPORT wxFrame: public wxFrameBase
20 {
21 DECLARE_EVENT_TABLE()
22 DECLARE_DYNAMIC_CLASS(wxFrame)
23 // ------------------------------------------------------------------------
24 // initialization
25 // ------------------------------------------------------------------------
26 public:
27 wxFrame() { Init(); }
28 wxFrame(wxWindow *parent,
29 wxWindowID winid,
30 const wxString& title,
31 const wxPoint& pos = wxDefaultPosition,
32 const wxSize& size = wxDefaultSize,
33 long style = wxDEFAULT_FRAME_STYLE,
34 const wxString& name = wxFrameNameStr)
35 {
36 Init();
37 Create(parent, winid, title, pos, size, style, name);
38 }
39
40 virtual ~wxFrame();
41
42 bool Create(wxWindow *parent,
43 wxWindowID winid,
44 const wxString& title,
45 const wxPoint& pos = wxDefaultPosition,
46 const wxSize& size = wxDefaultSize,
47 long style = wxDEFAULT_FRAME_STYLE,
48 const wxString& name = wxFrameNameStr);
49 protected:
50 void Init();
51 // ------------------------------------------------------------------------
52 // Cocoa specifics
53 // ------------------------------------------------------------------------
54 protected:
55 virtual void Cocoa_wxMenuItemAction(wxMenuItem& item);
56 // ------------------------------------------------------------------------
57 // Implementation
58 // ------------------------------------------------------------------------
59 public:
60 void AttachMenuBar(wxMenuBar *mbar);
61 void DetachMenuBar();
62
63 // implementation only from now on
64 // -------------------------------
65
66 // override some more virtuals
67 virtual bool Show( bool show = true );
68
69 // get the origin of the client area (which may be different from (0, 0)
70 // if the frame has a toolbar) in client coordinates
71 virtual wxPoint GetClientAreaOrigin() const;
72
73 protected:
74 // Catch the Cocoa size event
75 virtual void Cocoa_FrameChanged(void);
76 void PositionStatusBar();
77 // override base class virtuals
78 virtual void DoGetClientSize(int *width, int *height) const;
79 virtual void DoSetClientSize(int width, int height);
80 };
81
82 #endif // _WX_COCOA_FRAME_H_