Home | History | Annotate | Download | only in rendering

Lines Matching refs:widgetRect

624     RECT widgetRect = r;
626 DrawThemeBackground(theme, windowsContext.hdc(), themeData.m_part, themeData.m_state, &widgetRect, 0);
630 ::DrawEdge(hdc, &widgetRect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
632 ::FillRect(hdc, &widgetRect, (HBRUSH)(COLOR_BTNFACE+1));
634 ::FillRect(hdc, &widgetRect, (HBRUSH)(COLOR_WINDOW+1));
636 ::DrawEdge(hdc, &widgetRect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
637 ::FillRect(hdc, &widgetRect, (HBRUSH)GetStockObject(GRAY_BRUSH));
642 ::DrawEdge(hdc, &widgetRect, EDGE_RAISED, BF_RECT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
652 ::SetBrushOrgEx(hdc, p.x + widgetRect.left, p.y + widgetRect.top, NULL);
654 ::FillRect(hdc, &widgetRect, brush);
660 ::FillRect(hdc, &widgetRect, (HBRUSH)COLOR_3DHILIGHT);
667 ::FrameRect(hdc, &widgetRect, brush);
668 ::InflateRect(&widgetRect, -1, -1);
669 ::DrawEdge(hdc, &widgetRect, BDR_RAISEDOUTER, BF_RECT | BF_MIDDLE);
671 ::DrawFrameControl(hdc, &widgetRect, themeData.m_part, themeData.m_state);