Code: Select all
int start()
{
recalc = false;
if (show_data)
{
//1 click button
ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_ON_color);
ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_unpressed);
start2();
handleButtonClicks();
}
else
if (show_data1)
{
//2 clicks on the button
ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color);
ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_pressed);
deinit2();
handleButtonClicks();
}
else
{
//3 clicks on the button
ObjectSetInteger(ChartID(),buttonId,OBJPROP_COLOR,btn_text_OFF_color);
ObjectSetString(ChartID(),buttonId,OBJPROP_TEXT,btn_text);
handleButtonClicks();
deinit2();
}
return(0);
}//2 clicks on the button ?