]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wx/msw/frame.h | |
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 | |
9 | // Licence: wxWindows license | |
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 | class WXDLLEXPORT wxFrame : public wxFrameBase | |
20 | { | |
21 | public: | |
22 | // construction | |
23 | wxFrame() { Init(); } | |
24 | wxFrame(wxWindow *parent, | |
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) | |
31 | { | |
32 | Init(); | |
33 | ||
34 | Create(parent, id, title, pos, size, style, name); | |
35 | } | |
36 | ||
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); | |
44 | ||
45 | virtual ~wxFrame(); | |
46 | ||
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); | |
55 | virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL); | |
56 | virtual bool IsFullScreen() const { return m_fsIsShowing; }; | |
57 | ||
58 | // implementation only from now on | |
59 | // ------------------------------- | |
60 | ||
61 | // override some more virtuals | |
62 | virtual bool Show(bool show = TRUE); | |
63 | ||
64 | // event handlers | |
65 | void OnActivate(wxActivateEvent& event); | |
66 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
67 | ||
68 | // Toolbar | |
69 | #if wxUSE_TOOLBAR | |
70 | virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT, | |
71 | wxWindowID id = -1, | |
72 | const wxString& name = wxToolBarNameStr); | |
73 | ||
74 | virtual void PositionToolBar(); | |
75 | #endif // wxUSE_TOOLBAR | |
76 | ||
77 | // Status bar | |
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); | |
83 | ||
84 | virtual void PositionStatusBar(); | |
85 | ||
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 | |
89 | ||
90 | // TODO: should this go into a wxFrameworkSettings class perhaps? | |
91 | static void UseNativeStatusBar(bool useNative) | |
92 | { m_useNativeStatusBar = useNative; }; | |
93 | static bool UsesNativeStatusBar() | |
94 | { return m_useNativeStatusBar; }; | |
95 | #endif // wxUSE_STATUSBAR | |
96 | ||
97 | WXHMENU GetWinMenu() const { return m_hMenu; } | |
98 | ||
99 | // event handlers | |
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 | ||
105 | bool MSWCreate(int id, wxWindow *parent, const wxChar *wclass, | |
106 | wxWindow *wx_win, const wxChar *title, | |
107 | int x, int y, int width, int height, long style); | |
108 | ||
109 | // tooltip management | |
110 | #if wxUSE_TOOLTIPS | |
111 | WXHWND GetToolTipCtrl() const { return m_hwndToolTip; } | |
112 | void SetToolTipCtrl(WXHWND hwndTT) { m_hwndToolTip = hwndTT; } | |
113 | #endif // tooltips | |
114 | ||
115 | protected: | |
116 | // common part of all ctors | |
117 | void Init(); | |
118 | ||
119 | // common part of Iconize(), Maximize() and Restore() | |
120 | void DoShowWindow(int nShowCmd); | |
121 | ||
122 | // override base class virtuals | |
123 | virtual void DoGetClientSize(int *width, int *height) const; | |
124 | virtual void DoGetSize(int *width, int *height) const; | |
125 | virtual void DoGetPosition(int *x, int *y) const; | |
126 | ||
127 | virtual void DoSetClientSize(int width, int height); | |
128 | ||
129 | // helper | |
130 | void DetachMenuBar(); | |
131 | ||
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 | ||
136 | // propagate our state change to all child frames | |
137 | void IconizeChildFrames(bool bIconize); | |
138 | ||
139 | // we add menu bar accel processing | |
140 | bool MSWTranslateMessage(WXMSG* pMsg); | |
141 | ||
142 | // window proc for the frames | |
143 | long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
144 | ||
145 | bool m_iconized; | |
146 | WXHICON m_defaultIcon; | |
147 | ||
148 | #if wxUSE_STATUSBAR | |
149 | static bool m_useNativeStatusBar; | |
150 | #endif // wxUSE_STATUSBAR | |
151 | ||
152 | // the last focused child: we restore focus to it on activation | |
153 | wxWindow *m_winLastFocused; | |
154 | ||
155 | // Data to save/restore when calling ShowFullScreen | |
156 | long m_fsStyle; // Passed to ShowFullScreen | |
157 | wxRect m_fsOldSize; | |
158 | long m_fsOldWindowStyle; | |
159 | int m_fsStatusBarFields; // 0 for no status bar | |
160 | int m_fsStatusBarHeight; | |
161 | int m_fsToolBarHeight; | |
162 | // WXHMENU m_fsMenu; | |
163 | bool m_fsIsMaximized; | |
164 | bool m_fsIsShowing; | |
165 | ||
166 | private: | |
167 | #if wxUSE_TOOLTIPS | |
168 | WXHWND m_hwndToolTip; | |
169 | #endif // tooltips | |
170 | ||
171 | DECLARE_EVENT_TABLE() | |
172 | DECLARE_DYNAMIC_CLASS(wxFrame) | |
173 | }; | |
174 | ||
175 | #endif | |
176 | // _WX_FRAME_H_ |