]>
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 virtual void CocoaSetWxWindowSize(int width
, int height
);
58 // Helper function to position status/tool bars
59 void UpdateFrameNSView();
61 virtual void CocoaReplaceView(WX_NSView oldView
, WX_NSView newView
);
62 // frameNSView is used whenever a statusbar/generic toolbar are present
63 WX_NSView m_frameNSView
;
64 // ------------------------------------------------------------------------
66 // ------------------------------------------------------------------------
68 void AttachMenuBar(wxMenuBar
*mbar
);
71 // implementation only from now on
72 // -------------------------------
74 // override some more virtuals
75 virtual bool Show( bool show
= true );
77 // get the origin of the client area (which may be different from (0, 0)
78 // if the frame has a toolbar) in client coordinates
79 virtual wxPoint
GetClientAreaOrigin() const;
81 // create the main status bar by calling OnCreateStatusBar()
82 virtual wxStatusBar
* CreateStatusBar(int number
= 1,
83 long style
= wxST_SIZEGRIP
,
85 const wxString
& name
=
87 // sets the main status bar
88 void SetStatusBar(wxStatusBar
*statBar
);
89 // create main toolbar bycalling OnCreateToolBar()
90 virtual wxToolBar
* CreateToolBar(long style
= -1,
91 wxWindowID winid
= -1,
92 const wxString
& name
= wxToolBarNameStr
);
93 // sets the main tool bar
94 virtual void SetToolBar(wxToolBar
*toolbar
);
96 void PositionStatusBar();
99 #endif // _WX_COCOA_FRAME_H_