Call this function to let the DigitalPaint window automatically handle the palette based on the specified message.
#include "ltwrappr.h"
L_BOOL LRasterPaintWindow::HandlePalette(uMsg, wParam, lParam)
The window message.
The first parameter of the window message.
The second parameter of the window message.
Value | Meaning |
---|---|
TRUE | The paint window was repainted. |
FALSE | The paint window was not repainted. |
This function works with the following Windows messages:
WM_PALETTECHANGED
WM_QUERYNEWPALETTE
WM_SYSCOLORCHANGE
This function will respond to these messages by automatically handling palette issues properly.
You are responsible for calling this function with the appropriate window message to let the class object's window respond to palette changes.
For an example, refer to LRasterPaintWindow::SetWndHandle.