2009-05-12 14:15:48 +00:00
|
|
|
/*
|
|
|
|
* PROJECT: PAINT for ReactOS
|
|
|
|
* LICENSE: LGPL
|
2009-10-21 15:44:31 +00:00
|
|
|
* FILE: base/applications/paint/mouse.h
|
2009-05-12 14:15:48 +00:00
|
|
|
* PURPOSE: Things which should not be in the mouse event handler itself
|
|
|
|
* PROGRAMMERS: Benedikt Freisen
|
|
|
|
*/
|
|
|
|
|
|
|
|
void placeSelWin();
|
|
|
|
|
2009-07-10 18:21:27 +00:00
|
|
|
void startPaintingL(HDC hdc, short x, short y, int fg, int bg);
|
2009-05-12 14:15:48 +00:00
|
|
|
|
2009-07-10 18:21:27 +00:00
|
|
|
void whilePaintingL(HDC hdc, short x, short y, int fg, int bg);
|
2009-05-12 14:15:48 +00:00
|
|
|
|
2009-07-10 18:21:27 +00:00
|
|
|
void endPaintingL(HDC hdc, short x, short y, int fg, int bg);
|
|
|
|
|
|
|
|
void startPaintingR(HDC hdc, short x, short y, int fg, int bg);
|
|
|
|
|
|
|
|
void whilePaintingR(HDC hdc, short x, short y, int fg, int bg);
|
|
|
|
|
|
|
|
void endPaintingR(HDC hdc, short x, short y, int fg, int bg);
|