| 155 | } |
| 156 | |
| 157 | DSize CAPickerView::rowSizeForComponent(unsigned int component) |
| 158 | { |
| 159 | if (m_dataSource) |
| 160 | { |
| 161 | float width = m_dataSource->widthForComponent(this, component); |
| 162 | float height = m_dataSource->rowHeightForComponent(this, component); |
| 163 | return DSize(width, height); |
| 164 | } |
| 165 | return DSize(0, 0); |
| 166 | } |
| 167 | |
| 168 | CAView* CAPickerView::viewForRow(unsigned int row, unsigned int component) |
| 169 | { |
no test coverage detected