Курсовая работа: Скріпт мова управління віконним інтерфейсом на С++
bar(Winx+10,Winy+Winh,Winx+Winw+10,Winy+Winh+10); /*== Bottom Shadow ==*/
bar(Winx+Winw,Winy+10,Winx+Winw+10,Winy+Winh+10); /*== Right Shadow ==*/
return;
}
/***************************************************************************
** Module Name : OptBox **
** **
** Desciption : Allow selection made from a group of option. **
** Suitable for option where allow one selection **
** among the choice available. **
** **
** Parameters : IcoX => Coordinate-X of OptBox **
** IcoY => Coordinate-Y of OptBox **
** Checked => Value of OptBox **
** "0" indicate Unchecked **
** "1" indicate Checked **
***************************************************************************/
void OptBox(int IcoX,int IcoY,int Checked)
{
/*= 8x8 pixels 3D Round Button bitmap ==*/
int ICOMAP[8][8]=
{
-1,0,0,0,0,0,15,-1,0,0,7,7,7,7,7,15,
0,7,7,7,7,7,7,15,0,7,7,7,7,7,7,15,
0,7,7,7,7,7,7,15,0,7,7,7,7,7,7,15,
15,7,7,7,7,7,15,15,-1,15,15,15,15,15,15,-1
};
int IcoCnt,IcoCnt2;
/*== Plot the 8x8 pixel 3D round button on screen ==*/