]>
Commit | Line | Data |
---|---|---|
0dbd6262 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: frame.h | |
0d53fc34 | 3 | // Purpose: wxFrame class |
a31a5f85 | 4 | // Author: Stefan Csomor |
0dbd6262 | 5 | // Modified by: |
a31a5f85 | 6 | // Created: 1998-01-01 |
0dbd6262 | 7 | // RCS-ID: $Id$ |
a31a5f85 | 8 | // Copyright: (c) Stefan Csomor |
a7b51bc8 | 9 | // Licence: wxWindows licence |
0dbd6262 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_FRAME_H_ | |
13 | #define _WX_FRAME_H_ | |
14 | ||
af49c4b8 | 15 | #if defined(__GNUG__) && !defined(__APPLE__) |
0dbd6262 SC |
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 | 23 | |
c4e41ce3 SC |
24 | WXDLLEXPORT_DATA(extern const wxChar*) wxFrameNameStr; |
25 | WXDLLEXPORT_DATA(extern const wxChar*) wxToolBarNameStr; | |
0dbd6262 SC |
26 | |
27 | class WXDLLEXPORT wxMenuBar; | |
28 | class WXDLLEXPORT wxStatusBar; | |
519cb848 | 29 | class WXDLLEXPORT wxMacToolTip ; |
0dbd6262 | 30 | |
551a6c64 SC |
31 | class WXDLLEXPORT wxFrame: public wxFrameBase |
32 | { | |
0dbd6262 | 33 | public: |
05adb9d2 | 34 | // construction |
0d53fc34 VS |
35 | wxFrame() { Init(); } |
36 | wxFrame(wxWindow *parent, | |
05adb9d2 SC |
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 | ||
0d53fc34 | 57 | virtual ~wxFrame(); |
05adb9d2 | 58 | |
05adb9d2 SC |
59 | // implementation only from now on |
60 | // ------------------------------- | |
61 | ||
62 | // override some more virtuals | |
a7b51bc8 | 63 | virtual bool Enable(bool enable = TRUE) ; |
05adb9d2 SC |
64 | |
65 | // get the origin of the client area (which may be different from (0, 0) | |
66 | // if the frame has a toolbar) in client coordinates | |
67 | virtual wxPoint GetClientAreaOrigin() const; | |
68 | ||
69 | // event handlers | |
70 | void OnActivate(wxActivateEvent& event); | |
71 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
72 | ||
73 | // Toolbar | |
519cb848 | 74 | #if wxUSE_TOOLBAR |
f9dae779 | 75 | virtual wxToolBar* CreateToolBar(long style = -1, |
05adb9d2 SC |
76 | wxWindowID id = -1, |
77 | const wxString& name = wxToolBarNameStr); | |
519cb848 | 78 | |
05adb9d2 SC |
79 | virtual void PositionToolBar(); |
80 | #endif // wxUSE_TOOLBAR | |
519cb848 | 81 | |
05adb9d2 SC |
82 | // Status bar |
83 | #if wxUSE_STATUSBAR | |
84 | virtual wxStatusBar* OnCreateStatusBar(int number = 1, | |
85 | long style = wxST_SIZEGRIP, | |
86 | wxWindowID id = 0, | |
87 | const wxString& name = wxStatusLineNameStr); | |
0dbd6262 | 88 | |
05adb9d2 | 89 | virtual void PositionStatusBar(); |
05adb9d2 | 90 | #endif // wxUSE_STATUSBAR |
0dbd6262 | 91 | |
05adb9d2 | 92 | // tooltip management |
519cb848 SC |
93 | #if wxUSE_TOOLTIPS |
94 | wxMacToolTip* GetToolTipCtrl() const { return m_hwndToolTip; } | |
e7549107 SC |
95 | void SetToolTipCtrl(wxMacToolTip *tt) { m_hwndToolTip = tt; } |
96 | wxMacToolTip* m_hwndToolTip ; | |
519cb848 | 97 | #endif // tooltips |
0dbd6262 | 98 | |
b821344e SC |
99 | // called by wxWindow whenever it gets focus |
100 | void SetLastFocus(wxWindow *win) { m_winLastFocused = win; } | |
101 | wxWindow *GetLastFocus() const { return m_winLastFocused; } | |
102 | ||
0dbd6262 | 103 | protected: |
05adb9d2 SC |
104 | // common part of all ctors |
105 | void Init(); | |
106 | ||
107 | // override base class virtuals | |
108 | virtual void DoGetClientSize(int *width, int *height) const; | |
109 | virtual void DoSetClientSize(int width, int height); | |
110 | ||
2b5f62a0 VZ |
111 | virtual void DetachMenuBar(); |
112 | virtual void AttachMenuBar(wxMenuBar *menubar); | |
113 | ||
05adb9d2 | 114 | protected: |
7810c95b SC |
115 | // the last focused child: we restore focus to it on activation |
116 | wxWindow *m_winLastFocused; | |
0dbd6262 | 117 | |
05adb9d2 SC |
118 | private: |
119 | DECLARE_EVENT_TABLE() | |
0d53fc34 | 120 | DECLARE_DYNAMIC_CLASS(wxFrame) |
0dbd6262 SC |
121 | }; |
122 | ||
123 | #endif | |
124 | // _WX_FRAME_H_ |