|
The WM_PAINT Message
Typically, an application draws in a window in response to a WM_PAINT message. Windows sends this message to a window procedure when changes to the
window have altered the content of the client area. Windows sends the message
only if there are no other messages in the application message queue.
Upon receiving a WM_PAINT message, an application can call BeginPaint to retrieve the display DC for the client area and use it in calls to GDI
functions to carry out whatever drawing operations are necessary to update the
client area. After completing the drawing operations, the application calls the EndPaint function to release the display DC.
Before BeginPaint returns the display DC, Windows prepares the DC for the given window. It
first sets the clipping region for the DC to be equal to the intersection of the
portion of the window that needs updating and the portion that is visible to the
user. Only those portions of the window that have changed are redrawn. Attempts
to draw outside this region are clipped and do not appear on the screen.
Windows can also send WM_NCPAINT and WM_ERASEBKGND messages to the window procedure before BeginPaint returns. These messages direct the application to draw the nonclient area and
window background. The nonclient area is the part of a window that is outside of the client area. The area includes
features such as the title bar, window menu (also known as the System menu),
and scroll bars. Most applications rely on the default window function, DefWindowProc, to draw this area and therefore pass the WM_NCPAINT message to this
function. The window background is the color or pattern a window is filled with before other drawing
operations begin. The background covers any images previously in the window or on the
screen under the window. If a window belongs to a window class having a class
background brush, the DefWindowProc function draws the window background automatically.
BeginPaint fills a PAINTSTRUCT structure with information such as the dimensions of the portion of the window
to be updated and a flag indicating whether the window background has been
drawn. The application can use this information to optimize drawing. For example,
it can use the dimensions of the update region, specified by the rcPaint member, to limit drawing to only those portions of the window that need
updating. If an application has very simple output, it can ignore the update region
and draw in the entire window, relying on Windows to discard (clip) any
unneeded output. Because the system clips drawing that extends outside the clipping
region, only drawing that is in the update region is visible.
BeginPaint sets the update region of a window to NULL. This clears the region,
preventing it from generating subsequent WM_PAINT messages. If an application processes a WM_PAINT message but does not call BeginPaint or otherwise clear the update region, the application continues to receive
WM_PAINT messages as long as the region is not empty. In all cases, an
application must clear the update region before returning from the WM_PAINT message.
After the application finishes drawing, it should call EndPaint. For most windows, EndPaint releases the display DC, making it available to other windows. EndPaint also shows the caret, if it was previously hidden by BeginPaint. BeginPaint hides the caret to prevent drawing operations from corrupting it.
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|