]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/frame.h
hide the MDI parent frame instead of just moving it away (why didn't I do it like...
[wxWidgets.git] / include / wx / mac / carbon / frame.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: frame.h
3 // Purpose: wxFrame class
4 // Author: Stefan Csomor
5 // Modified by:
6 // Created: 1998-01-01
7 // RCS-ID: $Id$
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_FRAME_H_
13 #define _WX_FRAME_H_
14
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "frame.h"
17 #endif
18
19 #include "wx/window.h"
20 #include "wx/toolbar.h"
21 #include "wx/accel.h"
22 #include "wx/icon.h"
23
24 WXDLLEXPORT_DATA(extern const wxChar*) wxFrameNameStr;
25 WXDLLEXPORT_DATA(extern const wxChar*) wxToolBarNameStr;
26
27 class WXDLLEXPORT wxMenuBar;
28 class WXDLLEXPORT wxStatusBar;
29 class WXDLLEXPORT wxMacToolTip ;
30
31 class WXDLLEXPORT wxFrame: public wxFrameBase
32 {
33 public:
34 // construction
35 wxFrame() { Init(); }
36 wxFrame(wxWindow *parent,
37 wxWindowID id,
38 const wxString& title,
39 const wxPoint& pos = wxDefaultPosition,
40 const wxSize& size = wxDefaultSize,
41 long style = wxDEFAULT_FRAME_STYLE,
42 const wxString& name = wxFrameNameStr)
43 {
44 Init();
45
46 Create(parent, id, title, pos, size, style, name);
47 }
48
49 bool Create(wxWindow *parent,
50 wxWindowID id,
51 const wxString& title,
52 const wxPoint& pos = wxDefaultPosition,
53 const wxSize& size = wxDefaultSize,
54 long style = wxDEFAULT_FRAME_STYLE,
55 const wxString& name = wxFrameNameStr);
56
57 virtual ~wxFrame();
58
59 // implementation only from now on
60 // -------------------------------
61
62 // get the origin of the client area (which may be different from (0, 0)
63 // if the frame has a toolbar) in client coordinates
64 virtual wxPoint GetClientAreaOrigin() const;
65
66 // override some more virtuals
67 virtual bool Enable(bool enable = TRUE) ;
68
69 // event handlers
70 void OnActivate(wxActivateEvent& event);
71 void OnSysColourChanged(wxSysColourChangedEvent& event);
72
73 // Toolbar
74 #if wxUSE_TOOLBAR
75 virtual wxToolBar* CreateToolBar(long style = -1,
76 wxWindowID id = -1,
77 const wxString& name = wxToolBarNameStr);
78
79 virtual void PositionToolBar();
80 virtual void SetToolBar(wxToolBar *toolbar);
81 #endif // wxUSE_TOOLBAR
82
83 // Status bar
84 #if wxUSE_STATUSBAR
85 virtual wxStatusBar* OnCreateStatusBar(int number = 1,
86 long style = wxST_SIZEGRIP,
87 wxWindowID id = 0,
88 const wxString& name = wxStatusLineNameStr);
89
90 virtual void PositionStatusBar();
91 #endif // wxUSE_STATUSBAR
92
93 // tooltip management
94 #if wxUSE_TOOLTIPS
95 wxMacToolTip* GetToolTipCtrl() const { return m_hwndToolTip; }
96 void SetToolTipCtrl(wxMacToolTip *tt) { m_hwndToolTip = tt; }
97 wxMacToolTip* m_hwndToolTip ;
98 #endif // tooltips
99
100 // called by wxWindow whenever it gets focus
101 void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
102 wxWindow *GetLastFocus() const { return m_winLastFocused; }
103
104 protected:
105 // common part of all ctors
106 void Init();
107
108 // override base class virtuals
109 virtual void DoGetClientSize(int *width, int *height) const;
110 virtual void DoSetClientSize(int width, int height);
111
112 virtual void DetachMenuBar();
113 virtual void AttachMenuBar(wxMenuBar *menubar);
114
115 protected:
116 // the last focused child: we restore focus to it on activation
117 wxWindow *m_winLastFocused;
118
119 virtual bool MacIsChildOfClientArea( const wxWindow* child ) const ;
120
121 private:
122 DECLARE_EVENT_TABLE()
123 DECLARE_DYNAMIC_CLASS(wxFrame)
124 };
125
126 #endif
127 // _WX_FRAME_H_