]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/frame.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/frame.h
3 // Purpose: wxFrame class
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_COCOA_FRAME_H_
13 #define _WX_COCOA_FRAME_H_
15 class WXDLLEXPORT wxMenuBar
;
16 class WXDLLEXPORT wxMenuItem
;
17 class WXDLLEXPORT wxStatusBar
;
19 class WXDLLEXPORT wxFrame
: public wxFrameBase
22 DECLARE_DYNAMIC_CLASS(wxFrame
)
23 // ------------------------------------------------------------------------
25 // ------------------------------------------------------------------------
28 wxFrame(wxWindow
*parent
,
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
)
37 Create(parent
, winid
, title
, pos
, size
, style
, name
);
42 bool Create(wxWindow
*parent
,
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
);
51 // ------------------------------------------------------------------------
53 // ------------------------------------------------------------------------
55 virtual void Cocoa_wxMenuItemAction(wxMenuItem
& item
);
56 // ------------------------------------------------------------------------
58 // ------------------------------------------------------------------------
60 void AttachMenuBar(wxMenuBar
*mbar
);
63 // implementation only from now on
64 // -------------------------------
66 // override some more virtuals
67 virtual bool Show( bool show
= true );
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;
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
);
82 #endif // _WX_COCOA_FRAME_H_