]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/os2/checklst.cpp
Avoid crash if user aborts the print
[wxWidgets.git] / src / os2 / checklst.cpp
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: src/os2/checklst.cpp
3// Purpose: implementation of wxCheckListBox class
4// Author: David Webster
5// Modified by:
6// Created: 10/13/99
7// RCS-ID: $Id$
8// Copyright: (c) David Webster
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// headers & declarations
14// ============================================================================
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#if wxUSE_CHECKLISTBOX && wxUSE_OWNER_DRAWN
20
21#include "wx/checklst.h"
22
23#ifndef WX_PRECOMP
24 #include "wx/object.h"
25 #include "wx/log.h"
26 #include "wx/window.h"
27 #include "wx/dcmemory.h"
28 #include "wx/dcscreen.h"
29 #include "wx/settings.h"
30 #include "wx/listbox.h"
31 #include "wx/bitmap.h"
32 #include "wx/colour.h"
33 #include "wx/font.h"
34#endif
35
36#include "wx/ownerdrw.h"
37
38#define INCL_PM
39#include <os2.h>
40
41// ----------------------------------------------------------------------------
42// private functions
43// ----------------------------------------------------------------------------
44
45// get item (converted to right type)
46#define GetItem(n) ((wxCheckListBoxItem *)(GetItem(n)))
47
48// ============================================================================
49// implementation
50// ============================================================================
51
52IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
53
54// ----------------------------------------------------------------------------
55// declaration and implementation of wxCheckListBoxItem class
56// ----------------------------------------------------------------------------
57
58class wxCheckListBoxItem : public wxOwnerDrawn
59{
60 friend class wxCheckListBox;
61public:
62 //
63 // ctor
64 //
65 wxCheckListBoxItem(wxCheckListBox* pParent, size_t nIndex);
66
67 //
68 // Drawing functions
69 //
70 virtual bool OnDrawItem( wxDC& rDc,
71 const wxRect& rRect,
72 wxODAction eAct,
73 wxODStatus eStat
74 );
75
76 //
77 // Simple accessors
78 //
79 bool IsChecked(void) const { return m_bChecked; }
80 void Check(bool bCheck);
81 void Toggle(void) { Check(!IsChecked()); }
82
83private:
84 bool m_bChecked;
85 wxCheckListBox* m_pParent;
86 size_t m_nIndex;
87}; // end of CLASS wxCheckListBoxItem
88
89
90
91wxCheckListBoxItem::wxCheckListBoxItem(wxCheckListBox* pParent, size_t nIndex)
92 :wxOwnerDrawn( wxEmptyString, true /* checkable */ )
93{
94 m_bChecked = false;
95 m_pParent = pParent;
96 m_nIndex = nIndex;
97
98 //
99 // We don't initialize m_nCheckHeight/Width vars because it's
100 // done in OnMeasure while they are used only in OnDraw and we
101 // know that there will always be OnMeasure before OnDraw
102 //
103 SetMarginWidth(GetDefaultMarginWidth());
104} // end of wxCheckListBoxItem::wxCheckListBoxItem
105
106
107
108bool wxCheckListBoxItem::OnDrawItem ( wxDC& rDc,
109 const wxRect& rRect,
110 wxODAction eAct,
111 wxODStatus eStat )
112{
113 wxRect vRect = rRect;
114
115 ::WinQueryWindowRect( m_pParent->GetHWND(), &rDc.m_vRclPaint );
116 if (IsChecked())
117 eStat = (wxOwnerDrawn::wxODStatus)(eStat | wxOwnerDrawn::wxODChecked);
118
119 //
120 // Unfortunately PM doesn't quite get the text position exact. We need to alter
121 // it down and to the right, just a little bit. The coords in rRect are OS/2
122 // coords not wxWidgets coords.
123 //
124 vRect.x += 5;
125 vRect.y -= 3;
126 if (wxOwnerDrawn::OnDrawItem( rDc, vRect, eAct, eStat))
127 {
128 size_t nCheckWidth = GetDefaultMarginWidth();
129 size_t nCheckHeight = m_pParent->GetItemHeight();
130 int nParentHeight;
131 int nX = rRect.GetX();
132 int nY = rRect.GetY();
133 int nOldY = nY;
134 wxColour vColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
135 wxPen vPenBack;
136 wxPen vPenPrev;
137
138 m_pParent->GetSize( NULL, &nParentHeight);
139
140 nY = nParentHeight - nY - nCheckHeight;
141 vPenBack = wxPen(vColour, 1, wxSOLID);
142
143 //
144 // Erase the 1-pixel border
145 //
146 rDc.SetPen(vPenBack);
147 rDc.DrawRectangle( nX, nY, nCheckWidth, nCheckHeight );
148
149 //
150 // Now we draw the smaller rectangle
151 //
152 nY++;
153 nCheckWidth -= 2;
154 nCheckHeight -= 2;
155
156 //
157 // Draw hollow gray rectangle
158 //
159 rDc.SetPen(*wxGREY_PEN);
160 rDc.DrawRectangle( nX, nY, nCheckWidth, nCheckHeight );
161
162 nX++;
163 if (IsChecked())
164 {
165 //
166 // Draw the check by loading the sys standard bitmap and drawing it
167 //
168 HBITMAP hChkBmp = ::WinGetSysBitmap( HWND_DESKTOP, SBMP_MENUCHECK );
169 POINTL vPoint = {nX, nOldY + 3};
170
171 ::WinDrawBitmap( rDc.GetHPS(),
172 hChkBmp,
173 NULL,
174 &vPoint,
175 NULL,
176 NULL,
177 DBM_NORMAL
178 );
179 }
180 return true;
181 }
182 return false;
183} // end of wxCheckListBoxItem::OnDrawItem
184
185//
186// Change the state of the item and redraw it
187//
188void wxCheckListBoxItem::Check( bool bCheck )
189{
190 m_bChecked = bCheck;
191
192 //
193 // Index may be chanegd because new items were added/deleted
194 //
195 if (m_pParent->GetItemIndex(this) != (int)m_nIndex)
196 {
197 //
198 // Update it
199 //
200 int nIndex = m_pParent->GetItemIndex(this);
201
202 wxASSERT_MSG(nIndex != wxNOT_FOUND, wxT("what does this item do here?"));
203
204 m_nIndex = (size_t)nIndex;
205 }
206
207
208 wxCommandEvent vEvent( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED,m_pParent->GetId());
209
210 vEvent.SetInt(m_nIndex);
211 vEvent.SetEventObject(m_pParent);
212 m_pParent->ProcessCommand(vEvent);
213} // end of wxCheckListBoxItem::Check
214
215
216// ----------------------------------------------------------------------------
217// implementation of wxCheckListBox class
218// ----------------------------------------------------------------------------
219
220// define event table
221// ------------------
222BEGIN_EVENT_TABLE(wxCheckListBox, wxListBox)
223 EVT_CHAR(wxCheckListBox::OnChar)
224 EVT_LEFT_DOWN(wxCheckListBox::OnLeftClick)
225END_EVENT_TABLE()
226
227
228
229//
230// Control creation
231// ----------------
232//
233
234//
235// Default ctor: use Create() to really create the control
236//
237wxCheckListBox::wxCheckListBox()
238 :wxCheckListBoxBase()
239{
240} // end of wxCheckListBox::wxCheckListBox
241
242//
243// Ctor which creates the associated control
244//
245wxCheckListBox::wxCheckListBox ( wxWindow* pParent,
246 wxWindowID vId,
247 const wxPoint& rPos,
248 const wxSize& rSize,
249 int nStrings,
250 const wxString asChoices[],
251 long lStyle,
252 const wxValidator& rVal,
253 const wxString& rsName)
254 :wxCheckListBoxBase()
255{
256 Create( pParent, vId, rPos, rSize, nStrings, asChoices, lStyle | wxLB_OWNERDRAW, rVal, rsName );
257} // end of wxCheckListBox::wxCheckListBox
258
259wxCheckListBox::wxCheckListBox ( wxWindow* pParent,
260 wxWindowID vId,
261 const wxPoint& rPos,
262 const wxSize& rSize,
263 const wxArrayString& asChoices,
264 long lStyle,
265 const wxValidator& rVal,
266 const wxString& rsName )
267 :wxCheckListBoxBase()
268{
269 wxCArrayString chs(asChoices);
270 Create( pParent, vId, rPos, rSize, chs.GetCount(), chs.GetStrings(),
271 lStyle | wxLB_OWNERDRAW, rVal, rsName );
272} // end of wxCheckListBox::wxCheckListBox
273
274void wxCheckListBox::Delete(unsigned int n)
275{
276 wxCHECK_RET( IsValid(n),
277 wxT("invalid index in wxCheckListBox::Delete") );
278 wxListBox::Delete(n);
279
280 //
281 // Free memory
282 //
283 delete m_aItems[n];
284 m_aItems.RemoveAt(n);
285} // end of wxCheckListBox::Delete
286
287int wxCheckListBox::DoInsertItems(const wxArrayStringsAdapter& items,
288 unsigned int pos,
289 void **clientData,
290 wxClientDataType type)
291{
292 // pos is validated in wxListBox
293 int result = wxListBox::DoInsertItems( items, pos, clientData, type );
294 unsigned int n = items.GetCount();
295 for (unsigned int i = 0; i < n; i++)
296 {
297 wxOwnerDrawn* pNewItem = CreateItem((size_t)(pos + i));
298
299 pNewItem->SetName(items[i]);
300 m_aItems.Insert(pNewItem, (size_t)(pos + i));
301 ::WinSendMsg( (HWND)GetHWND(),
302 LM_SETITEMHANDLE,
303 (MPARAM)(i + pos),
304 MPFROMP(pNewItem)
305 );
306 }
307 return result;
308} // end of wxCheckListBox::DoInsertItems
309
310bool wxCheckListBox::SetFont ( const wxFont& rFont )
311{
312 for (unsigned int i = 0; i < m_aItems.GetCount(); i++)
313 m_aItems[i]->SetFont(rFont);
314 wxListBox::SetFont(rFont);
315 return true;
316} // end of wxCheckListBox::SetFont
317
318
319
320//
321// Create/retrieve item
322// --------------------
323//
324
325//
326// Create a check list box item
327//
328wxOwnerDrawn* wxCheckListBox::CreateItem(size_t nIndex)
329{
330 wxCheckListBoxItem* pItem = new wxCheckListBoxItem( this, nIndex );
331 return pItem;
332} // end of wxCheckListBox::CreateItem
333
334
335
336//
337// Return item size
338// ----------------
339//
340long wxCheckListBox::OS2OnMeasure ( WXMEASUREITEMSTRUCT* pItem )
341{
342 if (!pItem)
343 pItem = (WXMEASUREITEMSTRUCT*)new OWNERITEM;
344 if (wxListBox::OS2OnMeasure(pItem))
345 {
346 POWNERITEM pStruct = (POWNERITEM)pItem;
347
348 //
349 // Save item height
350 //
351 m_nItemHeight = pStruct->rclItem.yTop - pStruct->rclItem.yBottom;
352
353 //
354 // Add place for the check mark
355 //
356 pStruct->rclItem.xRight += wxOwnerDrawn::GetDefaultMarginWidth();
357 return long(MRFROM2SHORT((USHORT)m_nItemHeight, (USHORT)(pStruct->rclItem.xRight - pStruct->rclItem.xLeft)));
358 }
359 return 0L;
360} // end of wxCheckListBox::CreateItem
361
362
363
364//
365// Check items
366// -----------
367//
368bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
369{
370 return GetItem(uiIndex)->IsChecked();
371} // end of wxCheckListBox::IsChecked
372
373void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck)
374{
375 GetItem(uiIndex)->Check(bCheck);
376} // end of wxCheckListBox::Check
377
378
379
380//
381// Process events
382// --------------
383//
384void wxCheckListBox::OnChar ( wxKeyEvent& rEvent )
385{
386 if (rEvent.GetKeyCode() == WXK_SPACE)
387 GetItem(GetSelection())->Toggle();
388 else
389 rEvent.Skip();
390} // end of wxCheckListBox::OnChar
391
392void wxCheckListBox::OnLeftClick ( wxMouseEvent& rEvent )
393{
394 //
395 // Clicking on the item selects it, clicking on the checkmark toggles
396 //
397 if (rEvent.GetX() <= wxOwnerDrawn::GetDefaultMarginWidth())
398 {
399 int nParentHeight;
400 wxScreenDC vDc;
401 wxCoord vHeight;
402
403 GetSize( NULL, &nParentHeight );
404 vDc.SetFont(GetFont());
405 vHeight = (wxCoord)(vDc.GetCharHeight() * 2.5);
406
407 //
408 // This, of course, will not work if the LB is scrolled
409 //
410 int nY = rEvent.GetY();
411
412 nY = nParentHeight - (nY + vHeight);
413
414 size_t nItem = (size_t)(nY / vHeight);
415
416 if (nItem < m_nNumItems)
417 GetItem(nItem)->Toggle();
418 //
419 // else: it's not an error, just click outside of client zone
420 //
421 }
422 else
423 {
424 //
425 // Implement default behaviour: clicking on the item selects it
426 //
427 rEvent.Skip();
428 }
429} // end of wxCheckListBox::OnLeftClick
430
431#endif // wxUSE_CHECKLISTBOX && wxUSE_OWNER_DRAWN