]> git.saurik.com Git - wxWidgets.git/blame - include/wx/cocoa/frame.h
Implement wxGauge
[wxWidgets.git] / include / wx / cocoa / frame.h
CommitLineData
fb896a32
DE
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
15class WXDLLEXPORT wxMenuBar;
a58a6614 16class WXDLLEXPORT wxStatusBar;
fb896a32
DE
17
18class WXDLLEXPORT wxFrame: public wxFrameBase
19{
20 DECLARE_EVENT_TABLE()
21 DECLARE_DYNAMIC_CLASS(wxFrame)
22// ------------------------------------------------------------------------
23// initialization
24// ------------------------------------------------------------------------
25public:
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);
48protected:
49 void Init();
50// ------------------------------------------------------------------------
51// Cocoa specifics
52// ------------------------------------------------------------------------
24c7767f
DE
53public:
54 virtual wxMenuBar* GetAppMenuBar() { return GetMenuBar(); }
fb896a32 55protected:
e08efb8d 56 virtual void CocoaSetWxWindowSize(int width, int height);
448cbf1d
DE
57
58 // Helper function to position status/tool bars
59 void UpdateFrameNSView();
60
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;
fb896a32
DE
64// ------------------------------------------------------------------------
65// Implementation
66// ------------------------------------------------------------------------
67public:
24c7767f
DE
68 virtual void AttachMenuBar(wxMenuBar *mbar);
69 virtual void DetachMenuBar();
70 virtual void SetMenuBar(wxMenuBar *menubar);
fb896a32
DE
71
72 // implementation only from now on
73 // -------------------------------
74
75 // override some more virtuals
fb896a32
DE
76
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;
a58a6614 80
448cbf1d
DE
81 // create the main status bar by calling OnCreateStatusBar()
82 virtual wxStatusBar* CreateStatusBar(int number = 1,
83 long style = wxST_SIZEGRIP,
84 wxWindowID winid = 0,
85 const wxString& name =
86 wxStatusLineNameStr);
87 // sets the main status bar
88 void SetStatusBar(wxStatusBar *statBar);
1d2412f7 89#if wxUSE_TOOLBAR
448cbf1d
DE
90 // create main toolbar bycalling OnCreateToolBar()
91 virtual wxToolBar* CreateToolBar(long style = -1,
92 wxWindowID winid = -1,
93 const wxString& name = wxToolBarNameStr);
94 // sets the main tool bar
95 virtual void SetToolBar(wxToolBar *toolbar);
1d2412f7 96#endif //wxUSE_TOOLBAR
a58a6614 97protected:
a58a6614 98 void PositionStatusBar();
fb896a32
DE
99};
100
101#endif // _WX_COCOA_FRAME_H_