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

Lines Matching defs:colStart

946     wxTextCoord colStart, colEnd,
950 !PositionToXY(from, &colStart, &lineStart) ||
1053 wxString textNew(textOrig, colStart);
1058 if ( (size_t)colStart == linesOld[lineStart].length() )
1073 // adjust for index shift: to is relative to colStart, not 0
1074 size_t toRel = (size_t)((to - from) + colStart);
1412 wxTextCoord colStart, lineStart,
1414 PositionToXY(m_selStart, &colStart, &lineStart);
1421 sel = GetLines()[lineStart].Mid(colStart, colEnd - colStart);
1426 sel = GetLines()[lineStart].c_str() + colStart;
1559 wxTextCoord lineStart, colStart;
1560 PositionToXY(m_selStart, &colStart, &lineStart);
1578 *start = colStart;
1585 *start = lineEnd == lineStart ? colStart : 0;
3015 wxTextCoord *colStart,
3154 if ( colStart )
3156 res = HitTestLine(GetTextToShow(rowText), x1, colStart);
3168 *colStart += colRowStart;
3184 if ( colStart )
3189 *colStart = 0;
3191 *colStart = GetLineText(GetNumberOfLines() - 1).length();
3729 wxTextPos colStart, lineStart;
3730 if ( !PositionToXY(start, &colStart, &lineStart) )
3750 wxTextPos posStart = line == lineStart ? colStart : 0;
4030 wxTextCoord colStart, colEnd, colRowStart;
4032 &line, &colStart, &colEnd,
4055 if ( colStart < SData().m_colStart )
4056 colStart = SData().m_colStart;
4058 // colEnd may be less than colStart if colStart was changed by the
4060 if ( colEnd < colStart )
4061 colEnd = colStart;
4070 if ( colStart > SData().m_colLastVisible )
4085 wxString text = textLine.Mid(colStart, colEnd - colStart + 1);
4094 (selEnd >= wxMax(colStart, colRowStart)) )
4099 selStart -= colStart;
4100 selEnd -= colStart;
4118 wxASSERT_MSG( colStart >= colRowStart, _T("invalid string part") );
4121 colStart - colRowStart));
4129 line, colStart, colEnd);