]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: msw/checklst.cpp | |
3 | // Purpose: implementation of wxCheckListBox class | |
4 | // Author: Vadim Zeitlin | |
45187197 | 5 | // Modified by: |
2bda0e17 KB |
6 | // Created: 16.11.97 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
9 | // Licence: wxWindows license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
2bda0e17 KB |
12 | #ifdef __GNUG__ |
13 | #pragma implementation "checklst.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
47d67540 | 23 | #if wxUSE_OWNER_DRAWN |
1c089c47 | 24 | |
2432b92d JS |
25 | #include "wx/object.h" |
26 | #include "wx/colour.h" | |
27 | #include "wx/font.h" | |
28 | #include "wx/bitmap.h" | |
29 | #include "wx/window.h" | |
30 | #include "wx/listbox.h" | |
2bda0e17 | 31 | #include "wx/ownerdrw.h" |
2432b92d JS |
32 | #include "wx/settings.h" |
33 | #include "wx/dcmemory.h" | |
2bda0e17 KB |
34 | #include "wx/msw/checklst.h" |
35 | ||
3d05544e JS |
36 | #include <windows.h> |
37 | ||
2bda0e17 KB |
38 | // ============================================================================ |
39 | // implementation | |
40 | // ============================================================================ | |
41 | ||
42 | #if !USE_SHARED_LIBRARY | |
43 | IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox) | |
44 | #endif | |
45 | ||
46 | // ---------------------------------------------------------------------------- | |
47 | // declaration and implementation of wxCheckListBoxItem class | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
50 | class wxCheckListBoxItem : public wxOwnerDrawn | |
51 | { | |
52 | public: | |
53 | // ctor | |
c86f1403 | 54 | wxCheckListBoxItem(wxCheckListBox *pParent, size_t nIndex); |
2bda0e17 KB |
55 | |
56 | // drawing functions | |
57 | virtual bool OnDrawItem(wxDC& dc, const wxRect& rc, wxODAction act, wxODStatus stat); | |
58 | ||
59 | // simple accessors | |
60 | bool IsChecked() const { return m_bChecked; } | |
61 | void Check(bool bCheck) { m_bChecked = bCheck; } | |
62 | void Toggle(); | |
63 | ||
64 | private: | |
65 | bool m_bChecked; | |
66 | wxCheckListBox *m_pParent; | |
c86f1403 | 67 | size_t m_nIndex; |
2bda0e17 KB |
68 | }; |
69 | ||
c86f1403 | 70 | wxCheckListBoxItem::wxCheckListBoxItem(wxCheckListBox *pParent, size_t nIndex) |
2bda0e17 KB |
71 | : wxOwnerDrawn("", TRUE) // checkable |
72 | { | |
73 | m_bChecked = FALSE; | |
74 | m_pParent = pParent; | |
75 | m_nIndex = nIndex; | |
76 | ||
77 | // we don't initialize m_nCheckHeight/Width vars because it's | |
78 | // done in OnMeasure while they are used only in OnDraw and we | |
79 | // know that there will always be OnMeasure before OnDraw | |
80 | ||
81 | // fix appearance | |
82 | SetFont(wxSystemSettings::GetSystemFont(wxSYS_ANSI_VAR_FONT)); | |
83 | SetMarginWidth(GetDefaultMarginWidth()); | |
84 | } | |
85 | ||
86 | /* | |
87 | * JACS - I've got the owner-draw stuff partially working with WIN16, | |
88 | * with a really horrible-looking cross for wxCheckListBox instead of a | |
89 | * check - could use a bitmap check-mark instead, defined in wx.rc. | |
90 | * Also there's a refresh problem whereby it doesn't always draw the | |
91 | * check until you click to the right of it, which is OK for WIN32. | |
92 | */ | |
93 | ||
45187197 | 94 | bool wxCheckListBoxItem::OnDrawItem(wxDC& dc, const wxRect& rc, |
2bda0e17 KB |
95 | wxODAction act, wxODStatus stat) |
96 | { | |
97 | if ( IsChecked() ) | |
98 | stat = (wxOwnerDrawn::wxODStatus)(stat | wxOwnerDrawn::wxODChecked); | |
99 | ||
100 | if ( wxOwnerDrawn::OnDrawItem(dc, rc, act, stat) ) { | |
101 | // ## using native API for performance and precision | |
c86f1403 | 102 | size_t nCheckWidth = GetDefaultMarginWidth(), |
2bda0e17 | 103 | nCheckHeight = m_pParent->GetItemHeight(); |
45187197 RD |
104 | |
105 | int x = rc.GetX(), | |
2bda0e17 KB |
106 | y = rc.GetY(); |
107 | ||
108 | HDC hdc = (HDC)dc.GetHDC(); | |
109 | ||
110 | // create pens | |
111 | HPEN hpenBack = CreatePen(PS_SOLID, 0, GetSysColor(COLOR_WINDOW)), | |
112 | hpenGray = CreatePen(PS_SOLID, 0, RGB(128, 128, 128)), | |
45187197 | 113 | hpenPrev = (HPEN)SelectObject(hdc, hpenBack); |
2bda0e17 KB |
114 | |
115 | // we erase the 1-pixel border | |
116 | Rectangle(hdc, x, y, x + nCheckWidth, y + nCheckHeight); | |
117 | ||
118 | // shift check mark 1 pixel to the right (it looks better like this) | |
119 | x++; | |
120 | ||
121 | if ( IsChecked() ) { | |
122 | // first create a monochrome bitmap in a memory DC | |
123 | HDC hdcMem = CreateCompatibleDC(hdc); | |
124 | HBITMAP hbmpCheck = CreateBitmap(nCheckWidth, nCheckHeight, 1, 1, 0); | |
45187197 | 125 | HBITMAP hbmpOld = (HBITMAP)SelectObject(hdcMem, hbmpCheck); |
2bda0e17 KB |
126 | |
127 | // then draw a check mark into it | |
128 | RECT rect = { 0, 0, nCheckWidth, nCheckHeight }; | |
129 | ||
130 | #ifdef __WIN32__ | |
2432b92d | 131 | #ifndef __SC__ |
2bda0e17 | 132 | DrawFrameControl(hdcMem, &rect, DFC_MENU, DFCS_MENUCHECK); |
2432b92d | 133 | #endif |
2bda0e17 KB |
134 | #else |
135 | // In WIN16, draw a cross | |
136 | HPEN blackPen = CreatePen(PS_SOLID, 1, RGB(0, 0, 0)); | |
137 | HPEN whiteBrush = GetStockObject(WHITE_BRUSH); | |
138 | HPEN hPenOld = ::SelectObject(hdcMem, blackPen); | |
139 | HPEN hBrushOld = ::SelectObject(hdcMem, whiteBrush); | |
140 | ::SetROP2(hdcMem, R2_COPYPEN); | |
141 | Rectangle(hdcMem, 0, 0, nCheckWidth, nCheckHeight); | |
142 | MoveTo(hdcMem, 0, 0); | |
143 | LineTo(hdcMem, nCheckWidth, nCheckHeight); | |
144 | MoveTo(hdcMem, nCheckWidth, 0); | |
145 | LineTo(hdcMem, 0, nCheckHeight); | |
146 | ::SelectObject(hdcMem, hPenOld); | |
147 | ::SelectObject(hdcMem, hBrushOld); | |
148 | ::DeleteObject(blackPen); | |
149 | #endif | |
150 | ||
151 | // finally copy it to screen DC and clean up | |
45187197 | 152 | BitBlt(hdc, x, y, nCheckWidth - 1, nCheckHeight, |
2bda0e17 KB |
153 | hdcMem, 0, 0, SRCCOPY); |
154 | ||
155 | SelectObject(hdcMem, hbmpOld); | |
156 | DeleteObject(hbmpCheck); | |
157 | DeleteDC(hdcMem); | |
158 | } | |
159 | ||
160 | // now we draw the smaller rectangle | |
161 | y++; | |
162 | nCheckWidth -= 2; | |
163 | nCheckHeight -= 2; | |
164 | ||
165 | // draw hollow gray rectangle | |
166 | (void)SelectObject(hdc, hpenGray); | |
45187197 | 167 | HBRUSH hbrPrev = (HBRUSH)SelectObject(hdc, GetStockObject(NULL_BRUSH)); |
2bda0e17 KB |
168 | Rectangle(hdc, x, y, x + nCheckWidth, y + nCheckHeight); |
169 | ||
170 | // clean up | |
171 | (void)SelectObject(hdc, hpenPrev); | |
172 | (void)SelectObject(hdc, hbrPrev); | |
173 | ||
174 | DeleteObject(hpenBack); | |
175 | DeleteObject(hpenGray); | |
176 | ||
177 | /* | |
178 | dc.DrawRectangle(x, y, nCheckWidth, nCheckHeight); | |
179 | ||
180 | if ( IsChecked() ) { | |
181 | dc.DrawLine(x, y, x + nCheckWidth, y + nCheckHeight); | |
182 | dc.DrawLine(x, y + nCheckHeight, x + nCheckWidth, y); | |
183 | } | |
184 | */ | |
185 | ||
186 | return TRUE; | |
187 | } | |
188 | ||
189 | return FALSE; | |
190 | } | |
191 | ||
192 | // change the state of the item and redraw it | |
193 | void wxCheckListBoxItem::Toggle() | |
45187197 | 194 | { |
2bda0e17 KB |
195 | m_bChecked = !m_bChecked; |
196 | ||
c86f1403 VZ |
197 | size_t nHeight = m_pParent->GetItemHeight(); |
198 | size_t y = m_nIndex * nHeight; | |
2bda0e17 KB |
199 | RECT rcUpdate = { 0, y, GetDefaultMarginWidth(), y + nHeight}; |
200 | InvalidateRect((HWND)m_pParent->GetHWND(), &rcUpdate, FALSE); | |
201 | ||
202 | wxCommandEvent event(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, m_pParent->GetId()); | |
203 | event.SetInt(m_nIndex); | |
204 | event.SetEventObject(m_pParent); | |
205 | m_pParent->ProcessCommand(event); | |
206 | } | |
207 | ||
208 | // ---------------------------------------------------------------------------- | |
209 | // implementation of wxCheckListBox class | |
210 | // ---------------------------------------------------------------------------- | |
211 | ||
212 | // define event table | |
213 | // ------------------ | |
214 | BEGIN_EVENT_TABLE(wxCheckListBox, wxListBox) | |
215 | EVT_CHAR(wxCheckListBox::OnChar) | |
216 | EVT_LEFT_DOWN(wxCheckListBox::OnLeftClick) | |
217 | END_EVENT_TABLE() | |
218 | ||
219 | // control creation | |
220 | // ---------------- | |
221 | ||
222 | // def ctor: use Create() to really create the control | |
223 | wxCheckListBox::wxCheckListBox() : wxListBox() | |
224 | { | |
225 | } | |
226 | ||
227 | // ctor which creates the associated control | |
debe6624 | 228 | wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id, |
2bda0e17 | 229 | const wxPoint& pos, const wxSize& size, |
debe6624 JS |
230 | int nStrings, const wxString choices[], |
231 | long style, const wxValidator& val, | |
2bda0e17 KB |
232 | const wxString& name) // , const wxFont& font) |
233 | // don't use ctor with arguments! we must call Create() | |
234 | // ourselves from here. | |
235 | : wxListBox() | |
236 | // , m_font(font) | |
237 | { | |
238 | Create(parent, id, pos, size, nStrings, choices, style|wxLB_OWNERDRAW, val, name); | |
239 | } | |
240 | ||
241 | // create/retrieve item | |
242 | // -------------------- | |
243 | ||
244 | // create a check list box item | |
c86f1403 | 245 | wxOwnerDrawn *wxCheckListBox::CreateItem(size_t nIndex) |
2bda0e17 KB |
246 | { |
247 | wxCheckListBoxItem *pItem = new wxCheckListBoxItem(this, nIndex); | |
248 | if ( m_windowFont.Ok() ) | |
249 | pItem->SetFont(m_windowFont); | |
250 | ||
251 | return pItem; | |
252 | } | |
253 | ||
254 | // get item (converted to right type) | |
255 | #define GetItem(n) ((wxCheckListBoxItem *)(GetItem(n))) | |
256 | ||
257 | // return item size | |
258 | // ---------------- | |
259 | bool wxCheckListBox::MSWOnMeasure(WXMEASUREITEMSTRUCT *item) | |
260 | { | |
261 | if ( wxListBox::MSWOnMeasure(item) ) { | |
262 | MEASUREITEMSTRUCT *pStruct = (MEASUREITEMSTRUCT *)item; | |
263 | ||
264 | // save item height | |
265 | m_nItemHeight = pStruct->itemHeight; | |
266 | ||
267 | // add place for the check mark | |
268 | pStruct->itemWidth += wxOwnerDrawn::GetDefaultMarginWidth(); | |
269 | ||
270 | return TRUE; | |
271 | } | |
272 | ||
273 | return FALSE; | |
274 | } | |
275 | ||
276 | // check items | |
277 | // ----------- | |
278 | ||
c86f1403 | 279 | bool wxCheckListBox::IsChecked(size_t uiIndex) const |
2bda0e17 KB |
280 | { |
281 | return GetItem(uiIndex)->IsChecked(); | |
282 | } | |
283 | ||
c86f1403 | 284 | void wxCheckListBox::Check(size_t uiIndex, bool bCheck) |
2bda0e17 KB |
285 | { |
286 | GetItem(uiIndex)->Check(bCheck); | |
287 | } | |
288 | ||
289 | // process events | |
290 | // -------------- | |
291 | ||
292 | void wxCheckListBox::OnChar(wxKeyEvent& event) | |
293 | { | |
294 | if ( event.KeyCode() == WXK_SPACE ) | |
295 | GetItem(GetSelection())->Toggle(); | |
296 | else | |
297 | wxListBox::OnChar(event); | |
298 | } | |
299 | ||
300 | void wxCheckListBox::OnLeftClick(wxMouseEvent& event) | |
301 | { | |
302 | // clicking on the item selects it, clicking on the checkmark toggles | |
c1888b05 | 303 | if ( event.GetX() <= wxOwnerDrawn::GetDefaultMarginWidth() ) { |
2bda0e17 | 304 | // # better use LB_ITEMFROMPOINT perhaps? |
c86f1403 VZ |
305 | size_t nItem = ((size_t)event.GetY()) / m_nItemHeight; |
306 | if ( nItem < (size_t)m_noItems ) | |
2bda0e17 KB |
307 | GetItem(nItem)->Toggle(); |
308 | //else: it's not an error, just click outside of client zone | |
309 | } | |
310 | else { | |
311 | // implement default behaviour: clicking on the item selects it | |
312 | event.Skip(); | |
313 | } | |
314 | } | |
1c089c47 JS |
315 | |
316 | #endif | |
317 |