]>
Commit | Line | Data |
---|---|---|
19fdd4ef VZ |
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 | ||
052da7d5 VZ |
91 | // enable/disable everything |
92 | void Enable(bool enable) | |
93 | { | |
94 | for ( size_t n = 0; n < m_count; n++ ) | |
95 | { | |
96 | ::EnableWindow(m_hwnds[n], enable); | |
97 | } | |
98 | } | |
99 | ||
19fdd4ef VZ |
100 | // set font for all windows |
101 | void SetFont(const wxFont& font) | |
102 | { | |
103 | HFONT hfont = GetHfontOf(font); | |
104 | wxCHECK_RET( hfont, _T("invalid font") ); | |
105 | ||
106 | for ( size_t n = 0; n < m_count; n++ ) | |
107 | { | |
108 | ::SendMessage(m_hwnds[n], WM_SETFONT, (WPARAM)hfont, 0); | |
109 | } | |
110 | } | |
111 | ||
112 | // find the bounding box for all windows | |
113 | wxRect GetBoundingBox() const | |
114 | { | |
115 | wxRect r; | |
116 | for ( size_t n = 0; n < m_count; n++ ) | |
117 | { | |
118 | RECT rc; | |
119 | ::GetWindowRect(m_hwnds[n], &rc); | |
120 | ||
121 | r.Union(wxRectFromRECT(rc)); | |
122 | } | |
123 | ||
124 | return r; | |
125 | } | |
126 | ||
127 | private: | |
128 | void Init() | |
129 | { | |
130 | m_count = 0; | |
131 | m_hwnds = NULL; | |
132 | } | |
133 | ||
134 | // number of elements in m_hwnds array | |
135 | size_t m_count; | |
136 | ||
137 | // the HWNDs we contain | |
138 | HWND *m_hwnds; | |
139 | ||
140 | ||
141 | DECLARE_NO_COPY_CLASS(wxSubwindows) | |
142 | }; | |
143 | ||
144 | #endif // _WX_MSW_SUBWIN_H_ | |
145 |