Lines Matching refs:rect
159 CRect rect; in OnPaint() local
161 GetDlgItem(IDC_ANIMATION_START)->GetWindowRect(&rect); in OnPaint()
162 ScreenToClient(&rect); in OnPaint()
163 mWaveRect.top = rect.bottom + (mAnimationBoxSize.cy << 2); in OnPaint()
165 mAnimationStatus.GetWindowRect(&rect); in OnPaint()
166 ScreenToClient(&rect); in OnPaint()
167 mWaveRect.bottom = rect.top - (mAnimationBoxSize.cy << 2); in OnPaint()
168 mWaveRect.left = rect.left; in OnPaint()
169 mWaveRect.right = rect.right; in OnPaint()
181 GetClientRect(&rect); in OnPaint()
185 hbmMem = CreateCompatibleBitmap(dc, rect.Width(), rect.Height()); in OnPaint()
188 dcMem.FillSolidRect(rect, GetSysColor(COLOR_3DFACE)); in OnPaint()
204 BitBlt(dc, 0, 0, rect.Width(), rect.Height(), dcMem, 0, 0, SRCCOPY); in OnPaint()