Lines Matching refs:boxrect
639 CRect boxrect; in OnPaint() local
642 GetClientRect(&boxrect); in OnPaint()
661 dc.FillRect(&boxrect, &brush); in OnPaint()
667 dc.FillRect(&boxrect, &brush); in OnPaint()
677 dc.MoveTo(boxrect.left, boxrect.top); in OnPaint()
678 dc.LineTo(boxrect.right, boxrect.top); in OnPaint()
681 dc.MoveTo(boxrect.left, boxrect.top); in OnPaint()
682 dc.LineTo(boxrect.left, boxrect.bottom - 1); in OnPaint()
683 dc.MoveTo(boxrect.right - 1, boxrect.top); in OnPaint()
684 dc.LineTo(boxrect.right - 1, boxrect.bottom - 1); in OnPaint()
685 dc.MoveTo(boxrect.left, boxrect.bottom - 1); in OnPaint()
686 dc.LineTo(boxrect.right, boxrect.bottom - 1); in OnPaint()
692 boxrect.left += 4; in OnPaint()
693 dc.DrawText(trigger->trigger_name, boxrect, DT_LEFT | DT_TOP | DT_SINGLELINE | DT_VCENTER); in OnPaint()