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