]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/frame.h
Removed old wxGLCanvas stuff; moved wxTreeLayout to wxWindows; corrected some doc...
[wxWidgets.git] / include / wx / msw / frame.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
7c0ea335 2// Name: wx/msw/frame.h
2bda0e17
KB
3// Purpose: wxFrame class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
16f6dfd8 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_FRAME_H_
13#define _WX_FRAME_H_
2bda0e17
KB
14
15#ifdef __GNUG__
42e69d6b 16 #pragma interface "frame.h"
2bda0e17
KB
17#endif
18
7c0ea335 19class WXDLLEXPORT wxFrame : public wxFrameBase
3a19e16d 20{
2bda0e17 21public:
7c0ea335
VZ
22 // construction
23 wxFrame() { Init(); }
3a19e16d 24 wxFrame(wxWindow *parent,
7c0ea335
VZ
25 wxWindowID id,
26 const wxString& title,
27 const wxPoint& pos = wxDefaultPosition,
28 const wxSize& size = wxDefaultSize,
29 long style = wxDEFAULT_FRAME_STYLE,
30 const wxString& name = wxFrameNameStr)
3a19e16d 31 {
7c0ea335
VZ
32 Init();
33
3a19e16d
VZ
34 Create(parent, id, title, pos, size, style, name);
35 }
16f6dfd8 36
3a19e16d
VZ
37 bool Create(wxWindow *parent,
38 wxWindowID id,
39 const wxString& title,
40 const wxPoint& pos = wxDefaultPosition,
41 const wxSize& size = wxDefaultSize,
42 long style = wxDEFAULT_FRAME_STYLE,
43 const wxString& name = wxFrameNameStr);
16f6dfd8 44
7c0ea335 45 virtual ~wxFrame();
16f6dfd8 46
7c0ea335
VZ
47 // implement base class pure virtuals
48 virtual void Maximize(bool maximize = TRUE);
49 virtual bool IsMaximized() const;
50 virtual void Iconize(bool iconize = TRUE);
51 virtual bool IsIconized() const;
52 virtual void Restore();
53 virtual void SetMenuBar(wxMenuBar *menubar);
54 virtual void SetIcon(const wxIcon& icon);
a2327a9f
JS
55 virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
56 virtual bool IsFullScreen() const { return m_fsIsShowing; };
42e69d6b 57
7c0ea335
VZ
58 // implementation only from now on
59 // -------------------------------
16f6dfd8 60
7c0ea335
VZ
61 // override some more virtuals
62 virtual bool Show(bool show = TRUE);
b5423899 63
7c0ea335
VZ
64 // event handlers
65 void OnActivate(wxActivateEvent& event);
66 void OnSysColourChanged(wxSysColourChangedEvent& event);
16f6dfd8 67
3a19e16d 68 // Toolbar
d427503c 69#if wxUSE_TOOLBAR
3a19e16d
VZ
70 virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT,
71 wxWindowID id = -1,
72 const wxString& name = wxToolBarNameStr);
73
3a19e16d 74 virtual void PositionToolBar();
d427503c 75#endif // wxUSE_TOOLBAR
16f6dfd8 76
3a19e16d 77 // Status bar
7c0ea335
VZ
78#if wxUSE_STATUSBAR
79 virtual wxStatusBar* OnCreateStatusBar(int number = 1,
80 long style = wxST_SIZEGRIP,
81 wxWindowID id = 0,
82 const wxString& name = wxStatusLineNameStr);
3a19e16d
VZ
83
84 virtual void PositionStatusBar();
16f6dfd8 85
7c0ea335
VZ
86 // Hint to tell framework which status bar to use: the default is to use
87 // native one for the platforms which support it (Win32), the generic one
88 // otherwise
16f6dfd8 89
3a19e16d 90 // TODO: should this go into a wxFrameworkSettings class perhaps?
7c0ea335
VZ
91 static void UseNativeStatusBar(bool useNative)
92 { m_useNativeStatusBar = useNative; };
93 static bool UsesNativeStatusBar()
94 { return m_useNativeStatusBar; };
d427503c 95#endif // wxUSE_STATUSBAR
16f6dfd8 96
42e69d6b 97 WXHMENU GetWinMenu() const { return m_hMenu; }
16f6dfd8 98
7c0ea335 99 // event handlers
42e69d6b
VZ
100 bool HandlePaint();
101 bool HandleSize(int x, int y, WXUINT flag);
102 bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control);
103 bool HandleMenuSelect(WXWORD nItem, WXWORD nFlags, WXHMENU hMenu);
104
9df8c2df
OK
105 bool MSWCreate(int id, wxWindow *parent, const wxChar *wclass,
106 wxWindow *wx_win, const wxChar *title,
debe6624 107 int x, int y, int width, int height, long style);
2bda0e17 108
7c0ea335 109 // tooltip management
3a19e16d 110#if wxUSE_TOOLTIPS
a23fd0e1
VZ
111 WXHWND GetToolTipCtrl() const { return m_hwndToolTip; }
112 void SetToolTipCtrl(WXHWND hwndTT) { m_hwndToolTip = hwndTT; }
3a19e16d
VZ
113#endif // tooltips
114
2bda0e17 115protected:
7c0ea335
VZ
116 // common part of all ctors
117 void Init();
118
119 // common part of Iconize(), Maximize() and Restore()
120 void DoShowWindow(int nShowCmd);
121
a23fd0e1
VZ
122 // override base class virtuals
123 virtual void DoGetClientSize(int *width, int *height) const;
42e69d6b
VZ
124 virtual void DoGetSize(int *width, int *height) const;
125 virtual void DoGetPosition(int *x, int *y) const;
a23fd0e1 126
a23fd0e1 127 virtual void DoSetClientSize(int width, int height);
cc2b7472 128
7c0ea335
VZ
129 // helper
130 void DetachMenuBar();
131
42e69d6b
VZ
132 // a plug in for MDI frame classes which need to do something special when
133 // the menubar is set
134 virtual void InternalSetMenuBar();
135
3a19e16d
VZ
136 // propagate our state change to all child frames
137 void IconizeChildFrames(bool bIconize);
16f6dfd8 138
42e69d6b
VZ
139 // we add menu bar accel processing
140 bool MSWTranslateMessage(WXMSG* pMsg);
141
a23fd0e1
VZ
142 // window proc for the frames
143 long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
144
3a19e16d
VZ
145 bool m_iconized;
146 WXHICON m_defaultIcon;
d427503c
VZ
147
148#if wxUSE_STATUSBAR
3a19e16d 149 static bool m_useNativeStatusBar;
d427503c
VZ
150#endif // wxUSE_STATUSBAR
151
a2327a9f
JS
152 // Data to save/restore when calling ShowFullScreen
153 long m_fsStyle; // Passed to ShowFullScreen
154 wxRect m_fsOldSize;
155 long m_fsOldWindowStyle;
156 int m_fsStatusBarFields; // 0 for no status bar
157 int m_fsStatusBarHeight;
158 int m_fsToolBarHeight;
159// WXHMENU m_fsMenu;
160 bool m_fsIsMaximized;
161 bool m_fsIsShowing;
162
a23fd0e1 163private:
3a19e16d
VZ
164#if wxUSE_TOOLTIPS
165 WXHWND m_hwndToolTip;
166#endif // tooltips
167
3a19e16d 168 DECLARE_EVENT_TABLE()
7c0ea335 169 DECLARE_DYNAMIC_CLASS(wxFrame)
2bda0e17
KB
170};
171
172#endif
bbcdf8bc 173 // _WX_FRAME_H_