• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching defs:row

4 //              with items at specified cells, and with the option of row
87 void wxGBSizerItem::GetPos(int& row, int& col) const
89 row = m_pos.GetRow();
136 int row, col, endrow, endcol;
139 GetPos(row, col);
148 if (( InRange(otherrow, row, endrow) && InRange(othercol, col, endcol) ) ||
149 ( InRange(otherendrow, row, endrow) && InRange(otherendcol, col, endcol) ))
153 if (( InRange(row, otherrow, otherendrow) && InRange(col, othercol, otherendcol) ) ||
161 void wxGBSizerItem::GetEndPos(int& row, int& col)
163 row = m_pos.GetRow() + m_span.GetRowspan() - 1;
238 wxSize wxGridBagSizer::GetCellSize(int row, int col) const
240 wxCHECK_MSG( (row < m_rows) && (col < m_cols),
243 return wxSize( m_colWidths[col], m_rowHeights[row] );
440 // Figure out what all the min row heights and col widths are, and calculate
458 int row, col, endrow, endcol;
460 item->GetPos(row, col);
469 // See if this item increases the size of its row(s) or col(s)
471 for (idx=row; idx <= endrow; idx++)
472 m_rowHeights[idx] = wxMax(m_rowHeights[idx], size.GetHeight() / (endrow-row+1));
539 int row, col, endrow, endcol;
544 item->GetPos(row, col);
548 for(idx=row; idx <= endrow; idx++)
550 height += (endrow - row) * m_vgap; // add a vgap for every row spanned
557 SetItemBounds(item, colpos[col], rowpos[row], width, height);
573 int row, col;
575 for (row=0; row<(int)m_rowHeights.GetCount(); row++)
578 int rowHeight = m_rowHeights[row];
581 wxGBPosition pos(row,col);
591 if ( item->GetPos() == pos && endrow == row )
598 // Otherwise, only look at spanning items if they end on this row
599 if ( endrow == row )
603 for (int r=item->GetPos().GetRow(); r<row; r++)
614 m_rowHeights[row] -= rowExtra;
622 for (row=0; row<(int)m_rowHeights.GetCount(); row++)
624 wxGBPosition pos(row,col);
687 int row, col;
689 for (row=0; row<10; row++)
692 wxGBPosition pos(row, col);