CMEMDC的问题

xiongkw 2015-08-28 10:39:46
给位这个是网上下的CMEMDC的类,只有头文件,请问我要改变画笔的颜色,只在哪里添加?

#ifndef _MEMDC_H_
#define _MEMDC_H_

//////////////////////////////////////////////////

class CMemDC : public CDC {
private:
CBitmap m_bitmap; // Offscreen bitmap
CBitmap* m_oldBitmap; // bitmap originally found in CMemDC
CDC* m_pDC; // Saves CDC passed in constructor
CRect m_rect; // Rectangle of drawing area.
BOOL m_bMemDC; // TRUE if CDC really is a Memory DC.
public:

CMemDC(CDC* pDC, const CRect* pRect = NULL) : CDC()
{
ASSERT(pDC != NULL);

// Some initialization
m_pDC = pDC;
m_oldBitmap = NULL;
m_bMemDC = !pDC->IsPrinting();

// Get the rectangle to draw
if (pRect == NULL) {
pDC->GetClipBox(&m_rect);
} else {
m_rect = *pRect;
}

if (m_bMemDC) {
// Create a Memory DC
CreateCompatibleDC(pDC);
pDC->LPtoDP(&m_rect);

m_bitmap.CreateCompatibleBitmap(pDC, m_rect.Width(), m_rect.Height());
m_oldBitmap = SelectObject(&m_bitmap);

SetMapMode(pDC->GetMapMode());
pDC->DPtoLP(&m_rect);
SetWindowOrg(m_rect.left, m_rect.top);
} else {
// Make a copy of the relevent parts of the current DC for printing
m_bPrinting = pDC->m_bPrinting;
m_hDC = pDC->m_hDC;
m_hAttribDC = pDC->m_hAttribDC;
}

// Fill background
FillSolidRect(m_rect, pDC->GetBkColor());
//MemDC.FillSolidRect(m_rect,RGB(255,255,255));
}


~CMemDC()
{
if (m_bMemDC) {
// Copy the offscreen bitmap onto the screen.
m_pDC->BitBlt(m_rect.left, m_rect.top, m_rect.Width(), m_rect.Height(),
this, m_rect.left, m_rect.top, SRCCOPY);

//Swap back the original bitmap.
SelectObject(m_oldBitmap);
} else {
// All we need to do is replace the DC with an illegal value,
// this keeps us from accidently deleting the handles associated with
// the CDC that was passed to the constructor.
m_hDC = m_hAttribDC = NULL;
}
}

// Allow usage as a pointer
CMemDC* operator->()
{
return this;
}

// Allow usage as a pointer
operator CMemDC*()
{
return this;
}
};

#endif
...全文
147 7 打赏 收藏 转发到动态 举报
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
sumos 2015-09-02
  • 打赏
  • 举报
回复
http://www.cnblogs.com/Clingingboy/archive/2011/08/10/2134176.html 这是WTL封装的缓存DC类,CMemoryDC,拷贝到你的代码里面,可以直接使用
xiongkw 2015-09-01
  • 打赏
  • 举报
回复
引用 5 楼 zhoujielunzhimi 的回复:
[quote=引用 4 楼 xiongkw 的回复:] [quote=引用 2 楼 zhoujielunzhimi 的回复:] 新版本mfc自带CMemDC类,而且包含源代码,代码也不多。 CPaintDC dc(this); CRect rc; GetClientRect(rc); CMemDC mdc(dc, rc); COLORREF c = mdc.SetTextColor(RGB(0,0,0)); 设置文字颜色 HFONT old = mdc.SelectFont(hFont); 设置字体 do paint; mdc.SelectFont(old); //恢复原来的字体 mdc.SetTextColor(c); 回复原来的文字颜色 画笔是HPEN old = mdc.SelectPen(p); do paint; mdc.SelectPen(old);
我用的是VC6.0 这个是网上下的。 就是个头文件,不知道在哪里添加! 希望能过得到解答[/quote] 不要用VC6了,使用VS2010及以上版本,推荐VS2013,工作中使用的也是VS[/quote] 那编的软件好不好移植过来
sumos 2015-08-31
  • 打赏
  • 举报
回复
引用 4 楼 xiongkw 的回复:
[quote=引用 2 楼 zhoujielunzhimi 的回复:] 新版本mfc自带CMemDC类,而且包含源代码,代码也不多。 CPaintDC dc(this); CRect rc; GetClientRect(rc); CMemDC mdc(dc, rc); COLORREF c = mdc.SetTextColor(RGB(0,0,0)); 设置文字颜色 HFONT old = mdc.SelectFont(hFont); 设置字体 do paint; mdc.SelectFont(old); //恢复原来的字体 mdc.SetTextColor(c); 回复原来的文字颜色 画笔是HPEN old = mdc.SelectPen(p); do paint; mdc.SelectPen(old);
我用的是VC6.0 这个是网上下的。 就是个头文件,不知道在哪里添加! 希望能过得到解答[/quote] 不要用VC6了,使用VS2010及以上版本,推荐VS2013,工作中使用的也是VS
xiongkw 2015-08-31
  • 打赏
  • 举报
回复
引用 2 楼 zhoujielunzhimi 的回复:
新版本mfc自带CMemDC类,而且包含源代码,代码也不多。 CPaintDC dc(this); CRect rc; GetClientRect(rc); CMemDC mdc(dc, rc); COLORREF c = mdc.SetTextColor(RGB(0,0,0)); 设置文字颜色 HFONT old = mdc.SelectFont(hFont); 设置字体 do paint; mdc.SelectFont(old); //恢复原来的字体 mdc.SetTextColor(c); 回复原来的文字颜色 画笔是HPEN old = mdc.SelectPen(p); do paint; mdc.SelectPen(old);
我用的是VC6.0 这个是网上下的。 就是个头文件,不知道在哪里添加! 希望能过得到解答
xiongkw 2015-08-31
  • 打赏
  • 举报
回复
引用 1 楼 shuo101 的回复:
不懂也不知道,你可以试试,反正也无聊。 在画之前把画笔选进DC中(调用它的函数前),看看有没有效果。 其实论坛大神多的是,你想要什么功能。 大神都会告诉你很多很多方法,然后你自己去实现(也有直接代码的)。 知道原理后,在看别人的类也不一定有多好。
就是个头文件,不知道在哪里添加! 希望能过得到解答
木黑神 2015-08-28
  • 打赏
  • 举报
回复
不懂也不知道,你可以试试,反正也无聊。 在画之前把画笔选进DC中(调用它的函数前),看看有没有效果。 其实论坛大神多的是,你想要什么功能。 大神都会告诉你很多很多方法,然后你自己去实现(也有直接代码的)。 知道原理后,在看别人的类也不一定有多好。
sumos 2015-08-28
  • 打赏
  • 举报
回复
新版本mfc自带CMemDC类,而且包含源代码,代码也不多。 CPaintDC dc(this); CRect rc; GetClientRect(rc); CMemDC mdc(dc, rc); COLORREF c = mdc.SetTextColor(RGB(0,0,0)); 设置文字颜色 HFONT old = mdc.SelectFont(hFont); 设置字体 do paint; mdc.SelectFont(old); //恢复原来的字体 mdc.SetTextColor(c); 回复原来的文字颜色 画笔是HPEN old = mdc.SelectPen(p); do paint; mdc.SelectPen(old);

15,979

社区成员

发帖
与我相关
我的任务
社区描述
VC/MFC 界面
社区管理员
  • 界面
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧