Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_cols

146             xPos += m_cols.m_sizes[c];
147 if (borderThickness && m_cols.m_allowBorder[c + 1]) {
389 m_cols.m_allowBorder[c] = true;
391 m_cols.m_allowBorder[c + 1] = true;
393 m_cols.m_preventResize[c] = true;
395 m_cols.m_preventResize[c + 1] = true;
411 m_cols.m_preventResize.fill(frameSet()->noResize());
412 m_cols.m_allowBorder.fill(false);
442 result.setPreventResize(LeftFrameEdge, m_cols.m_preventResize[0]);
443 result.setAllowBorder(LeftFrameEdge, m_cols.m_allowBorder[0]);
444 result.setPreventResize(RightFrameEdge, m_cols.m_preventResize[cols]);
445 result.setAllowBorder(RightFrameEdge, m_cols.m_allowBorder[cols]);
476 if (m_rows.m_sizes.size() != rows || m_cols.m_sizes.size() != cols) {
478 m_cols.resize(cols);
496 layOutAxis(m_cols, frameSet()->colLengths(), width() - (cols - 1) * borderThickness);
549 child->setWidth(m_cols.m_sizes[c]);
564 ASSERT(child->width() >= m_cols.m_sizes[c]);
565 m_cols.m_sizes[c] = child->width();
588 availableWidth -= m_cols.m_sizes[c] += dWidth;
592 m_cols.m_sizes[cols - 1] += availableWidth;
616 int width = m_cols.m_sizes[c];
664 int width = m_cols.m_sizes[c];
685 if (child->width() > m_cols.m_sizes[c])
686 m_cols.m_sizes[c] = child->width();
692 extra += width - m_cols.m_sizes[c];
714 child->setWidth(m_cols.m_sizes[c]);
727 xPos += m_cols.m_sizes[c] + borderThickness;
792 startResizing(m_cols, evt->absoluteLocation().x() - pos.x());
794 if (m_cols.m_splitBeingResized != noSplit || m_rows.m_splitBeingResized != noSplit) {
802 continueResizing(m_cols, evt->absoluteLocation().x() - pos.x());
832 return m_isResizing && m_cols.m_splitBeingResized != noSplit;
843 int c = hitTestSplit(m_cols, p.x());
844 return c != noSplit && m_cols.m_allowBorder[c] && !m_cols.m_preventResize[c];