]> git.saurik.com Git - wxWidgets.git/blame - src/os2/checklst.cpp
Added DnD guard
[wxWidgets.git] / src / os2 / checklst.cpp
CommitLineData
0e320a79 1///////////////////////////////////////////////////////////////////////////////
84882850 2// Name: src/os2/checklst.cpp
0e320a79 3// Purpose: implementation of wxCheckListBox class
37f214d5 4// Author: David Webster
0616b838 5// Modified by:
37f214d5 6// Created: 10/13/99
0e320a79 7// RCS-ID: $Id$
37f214d5 8// Copyright: (c) David Webster
65571936 9// Licence: wxWindows licence
0e320a79
DW
10///////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// headers & declarations
14// ============================================================================
15
37f214d5
DW
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
84882850 19#if wxUSE_CHECKLISTBOX && wxUSE_OWNER_DRAWN
37f214d5 20
e4db172a
WS
21#include "wx/checklst.h"
22
8e3f3880
WS
23#ifndef WX_PRECOMP
24 #include "wx/object.h"
e4db172a 25 #include "wx/log.h"
cdccdfab 26 #include "wx/window.h"
f38924e8 27 #include "wx/dcmemory.h"
11dbb4bf 28 #include "wx/dcscreen.h"
9eddec69 29 #include "wx/settings.h"
2a673eb1 30 #include "wx/listbox.h"
0bca0373 31 #include "wx/bitmap.h"
7cf41a5d 32 #include "wx/colour.h"
48a1108e 33 #include "wx/font.h"
8e3f3880
WS
34#endif
35
37f214d5 36#include "wx/ownerdrw.h"
0e320a79 37
37f214d5
DW
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)))
0e320a79
DW
47
48// ============================================================================
6463b9f5 49// implementation
0e320a79
DW
50// ============================================================================
51
1de4baa3 52IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
0e320a79 53
37f214d5
DW
54// ----------------------------------------------------------------------------
55// declaration and implementation of wxCheckListBoxItem class
56// ----------------------------------------------------------------------------
57
58class wxCheckListBoxItem : public wxOwnerDrawn
59{
1de4baa3 60 friend class wxCheckListBox;
37f214d5 61public:
1de4baa3
DW
62 //
63 // ctor
64 //
aa61d352 65 wxCheckListBoxItem(wxCheckListBox* pParent, size_t nIndex);
1de4baa3
DW
66
67 //
68 // Drawing functions
69 //
84882850
WS
70 virtual bool OnDrawItem( wxDC& rDc,
71 const wxRect& rRect,
72 wxODAction eAct,
73 wxODStatus eStat
1de4baa3
DW
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()); }
37f214d5
DW
82
83private:
84882850
WS
84 bool m_bChecked;
85 wxCheckListBox* m_pParent;
86 size_t m_nIndex;
1de4baa3
DW
87}; // end of CLASS wxCheckListBoxItem
88
84882850
WS
89
90
aa61d352 91wxCheckListBoxItem::wxCheckListBoxItem(wxCheckListBox* pParent, size_t nIndex)
84882850 92 :wxOwnerDrawn( wxEmptyString, true /* checkable */ )
37f214d5 93{
84882850 94 m_bChecked = false;
1de4baa3
DW
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
84882850
WS
106
107
108bool wxCheckListBoxItem::OnDrawItem ( wxDC& rDc,
109 const wxRect& rRect,
110 wxODAction eAct,
111 wxODStatus eStat )
37f214d5 112{
84882850 113 wxRect vRect = rRect;
1de4baa3 114
84882850 115 ::WinQueryWindowRect( m_pParent->GetHWND(), &rDc.m_vRclPaint );
1de4baa3
DW
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
77ffb593 122 // coords not wxWidgets coords.
1de4baa3
DW
123 //
124 vRect.x += 5;
125 vRect.y -= 3;
84882850 126 if (wxOwnerDrawn::OnDrawItem( rDc, vRect, eAct, eStat))
1de4baa3 127 {
84882850
WS
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);
1de4baa3
DW
139
140 nY = nParentHeight - nY - nCheckHeight;
141 vPenBack = wxPen(vColour, 1, wxSOLID);
1de4baa3
DW
142
143 //
144 // Erase the 1-pixel border
145 //
146 rDc.SetPen(vPenBack);
84882850 147 rDc.DrawRectangle( nX, nY, nCheckWidth, nCheckHeight );
1de4baa3
DW
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 //
84882850
WS
159 rDc.SetPen(*wxGREY_PEN);
160 rDc.DrawRectangle( nX, nY, nCheckWidth, nCheckHeight );
1de4baa3
DW
161
162 nX++;
163 if (IsChecked())
164 {
165 //
166 // Draw the check by loading the sys standard bitmap and drawing it
167 //
84882850
WS
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
1de4baa3
DW
178 );
179 }
84882850 180 return true;
37f214d5 181 }
84882850 182 return false;
1de4baa3 183} // end of wxCheckListBoxItem::OnDrawItem
37f214d5 184
37f214d5 185//
1de4baa3 186// Change the state of the item and redraw it
37f214d5 187//
aa61d352 188void wxCheckListBoxItem::Check( bool bCheck )
37f214d5 189{
1de4baa3 190 m_bChecked = bCheck;
37f214d5 191
1de4baa3
DW
192 //
193 // Index may be chanegd because new items were added/deleted
194 //
195 if (m_pParent->GetItemIndex(this) != (int)m_nIndex)
37f214d5 196 {
1de4baa3
DW
197 //
198 // Update it
199 //
84882850 200 int nIndex = m_pParent->GetItemIndex(this);
37f214d5 201
1de4baa3 202 wxASSERT_MSG(nIndex != wxNOT_FOUND, wxT("what does this item do here?"));
37f214d5 203
1de4baa3 204 m_nIndex = (size_t)nIndex;
37f214d5
DW
205 }
206
37f214d5 207
84882850 208 wxCommandEvent vEvent( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED,m_pParent->GetId());
37f214d5 209
1de4baa3
DW
210 vEvent.SetInt(m_nIndex);
211 vEvent.SetEventObject(m_pParent);
212 m_pParent->ProcessCommand(vEvent);
213} // end of wxCheckListBoxItem::Check
37f214d5 214
84882850 215
0e320a79
DW
216// ----------------------------------------------------------------------------
217// implementation of wxCheckListBox class
218// ----------------------------------------------------------------------------
219
220// define event table
221// ------------------
222BEGIN_EVENT_TABLE(wxCheckListBox, wxListBox)
84882850
WS
223 EVT_CHAR(wxCheckListBox::OnChar)
224 EVT_LEFT_DOWN(wxCheckListBox::OnLeftClick)
0e320a79
DW
225END_EVENT_TABLE()
226
84882850
WS
227
228
1de4baa3
DW
229//
230// Control creation
0e320a79 231// ----------------
1de4baa3 232//
0e320a79 233
1de4baa3
DW
234//
235// Default ctor: use Create() to really create the control
236//
237wxCheckListBox::wxCheckListBox()
84882850 238 :wxCheckListBoxBase()
0e320a79 239{
1de4baa3 240} // end of wxCheckListBox::wxCheckListBox
0e320a79 241
1de4baa3
DW
242//
243// Ctor which creates the associated control
244//
84882850
WS
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()
0e320a79 255{
84882850 256 Create( pParent, vId, rPos, rSize, nStrings, asChoices, lStyle | wxLB_OWNERDRAW, rVal, rsName );
1de4baa3 257} // end of wxCheckListBox::wxCheckListBox
37f214d5 258
84882850
WS
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()
584ad2a3
MB
268{
269 wxCArrayString chs(asChoices);
84882850
WS
270 Create( pParent, vId, rPos, rSize, chs.GetCount(), chs.GetStrings(),
271 lStyle | wxLB_OWNERDRAW, rVal, rsName );
584ad2a3
MB
272} // end of wxCheckListBox::wxCheckListBox
273
aa61d352 274void wxCheckListBox::Delete(unsigned int n)
37f214d5 275{
8228b893 276 wxCHECK_RET( IsValid(n),
84882850
WS
277 wxT("invalid index in wxCheckListBox::Delete") );
278 wxListBox::Delete(n);
37f214d5 279
1de4baa3
DW
280 //
281 // Free memory
282 //
84882850
WS
283 delete m_aItems[n];
284 m_aItems.RemoveAt(n);
1de4baa3 285} // end of wxCheckListBox::Delete
37f214d5 286
aa61d352 287void wxCheckListBox::DoInsertItems(const wxArrayString& items, unsigned int pos)
37f214d5 288{
84882850
WS
289 // pos is validated in wxListBox
290 wxListBox::DoInsertItems( items, pos );
aa61d352
VZ
291 unsigned int n = items.GetCount();
292 for (unsigned int i = 0; i < n; i++)
1de4baa3 293 {
84882850
WS
294 wxOwnerDrawn* pNewItem = CreateItem((size_t)(pos + i));
295
296 pNewItem->SetName(items[i]);
297 m_aItems.Insert(pNewItem, (size_t)(pos + i));
298 ::WinSendMsg( (HWND)GetHWND(),
299 LM_SETITEMHANDLE,
300 (MPARAM)(i + pos),
301 MPFROMP(pNewItem)
1de4baa3 302 );
37f214d5 303 }
1de4baa3 304} // end of wxCheckListBox::InsertItems
37f214d5 305
84882850 306bool wxCheckListBox::SetFont ( const wxFont& rFont )
37f214d5 307{
aa61d352 308 for (unsigned int i = 0; i < m_aItems.GetCount(); i++)
1de4baa3
DW
309 m_aItems[i]->SetFont(rFont);
310 wxListBox::SetFont(rFont);
84882850 311 return true;
1de4baa3 312} // end of wxCheckListBox::SetFont
37f214d5 313
84882850
WS
314
315
1de4baa3
DW
316//
317// Create/retrieve item
37f214d5 318// --------------------
1de4baa3 319//
37f214d5 320
1de4baa3
DW
321//
322// Create a check list box item
323//
aa61d352 324wxOwnerDrawn* wxCheckListBox::CreateItem(size_t nIndex)
37f214d5 325{
84882850 326 wxCheckListBoxItem* pItem = new wxCheckListBoxItem( this, nIndex );
1de4baa3
DW
327 return pItem;
328} // end of wxCheckListBox::CreateItem
0e320a79 329
84882850
WS
330
331
1de4baa3
DW
332//
333// Return item size
37f214d5 334// ----------------
1de4baa3 335//
84882850 336long wxCheckListBox::OS2OnMeasure ( WXMEASUREITEMSTRUCT* pItem )
37f214d5 337{
1de4baa3
DW
338 if (!pItem)
339 pItem = (WXMEASUREITEMSTRUCT*)new OWNERITEM;
84882850 340 if (wxListBox::OS2OnMeasure(pItem))
1de4baa3 341 {
84882850 342 POWNERITEM pStruct = (POWNERITEM)pItem;
1de4baa3
DW
343
344 //
345 // Save item height
346 //
347 m_nItemHeight = pStruct->rclItem.yTop - pStruct->rclItem.yBottom;
348
349 //
350 // Add place for the check mark
351 //
352 pStruct->rclItem.xRight += wxOwnerDrawn::GetDefaultMarginWidth();
f5ea767e 353 return long(MRFROM2SHORT((USHORT)m_nItemHeight, (USHORT)(pStruct->rclItem.xRight - pStruct->rclItem.xLeft)));
1de4baa3 354 }
f5ea767e 355 return 0L;
1de4baa3 356} // end of wxCheckListBox::CreateItem
37f214d5 357
84882850
WS
358
359
1de4baa3
DW
360//
361// Check items
0e320a79 362// -----------
1de4baa3 363//
aa61d352 364bool wxCheckListBox::IsChecked(unsigned int uiIndex) const
37f214d5 365{
1de4baa3
DW
366 return GetItem(uiIndex)->IsChecked();
367} // end of wxCheckListBox::IsChecked
37f214d5 368
aa61d352 369void wxCheckListBox::Check(unsigned int uiIndex, bool bCheck)
0e320a79 370{
1de4baa3
DW
371 GetItem(uiIndex)->Check(bCheck);
372} // end of wxCheckListBox::Check
0e320a79 373
84882850
WS
374
375
1de4baa3
DW
376//
377// Process events
37f214d5 378// --------------
1de4baa3 379//
84882850 380void wxCheckListBox::OnChar ( wxKeyEvent& rEvent )
0e320a79 381{
9923c37d 382 if (rEvent.GetKeyCode() == WXK_SPACE)
1de4baa3
DW
383 GetItem(GetSelection())->Toggle();
384 else
385 rEvent.Skip();
386} // end of wxCheckListBox::OnChar
387
84882850 388void wxCheckListBox::OnLeftClick ( wxMouseEvent& rEvent )
37f214d5 389{
1de4baa3
DW
390 //
391 // Clicking on the item selects it, clicking on the checkmark toggles
392 //
393 if (rEvent.GetX() <= wxOwnerDrawn::GetDefaultMarginWidth())
394 {
395 int nParentHeight;
396 wxScreenDC vDc;
397 wxCoord vHeight;
398
84882850 399 GetSize( NULL, &nParentHeight );
1de4baa3 400 vDc.SetFont(GetFont());
9923c37d 401 vHeight = (wxCoord)(vDc.GetCharHeight() * 2.5);
1de4baa3
DW
402
403 //
404 // This, of course, will not work if the LB is scrolled
405 //
84882850 406 int nY = rEvent.GetY();
1de4baa3
DW
407
408 nY = nParentHeight - (nY + vHeight);
409
84882850 410 size_t nItem = (size_t)(nY / vHeight);
1de4baa3 411
8228b893 412 if (nItem < m_nNumItems)
1de4baa3
DW
413 GetItem(nItem)->Toggle();
414 //
415 // else: it's not an error, just click outside of client zone
416 //
417 }
418 else
419 {
420 //
421 // Implement default behaviour: clicking on the item selects it
422 //
423 rEvent.Skip();
424 }
425} // end of wxCheckListBox::OnLeftClick
37f214d5 426
84882850 427#endif // wxUSE_CHECKLISTBOX && wxUSE_OWNER_DRAWN