helper class for implementing composite controls under MSW
[wxWidgets.git] / 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
5 // Modified by:
6 // Created: 2004-12-11
7 // RCS-ID: $Id$
8 // Copyright: (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MSW_SUBWIN_H_
13 #define _WX_MSW_SUBWIN_H_
14
15 #include "wx/msw/private.h"
16
17 // ----------------------------------------------------------------------------
18 // wxSubwindows contains all HWNDs making part of a single wx control
19 // ----------------------------------------------------------------------------
20
21 class WXDLLEXPORT wxSubwindows
22 {
23 public:
24 // the number of subwindows can be specified either as parameter to ctor or
25 // later in Create()
26 wxSubwindows(size_t n = 0) { Init(); if ( n ) Create(n); }
27
28 // allocate enough space for the given number of windows
29 void Create(size_t n)
30 {
31 wxASSERT_MSG( !m_hwnds, _T("Create() called twice?") );
32
33 m_count = n;
34 m_hwnds = (HWND *)calloc(n, sizeof(HWND));
35 }
36
37 // non-virtual dtor, this class is not supposed to be used polymorphically
38 ~wxSubwindows()
39 {
40 for ( size_t n = 0; n < m_count; n++ )
41 {
42 ::DestroyWindow(m_hwnds[n]);
43 }
44
45 free(m_hwnds);
46 }
47
48 // get the number of subwindows
49 size_t GetCount() const { return m_count; }
50
51 // access a given window
52 HWND& Get(size_t n)
53 {
54 wxASSERT_MSG( n < m_count, _T("subwindow index out of range") );
55
56 return m_hwnds[n];
57 }
58
59 HWND& operator[](size_t n) { return Get(n); }
60 HWND operator[](size_t n) const
61 {
62 return wx_const_cast(wxSubwindows *, this)->Get(n);
63 }
64
65 // check if we have this window
66 bool HasWindow(HWND hwnd)
67 {
68 for ( size_t n = 0; n < m_count; n++ )
69 {
70 if ( m_hwnds[n] == hwnd )
71 return true;
72 }
73
74 return false;
75 }
76
77
78 // methods which are forwarded to all subwindows
79 // ---------------------------------------------
80
81 // show/hide everything
82 void Show(bool show)
83 {
84 int sw = show ? SW_SHOW : SW_HIDE;
85 for ( size_t n = 0; n < m_count; n++ )
86 {
87 ::ShowWindow(m_hwnds[n], sw);
88 }
89 }
90
91 // set font for all windows
92 void SetFont(const wxFont& font)
93 {
94 HFONT hfont = GetHfontOf(font);
95 wxCHECK_RET( hfont, _T("invalid font") );
96
97 for ( size_t n = 0; n < m_count; n++ )
98 {
99 ::SendMessage(m_hwnds[n], WM_SETFONT, (WPARAM)hfont, 0);
100 }
101 }
102
103 // find the bounding box for all windows
104 wxRect GetBoundingBox() const
105 {
106 wxRect r;
107 for ( size_t n = 0; n < m_count; n++ )
108 {
109 RECT rc;
110 ::GetWindowRect(m_hwnds[n], &rc);
111
112 r.Union(wxRectFromRECT(rc));
113 }
114
115 return r;
116 }
117
118 private:
119 void Init()
120 {
121 m_count = 0;
122 m_hwnds = NULL;
123 }
124
125 // number of elements in m_hwnds array
126 size_t m_count;
127
128 // the HWNDs we contain
129 HWND *m_hwnds;
130
131
132 DECLARE_NO_COPY_CLASS(wxSubwindows)
133 };
134
135 #endif // _WX_MSW_SUBWIN_H_
136