]> git.saurik.com Git - wxWidgets.git/blame - include/wx/containr.h
added wxControlWithItems constructor/destructor (for Darwin)
[wxWidgets.git] / include / wx / containr.h
CommitLineData
456bc6d9
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/containr.h
3// Purpose: wxControlContainer class declration: a "mix-in" class which
4// implements the TAB navigation between the controls
5// Author: Vadim Zeitlin
6// Modified by:
7// Created: 06.08.01
8// RCS-ID: $Id$
9// Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
10// Licence: wxWindows licence
11///////////////////////////////////////////////////////////////////////////////
12
13#ifndef _WX_CONTAINR_H_
14#define _WX_CONTAINR_H_
15
16#ifdef __GNUG__
dad5f99a 17 #pragma interface "containr.h"
456bc6d9
VZ
18#endif
19
20class WXDLLEXPORT wxFocusEvent;
21class WXDLLEXPORT wxNavigationKeyEvent;
22class WXDLLEXPORT wxWindow;
6285be72 23class WXDLLEXPORT wxWindowBase;
456bc6d9
VZ
24
25/*
26 Implementation note: wxControlContainer is not a real mix-in but rather
27 a class meant to be agregated with (and not inherited from). Although
28 logically it should be a mix-in, doing it like this has no advantage from
29 the point of view of the existing code but does have some problems (we'd
30 need to play tricks with event handlers which may be difficult to do
31 safely). The price we pay for this simplicity is the ugly macros below.
32 */
33
34// ----------------------------------------------------------------------------
35// wxControlContainer
36// ----------------------------------------------------------------------------
37
38class WXDLLEXPORT wxControlContainer
39{
be52b341
GD
40 DECLARE_NO_COPY_CLASS(wxControlContainer)
41
456bc6d9
VZ
42public:
43 // ctors and such
9948d31f
VZ
44 wxControlContainer(wxWindow *winParent = NULL);
45 void SetContainerWindow(wxWindow *winParent) { m_winParent = winParent; }
456bc6d9 46
9948d31f 47 // default item access
456bc6d9
VZ
48 wxWindow *GetDefaultItem() const { return m_winDefault; }
49 wxWindow *SetDefaultItem(wxWindow *win)
50 { wxWindow *winOld = m_winDefault; m_winDefault = win; return winOld; }
51
456bc6d9
VZ
52 // the methods to be called from the window event handlers
53 void HandleOnNavigationKey(wxNavigationKeyEvent& event);
54 void HandleOnFocus(wxFocusEvent& event);
55 void HandleOnWindowDestroy(wxWindowBase *child);
56
24a7a198
VZ
57 // should be called from SetFocus(), returns FALSE if we did nothing with
58 // the focus and the default processing should take place
59 bool DoSetFocus();
456bc6d9 60
9948d31f
VZ
61 // called from OnChildFocus() handler, i.e. when one of our (grand)
62 // children gets the focus
63 void SetLastFocus(wxWindow *win);
64
456bc6d9
VZ
65protected:
66 // set the focus to the child which had it the last time
67 bool SetFocusToChild();
68
69 // the parent window we manage the children for
70 wxWindow *m_winParent;
71
72 // the child which had the focus last time this panel was activated
73 wxWindow *m_winLastFocused;
74
75 // a default window (e.g. a button) or NULL
76 wxWindow *m_winDefault;
77};
78
79// this function is for wxWindows internal use only
80extern bool wxSetFocusToChild(wxWindow *win, wxWindow **child);
81
82// ----------------------------------------------------------------------------
83// macros which may be used by the classes wishing to implement TAB navigation
84// among their children
85// ----------------------------------------------------------------------------
86
87// declare the methods to be forwarded
88#define WX_DECLARE_CONTROL_CONTAINER() \
6b55490a 89public: \
456bc6d9
VZ
90 void OnNavigationKey(wxNavigationKeyEvent& event); \
91 void OnFocus(wxFocusEvent& event); \
92 virtual void OnChildFocus(wxChildFocusEvent& event); \
93 virtual void SetFocus(); \
94 virtual void RemoveChild(wxWindowBase *child); \
95 virtual wxWindow *GetDefaultItem() const; \
6b55490a
VZ
96 virtual wxWindow *SetDefaultItem(wxWindow *child); \
97\
98protected: \
99 wxControlContainer m_container
456bc6d9
VZ
100
101// implement the event table entries for wxControlContainer
102#define WX_EVENT_TABLE_CONTROL_CONTAINER(classname) \
103 EVT_SET_FOCUS(classname::OnFocus) \
104 EVT_CHILD_FOCUS(classname::OnChildFocus) \
105 EVT_NAVIGATION_KEY(classname::OnNavigationKey)
106
107// implement the methods forwarding to the wxControlContainer
6b55490a 108#define WX_DELEGATE_TO_CONTROL_CONTAINER(classname) \
456bc6d9
VZ
109wxWindow *classname::SetDefaultItem(wxWindow *child) \
110{ \
6b55490a 111 return m_container.SetDefaultItem(child); \
456bc6d9
VZ
112} \
113 \
114wxWindow *classname::GetDefaultItem() const \
115{ \
6b55490a 116 return m_container.GetDefaultItem(); \
456bc6d9
VZ
117} \
118 \
119void classname::OnNavigationKey( wxNavigationKeyEvent& event ) \
120{ \
6b55490a 121 m_container.HandleOnNavigationKey(event); \
456bc6d9
VZ
122} \
123 \
124void classname::RemoveChild(wxWindowBase *child) \
125{ \
6b55490a 126 m_container.HandleOnWindowDestroy(child); \
456bc6d9
VZ
127 \
128 wxWindow::RemoveChild(child); \
129} \
130 \
131void classname::SetFocus() \
132{ \
6b55490a 133 if ( !m_container.DoSetFocus() ) \
24a7a198 134 wxWindow::SetFocus(); \
456bc6d9
VZ
135} \
136 \
137void classname::OnChildFocus(wxChildFocusEvent& event) \
138{ \
6b55490a 139 m_container.SetLastFocus(event.GetWindow()); \
456bc6d9
VZ
140} \
141 \
142void classname::OnFocus(wxFocusEvent& event) \
143{ \
6b55490a 144 m_container.HandleOnFocus(event); \
456bc6d9
VZ
145}
146
147
148#endif // _WX_CONTAINR_H_