]> git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/frame.h
#define WINVER as 0x400 if it is not defined at all
[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
18 class WXDLLEXPORT wxFrame: public wxFrameBase
19 {
20 DECLARE_EVENT_TABLE()
21 DECLARE_DYNAMIC_CLASS(wxFrame)
22 // ------------------------------------------------------------------------
23 // initialization
24 // ------------------------------------------------------------------------
25 public:
26 wxFrame() { Init(); }
27 wxFrame(wxWindow *parent,
28 wxWindowID winid,
29 const wxString& title,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& size = wxDefaultSize,
32 long style = wxDEFAULT_FRAME_STYLE,
33 const wxString& name = wxFrameNameStr)
34 {
35 Init();
36 Create(parent, winid, title, pos, size, style, name);
37 }
38
39 virtual ~wxFrame();
40
41 bool Create(wxWindow *parent,
42 wxWindowID winid,
43 const wxString& title,
44 const wxPoint& pos = wxDefaultPosition,
45 const wxSize& size = wxDefaultSize,
46 long style = wxDEFAULT_FRAME_STYLE,
47 const wxString& name = wxFrameNameStr);
48 protected:
49 void Init();
50 // ------------------------------------------------------------------------
51 // Cocoa specifics
52 // ------------------------------------------------------------------------
53 protected:
54 virtual void Cocoa_wxMenuItemAction(wxMenuItem& item);
55 // ------------------------------------------------------------------------
56 // Implementation
57 // ------------------------------------------------------------------------
58 public:
59 void AttachMenuBar(wxMenuBar *mbar);
60 void DetachMenuBar();
61
62 // implementation only from now on
63 // -------------------------------
64
65 // override some more virtuals
66 virtual bool Show( bool show = true );
67
68 // get the origin of the client area (which may be different from (0, 0)
69 // if the frame has a toolbar) in client coordinates
70 virtual wxPoint GetClientAreaOrigin() const;
71 };
72
73 #endif // _WX_COCOA_FRAME_H_