Home | History | Annotate | Download | only in rendering

Lines Matching full:widgetrect

562     RECT widgetRect = r;
564 DrawThemeBackground(theme, hdc, themeData.m_part, themeData.m_state, &widgetRect, NULL);
567 ::DrawEdge(hdc, &widgetRect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
569 ::FillRect(hdc, &widgetRect, (HBRUSH)(COLOR_BTNFACE+1));
571 ::FillRect(hdc, &widgetRect, (HBRUSH)(COLOR_WINDOW+1));
573 ::DrawEdge(hdc, &widgetRect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
574 ::FillRect(hdc, &widgetRect, (HBRUSH)GetStockObject(GRAY_BRUSH));
579 ::DrawEdge(hdc, &widgetRect, EDGE_RAISED, BF_RECT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
589 ::SetBrushOrgEx(hdc, p.x + widgetRect.left, p.y + widgetRect.top, NULL);
591 ::FillRect(hdc, &widgetRect, brush);
597 ::FillRect(hdc, &widgetRect, (HBRUSH)COLOR_3DHILIGHT);
604 ::FrameRect(hdc, &widgetRect, brush);
605 ::InflateRect(&widgetRect, -1, -1);
606 ::DrawEdge(hdc, &widgetRect, BDR_RAISEDOUTER, BF_RECT | BF_MIDDLE);
608 ::DrawFrameControl(hdc, &widgetRect, themeData.m_part, themeData.m_state);