1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/bmpcboxg.cpp
3 // Purpose: wxBitmapComboBox
4 // Author: Jaakko Salli
7 // Copyright: (c) 2008 Jaakko Salli
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #include "wx/wxprec.h"
25 #if wxUSE_BITMAPCOMBOBOX
27 #include "wx/bmpcbox.h"
33 #include "wx/settings.h"
35 #include "wx/msw/dcclient.h"
36 #include "wx/msw/private.h"
38 // For wxODCB_XXX flags
39 #include "wx/odcombo.h"
42 #define IMAGE_SPACING_CTRL_VERTICAL 7 // Spacing used in control size calculation
45 // ============================================================================
47 // ============================================================================
50 BEGIN_EVENT_TABLE(wxBitmapComboBox
, wxComboBox
)
51 EVT_SIZE(wxBitmapComboBox::OnSize
)
55 IMPLEMENT_DYNAMIC_CLASS(wxBitmapComboBox
, wxComboBox
)
58 // ----------------------------------------------------------------------------
59 // wxBitmapComboBox creation
60 // ----------------------------------------------------------------------------
62 void wxBitmapComboBox::Init()
67 wxBitmapComboBox::wxBitmapComboBox(wxWindow
*parent
,
69 const wxString
& value
,
72 const wxArrayString
& choices
,
74 const wxValidator
& validator
,
77 wxBitmapComboBoxBase()
81 Create(parent
,id
,value
,pos
,size
,choices
,style
,validator
,name
);
84 bool wxBitmapComboBox::Create(wxWindow
*parent
,
86 const wxString
& value
,
89 const wxArrayString
& choices
,
91 const wxValidator
& validator
,
94 wxCArrayString
chs(choices
);
95 return Create(parent
, id
, value
, pos
, size
, chs
.GetCount(),
96 chs
.GetStrings(), style
, validator
, name
);
99 bool wxBitmapComboBox::Create(wxWindow
*parent
,
101 const wxString
& value
,
105 const wxString choices
[],
107 const wxValidator
& validator
,
108 const wxString
& name
)
110 if ( !wxComboBox::Create(parent
, id
, value
, pos
, size
,
111 n
, choices
, style
, validator
, name
) )
119 WXDWORD
wxBitmapComboBox::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
121 return wxComboBox::MSWGetStyle(style
, exstyle
) | CBS_OWNERDRAWFIXED
| CBS_HASSTRINGS
;
124 void wxBitmapComboBox::RecreateControl()
127 // Recreate control so that WM_MEASUREITEM gets called again.
128 // Can't use CBS_OWNERDRAWVARIABLE because it has odd
129 // mouse-wheel behaviour.
131 wxString value
= GetValue();
132 wxPoint pos
= GetPosition();
133 wxSize size
= GetSize();
134 wxArrayString strings
= GetStrings();
136 wxComboBox::DoClear();
138 HWND hwnd
= GetHwnd();
140 ::DestroyWindow(hwnd
);
142 if ( !MSWCreateControl(wxT("COMBOBOX"), value
, pos
, size
) )
145 // initialize the controls contents
146 for ( unsigned int i
= 0; i
< strings
.size(); i
++ )
148 wxComboBox::Append(strings
[i
]);
151 // and make sure it has the same attributes as before
154 // calling SetFont(m_font) would do nothing as the code would
155 // notice that the font didn't change, so force it to believe
157 wxFont font
= m_font
;
164 wxColour colFg
= m_foregroundColour
;
165 m_foregroundColour
= wxNullColour
;
166 SetForegroundColour(colFg
);
171 wxColour colBg
= m_backgroundColour
;
172 m_backgroundColour
= wxNullColour
;
173 SetBackgroundColour(colBg
);
177 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
181 wxBitmapComboBox::~wxBitmapComboBox()
186 // ----------------------------------------------------------------------------
188 // ----------------------------------------------------------------------------
190 void wxBitmapComboBox::SetItemBitmap(unsigned int n
, const wxBitmap
& bitmap
)
193 DoSetItemBitmap(n
, bitmap
);
195 if ( (int)n
== GetSelection() )
199 int wxBitmapComboBox::Append(const wxString
& item
, const wxBitmap
& bitmap
)
202 const int n
= wxComboBox::Append(item
);
203 if ( n
!= wxNOT_FOUND
)
204 DoSetItemBitmap(n
, bitmap
);
208 int wxBitmapComboBox::Append(const wxString
& item
, const wxBitmap
& bitmap
,
212 const int n
= wxComboBox::Append(item
, clientData
);
213 if ( n
!= wxNOT_FOUND
)
214 DoSetItemBitmap(n
, bitmap
);
218 int wxBitmapComboBox::Append(const wxString
& item
, const wxBitmap
& bitmap
,
219 wxClientData
*clientData
)
222 const int n
= wxComboBox::Append(item
, clientData
);
223 if ( n
!= wxNOT_FOUND
)
224 DoSetItemBitmap(n
, bitmap
);
228 int wxBitmapComboBox::Insert(const wxString
& item
,
229 const wxBitmap
& bitmap
,
233 const int n
= wxComboBox::Insert(item
, pos
);
234 if ( n
!= wxNOT_FOUND
)
235 DoSetItemBitmap(n
, bitmap
);
239 int wxBitmapComboBox::Insert(const wxString
& item
, const wxBitmap
& bitmap
,
240 unsigned int pos
, wxClientData
*clientData
)
243 const int n
= wxComboBox::Insert(item
, pos
, clientData
);
244 if ( n
!= wxNOT_FOUND
)
245 DoSetItemBitmap(n
, bitmap
);
249 int wxBitmapComboBox::DoInsertItems(const wxArrayStringsAdapter
& items
,
251 void **clientData
, wxClientDataType type
)
253 const unsigned int numItems
= items
.GetCount();
254 const unsigned int countNew
= GetCount() + numItems
;
256 m_bitmaps
.Alloc(countNew
);
258 for ( unsigned int i
= 0; i
< numItems
; i
++ )
260 m_bitmaps
.Insert(new wxBitmap(wxNullBitmap
), pos
+ i
);
263 const int index
= wxComboBox::DoInsertItems(items
, pos
,
266 if ( index
== wxNOT_FOUND
)
268 for ( int i
= numItems
-1; i
>= 0; i
-- )
269 BCBDoDeleteOneItem(pos
+ i
);
275 bool wxBitmapComboBox::OnAddBitmap(const wxBitmap
& bitmap
)
277 if ( wxBitmapComboBoxBase::OnAddBitmap(bitmap
) )
279 // Need to recreate control for a new measureitem call?
280 int prevItemHeight
= ::SendMessage(GetHwnd(), CB_GETITEMHEIGHT
, 0, 0);
282 if ( prevItemHeight
!= MeasureItem(0) )
291 void wxBitmapComboBox::DoClear()
293 wxComboBox::DoClear();
294 wxBitmapComboBoxBase::BCBDoClear();
297 void wxBitmapComboBox::DoDeleteOneItem(unsigned int n
)
299 wxComboBox::DoDeleteOneItem(n
);
300 wxBitmapComboBoxBase::BCBDoDeleteOneItem(n
);
303 // ----------------------------------------------------------------------------
304 // wxBitmapComboBox event handlers and such
305 // ----------------------------------------------------------------------------
307 void wxBitmapComboBox::OnSize(wxSizeEvent
& event
)
309 // Prevent infinite looping
320 // ----------------------------------------------------------------------------
321 // wxBitmapComboBox miscellaneous
322 // ----------------------------------------------------------------------------
324 bool wxBitmapComboBox::SetFont(const wxFont
& font
)
326 bool res
= wxComboBox::SetFont(font
);
331 // ----------------------------------------------------------------------------
332 // wxBitmapComboBox item drawing and measuring
333 // ----------------------------------------------------------------------------
335 bool wxBitmapComboBox::MSWOnDraw(WXDRAWITEMSTRUCT
*item
)
337 LPDRAWITEMSTRUCT lpDrawItem
= (LPDRAWITEMSTRUCT
) item
;
338 int pos
= lpDrawItem
->itemID
;
340 // Draw default for item -1, which means 'focus rect only'
345 if ( lpDrawItem
->itemState
& ODS_COMBOBOXEDIT
)
346 flags
|= wxODCB_PAINTING_CONTROL
;
347 if ( lpDrawItem
->itemState
& ODS_SELECTED
)
348 flags
|= wxODCB_PAINTING_SELECTED
;
352 if ( flags
& wxODCB_PAINTING_CONTROL
)
355 if ( !HasFlag(wxCB_READONLY
) )
360 text
= GetString(pos
);
363 wxPaintDCEx
dc(this, lpDrawItem
->hDC
);
364 wxRect rect
= wxRectFromRECT(lpDrawItem
->rcItem
);
365 wxBitmapComboBoxBase::DrawBackground(dc
, rect
, pos
, flags
);
366 wxBitmapComboBoxBase::DrawItem(dc
, rect
, pos
, text
, flags
);
368 // If the item has the focus, draw focus rectangle.
369 // Commented out since regular combo box doesn't
370 // seem to do it either.
371 //if ( lpDrawItem->itemState & ODS_FOCUS )
372 // DrawFocusRect(lpDrawItem->hDC, &lpDrawItem->rcItem);
377 bool wxBitmapComboBox::MSWOnMeasure(WXMEASUREITEMSTRUCT
*item
)
379 LPMEASUREITEMSTRUCT lpMeasureItem
= (LPMEASUREITEMSTRUCT
) item
;
380 int pos
= lpMeasureItem
->itemID
;
382 lpMeasureItem
->itemHeight
= wxBitmapComboBoxBase::MeasureItem(pos
);
387 #endif // wxUSE_BITMAPCOMBOBOX