Курсовая работа: Скріпт мова управління віконним інтерфейсом на С++
if(ComboCnt<OptCnt-1)
{
/*== Show Down Button Pressed Effect ==*/
Box3D(Tx+Tw-15,Ty,15,Th,0);
delay(100);
Box3D(Tx+Tw-15,Ty,15,Th,1);
/*== Increase ComboCnt, point to next item ==*/
ComboCnt++;
}
break;
}
/*== GREY if not avaible, BLACK if available ==*/
/*== If current item is first item, show <UP> not avaible==*/
if(ComboCnt==0)setcolor(8);else setcolor(0);
outtextxy(Tx+Tw-27,Ty+3,"\36");//up
/*== If current item is last item, show <DOWN> not avaible==*/
if(ComboCnt==OptCnt-1)setcolor(8);else setcolor(0);
outtextxy(Tx+Tw-11,Ty+3,"\37");//down
break;
case 13: /*== <ENTER> Pressed, copy current item to Fstr for return ==*/
strcpy(Fstr,Opt[ComboCnt]);break;
}
}
return Fstr;
}
/***********************************************************************/
/************************** End of GUI12h ******************************/
/***********************************************************************/
/* Standard Library */