Add plot information tooltip.

This commit is contained in:
Bartosz Taudul 2017-10-13 15:44:24 +02:00
parent 40d7a26b37
commit 4066b9ae30

View File

@ -2119,11 +2119,23 @@ int View::DrawPlots( int offset, double pxns, const ImVec2& wpos, bool hover )
draw->AddText( wpos + ImVec2( ty, offset ), v->enabled ? 0xFF44DDDD : 0xFF226E6E, txt );
draw->AddLine( wpos + ImVec2( 0, offset + ty - 1 ), wpos + ImVec2( w, offset + ty - 1 ), 0x8844DDDD );
if( hover && ImGui::IsMouseClicked( 0 ) && ImGui::IsMouseHoveringRect( wpos + ImVec2( 0, offset ), wpos + ImVec2( ty + ImGui::CalcTextSize( txt ).x, offset + ty ) ) )
if( hover && ImGui::IsMouseHoveringRect( wpos + ImVec2( 0, offset ), wpos + ImVec2( ty + ImGui::CalcTextSize( txt ).x, offset + ty ) ) )
{
if( ImGui::IsMouseClicked( 0 ) )
{
v->enabled = !v->enabled;
}
ImGui::BeginTooltip();
ImGui::Text( "Plot \"%s\"", txt );
ImGui::Text( "Data points: %i", v->data.size() );
ImGui::Text( "Data range: %f", v->max - v->min );
ImGui::Text( "Min value: %f", v->min );
ImGui::Text( "Max value: %f", v->max );
ImGui::Text( "Time range: %s", TimeToString( v->data.back().time - v->data.begin()->time ) );
ImGui::EndTooltip();
}
offset += ty;
if( v->enabled )