| 63 | } |
| 64 | |
| 65 | int SComboBox::GetListBoxHeight() |
| 66 | { |
| 67 | int nDropHeight=m_nDropHeight.toPixelSize(GetScale()); |
| 68 | if(GetCount()) |
| 69 | { |
| 70 | int nItemHeight=m_pListBox->GetItemHeight(); |
| 71 | CRect rcMargin = m_pListBox->GetStyle().GetMargin(); |
| 72 | nDropHeight = (std::min)(nDropHeight,(int)(nItemHeight*GetCount()+rcMargin.top + rcMargin.bottom)); |
| 73 | } |
| 74 | return nDropHeight; |
| 75 | } |
| 76 | |
| 77 | void SComboBox::OnCreateDropDown( SDropDownWnd *pDropDown) |
| 78 | { |
nothing calls this directly
no test coverage detected