Home
last modified time | relevance | path

Searched refs:boxrect (Results 1 – 4 of 4) sorted by relevance

/GUIX-v6.2.1/guix_studio/
Dresource_item.cpp588 CRect boxrect; in PaintThemeHeader() local
632 boxrect = m_size; in PaintThemeHeader()
633 boxrect.bottom = boxrect.top + m_header_height; in PaintThemeHeader()
634 boxrect.left += 8; in PaintThemeHeader()
638 vspace = boxrect.bottom - boxrect.top; in PaintThemeHeader()
641 PaintIcon(dc, icon_id, boxrect.left, boxrect.top + vspace); in PaintThemeHeader()
642 boxrect.left += m_icon_width + ICON_HORZ_SPACE; in PaintThemeHeader()
653 dc->DrawText(title, boxrect, DT_LEFT | DT_VCENTER | DT_SINGLELINE); in PaintThemeHeader()
703 CRect boxrect; in PaintGroupHeader() local
747 boxrect = m_size; in PaintGroupHeader()
[all …]
Dtrigger_list_edit_dlg.cpp639 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()
[all …]
Dcolor_edit_dialog.cpp104 CRect boxrect; in PaintColorPalette() local
109 GetClientRect(boxrect); in PaintColorPalette()
115 swatch.left = boxrect.left; in PaintColorPalette()
116 swatch.top = boxrect.top; in PaintColorPalette()
125 swatch.left = boxrect.left; in PaintColorPalette()
195 CRect boxrect; in PaintColorGradient() local
199 GetClientRect(boxrect); in PaintColorGradient()
205 swatch.left = boxrect.left; in PaintColorGradient()
206 swatch.top = boxrect.top; in PaintColorGradient()
223 swatch.left = boxrect.left; in PaintColorGradient()
[all …]
DMainFrm.cpp213 CRect boxrect; in OnEraseBkgnd() local
227 pDC->GetClipBox(&boxrect); // Erase the area needed in OnEraseBkgnd()
228 int xpos = boxrect.left; in OnEraseBkgnd()
230 while(xpos < boxrect.right) in OnEraseBkgnd()
232 pDC->BitBlt(xpos, boxrect.top, width, height, &dcMemory, 0, 0, SRCCOPY); in OnEraseBkgnd()