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

Lines Matching refs:childSize

855         wxSize childSize;
858 child->GetRangeSize(rangeToFind, childSize, childDescent, dc, flags, position);
862 sz.x = wxMax(sz.x, childSize.x);
863 sz.y += childSize.y;
3978 wxSize childSize;
3983 childSize = child->GetCachedSize();
3990 GetRangeSize(wxRichTextRange(lastEndPos+1, lastPosToUse), childSize, childDescent, dc, wxRICHTEXT_UNFORMATTED|wxRICHTEXT_HEIGHT_ONLY);
3991 childSize.x = wxRichTextGetRangeWidth(*this, wxRichTextRange(lastEndPos+1, lastPosToUse), g_GlobalPartialTextExtents);
3993 GetRangeSize(wxRichTextRange(lastEndPos+1, lastPosToUse), childSize, childDescent, dc, wxRICHTEXT_UNFORMATTED, rect.GetPosition());
4002 if ((lineBreakInThisObject && (childSize.x + currentWidth <= availableSpaceForText)) ||
4003 (childSize.x + currentWidth > availableSpaceForText))
4079 currentWidth += childSize.x;
4081 maxAscent = wxMax(childSize.y-childDescent, maxAscent);
4317 wxSize childSize;
4328 childSize = child->GetCachedSize();
4330 sz.y = wxMax(sz.y, childSize.y);
4331 sz.x += childSize.x;
4334 else if (child->GetRangeSize(rangeToUse, childSize, childDescent, dc, flags, wxPoint(position.x + sz.x, position.y)))
4336 sz.y = wxMax(sz.y, childSize.y);
4337 sz.x += childSize.x;
4342 child->SetCachedSize(childSize);
4383 wxSize childSize;
4385 if (child->GetRangeSize(rangeToUse, childSize, childDescent, dc, flags, wxPoint(position.x + sz.x, position.y)))
4387 lineSize.y = wxMax(lineSize.y, childSize.y);
4388 lineSize.x += childSize.x;
4571 wxSize childSize;
4576 GetRangeSize(rangeToUse, childSize, descent, dc, wxRICHTEXT_UNFORMATTED, linePos);
4578 int nextX = childSize.x + linePos.x;