]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/subwin.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/subwin.h
3 // Purpose: helper for implementing the controls with subwindows
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_SUBWIN_H_
13 #define _WX_MSW_SUBWIN_H_
15 #include "wx/msw/private.h"
17 // ----------------------------------------------------------------------------
18 // wxSubwindows contains all HWNDs making part of a single wx control
19 // ----------------------------------------------------------------------------
21 class WXDLLEXPORT wxSubwindows
24 // the number of subwindows can be specified either as parameter to ctor or
26 wxSubwindows(size_t n
= 0) { Init(); if ( n
) Create(n
); }
28 // allocate enough space for the given number of windows
31 wxASSERT_MSG( !m_hwnds
, _T("Create() called twice?") );
34 m_hwnds
= (HWND
*)calloc(n
, sizeof(HWND
));
35 m_ids
= new wxWindowIDRef
[n
];
38 // non-virtual dtor, this class is not supposed to be used polymorphically
41 for ( size_t n
= 0; n
< m_count
; n
++ )
43 ::DestroyWindow(m_hwnds
[n
]);
50 // get the number of subwindows
51 size_t GetCount() const { return m_count
; }
53 // access a given window
56 wxASSERT_MSG( n
< m_count
, _T("subwindow index out of range") );
61 HWND
operator[](size_t n
) const
63 return wx_const_cast(wxSubwindows
*, this)->Get(n
);
66 // initialize the given window: id will be stored in wxWindowIDRef ensuring
67 // that it is not reused while this object exists
68 void Set(size_t n
, HWND hwnd
, wxWindowID id
)
70 wxASSERT_MSG( n
< m_count
, _T("subwindow index out of range") );
76 // check if we have this window
77 bool HasWindow(HWND hwnd
)
79 for ( size_t n
= 0; n
< m_count
; n
++ )
81 if ( m_hwnds
[n
] == hwnd
)
89 // methods which are forwarded to all subwindows
90 // ---------------------------------------------
92 // show/hide everything
95 int sw
= show
? SW_SHOW
: SW_HIDE
;
96 for ( size_t n
= 0; n
< m_count
; n
++ )
98 ::ShowWindow(m_hwnds
[n
], sw
);
102 // enable/disable everything
103 void Enable(bool enable
)
105 for ( size_t n
= 0; n
< m_count
; n
++ )
107 ::EnableWindow(m_hwnds
[n
], enable
);
111 // set font for all windows
112 void SetFont(const wxFont
& font
)
114 HFONT hfont
= GetHfontOf(font
);
115 wxCHECK_RET( hfont
, _T("invalid font") );
117 for ( size_t n
= 0; n
< m_count
; n
++ )
119 ::SendMessage(m_hwnds
[n
], WM_SETFONT
, (WPARAM
)hfont
, 0);
121 // otherwise the window might not be redrawn correctly
122 ::InvalidateRect(m_hwnds
[n
], NULL
, FALSE
/* don't erase bg */);
126 // find the bounding box for all windows
127 wxRect
GetBoundingBox() const
130 for ( size_t n
= 0; n
< m_count
; n
++ )
133 ::GetWindowRect(m_hwnds
[n
], &rc
);
135 r
.Union(wxRectFromRECT(rc
));
148 // number of elements in m_hwnds array
151 // the HWNDs we contain
154 // the IDs of the windows
155 wxWindowIDRef
*m_ids
;
158 DECLARE_NO_COPY_CLASS(wxSubwindows
)
161 // convenient macro to forward a few methods which are usually propagated to
162 // subwindows to a wxSubwindows object
164 // parameters should be:
165 // - cname the name of the class implementing these methods
166 // - base the name of its base class
167 // - subwins the name of the member variable of type wxSubwindows *
168 #define WX_FORWARD_STD_METHODS_TO_SUBWINDOWS(cname, base, subwins) \
169 bool cname::ContainsHWND(WXHWND hWnd) const \
171 return subwins && subwins->HasWindow((HWND)hWnd); \
174 bool cname::Show(bool show) \
176 if ( !base::Show(show) ) \
180 subwins->Show(show); \
185 bool cname::Enable(bool enable) \
187 if ( !base::Enable(enable) ) \
191 subwins->Enable(enable); \
196 bool cname::SetFont(const wxFont& font) \
198 if ( !base::SetFont(font) ) \
202 subwins->SetFont(font); \
208 #endif // _WX_MSW_SUBWIN_H_