Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7436 → Rev 7437

/programs/cmm/mousecfg/mousecfg.c
1,4 → 1,4
// Mouse Configuration Utility ver 1.6
// Mouse Configuration Utility ver 1.61
 
#ifndef AUTOBUILD
#include "lang.h--"
61,7 → 61,7
case evMouse:
mouse.get();
IF (mouse_frame.hovered()) DrawMouseImage(mouse.lkm,mouse.pkm,mouse.mkm, mouse.vert);
IF (mouse.up) DrawMouseImage(0,0,0,0);
IF (mouse.click) DrawMouseImage(0,0,0,0);
break;
 
CASE evButton:
109,7 → 109,7
#define white 0xffffff
#define dgrey 0x2d353d
 
:struct IMG_PAL{ dword back, shad1, mbody, left, right, middle, white; }
:struct IMG_PAL{ dword back, shad1, contour, left, right, middle, mwhite; }
pal = { 0xF0F2F3,0xABB0B2, dgrey, white, white, dgrey, white };
 
void DrawMouseImage(dword l,r,m,v) {
124,9 → 124,9
PutPaletteImage(#panels_img_data,IMG_W,IMG_H,18+30,18+15,8,#pal);
pal.left = pal.right = white;
pal.middle = dgrey;
if (v) {
IF (v) {
pause(10);
DrawMouseImage(0,0,0,0);
DrawMouseImage(l,r,m,0);
}
}