]> git.saurik.com Git - wxWidgets.git/blame - include/wx/os2/frame.h
Fix memory leak by letting the base class version handle the
[wxWidgets.git] / include / wx / os2 / frame.h
CommitLineData
0e320a79
DW
1/////////////////////////////////////////////////////////////////////////////
2// Name: frame.h
3// Purpose: wxFrame class
21802234 4// Author: David Webster
0e320a79 5// Modified by:
29435d81 6// Created: 10/27/99
0e320a79 7// RCS-ID: $Id$
21802234 8// Copyright: (c) David Webster
77ffb593 9// Licence: wxWidgets licence
0e320a79
DW
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_FRAME_H_
13#define _WX_FRAME_H_
14
61243a51
DW
15//
16// Get the default resource ID's for frames
17//
1d3d992e 18#include "wx/os2/wxrsc.h"
61243a51 19
0d53fc34 20class WXDLLEXPORT wxFrame : public wxFrameBase
004fd0c8 21{
54da4255 22public:
f38374d0 23 // construction
0d53fc34
VS
24 wxFrame() { Init(); }
25 wxFrame( wxWindow* pParent
210a651b
DW
26 ,wxWindowID vId
27 ,const wxString& rsTitle
28 ,const wxPoint& rPos = wxDefaultPosition
29 ,const wxSize& rSize = wxDefaultSize
30 ,long lStyle = wxDEFAULT_FRAME_STYLE
31 ,const wxString& rsName = wxFrameNameStr
32 )
21802234 33 {
f38374d0
DW
34 Init();
35
178f951f 36 Create(pParent, vId, rsTitle, rPos, rSize, lStyle, rsName);
21802234 37 }
0e320a79 38
178f951f
DW
39 bool Create( wxWindow* pParent
40 ,wxWindowID vId
41 ,const wxString& rsTitle
42 ,const wxPoint& rPos = wxDefaultPosition
43 ,const wxSize& rSize = wxDefaultSize
44 ,long lStyle = wxDEFAULT_FRAME_STYLE
45 ,const wxString& rsName = wxFrameNameStr
46 );
21802234 47
0d53fc34 48 virtual ~wxFrame();
21802234 49
f38374d0 50 // implement base class pure virtuals
19193a2c 51#if wxUSE_MENUS_NATIVE
178f951f 52 virtual void SetMenuBar(wxMenuBar* pMenubar);
19193a2c 53#endif
178f951f
DW
54 virtual bool ShowFullScreen( bool bShow
55 ,long lStyle = wxFULLSCREEN_ALL
56 );
178f951f 57
21802234 58
f38374d0
DW
59 // implementation only from now on
60 // -------------------------------
21802234 61
3011bf2b 62 virtual void Raise(void);
21802234 63
f38374d0 64 // event handlers
178f951f 65 void OnSysColourChanged(wxSysColourChangedEvent& rEvent);
21802234
DW
66
67 // Toolbar
68#if wxUSE_TOOLBAR
f9dae779 69 virtual wxToolBar* CreateToolBar( long lStyle = -1
178f951f
DW
70 ,wxWindowID vId = -1
71 ,const wxString& rsName = wxToolBarNameStr
72 );
21802234 73
d697657f
DW
74 virtual wxToolBar* OnCreateToolBar( long lStyle
75 ,wxWindowID vId
76 ,const wxString& rsName
77 );
178f951f 78 virtual void PositionToolBar(void);
21802234
DW
79#endif // wxUSE_TOOLBAR
80
21802234 81 // Status bar
f38374d0 82#if wxUSE_STATUSBAR
178f951f
DW
83 virtual wxStatusBar* OnCreateStatusBar( int nNumber = 1
84 ,long lStyle = wxST_SIZEGRIP
85 ,wxWindowID vId = 0
86 ,const wxString& rsName = wxStatusLineNameStr
87 );
88 virtual void PositionStatusBar(void);
21802234 89
f38374d0
DW
90 // Hint to tell framework which status bar to use: the default is to use
91 // native one for the platforms which support it (Win32), the generic one
92 // otherwise
21802234 93
21802234 94 // TODO: should this go into a wxFrameworkSettings class perhaps?
178f951f 95 static void UseNativeStatusBar(bool bUseNative)
80d83cbc 96 { m_bUseNativeStatusBar = bUseNative; };
f38374d0 97 static bool UsesNativeStatusBar()
80d83cbc 98 { return m_bUseNativeStatusBar; };
21802234
DW
99#endif // wxUSE_STATUSBAR
100
21802234
DW
101 WXHMENU GetWinMenu() const { return m_hMenu; }
102
103 // Returns the origin of client area (may be different from (0,0) if the
104 // frame has a toolbar)
105 virtual wxPoint GetClientAreaOrigin() const;
106
f38374d0 107 // event handlers
178f951f
DW
108 bool HandlePaint(void);
109 bool HandleSize( int nX
110 ,int nY
111 ,WXUINT uFlag
112 );
113 bool HandleCommand( WXWORD wId
114 ,WXWORD wCmd
115 ,WXHWND wControl
116 );
117 bool HandleMenuSelect( WXWORD wItem
118 ,WXWORD wFlags
119 ,WXHMENU hMenu
120 );
121
f38374d0 122 // tooltip management
21802234 123#if wxUSE_TOOLTIPS
a885d89a
DW
124 WXHWND GetToolTipCtrl(void) const { return m_hWndToolTip; }
125 void SetToolTipCtrl(WXHWND hHwndTT) { m_hWndToolTip = hHwndTT; }
21802234 126#endif // tooltips
0e320a79 127
018d3030
DW
128 virtual void SendSizeEvent(void);
129
f5526d36
DW
130 void SetClient(WXHWND c_Hwnd);
131 void SetClient(wxWindow* c_Window);
132 wxWindow *GetClient();
133
60161cfa
DW
134 friend MRESULT EXPENTRY wxFrameWndProc(HWND hWnd,ULONG ulMsg, MPARAM wParam, MPARAM lParam);
135 friend MRESULT EXPENTRY wxFrameMainWndProc(HWND hWnd,ULONG ulMsg, MPARAM wParam, MPARAM lParam);
136
0e320a79 137protected:
f38374d0 138 // common part of all ctors
178f951f 139 void Init(void);
f38374d0 140
3011bf2b 141 virtual WXHICON GetDefaultIcon(void) const;
21802234 142 // override base class virtuals
178f951f
DW
143 virtual void DoGetClientSize( int* pWidth
144 ,int* pHeight
145 ) const;
178f951f
DW
146 virtual void DoSetClientSize( int nWidth
147 ,int nWeight
148 );
3011bf2b 149 inline virtual bool IsMDIChild(void) const { return FALSE; }
e6ebb514 150
19193a2c 151#if wxUSE_MENUS_NATIVE
f38374d0 152 // helper
178f951f 153 void DetachMenuBar(void);
6835592c
DW
154 // perform MSW-specific action when menubar is changed
155 virtual void AttachMenuBar(wxMenuBar* pMenubar);
21802234
DW
156 // a plug in for MDI frame classes which need to do something special when
157 // the menubar is set
178f951f 158 virtual void InternalSetMenuBar(void);
6835592c 159#endif
21802234
DW
160 // propagate our state change to all child frames
161 void IconizeChildFrames(bool bIconize);
162
163 // we add menu bar accel processing
164 bool OS2TranslateMessage(WXMSG* pMsg);
165
166 // window proc for the frames
178f951f
DW
167 MRESULT OS2WindowProc( WXUINT uMessage
168 ,WXWPARAM wParam
169 ,WXLPARAM lParam
170 );
21802234 171
178f951f
DW
172 bool m_bIconized;
173 WXHICON m_hDefaultIcon;
21802234
DW
174
175#if wxUSE_STATUSBAR
178f951f 176 static bool m_bUseNativeStatusBar;
21802234
DW
177#endif // wxUSE_STATUSBAR
178
178f951f
DW
179 // Data to save/restore when calling ShowFullScreen
180 long m_lFsStyle; // Passed to ShowFullScreen
181 wxRect m_vFsOldSize;
182 long m_lFsOldWindowStyle;
183 int m_nFsStatusBarFields; // 0 for no status bar
184 int m_nFsStatusBarHeight;
185 int m_nFsToolBarHeight;
186 bool m_bFsIsMaximized;
187 bool m_bFsIsShowing;
fb49f3b3 188 bool m_bWasMinimized;
760ac9ab 189 bool m_bIsShown;
178f951f 190
21802234
DW
191private:
192#if wxUSE_TOOLTIPS
80d83cbc 193 WXHWND m_hWndToolTip;
21802234
DW
194#endif // tooltips
195
40bd6154 196 //
60161cfa
DW
197 // Handles to child windows of the Frame, and the frame itself,
198 // that we don't have child objects for (m_hWnd in wxWindow is the
199 // handle of the Frame's client window!
40bd6154
DW
200 //
201 WXHWND m_hTitleBar;
202 WXHWND m_hHScroll;
203 WXHWND m_hVScroll;
204
205 //
f6bcfd97 206 // Swp structures for various client data
40bd6154
DW
207 // DW: Better off in attached RefData?
208 //
40bd6154
DW
209 SWP m_vSwpTitleBar;
210 SWP m_vSwpMenuBar;
211 SWP m_vSwpHScroll;
212 SWP m_vSwpVScroll;
213 SWP m_vSwpStatusBar;
214 SWP m_vSwpToolBar;
215
21802234 216 DECLARE_EVENT_TABLE()
0d53fc34 217 DECLARE_DYNAMIC_CLASS(wxFrame)
0e320a79
DW
218};
219
220#endif
221 // _WX_FRAME_H_
21802234 222