mac toplevel window added
[wxWidgets.git] / include / wx / mac / frame.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: frame.h
3 // Purpose: wxFrameMac class
4 // Author: AUTHOR
5 // Modified by:
6 // Created: ??/??/98
7 // RCS-ID: $Id$
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_FRAME_H_
13 #define _WX_FRAME_H_
14
15 #ifdef __GNUG__
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 char*) wxFrameNameStr;
25 WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr;
26
27 class WXDLLEXPORT wxMenuBar;
28 class WXDLLEXPORT wxStatusBar;
29 class WXDLLEXPORT wxMacToolTip ;
30
31 class WXDLLEXPORT wxFrameMac: public wxFrameBase {
32
33 DECLARE_DYNAMIC_CLASS(wxFrameMac)
34
35 public:
36 // construction
37 wxFrameMac() { Init(); }
38 wxFrameMac(wxWindow *parent,
39 wxWindowID id,
40 const wxString& title,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
43 long style = wxDEFAULT_FRAME_STYLE,
44 const wxString& name = wxFrameNameStr)
45 {
46 Init();
47
48 Create(parent, id, title, pos, size, style, name);
49 }
50
51 bool Create(wxWindow *parent,
52 wxWindowID id,
53 const wxString& title,
54 const wxPoint& pos = wxDefaultPosition,
55 const wxSize& size = wxDefaultSize,
56 long style = wxDEFAULT_FRAME_STYLE,
57 const wxString& name = wxFrameNameStr);
58
59 virtual ~wxFrameMac();
60
61 // implementation only from now on
62 // -------------------------------
63
64 // override some more virtuals
65 virtual bool Enable(bool enable) ;
66
67 // get the origin of the client area (which may be different from (0, 0)
68 // if the frame has a toolbar) in client coordinates
69 virtual wxPoint GetClientAreaOrigin() const;
70
71 // event handlers
72 void OnActivate(wxActivateEvent& event);
73 void OnSysColourChanged(wxSysColourChangedEvent& event);
74
75 // Toolbar
76 #if wxUSE_TOOLBAR
77 virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT,
78 wxWindowID id = -1,
79 const wxString& name = wxToolBarNameStr);
80
81 virtual void PositionToolBar();
82 #endif // wxUSE_TOOLBAR
83
84 // Status bar
85 #if wxUSE_STATUSBAR
86 virtual wxStatusBar* OnCreateStatusBar(int number = 1,
87 long style = wxST_SIZEGRIP,
88 wxWindowID id = 0,
89 const wxString& name = wxStatusLineNameStr);
90
91 virtual void PositionStatusBar();
92
93 // Hint to tell framework which status bar to use
94 // TODO: should this go into a wxFrameworkSettings class perhaps?
95 static void UseNativeStatusBar(bool useNative) { m_useNativeStatusBar = useNative; };
96 static bool UsesNativeStatusBar() { return m_useNativeStatusBar; };
97 #endif // wxUSE_STATUSBAR
98
99 // tooltip management
100 #if wxUSE_TOOLTIPS
101 wxMacToolTip* GetToolTipCtrl() const { return m_hwndToolTip; }
102 void SetToolTipCtrl(wxMacToolTip *tt) { m_hwndToolTip = tt; }
103 wxMacToolTip* m_hwndToolTip ;
104 #endif // tooltips
105
106 protected:
107 // common part of all ctors
108 void Init();
109
110 // override base class virtuals
111 virtual void DoGetClientSize(int *width, int *height) const;
112 virtual void DoSetClientSize(int width, int height);
113
114 protected:
115 #if wxUSE_STATUSBAR
116 static bool m_useNativeStatusBar;
117 #endif // wxUSE_STATUSBAR
118 // the last focused child: we restore focus to it on activation
119 wxWindow *m_winLastFocused;
120
121 private:
122 DECLARE_EVENT_TABLE()
123 };
124
125 #endif
126 // _WX_FRAME_H_