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

Lines Matching refs:m_heightRow

167     m_heightRow = 0;
774 height = 7*m_heightRow + m_rowOffset + VERT_MARGIN;
888 dc.GetTextExtent(wxString::Format(wxT("%d"), day), &width, &m_heightRow);
900 dc.GetTextExtent(m_weekdays[wd], &width, &m_heightRow);
909 m_heightRow += 2;
911 m_rowOffset = HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION) ? m_heightRow : 0; // conditional in relation to style
943 dc.DrawRectangle(0, y, GetClientSize().x, m_heightRow);
952 wxCoord monthy = ((m_heightRow - monthh) / 2) + y;
971 wxCoord arrowy = (m_heightRow - arrowheight) / 2;
1001 y += m_heightRow;
1005 if ( IsExposed(x0, y, x0 + 7*m_widthCol, m_heightRow) )
1015 dc.DrawRectangle(0, y, GetClientSize().x, m_heightRow);
1035 y += m_heightRow;
1044 for ( size_t nWeek = 1; nWeek <= 6; nWeek++, y += m_heightRow )
1047 if ( !IsExposed(x0, y, x0 + 7*m_widthCol, m_heightRow - 1) )
1152 width + 4, m_heightRow);
1157 width + 4, m_heightRow);
1223 rect.y = (m_heightRow * GetWeek(date)) + m_rowOffset;
1226 rect.height = m_heightRow;
1293 corners[0] = wxPoint(x0 + (fd - 1) * m_widthCol, (fw * m_heightRow) + m_rowOffset);
1294 corners[1] = wxPoint(x0 + (fd - 1) * m_widthCol, ((fw + 1 ) * m_heightRow) + m_rowOffset);
1295 corners[2] = wxPoint(x0 + td * m_widthCol, ((tw + 1) * m_heightRow) + m_rowOffset);
1296 corners[3] = wxPoint(x0 + td * m_widthCol, (tw * m_heightRow) + m_rowOffset);
1302 corners[cidx] = wxPoint(x0 + (fd - 1) * m_widthCol, (fw * m_heightRow) + m_rowOffset); cidx++;
1306 corners[cidx] = wxPoint(x0 + (fd - 1) * m_widthCol, ((fw + 1) * m_heightRow) + m_rowOffset); cidx++;
1307 corners[cidx] = wxPoint(x0, ((fw + 1) * m_heightRow) + m_rowOffset); cidx++;
1310 corners[cidx] = wxPoint(x0, ((tw + 1) * m_heightRow) + m_rowOffset); cidx++;
1311 corners[cidx] = wxPoint(x0 + td * m_widthCol, ((tw + 1) * m_heightRow) + m_rowOffset); cidx++;
1315 corners[cidx] = wxPoint(x0 + td * m_widthCol, (tw * m_heightRow) + m_rowOffset); cidx++;
1316 corners[cidx] = wxPoint(x0 + 7 * m_widthCol, (tw * m_heightRow) + m_rowOffset); cidx++;
1319 corners[cidx] = wxPoint(x0 + 7 * m_widthCol, (fw * m_heightRow) + m_rowOffset); cidx++;
1539 if ( pos.y < (m_heightRow + m_rowOffset) )
1561 int week = (pos.y - (m_heightRow + m_rowOffset)) / m_heightRow;