]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/frame.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFrameMac class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "frame.h"
19 #include "wx/window.h"
20 #include "wx/toolbar.h"
24 WXDLLEXPORT_DATA(extern const char*) wxFrameNameStr
;
25 WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr
;
27 class WXDLLEXPORT wxMenuBar
;
28 class WXDLLEXPORT wxStatusBar
;
29 class WXDLLEXPORT wxMacToolTip
;
31 class WXDLLEXPORT wxFrameMac
: public wxFrameBase
{
33 DECLARE_DYNAMIC_CLASS(wxFrameMac
)
37 wxFrameMac() { Init(); }
38 wxFrameMac(wxWindow
*parent
,
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
)
48 Create(parent
, id
, title
, pos
, size
, style
, name
);
51 bool Create(wxWindow
*parent
,
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
);
59 virtual ~wxFrameMac();
61 // implementation only from now on
62 // -------------------------------
64 // override some more virtuals
65 virtual bool Enable(bool enable
) ;
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;
72 void OnActivate(wxActivateEvent
& event
);
73 void OnSysColourChanged(wxSysColourChangedEvent
& event
);
77 virtual wxToolBar
* CreateToolBar(long style
= wxNO_BORDER
| wxTB_HORIZONTAL
| wxTB_FLAT
,
79 const wxString
& name
= wxToolBarNameStr
);
81 virtual void PositionToolBar();
82 #endif // wxUSE_TOOLBAR
86 virtual wxStatusBar
* OnCreateStatusBar(int number
= 1,
87 long style
= wxST_SIZEGRIP
,
89 const wxString
& name
= wxStatusLineNameStr
);
91 virtual void PositionStatusBar();
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
101 wxMacToolTip
* GetToolTipCtrl() const { return m_hwndToolTip
; }
102 void SetToolTipCtrl(wxMacToolTip
*tt
) { m_hwndToolTip
= tt
; }
103 wxMacToolTip
* m_hwndToolTip
;
107 // common part of all ctors
110 // override base class virtuals
111 virtual void DoGetClientSize(int *width
, int *height
) const;
112 virtual void DoSetClientSize(int width
, int height
);
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
;
122 DECLARE_EVENT_TABLE()