]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/frame.h
moved MGL initialization to earlier stage (crashes otherwise...) and implemented...
[wxWidgets.git] / include / wx / mac / frame.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.h
e766c8a9 3// Purpose: wxFrameMac class
0dbd6262
SC
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"
519cb848 22#include "wx/icon.h"
0dbd6262
SC
23
24WXDLLEXPORT_DATA(extern const char*) wxFrameNameStr;
25WXDLLEXPORT_DATA(extern const char*) wxToolBarNameStr;
26
27class WXDLLEXPORT wxMenuBar;
28class WXDLLEXPORT wxStatusBar;
519cb848 29class WXDLLEXPORT wxMacToolTip ;
0dbd6262 30
e766c8a9 31class WXDLLEXPORT wxFrameMac: public wxFrameBase {
0dbd6262 32
e766c8a9 33 DECLARE_DYNAMIC_CLASS(wxFrameMac)
0dbd6262
SC
34
35public:
05adb9d2 36 // construction
e766c8a9
SC
37 wxFrameMac() { Init(); }
38 wxFrameMac(wxWindow *parent,
05adb9d2
SC
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
e766c8a9 59 virtual ~wxFrameMac();
05adb9d2 60
05adb9d2
SC
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
519cb848 76#if wxUSE_TOOLBAR
05adb9d2
SC
77 virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT,
78 wxWindowID id = -1,
79 const wxString& name = wxToolBarNameStr);
519cb848 80
05adb9d2
SC
81 virtual void PositionToolBar();
82#endif // wxUSE_TOOLBAR
519cb848 83
05adb9d2
SC
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);
0dbd6262 90
05adb9d2 91 virtual void PositionStatusBar();
0dbd6262
SC
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; };
05adb9d2 97#endif // wxUSE_STATUSBAR
0dbd6262 98
05adb9d2 99 // tooltip management
519cb848
SC
100#if wxUSE_TOOLTIPS
101 wxMacToolTip* GetToolTipCtrl() const { return m_hwndToolTip; }
e7549107
SC
102 void SetToolTipCtrl(wxMacToolTip *tt) { m_hwndToolTip = tt; }
103 wxMacToolTip* m_hwndToolTip ;
519cb848 104#endif // tooltips
0dbd6262
SC
105
106protected:
05adb9d2
SC
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
114protected:
05adb9d2
SC
115#if wxUSE_STATUSBAR
116 static bool m_useNativeStatusBar;
117#endif // wxUSE_STATUSBAR
7810c95b
SC
118 // the last focused child: we restore focus to it on activation
119 wxWindow *m_winLastFocused;
0dbd6262 120
05adb9d2
SC
121private:
122 DECLARE_EVENT_TABLE()
0dbd6262
SC
123};
124
125#endif
126 // _WX_FRAME_H_