Lines Matching refs:mWaveRect
74 mWaveRect.left = 0; in IMPLEMENT_DYNAMIC()
75 mWaveRect.right = 0; in IMPLEMENT_DYNAMIC()
76 mWaveRect.top = 0; in IMPLEMENT_DYNAMIC()
77 mWaveRect.bottom = 0; in IMPLEMENT_DYNAMIC()
163 mWaveRect.top = rect.bottom + (mAnimationBoxSize.cy << 2); 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()
171 mAnimationRect = mWaveRect; in OnPaint()
196 g.DrawLine(&pen, mWaveRect.left, mWaveRect.top, mWaveRect.left, mWaveRect.bottom); in OnPaint()
197 g.DrawLine(&pen, mWaveRect.left, mWaveRect.bottom, mWaveRect.right, mWaveRect.bottom); in OnPaint()
616 REAL width = (REAL)mWaveRect.Width(); in DrawEasingCurve()
617 REAL height = (REAL)mWaveRect.Height(); in DrawEasingCurve()
725 x1 = (REAL)mWaveRect.left; in DrawEasingCurve()
726 y1 = (REAL)mWaveRect.bottom; in DrawEasingCurve()
729 x2 = (REAL)mWaveRect.left + x; in DrawEasingCurve()
730 y2 = (REAL)mWaveRect.bottom - height * mpEasingFuncCallback(x, width); in DrawEasingCurve()
738 x2 = (REAL)mWaveRect.left + x; in DrawEasingCurve()
739 y2 = (REAL)mWaveRect.bottom - height * mpEasingFuncCallback(x, width); in DrawEasingCurve()
743 g.DrawLine(&line_pen, mWaveRect.left, mWaveRect.bottom, mWaveRect.right, mWaveRect.top); in DrawEasingCurve()
745 x2 = (REAL)mWaveRect.left + x; in DrawEasingCurve()
746 y2 = (REAL)mWaveRect.bottom - (REAL)(height * x / width); in DrawEasingCurve()
753 g.FillRectangle(&red_brush, RectF((REAL)(mWaveRect.left - (mAnimationBoxSize.cx * 3 / 2)), in DrawEasingCurve()