| /GUIX-v6.2.1/guix_studio/ |
| D | resource_item.cpp | 586 void resource_item::PaintThemeHeader(CDC *dc) in PaintThemeHeader() argument 603 dcMemory.CreateCompatibleDC(dc); in PaintThemeHeader() 608 dc->SetBkColor(RGB(128, 128, 128)); in PaintThemeHeader() 611 …dc->StretchBlt(xpos, m_size.top, width, m_header_height, &dcMemory, 0, 0, width, bm.bmHeight, SRCC… in PaintThemeHeader() 624 dc->FillRect(&rect, &brush); in PaintThemeHeader() 641 PaintIcon(dc, icon_id, boxrect.left, boxrect.top + vspace); in PaintThemeHeader() 645 dc->SetTextColor(RGB(255, 255, 255)); in PaintThemeHeader() 646 dc->SetBkColor(RGB(0, 0, 0)); in PaintThemeHeader() 647 dc->SetBkMode(TRANSPARENT); in PaintThemeHeader() 652 old_font = dc->SelectObject(&ViewHeaderFont); in PaintThemeHeader() [all …]
|
| D | resource_item.h | 45 void Paint(CDC *dc); 58 int GetWidth(CDC *dc); 59 int LayoutFolderChildren(CDC *dc, int top); 84 void PaintThemeHeader(CDC *dc); 86 void PaintIcon(CDC *dc, int icon_id, int x, int y); 87 void PaintGroupHeader(CDC *dc); 88 void PaintFolderHeader(CDC *dc); 90 void PaintColorGroupColumnHeader(CDC *dc); 91 void PaintColorItem(CDC *dc); 92 void PaintColorItemLines(CDC *dc, int offset); [all …]
|
| D | view_header.cpp | 38 void view_header::FillHeader(CDC *dc, int y, int xstart, int xend) in FillHeader() argument 49 dcMemory.CreateCompatibleDC(dc); in FillHeader() 57 … dc->StretchBlt(xstart, y, width, client.Height(), &dcMemory, 0, 0, width, bm.bmHeight, SRCCOPY); in FillHeader() 62 void view_header::PaintIcon(CDC *dc, int x, int y) in PaintIcon() argument 65 dcMemory.CreateCompatibleDC(dc); in PaintIcon() 67 …dc->StretchBlt(x, y, m_icon_width, m_icon_height, &dcMemory, 0, 0, m_icon_src_width, m_icon_src_he… in PaintIcon() 70 void view_header::PaintRightIcon(CDC *dc, int iconId, CRect &size) in PaintRightIcon() argument 87 dcMemory.CreateCompatibleDC(dc); in PaintRightIcon() 89 dc->BitBlt(right, size.top + vspace, width, bm.bmHeight, &dcMemory, 0, 0, SRCCOPY); in PaintRightIcon() 98 CDC *dc = GetDC(); in OnPaint() local [all …]
|
| D | express_dialog.cpp | 178 CDC* dc = GetDC(); in PaintRequiredAsterisk() local 179 dc->SetTextColor(COLORREF(0x2020ff)); in PaintRequiredAsterisk() 180 dc->SetBkMode(TRANSPARENT); in PaintRequiredAsterisk() 181 CFont* old_font = dc->SelectObject(&AsteriskFont); in PaintRequiredAsterisk() 184 GetTextExtentPoint32(dc->GetSafeHdc(), _T("*"), 1, &sz); in PaintRequiredAsterisk() 195 TextOut(dc->GetSafeHdc(), xpos, ypos, _T("*"), 1); in PaintRequiredAsterisk() 197 dc->SelectObject(old_font); in PaintRequiredAsterisk() 199 ReleaseDC(dc); in PaintRequiredAsterisk() 203 void express_dialog::PaintTitleAndStatusBar(CDC *dc) in PaintTitleAndStatusBar() argument 216 dcMemory.CreateCompatibleDC(dc); in PaintTitleAndStatusBar() [all …]
|
| D | splash_screen.cpp | 144 CDC *dc = GetDC(); in OnPaint() local 145 PaintBmp(dc, 0, 0, IDB_SPLASH_BACKGROUND); in OnPaint() 156 dc->SetTextColor(RGB(248, 208, 40)); in OnPaint() 157 dc->SetBkColor(RGB(0, 0, 0)); in OnPaint() 158 dc->SetBkMode(TRANSPARENT); in OnPaint() 160 OldFont = dc->SelectObject(&TitleFont); in OnPaint() 162 dc->TextOut(xpos, ypos, _T("Azure RTOS GUIX Studio")); in OnPaint() 167 dc->TextOut(xpos, ypos, temp); in OnPaint() 169 dc->SelectObject(&TinyFont); in OnPaint() 182 dc->DrawText(temp, rc, DT_LEFT|DT_SINGLELINE); in OnPaint() [all …]
|
| D | wait_dialog.cpp | 63 void wait_dialog::PaintTitleBar(CDC *dc) in PaintTitleBar() argument 78 dcMemory.CreateCompatibleDC(dc); in PaintTitleBar() 85 dc->BitBlt(xpos, size.top, width, height, &dcMemory, 0, 0, SRCCOPY); in PaintTitleBar() 97 dc->BitBlt(size.left + 4, size.top + 4, bm.bmWidth, bm.bmHeight, &dcMemory, 0, 0, SRCCOPY); in PaintTitleBar() 101 dc->SetTextColor(RGB(240, 240, 240)); in PaintTitleBar() 102 dc->SetBkMode(TRANSPARENT); in PaintTitleBar() 103 dc->TextOut(size.left + bm.bmWidth + 8, size.top + 4, _T("Please Wait...")); in PaintTitleBar() 109 CDC *dc = GetDC(); in OnPaint() local 111 PaintTitleBar(dc); in OnPaint() 112 ReleaseDC(dc); in OnPaint()
|
| D | string_table_edit_dlg.cpp | 478 CDC* dc = GetDC(); in PositionChildren() local 480 CFont *old_font = dc->SelectObject(&m_dialog_font); in PositionChildren() 483 GetTextExtentPoint32W(dc->GetSafeHdc(), text, text.GetLength(), &sz); in PositionChildren() 493 GetTextExtentPoint32W(dc->GetSafeHdc(), text, text.GetLength(), &sz); in PositionChildren() 494 dc->SelectObject(old_font); in PositionChildren() 495 ReleaseDC(dc); in PositionChildren() 1479 CPaintDC dc(this); // device context for painting in OnPaint() local 1487 dc.DrawFocusRect(&rect); in OnPaint() 2189 void table_header::PaintHeader(CDC *dc, CRect &size) in PaintHeader() argument 2204 CPen *old_pen = dc->SelectObject(&line_pen); in PaintHeader() [all …]
|
| D | trigger_list_edit_dlg.cpp | 414 CPaintDC dc(this); in OnPaint() local 420 dc.FillRect(rect, &fill_brush); in OnPaint() 637 CPaintDC dc(this); in OnPaint() local 644 dc.SetBkMode(TRANSPARENT); in OnPaint() 645 old_font = dc.SelectObject(&NormalFont); in OnPaint() 653 dc.SetTextColor(GetSysColor(COLOR_HIGHLIGHTTEXT)); in OnPaint() 658 dc.SetTextColor(GetSysColor(COLOR_WINDOWTEXT)); in OnPaint() 661 dc.FillRect(&boxrect, &brush); in OnPaint() 666 dc.SetTextColor(GetSysColor(COLOR_WINDOWTEXT)); in OnPaint() 667 dc.FillRect(&boxrect, &brush); in OnPaint() [all …]
|
| D | resource_tree.cpp | 33 void resource_tree::Paint(CDC *dc) in Paint() argument 35 mpRoot->Paint(dc); in Paint() 63 INT resource_tree::GetMaxWidth(resource_item* start, CDC* dc) in GetMaxWidth() argument 71 width = start->GetWidth(dc); in GetMaxWidth() 80 width = GetMaxWidth(start->First(), dc); in GetMaxWidth() 95 int resource_tree::PositionItems(resource_item *start, int top, int indent, CDC *dc) in PositionItems() argument 130 top = start->LayoutFolderChildren(dc, top); in PositionItems() 137 top = PositionItems(start->First(), top, indent + 1, dc); in PositionItems() 190 CDC *dc = mParentView->GetDC(); in PositionItems() local 195 m_width = GetMaxWidth(start, dc); in PositionItems() [all …]
|
| D | color_box_button.cpp | 33 CPaintDC dc(this); in OnPaint() local 50 dcMem.CreateCompatibleDC(&dc); in OnPaint() 51 hbmMem = CreateCompatibleBitmap(dc.GetSafeHdc(), rect.Width(), rect.Height()); in OnPaint() 56 dc.SelectObject(&NormalFont); in OnPaint() 57 Gdiplus::Font font(dc.GetSafeHdc()); in OnPaint() 108 dc.BitBlt(0, 0, rect.Width(), rect.Height(), &dcMem, 0, 0, SRCCOPY); in OnPaint()
|
| D | font_path_dialog.cpp | 146 CPaintDC dc(this); // device context for painting in BEGIN_MESSAGE_MAP() local 158 CPen* old_pen = dc.SelectObject(&line_pen); in BEGIN_MESSAGE_MAP() 159 CBrush* old_brush = dc.SelectObject(&brush); in BEGIN_MESSAGE_MAP() 160 dc.SelectObject(mpFont); in BEGIN_MESSAGE_MAP() 162 dc.FillRect(&client, &brush); in BEGIN_MESSAGE_MAP() 163 dc.MoveTo(client.left, client.top); in BEGIN_MESSAGE_MAP() 164 dc.LineTo(client.right, client.top); in BEGIN_MESSAGE_MAP() 165 dc.MoveTo(client.left, client.bottom - 1); in BEGIN_MESSAGE_MAP() 166 dc.LineTo(client.right, client.bottom - 1); in BEGIN_MESSAGE_MAP() 167 dc.MoveTo(client.left, client.top); in BEGIN_MESSAGE_MAP() [all …]
|
| D | view_header.h | 12 void FillHeader(CDC *dc, int y, int xstart, int xend); 13 void PaintIcon(CDC *dc, int x, int y); 14 void PaintRightIcon(CDC *dc, int icon_id, CRect &size);
|
| D | resource_tree.h | 22 INT GetMaxWidth(resource_item *start, CDC *dc); 23 int PositionItems(resource_item *start, int top, int indent, CDC *dc); 26 void Paint(CDC *dc);
|
| D | recent_project_win.cpp | 238 CDC* dc = GetDC(); in GetRowHeight() local 239 CFont* old_font = dc->SelectObject(&MediumFont); in GetRowHeight() 240 int row_height = dc->GetTextExtent(_T("fg"), 1).cy; in GetRowHeight() 241 dc->SelectObject(old_font); in GetRowHeight() 242 ReleaseDC(dc); in GetRowHeight()
|
| D | studioxDoc.cpp | 71 void CstudioxDoc::Dump(CDumpContext& dc) const in Dump() 73 CDocument::Dump(dc); in Dump()
|
| D | string_table_edit_dlg.h | 141 void PaintHeaderRow(CDC *dc, CRect &size); 142 void PaintStringRow(CDC *dc, CRect &size); 162 void PaintHeader(CDC *dc, CRect &size);
|
| D | studiox.cpp | 105 HDC dc = ::GetDC(NULL); in CreateSystemFonts() local 108 int dpi = GetDeviceCaps(dc, LOGPIXELSY); in CreateSystemFonts() 168 ReleaseDC(NULL, dc); in CreateSystemFonts()
|
| D | easing_function_select_dlg.cpp | 158 CPaintDC dc(this); in OnPaint() local 184 dcMem.CreateCompatibleDC(&dc); in OnPaint() 185 hbmMem = CreateCompatibleBitmap(dc, rect.Width(), rect.Height()); in OnPaint() 204 BitBlt(dc, 0, 0, rect.Width(), rect.Height(), dcMem, 0, 0, SRCCOPY); in OnPaint()
|
| D | studioxDoc.h | 30 virtual void Dump(CDumpContext& dc) const;
|
| D | color_edit_dialog.cpp | 929 CDC *dc = GetDC(); in PaintColorPreview() local 942 oldbrush = dc->SelectObject(&boxbrush); in PaintColorPreview() 943 oldpen = dc->SelectObject(&newpen); in PaintColorPreview() 944 …dc->Rectangle(color_preview_size.left, color_name_size.top, boxrect.right - 10, color_name_size.bo… in PaintColorPreview() 945 dc->SelectObject(oldbrush); in PaintColorPreview() 946 dc->SelectObject(oldpen); in PaintColorPreview() 947 ReleaseDC(dc); in PaintColorPreview()
|
| D | wait_dialog.h | 25 void PaintTitleBar(CDC *dc);
|
| D | studiox_screen_driver.h | 66 void guix_canvas_paint(HDC dc, GX_RECTANGLE dirty, int scale, GRID_SNAP_INFO *gsi);
|
| D | express_dialog.h | 51 void PaintTitleAndStatusBar(CDC *dc);
|
| D | target_view.cpp | 302 BOOL target_frame::OnEraseBkgnd(CDC *dc) in OnEraseBkgnd() argument 328 dc->GradientFill(vertex, 2, &gRect, 1, GRADIENT_FILL_RECT_V); in OnEraseBkgnd()
|
| D | MainFrm.h | 108 virtual void Dump(CDumpContext& dc) const;
|