| 68 | } |
| 69 | |
| 70 | void UIWidgetTableRow::updateRow() { |
| 71 | onAutoSize(); |
| 72 | |
| 73 | UIWidgetTable* P = gridParent(); |
| 74 | |
| 75 | for ( Uint32 i = 0; i < mCells.size(); i++ ) { |
| 76 | mCells[i]->setPosition( P->getColumnPosition( i ), 0 ); |
| 77 | mCells[i]->setSize( P->getColumnWidth( i ), P->getRowHeight() ); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | void UIWidgetTableRow::select() { |
| 82 | UIWidgetTable* MyParent = getParent()->getParent()->asType<UIWidgetTable>(); |
no test coverage detected