Курсовая работа: Скріпт мова управління віконним інтерфейсом на С++
outtextxy(Bx+8,By+4,Btxt);
Box3D(Bx,By,Bw,15,BFloat);
return;
}
/***************************************************************************
** Module Name : ClrbyLine **
** **
** Desciption : Clearing Effect that clear line by line **
** **
***************************************************************************/
void ClrbyLine()
{
int ly;
setcolor(0);
for(ly=45;ly<390+45;ly+=2){line(29,ly,29+572,ly);delay(2);}
for(ly=390+44;ly>45;ly-=2){line(29,ly,29+572,ly);delay(1);}
return;
}
/***************************************************************************
** Module Name : TextBox **
** **
** Desciption : As a Input area to accept string **
** **
** Parameters : Tx => Coordinate-X of the textbox **
** Ty => Coordinate-Y of the textbox **
** Tw => Width of the textbox **
** Th => Height of the textbox **
** Txt => textbox's string to be output **
***************************************************************************/