Курсовая работа: Дослідження зміни температури термопари за допомогою чисельних методів на ЕОМ
}
void TButton::mousemove(int i)
{
if (mousein(left,top,left+width,top+height))
{
if (getbutton(1))
{
if (onoff!=1) setonoff(1);
}
else
if (onoff==1)
{
setonoff(0);
DoSome(i);
}
else
{
if (onoff!=Flat) setonoff(Flat);
}
}else if (onoff!=0) setonoff(0);
}
void TButton::setpos(int x,int y, char* capt,int i)
{
left=x;
top=y;
caption=capt;
Draw();
}
TButton::TButton()