]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
d9506e77 VZ |
2 | // Name: src/generic/panelg.cpp |
3 | // Purpose: wxPanel and the keyboard handling code | |
4 | // Author: Julian Smart, Robert Roebling, Vadim Zeitlin | |
c801d85f KB |
5 | // Modified by: |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
87a1e308 | 9 | // Licence: wxWindows license |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
d9506e77 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
c801d85f | 20 | #ifdef __GNUG__ |
d9506e77 | 21 | #pragma implementation "panelg.h" |
c801d85f KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
d9506e77 | 28 | #pragma hdrstop |
c801d85f KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
d9506e77 VZ |
32 | #include "wx/object.h" |
33 | #include "wx/font.h" | |
34 | #include "wx/colour.h" | |
35 | #include "wx/settings.h" | |
36 | #include "wx/log.h" | |
c801d85f KB |
37 | #endif |
38 | ||
39 | #include "wx/generic/panelg.h" | |
40 | ||
d9506e77 VZ |
41 | // ---------------------------------------------------------------------------- |
42 | // wxWin macros | |
43 | // ---------------------------------------------------------------------------- | |
44 | ||
c801d85f KB |
45 | IMPLEMENT_DYNAMIC_CLASS(wxPanel, wxWindow) |
46 | ||
47 | BEGIN_EVENT_TABLE(wxPanel, wxWindow) | |
48 | EVT_SYS_COLOUR_CHANGED(wxPanel::OnSysColourChanged) | |
341c92a8 | 49 | EVT_SET_FOCUS(wxPanel::OnFocus) |
90c3bdac | 50 | EVT_NAVIGATION_KEY(wxPanel::OnNavigationKey) |
27dc7e21 | 51 | EVT_SIZE(wxPanel::OnSize) |
c801d85f KB |
52 | END_EVENT_TABLE() |
53 | ||
d9506e77 VZ |
54 | // ============================================================================ |
55 | // implementation | |
56 | // ============================================================================ | |
57 | ||
58 | // ---------------------------------------------------------------------------- | |
59 | // wxPanel creation | |
60 | // ---------------------------------------------------------------------------- | |
c801d85f | 61 | |
edccf428 | 62 | void wxPanel::Init() |
c801d85f | 63 | { |
319fefa9 | 64 | m_winLastFocused = (wxWindow *)NULL; |
edccf428 | 65 | m_btnDefault = (wxButton *)NULL; |
c801d85f KB |
66 | } |
67 | ||
debe6624 | 68 | bool wxPanel::Create(wxWindow *parent, wxWindowID id, |
90c3bdac VZ |
69 | const wxPoint& pos, |
70 | const wxSize& size, | |
71 | long style, | |
72 | const wxString& name) | |
c801d85f | 73 | { |
b292e2f5 | 74 | bool ret = wxWindow::Create(parent, id, pos, size, style, name); |
c801d85f | 75 | |
fb99aca7 | 76 | if ( ret ) |
b292e2f5 | 77 | { |
b292e2f5 RR |
78 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE)); |
79 | SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT)); | |
b292e2f5 | 80 | } |
c801d85f | 81 | |
b292e2f5 | 82 | return ret; |
c801d85f KB |
83 | } |
84 | ||
d9506e77 VZ |
85 | // ---------------------------------------------------------------------------- |
86 | // misc | |
87 | // ---------------------------------------------------------------------------- | |
88 | ||
89 | void wxPanel::InitDialog() | |
c801d85f | 90 | { |
b292e2f5 RR |
91 | wxInitDialogEvent event(GetId()); |
92 | event.SetEventObject(this); | |
93 | GetEventHandler()->ProcessEvent(event); | |
90c3bdac VZ |
94 | } |
95 | ||
c801d85f KB |
96 | // Responds to colour changes, and passes event on to children. |
97 | void wxPanel::OnSysColourChanged(wxSysColourChangedEvent& event) | |
98 | { | |
99 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE)); | |
c801d85f KB |
100 | Refresh(); |
101 | ||
102 | // Propagate the event to the non-top-level children | |
103 | wxWindow::OnSysColourChanged(event); | |
104 | } | |
105 | ||
d9506e77 VZ |
106 | void wxPanel::OnSize(wxSizeEvent& WXUNUSED(event)) |
107 | { | |
108 | #if wxUSE_CONSTRAINTS | |
109 | if (GetAutoLayout()) | |
110 | Layout(); | |
111 | #endif | |
112 | } | |
113 | ||
114 | // ---------------------------------------------------------------------------- | |
115 | // Keyboard handling - this is the place where the TAB traversal logic is | |
116 | // implemented. As this code is common to all ports, this ensures consistent | |
117 | // behaviour even if we don't specify how exactly the wxNavigationKeyEvent are | |
118 | // generated and this is done in platform specific code which also ensures that | |
119 | // we can follow the given platform standards. | |
120 | // ---------------------------------------------------------------------------- | |
121 | ||
b292e2f5 | 122 | void wxPanel::OnNavigationKey( wxNavigationKeyEvent& event ) |
90c3bdac | 123 | { |
d9506e77 VZ |
124 | // there is not much to do if we have only one child (or not at all) and |
125 | // we're not interested in "notebook page change" events here | |
126 | if ( (GetChildren().GetCount() < 2) || event.IsWindowChange() ) | |
b292e2f5 | 127 | { |
d9506e77 VZ |
128 | wxWindow *parent = GetParent(); |
129 | if ( !parent || !parent->GetEventHandler()->ProcessEvent(event) ) | |
130 | { | |
131 | event.Skip(); | |
132 | } | |
133 | ||
b292e2f5 | 134 | return; |
90c3bdac VZ |
135 | } |
136 | ||
d9506e77 VZ |
137 | // where are we going? |
138 | bool forward = event.GetDirection(); | |
139 | ||
140 | // the node of the children list from which we should start looking for the | |
141 | // next acceptable child | |
142 | wxWindowList::Node *node, *start_node; | |
143 | ||
144 | // the event is propagated downwards if the event emitter was our parent | |
145 | bool goingDown = event.GetEventObject() == GetParent(); | |
146 | ||
147 | const wxWindowList& children = GetChildren(); | |
148 | ||
149 | // we should start from the first/last control and not from the one which | |
150 | // had focus the last time if we're propagating the event downwards because | |
151 | // for our parent we look like a single control | |
152 | if ( goingDown ) | |
b292e2f5 | 153 | { |
d9506e77 VZ |
154 | // just to be sure it's not used (normally this is not necessary, but |
155 | // doesn't hurt neither) | |
156 | m_winLastFocused = (wxWindow *)NULL; | |
157 | ||
158 | // start from first or last depending on where we're going | |
159 | node = forward ? children.GetFirst() : children.GetLast(); | |
160 | ||
161 | // we want to cycle over all nodes | |
162 | start_node = (wxWindowList::Node *)NULL; | |
90c3bdac | 163 | } |
d9506e77 VZ |
164 | else |
165 | { | |
166 | // try to find the child which has the focus currently | |
90c3bdac | 167 | |
d9506e77 | 168 | // the event emitter might have done this for us |
3da17724 | 169 | wxWindow *winFocus = event.GetCurrentFocus(); |
87a1e308 | 170 | |
d9506e77 VZ |
171 | // but if not, we might know where the focus was ourselves |
172 | if (!winFocus) | |
173 | winFocus = m_winLastFocused; | |
87a1e308 | 174 | |
d9506e77 VZ |
175 | // if still no luck, do it the hard way |
176 | if (!winFocus) | |
177 | winFocus = wxWindow::FindFocus(); | |
27dc7e21 | 178 | |
d9506e77 VZ |
179 | if ( winFocus ) |
180 | { | |
181 | // ok, we found the focus - now is it our child? | |
182 | start_node = children.Find( winFocus ); | |
183 | } | |
184 | else | |
185 | { | |
186 | start_node = (wxWindowList::Node *)NULL; | |
187 | } | |
fb99aca7 | 188 | |
d9506e77 VZ |
189 | if ( !start_node && m_winLastFocused ) |
190 | { | |
191 | // window which has focus isn't our child, fall back to the one | |
192 | // which had the focus the last time | |
193 | start_node = children.Find( m_winLastFocused ); | |
194 | } | |
fb99aca7 | 195 | |
d9506e77 VZ |
196 | // if we still didn't find anything, we should start with the first one |
197 | if ( !start_node ) | |
198 | { | |
199 | start_node = children.GetFirst(); | |
200 | } | |
fb99aca7 | 201 | |
d9506e77 VZ |
202 | // and the first child which we can try setting focus to is the next or |
203 | // the previous one | |
204 | node = forward ? start_node->GetNext() : start_node->GetPrevious(); | |
205 | } | |
206 | ||
207 | // we want to cycle over all elements passing by NULL | |
a1665b22 | 208 | while ( node != start_node ) |
b292e2f5 | 209 | { |
3da17724 | 210 | // Have we come to the last or first item on the panel? |
a1665b22 | 211 | if ( !node ) |
fb99aca7 | 212 | { |
d9506e77 | 213 | if ( !goingDown ) |
a1665b22 | 214 | { |
d9506e77 VZ |
215 | // Check if our (may be grand) parent is another panel: if this |
216 | // is the case, they will know what to do with this navigation | |
217 | // key and so give them the chance to process it instead of | |
218 | // looping inside this panel (normally, the focus will go to | |
219 | // the next/previous item after this panel in the parent | |
220 | // panel). | |
221 | wxWindow *focussed_child_of_parent = this; | |
222 | for ( wxWindow *parent = GetParent(); | |
223 | parent; | |
224 | parent = parent->GetParent() ) | |
a1665b22 | 225 | { |
d9506e77 VZ |
226 | // we don't want to tab into a different dialog or frame |
227 | if ( focussed_child_of_parent->IsTopLevel() ) | |
228 | break; | |
229 | ||
230 | // is the parent a panel? | |
231 | wxPanel *panel = wxDynamicCast(parent, wxPanel); | |
232 | if (panel) | |
233 | { | |
234 | event.SetCurrentFocus( focussed_child_of_parent ); | |
235 | if (parent->GetEventHandler()->ProcessEvent( event )) | |
236 | return; | |
237 | } | |
238 | ||
239 | focussed_child_of_parent = parent; | |
a1665b22 VZ |
240 | } |
241 | } | |
d9506e77 VZ |
242 | //else: as the focus came from our parent, we definitely don't want |
243 | // to send it back to it! | |
a1665b22 VZ |
244 | |
245 | // no, we are not inside another panel so process this ourself | |
d9506e77 | 246 | node = forward ? children.GetFirst() : children.GetLast(); |
341c92a8 | 247 | |
e4ffaca4 | 248 | continue; |
fb99aca7 VZ |
249 | } |
250 | ||
f03fc89f | 251 | wxWindow *child = node->GetData(); |
fb99aca7 | 252 | |
a1665b22 | 253 | if ( child->AcceptsFocus() ) |
fb99aca7 | 254 | { |
87a1e308 | 255 | m_winLastFocused = child; // should be redundant, but it is not |
d9506e77 VZ |
256 | |
257 | // if we're setting the focus to a child panel we should prevent it | |
258 | // from giving it to the child which had the focus the last time | |
259 | // and instead give it to the first/last child depending from which | |
260 | // direction we're coming | |
261 | wxPanel *subpanel = wxDynamicCast(child, wxPanel); | |
262 | if ( subpanel ) | |
263 | { | |
264 | // trick the panel into thinking that it got the navigation | |
265 | // event - instead of duplicating all the code here | |
266 | // | |
267 | // make sure that we do trick it by setting all the parameters | |
268 | // correctly (consistently with the code in this very function | |
269 | // above) and that it starts from the very beginning/end by | |
270 | // using SetLastFocus(NULL) | |
271 | subpanel->SetLastFocus((wxWindow *)NULL); | |
272 | } | |
273 | ||
274 | event.SetEventObject(this); | |
275 | if ( !child->GetEventHandler()->ProcessEvent(event) ) | |
276 | { | |
277 | // everything is simple: just give focus to it | |
278 | child->SetFocus(); | |
279 | } | |
280 | //else: the child manages its focus itself | |
281 | ||
fb99aca7 VZ |
282 | return; |
283 | } | |
284 | ||
d9506e77 | 285 | node = forward ? node->GetNext() : node->GetPrevious(); |
b292e2f5 | 286 | } |
fb99aca7 VZ |
287 | |
288 | // we cycled through all of our children and none of them wanted to accept | |
289 | // focus | |
b292e2f5 | 290 | event.Skip(); |
6e4739a0 | 291 | } |
58614078 | 292 | |
3da17724 RR |
293 | void wxPanel::SetFocus() |
294 | { | |
00c4e897 VZ |
295 | wxLogTrace(_T("focus"), _T("SetFocus on wxPanel 0x%08x."), GetHandle()); |
296 | ||
3da17724 | 297 | // If the panel gets the focus *by way of getting it set directly* |
69ffe1d2 | 298 | // we move the focus to the first window that can get it. |
3da17724 | 299 | |
00c4e897 VZ |
300 | // VZ: no, we set the focus to the last window too. I don't understand why |
301 | // should we make this distinction: if an app wants to set focus to | |
302 | // some precise control, it may always do it directly, but if we don't | |
303 | // use m_winLastFocused here, the focus won't be set correctly after a | |
304 | // notebook page change nor after frame activation under MSW (it calls | |
305 | // SetFocus too) | |
306 | // | |
88413fec RR |
307 | // RR: yes, when I the tab key to navigate in a panel with some controls and |
308 | // a notebook and the focus jumps to the notebook (typically coming from | |
309 | // a button at the top) the notebook should focus the first child in the | |
310 | // current notebook page, not the last one which would otherwise get the | |
311 | // focus if you used the tab key to navigate from the current notebook | |
312 | // page to button at the bottom. See every page in the controls sample. | |
d9506e77 VZ |
313 | // |
314 | // VZ: ok, but this still doesn't (at least I don't see how it can) take | |
315 | // care of first/last child problem: i.e. if Shift-TAB is pressed in a | |
316 | // situation like above, the focus should be given to the last child, | |
317 | // not the first one (and not to the last focused one neither) - I | |
318 | // think my addition to OnNavigationKey() above takes care of it. | |
319 | // Keeping #ifdef __WXGTK__ for now, but please try removing it and see | |
320 | // what happens. | |
321 | ||
88413fec | 322 | #ifdef __WXGTK__ |
00c4e897 VZ |
323 | m_winLastFocused = (wxWindow *)NULL; |
324 | #endif // 0 | |
325 | ||
326 | if ( !SetFocusToChild() ) | |
3da17724 | 327 | { |
00c4e897 | 328 | wxWindow::SetFocus(); |
3da17724 | 329 | } |
3da17724 RR |
330 | } |
331 | ||
341c92a8 VZ |
332 | void wxPanel::OnFocus(wxFocusEvent& event) |
333 | { | |
00c4e897 VZ |
334 | wxLogTrace(_T("focus"), _T("OnFocus on wxPanel 0x%08x."), GetHandle()); |
335 | ||
3da17724 | 336 | // If the panel gets the focus *by way of getting clicked on* |
d9506e77 | 337 | // we move the focus to either the last window that had the |
69ffe1d2 | 338 | // focus or the first one that can get it. |
00c4e897 VZ |
339 | (void)SetFocusToChild(); |
340 | ||
341 | event.Skip(); | |
342 | } | |
3da17724 | 343 | |
00c4e897 VZ |
344 | bool wxPanel::SetFocusToChild() |
345 | { | |
346 | if ( m_winLastFocused ) | |
0492c5a0 | 347 | { |
00c4e897 VZ |
348 | // It might happen that the window got reparented or no longer accepts |
349 | // the focus. | |
350 | if ( (m_winLastFocused->GetParent() == this) && | |
351 | m_winLastFocused->AcceptsFocus() ) | |
87a1e308 | 352 | { |
00c4e897 VZ |
353 | wxLogTrace(_T("focus"), |
354 | _T("SetFocusToChild() => last child (0x%08x)."), | |
355 | m_winLastFocused->GetHandle()); | |
356 | ||
319fefa9 | 357 | m_winLastFocused->SetFocus(); |
00c4e897 VZ |
358 | return TRUE; |
359 | } | |
360 | else | |
361 | { | |
362 | // it doesn't count as such any more | |
363 | m_winLastFocused = (wxWindow *)NULL; | |
87a1e308 | 364 | } |
0492c5a0 | 365 | } |
87a1e308 | 366 | |
00c4e897 VZ |
367 | // set the focus to the first child who wants it |
368 | wxWindowList::Node *node = GetChildren().GetFirst(); | |
369 | while ( node ) | |
3da17724 | 370 | { |
00c4e897 VZ |
371 | wxWindow *child = node->GetData(); |
372 | if ( child->AcceptsFocus() ) | |
87a1e308 | 373 | { |
00c4e897 VZ |
374 | wxLogTrace(_T("focus"), |
375 | _T("SetFocusToChild() => first child (0x%08x)."), | |
376 | child->GetHandle()); | |
377 | ||
87a1e308 VZ |
378 | m_winLastFocused = child; // should be redundant, but it is not |
379 | child->SetFocus(); | |
00c4e897 | 380 | return TRUE; |
87a1e308 | 381 | } |
87a1e308 | 382 | |
00c4e897 VZ |
383 | node = node->GetNext(); |
384 | } | |
87a1e308 | 385 | |
00c4e897 | 386 | return FALSE; |
341c92a8 | 387 | } |