1
0
Fork 0
mirror of https://github.com/gwm17/implot.git synced 2024-10-09 23:57:26 -04:00

QueryX removed for PR merge

This commit is contained in:
ozlb 2020-05-11 15:58:12 +02:00 committed by GitHub
parent 53ea6a8cd4
commit 9bfd3902a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,6 @@ enum ImPlotFlags_ {
ImPlotFlags_NoChild = 1 << 9, // a child window region will not be used to capture mouse scroll (can boost performance for single ImGui window applications) ImPlotFlags_NoChild = 1 << 9, // a child window region will not be used to capture mouse scroll (can boost performance for single ImGui window applications)
ImPlotFlags_YAxis2 = 1 << 10, // enable a 2nd y axis ImPlotFlags_YAxis2 = 1 << 10, // enable a 2nd y axis
ImPlotFlags_YAxis3 = 1 << 11, // enable a 3rd y axis ImPlotFlags_YAxis3 = 1 << 11, // enable a 3rd y axis
ImPlotFlags_QueryX = 1 << 12,// show x-axis query
ImPlotFlags_Default = ImPlotFlags_MousePos | ImPlotFlags_Legend | ImPlotFlags_Highlight | ImPlotFlags_Selection | ImPlotFlags_ContextMenu | ImPlotFlags_CullData ImPlotFlags_Default = ImPlotFlags_MousePos | ImPlotFlags_Legend | ImPlotFlags_Highlight | ImPlotFlags_Selection | ImPlotFlags_ContextMenu | ImPlotFlags_CullData
}; };
@ -84,7 +83,6 @@ enum ImPlotCol_ {
ImPlotCol_YAxis3, // 3rd y-axis grid/label color (defaults to 25% ImGuiCol_Text) ImPlotCol_YAxis3, // 3rd y-axis grid/label color (defaults to 25% ImGuiCol_Text)
ImPlotCol_Selection, // box-selection color (defaults to yellow) ImPlotCol_Selection, // box-selection color (defaults to yellow)
ImPlotCol_Query, // box-query color (defaults to green) ImPlotCol_Query, // box-query color (defaults to green)
ImPlotCol_QueryX, // x-axis query color (defaults to red)
ImPlotCol_COUNT ImPlotCol_COUNT
}; };
@ -212,8 +210,7 @@ ImPlotLimits GetPlotLimits(int y_axis = -1);
bool IsPlotQueried(); bool IsPlotQueried();
/// Returns the current or most recent plot query bounds. /// Returns the current or most recent plot query bounds.
ImPlotLimits GetPlotQuery(int y_axis = -1); ImPlotLimits GetPlotQuery(int y_axis = -1);
/// Returns the current x-axis query range.
ImPlotLimits GetPlotQueryX();
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
// Plot Styling // Plot Styling
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------