mirror of
https://github.com/gwm17/implot.git
synced 2024-11-22 18:28:53 -05:00
simplify legend demo
This commit is contained in:
parent
42d93bcdbc
commit
eb935d0b4f
|
@ -814,22 +814,15 @@ void ShowDemoWindow(bool* p_open) {
|
|||
}
|
||||
//-------------------------------------------------------------------------
|
||||
if (ImGui::CollapsingHeader("Legend")) {
|
||||
static bool n = false; static bool s = false; static bool w = false; static bool e = true;
|
||||
static ImPlotLocation loc = ImPlotLocation_East;
|
||||
static bool h = false; static bool o = true;
|
||||
|
||||
ImGui::Checkbox("North", &n); ImGui::SameLine();
|
||||
ImGui::Checkbox("South", &s); ImGui::SameLine();
|
||||
ImGui::Checkbox("West", &w); ImGui::SameLine();
|
||||
ImGui::Checkbox("East", &e); ImGui::SameLine();
|
||||
ImGui::CheckboxFlags("North", (unsigned int*)&loc, ImPlotLocation_North); ImGui::SameLine();
|
||||
ImGui::CheckboxFlags("South", (unsigned int*)&loc, ImPlotLocation_South); ImGui::SameLine();
|
||||
ImGui::CheckboxFlags("West", (unsigned int*)&loc, ImPlotLocation_West); ImGui::SameLine();
|
||||
ImGui::CheckboxFlags("East", (unsigned int*)&loc, ImPlotLocation_East); ImGui::SameLine();
|
||||
ImGui::Checkbox("Horizontal", &h); ImGui::SameLine();
|
||||
ImGui::Checkbox("Outside", &o);
|
||||
|
||||
ImPlotLocation loc = 0;
|
||||
loc = n ? loc | ImPlotLocation_North : loc;
|
||||
loc = s ? loc | ImPlotLocation_South : loc;
|
||||
loc = w ? loc | ImPlotLocation_West : loc;
|
||||
loc = e ? loc | ImPlotLocation_East : loc;
|
||||
|
||||
ImGui::SliderFloat2("LegendPadding", (float*)&GetStyle().LegendPadding, 0.0f, 20.0f, "%.0f");
|
||||
ImGui::SliderFloat2("LegendInnerPadding", (float*)&GetStyle().LegendInnerPadding, 0.0f, 10.0f, "%.0f");
|
||||
ImGui::SliderFloat2("LegendSpacing", (float*)&GetStyle().LegendSpacing, 0.0f, 5.0f, "%.0f");
|
||||
|
|
Loading…
Reference in New Issue
Block a user