Lines Matching refs:Size
1130 CRect Size; in OnInitDialog() local
1134 GetDlgItem(IDC_INCLUDE_RANGE_PROMPT)->GetWindowRect(&Size); in OnInitDialog()
1135 ScreenToClient(&Size); in OnInitDialog()
1138 RangeListSize.top = Size.bottom + m_range_row_height + 8; in OnInitDialog()
1140 GetDlgItem(IDC_FONT_FORMAT_GROUP)->GetWindowRect(&Size); in OnInitDialog()
1141 ScreenToClient(&Size); in OnInitDialog()
1142 RangeListSize.right = Size.left - 10; in OnInitDialog()
1153 Size.left = RangeListSize.left; in OnInitDialog()
1154 Size.top = RangeListSize.top - m_range_row_height - 4; in OnInitDialog()
1155 Size.right = Size.left + RangeListSize.Width(); in OnInitDialog()
1156 Size.bottom = RangeListSize.top - 1; in OnInitDialog()
1159 …ader->Create(target_class_name, _T("Character Page Header"), WS_CHILD | WS_VISIBLE, Size, this, 0); in OnInitDialog()