]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: 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 | |
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__ | |
16 | #pragma interface "frame.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/window.h" | |
81d66cf3 | 20 | #include "wx/toolbar.h" |
57a7b7c1 | 21 | #include "wx/msw/accel.h" |
cc2b7472 | 22 | #include "wx/icon.h" |
2bda0e17 | 23 | |
39ca6d79 OK |
24 | WXDLLEXPORT_DATA(extern const wxChar*) wxFrameNameStr; |
25 | WXDLLEXPORT_DATA(extern const wxChar*) wxToolBarNameStr; | |
26 | WXDLLEXPORT_DATA(extern const wxChar*) wxStatusLineNameStr; | |
2bda0e17 KB |
27 | |
28 | class WXDLLEXPORT wxMenuBar; | |
29 | class WXDLLEXPORT wxStatusBar; | |
30 | ||
3a19e16d VZ |
31 | class WXDLLEXPORT wxFrame : public wxWindow |
32 | { | |
33 | DECLARE_DYNAMIC_CLASS(wxFrame) | |
2bda0e17 KB |
34 | |
35 | public: | |
3a19e16d VZ |
36 | wxFrame(); |
37 | wxFrame(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 | Create(parent, id, title, pos, size, style, name); | |
46 | } | |
16f6dfd8 | 47 | |
3a19e16d | 48 | ~wxFrame(); |
16f6dfd8 | 49 | |
3a19e16d VZ |
50 | bool Create(wxWindow *parent, |
51 | wxWindowID id, | |
52 | const wxString& title, | |
53 | const wxPoint& pos = wxDefaultPosition, | |
54 | const wxSize& size = wxDefaultSize, | |
55 | long style = wxDEFAULT_FRAME_STYLE, | |
56 | const wxString& name = wxFrameNameStr); | |
16f6dfd8 | 57 | |
3a19e16d | 58 | virtual bool Destroy(); |
16f6dfd8 | 59 | |
721b32e0 | 60 | virtual void ClientToScreen(int *x, int *y) const; |
3a19e16d | 61 | virtual void ScreenToClient(int *x, int *y) const; |
16f6dfd8 | 62 | |
3a19e16d VZ |
63 | void OnSize(wxSizeEvent& event); |
64 | void OnMenuHighlight(wxMenuEvent& event); | |
65 | void OnActivate(wxActivateEvent& event); | |
66 | void OnIdle(wxIdleEvent& event); | |
67 | void OnCloseWindow(wxCloseEvent& event); | |
16f6dfd8 | 68 | |
3a19e16d | 69 | bool Show(bool show); |
16f6dfd8 | 70 | |
3a19e16d VZ |
71 | // Set menu bar |
72 | void SetMenuBar(wxMenuBar *menu_bar); | |
73 | virtual wxMenuBar *GetMenuBar() const ; | |
16f6dfd8 | 74 | |
3a19e16d VZ |
75 | // Set title |
76 | void SetTitle(const wxString& title); | |
77 | wxString GetTitle() const ; | |
16f6dfd8 | 78 | |
3a19e16d | 79 | void Centre(int direction = wxBOTH); |
16f6dfd8 | 80 | |
3a19e16d VZ |
81 | // Call this to simulate a menu command |
82 | virtual void Command(int id); | |
83 | virtual void ProcessCommand(int id); | |
16f6dfd8 | 84 | |
3a19e16d VZ |
85 | // Set icon |
86 | virtual void SetIcon(const wxIcon& icon); | |
16f6dfd8 | 87 | |
3a19e16d VZ |
88 | // Toolbar |
89 | virtual wxToolBar* CreateToolBar(long style = wxNO_BORDER | wxTB_HORIZONTAL | wxTB_FLAT, | |
90 | wxWindowID id = -1, | |
91 | const wxString& name = wxToolBarNameStr); | |
92 | ||
93 | virtual wxToolBar *OnCreateToolBar(long style, wxWindowID id, const wxString& name); | |
94 | ||
95 | virtual void SetToolBar(wxToolBar *toolbar) { m_frameToolBar = toolbar; } | |
96 | virtual wxToolBar *GetToolBar() const { return m_frameToolBar; } | |
97 | ||
98 | virtual void PositionToolBar(); | |
16f6dfd8 | 99 | |
3a19e16d VZ |
100 | // Status bar |
101 | virtual wxStatusBar* CreateStatusBar(int number = 1, | |
102 | long style = wxST_SIZEGRIP, | |
103 | wxWindowID id = 0, | |
104 | const wxString& name = wxStatusLineNameStr); | |
105 | ||
106 | wxStatusBar *GetStatusBar() const { return m_frameStatusBar; } | |
107 | void SetStatusBar(wxStatusBar *statusBar) { m_frameStatusBar = statusBar; } | |
108 | ||
109 | virtual void PositionStatusBar(); | |
110 | virtual wxStatusBar *OnCreateStatusBar(int number, | |
111 | long style, | |
112 | wxWindowID id, | |
113 | const wxString& name); | |
16f6dfd8 | 114 | |
3a19e16d VZ |
115 | // Set status line text |
116 | virtual void SetStatusText(const wxString& text, int number = 0); | |
16f6dfd8 | 117 | |
3a19e16d VZ |
118 | // Set status line widths |
119 | virtual void SetStatusWidths(int n, const int widths_field[]); | |
16f6dfd8 | 120 | |
3a19e16d VZ |
121 | // Hint to tell framework which status bar to use |
122 | // TODO: should this go into a wxFrameworkSettings class perhaps? | |
123 | static void UseNativeStatusBar(bool useNative) { m_useNativeStatusBar = useNative; }; | |
124 | static bool UsesNativeStatusBar() { return m_useNativeStatusBar; }; | |
16f6dfd8 | 125 | |
3a19e16d VZ |
126 | // Fit frame around subwindows |
127 | virtual void Fit(); | |
16f6dfd8 | 128 | |
3a19e16d VZ |
129 | // Iconize |
130 | virtual void Iconize(bool iconize); | |
16f6dfd8 | 131 | |
3a19e16d | 132 | virtual bool IsIconized() const ; |
16f6dfd8 | 133 | |
3a19e16d VZ |
134 | // Is it maximized? |
135 | virtual bool IsMaximized() const ; | |
16f6dfd8 | 136 | |
3a19e16d VZ |
137 | // Compatibility |
138 | bool Iconized() const { return IsIconized(); } | |
16f6dfd8 | 139 | |
3a19e16d VZ |
140 | virtual void Maximize(bool maximize); |
141 | // virtual bool LoadAccelerators(const wxString& table); | |
16f6dfd8 | 142 | |
3a19e16d VZ |
143 | // Responds to colour changes |
144 | void OnSysColourChanged(wxSysColourChangedEvent& event); | |
16f6dfd8 | 145 | |
3a19e16d VZ |
146 | // Query app for menu item updates (called from OnIdle) |
147 | void DoMenuUpdates(); | |
e702ff0f | 148 | void DoMenuUpdates(wxMenu* menu, wxWindow* focusWin); |
16f6dfd8 | 149 | |
3a19e16d | 150 | WXHMENU GetWinMenu() const ; |
16f6dfd8 | 151 | |
3a19e16d VZ |
152 | // Returns the origin of client area (may be different from (0,0) if the |
153 | // frame has a toolbar) | |
154 | virtual wxPoint GetClientAreaOrigin() const; | |
16f6dfd8 | 155 | |
3a19e16d VZ |
156 | // Implementation only from here |
157 | // event handlers | |
158 | bool MSWOnPaint(); | |
159 | WXHICON MSWOnQueryDragIcon(); | |
a23fd0e1 | 160 | bool MSWOnSize(int x, int y, WXUINT flag); |
3a19e16d | 161 | bool MSWOnCommand(WXWORD id, WXWORD cmd, WXHWND control); |
a23fd0e1 | 162 | bool MSWOnMenuHighlight(WXWORD item, WXWORD flags, WXHMENU sysmenu); |
3a19e16d VZ |
163 | bool MSWProcessMessage(WXMSG *msg); |
164 | bool MSWTranslateMessage(WXMSG *msg); | |
a23fd0e1 | 165 | bool MSWCreate(int id, wxWindow *parent, const char *wclass, |
3a19e16d | 166 | wxWindow *wx_win, const char *title, |
debe6624 | 167 | int x, int y, int width, int height, long style); |
2bda0e17 | 168 | |
a23fd0e1 VZ |
169 | bool HandleMenuSelect(WXWORD nItem, WXWORD nFlags, WXHMENU hMenu); |
170 | ||
16f6dfd8 | 171 | // tooltip management |
3a19e16d | 172 | #if wxUSE_TOOLTIPS |
a23fd0e1 VZ |
173 | WXHWND GetToolTipCtrl() const { return m_hwndToolTip; } |
174 | void SetToolTipCtrl(WXHWND hwndTT) { m_hwndToolTip = hwndTT; } | |
3a19e16d VZ |
175 | #endif // tooltips |
176 | ||
2bda0e17 | 177 | protected: |
a23fd0e1 VZ |
178 | // override base class virtuals |
179 | virtual void DoGetClientSize(int *width, int *height) const; | |
180 | virtual void DoGetSize(int *width, int *height) const ; | |
181 | virtual void DoGetPosition(int *x, int *y) const ; | |
182 | ||
183 | virtual void DoSetSize(int x, int y, | |
184 | int width, int height, | |
185 | int sizeFlags = wxSIZE_AUTO); | |
186 | virtual void DoSetClientSize(int width, int height); | |
cc2b7472 | 187 | |
3a19e16d VZ |
188 | // propagate our state change to all child frames |
189 | void IconizeChildFrames(bool bIconize); | |
16f6dfd8 | 190 | |
a23fd0e1 VZ |
191 | // window proc for the frames |
192 | long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam); | |
193 | ||
3a19e16d VZ |
194 | wxMenuBar * m_frameMenuBar; |
195 | wxStatusBar * m_frameStatusBar; | |
196 | wxIcon m_icon; | |
197 | bool m_iconized; | |
198 | WXHICON m_defaultIcon; | |
199 | wxToolBar * m_frameToolBar ; | |
200 | ||
201 | static bool m_useNativeStatusBar; | |
202 | ||
a23fd0e1 | 203 | private: |
3a19e16d VZ |
204 | #if wxUSE_TOOLTIPS |
205 | WXHWND m_hwndToolTip; | |
206 | #endif // tooltips | |
207 | ||
3a19e16d | 208 | DECLARE_EVENT_TABLE() |
2bda0e17 KB |
209 | }; |
210 | ||
211 | #endif | |
bbcdf8bc | 212 | // _WX_FRAME_H_ |