]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/frame.h
1. some minor compilation fixes in datetime.cppm
[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);
42e69d6b 55
7c0ea335
VZ
56 // implementation only from now on
57 // -------------------------------
16f6dfd8 58
7c0ea335
VZ
59 // override some more virtuals
60 virtual bool Show(bool show = TRUE);
b5423899 61
7c0ea335
VZ
62 // event handlers
63 void OnActivate(wxActivateEvent& event);
64 void OnSysColourChanged(wxSysColourChangedEvent& event);
16f6dfd8 65
3a19e16d 66 // Toolbar
d427503c 67#if wxUSE_TOOLBAR
3a19e16d
VZ
68 virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT,
69 wxWindowID id = -1,
70 const wxString& name = wxToolBarNameStr);
71
3a19e16d 72 virtual void PositionToolBar();
d427503c 73#endif // wxUSE_TOOLBAR
16f6dfd8 74
3a19e16d 75 // Status bar
7c0ea335
VZ
76#if wxUSE_STATUSBAR
77 virtual wxStatusBar* OnCreateStatusBar(int number = 1,
78 long style = wxST_SIZEGRIP,
79 wxWindowID id = 0,
80 const wxString& name = wxStatusLineNameStr);
3a19e16d
VZ
81
82 virtual void PositionStatusBar();
16f6dfd8 83
7c0ea335
VZ
84 // Hint to tell framework which status bar to use: the default is to use
85 // native one for the platforms which support it (Win32), the generic one
86 // otherwise
16f6dfd8 87
3a19e16d 88 // TODO: should this go into a wxFrameworkSettings class perhaps?
7c0ea335
VZ
89 static void UseNativeStatusBar(bool useNative)
90 { m_useNativeStatusBar = useNative; };
91 static bool UsesNativeStatusBar()
92 { return m_useNativeStatusBar; };
d427503c 93#endif // wxUSE_STATUSBAR
16f6dfd8 94
42e69d6b 95 WXHMENU GetWinMenu() const { return m_hMenu; }
16f6dfd8 96
7c0ea335 97 // event handlers
42e69d6b
VZ
98 bool HandlePaint();
99 bool HandleSize(int x, int y, WXUINT flag);
100 bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control);
101 bool HandleMenuSelect(WXWORD nItem, WXWORD nFlags, WXHMENU hMenu);
102
9df8c2df
OK
103 bool MSWCreate(int id, wxWindow *parent, const wxChar *wclass,
104 wxWindow *wx_win, const wxChar *title,
debe6624 105 int x, int y, int width, int height, long style);
2bda0e17 106
7c0ea335 107 // tooltip management
3a19e16d 108#if wxUSE_TOOLTIPS
a23fd0e1
VZ
109 WXHWND GetToolTipCtrl() const { return m_hwndToolTip; }
110 void SetToolTipCtrl(WXHWND hwndTT) { m_hwndToolTip = hwndTT; }
3a19e16d
VZ
111#endif // tooltips
112
2bda0e17 113protected:
7c0ea335
VZ
114 // common part of all ctors
115 void Init();
116
117 // common part of Iconize(), Maximize() and Restore()
118 void DoShowWindow(int nShowCmd);
119
a23fd0e1
VZ
120 // override base class virtuals
121 virtual void DoGetClientSize(int *width, int *height) const;
42e69d6b
VZ
122 virtual void DoGetSize(int *width, int *height) const;
123 virtual void DoGetPosition(int *x, int *y) const;
a23fd0e1 124
a23fd0e1 125 virtual void DoSetClientSize(int width, int height);
cc2b7472 126
7c0ea335
VZ
127 // helper
128 void DetachMenuBar();
129
42e69d6b
VZ
130 // a plug in for MDI frame classes which need to do something special when
131 // the menubar is set
132 virtual void InternalSetMenuBar();
133
3a19e16d
VZ
134 // propagate our state change to all child frames
135 void IconizeChildFrames(bool bIconize);
16f6dfd8 136
42e69d6b
VZ
137 // we add menu bar accel processing
138 bool MSWTranslateMessage(WXMSG* pMsg);
139
a23fd0e1
VZ
140 // window proc for the frames
141 long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
142
3a19e16d
VZ
143 bool m_iconized;
144 WXHICON m_defaultIcon;
d427503c
VZ
145
146#if wxUSE_STATUSBAR
3a19e16d 147 static bool m_useNativeStatusBar;
d427503c
VZ
148#endif // wxUSE_STATUSBAR
149
a23fd0e1 150private:
3a19e16d
VZ
151#if wxUSE_TOOLTIPS
152 WXHWND m_hwndToolTip;
153#endif // tooltips
154
3a19e16d 155 DECLARE_EVENT_TABLE()
7c0ea335 156 DECLARE_DYNAMIC_CLASS(wxFrame)
2bda0e17
KB
157};
158
159#endif
bbcdf8bc 160 // _WX_FRAME_H_