Re: howto avoid cdc drawing done not in onPaint to be erased?
"Equilibrium" <ryariv@gmail.com> wrote in message
news:1184137600.406948.10190@w3g2000hsg.googlegroups.com...
I have a static control in which i want to draw a circle.
I have subclassed the static control to a "CMyStatic" class.
added a CDC member -> CDC * pDC;
That is not a good idea. Windows should not have device contexts as
members!
Initialize this member in OnMove function ->
void CMyStatic::OnMove(int x, int y)
{
CStatic::OnMove(x, y);
pDC = GetDC();
pDC->SelectStockObject(GRAY_BRUSH);
}
draw an ellipse on mouse click ->
void CMyStatic::OnLButtonDown(UINT nFlags, CPoint point)
{
pDC->Ellipse(0,0,100,100) ;
CStatic::OnLButtonDown(nFlags, point);
}
Drawing should be done when windows tells you to do it, and not in other
places....
everything was great till I'ved minimize , or covered the dialog , the
drawing disappeard.
....because, otherwise, that is exactly what happpens. :-(
I know i need to do something regurding MemDC ' but i can't find any
sample.
No you don't.
The goal is to draw items dinamically with the mouse or any other
place rather that the OnPaint function/
That is a very strange goal! Why??????? What have you got against
OnPaint()???? Windows manages drawing very carefully with WM_PAINT
messages (and others - see below) when you need them. So why is your
objective to frustrate it?
If I were doing this (and I do lots of similar things), I would make the
control a button with the "owner draw" attribute. And I would draw it with
a DrawItem() member whenever I was told to do so (ie in response to
WM_DRAWITEM messages). My derived button class would hold any data
necessary to determine the appearance (like the radius and colour of the
circle) and if that changed I would just call InvalidateRect() on the whole
control, thus ensuring that I will get told to draw it at some unspecified
time in the near future.
This is the way Windows works. You *never* draw anything unless you're told
to. You *always* draw it when you *are* told to. You don't store CDC's as
members of things (one is provided when you need to draw). If you
specifically want to draw something, then call InvalidateRect() which means
"Hello there Windows! I'm not happy with the appearance of this object. I'd
like to redraw it. Please let me know when I can do that."
The wait to be told to do it. Trying to do it in another way will be
doomed to failure, and I suspect no-one here will be able to help you if
your goal really *is* to by-pass Windows painting mechanisms. Work with
Windows rather than against it.
Dave
--
David Webber
Author of 'Mozart the Music Processor'
http://www.mozart.co.uk
For discussion/support see
http://www.mozart.co.uk/mzusers/mailinglist.htm