Skip to content

Commit 15e494b

Browse files
committed
Merge branch 'master' of https://github.com/epezent/implot
2 parents f88ad32 + 3e13c95 commit 15e494b

File tree

5 files changed

+33
-28
lines changed

5 files changed

+33
-28
lines changed

TODO.md

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ The list below represents a combination of high-priority work, nice-to-have feat
3131

3232
## Legend
3333

34-
- `ImPlotLegendFlags_SortItems`
3534
- `ImPlotLegendFlags_Scroll`
3635
- improve legend icons (e.g. adopt markers, gradients, etc)
3736
- make legend frame use ButtonBehavior (maybe impossible)

implot.cpp

+13-13
Original file line numberDiff line numberDiff line change
@@ -580,8 +580,8 @@ ImVec2 CalcLegendSize(ImPlotItemGroup& items, const ImVec2& pad, const ImVec2& s
580580
return legend_size;
581581
}
582582

583-
int LegendSortingComp(void* _items, const void* _a, const void* _b) {
584-
ImPlotItemGroup* items = (ImPlotItemGroup*)_items;
583+
int LegendSortingComp(const void* _a, const void* _b) {
584+
ImPlotItemGroup* items = GImPlot->SortItems;
585585
const int a = *(const int*)_a;
586586
const int b = *(const int*)_b;
587587
const char* label_a = items->GetLegendLabel(a);
@@ -603,18 +603,18 @@ bool ShowLegendEntries(ImPlotItemGroup& items, const ImRect& legend_bb, bool hov
603603
const int num_items = items.GetLegendCount();
604604
if (num_items < 1)
605605
return hovered;
606-
// ImVector<int>& indices = GImPlot->TempInt1;
607-
// indices.resize(num_items);
608-
// // bool sort = true;
609-
// // if (sort && num_items > 1) {
610-
// // qsort_s(indices.Data, num_items, sizeof(int), LegendSortingComp, &items);
611-
// // }
612-
// // else {
613-
// // for (int i = 0; i < num_items; ++i)
614-
// // indices[i] = i;
615-
// // }
606+
// build render order
607+
ImVector<int>& indices = GImPlot->TempInt1;
608+
indices.resize(num_items);
609+
for (int i = 0; i < num_items; ++i)
610+
indices[i] = i;
611+
if (ImHasFlag(items.Legend.Flags, ImPlotLegendFlags_Sort) && num_items > 1) {
612+
GImPlot->SortItems = &items;
613+
qsort(indices.Data, num_items, sizeof(int), LegendSortingComp);
614+
}
615+
// render
616616
for (int i = 0; i < num_items; ++i) {
617-
const int idx = i; //indices[i];
617+
const int idx = indices[i];
618618
ImPlotItem* item = items.GetLegendItem(idx);
619619
const char* label = items.GetLegendLabel(idx);
620620
const float label_width = ImGui::CalcTextSize(label, NULL, true).x;

implot.h

+1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ enum ImPlotLegendFlags_ {
191191
ImPlotLegendFlags_NoMenus = 1 << 3, // the user will not be able to open context menus with right-click
192192
ImPlotLegendFlags_Outside = 1 << 4, // legend will be rendered outside of the plot area
193193
ImPlotLegendFlags_Horizontal = 1 << 5, // legend entries will be displayed horizontally
194+
ImPlotLegendFlags_Sort = 1 << 6, // legend entries will be displayed in alphabetical order
194195
};
195196

196197
// Options for mouse hover text (see SetupMouseText)

implot_demo.cpp

+18-14
Original file line numberDiff line numberDiff line change
@@ -1361,31 +1361,35 @@ void Demo_SubplotAxisLinking() {
13611361

13621362
void Demo_LegendOptions() {
13631363
static ImPlotLocation loc = ImPlotLocation_East;
1364-
static bool h = false; static bool o = true;
13651364
ImGui::CheckboxFlags("North", (unsigned int*)&loc, ImPlotLocation_North); ImGui::SameLine();
13661365
ImGui::CheckboxFlags("South", (unsigned int*)&loc, ImPlotLocation_South); ImGui::SameLine();
13671366
ImGui::CheckboxFlags("West", (unsigned int*)&loc, ImPlotLocation_West); ImGui::SameLine();
1368-
ImGui::CheckboxFlags("East", (unsigned int*)&loc, ImPlotLocation_East); ImGui::SameLine();
1369-
ImGui::Checkbox("Horizontal##2", &h); ImGui::SameLine();
1370-
ImGui::Checkbox("Outside", &o);
1367+
ImGui::CheckboxFlags("East", (unsigned int*)&loc, ImPlotLocation_East);
1368+
1369+
static ImPlotLegendFlags flags = 0;
1370+
1371+
CHECKBOX_FLAG(flags, ImPlotLegendFlags_Horizontal);
1372+
CHECKBOX_FLAG(flags, ImPlotLegendFlags_Outside);
1373+
CHECKBOX_FLAG(flags, ImPlotLegendFlags_Sort);
13711374

13721375
ImGui::SliderFloat2("LegendPadding", (float*)&GetStyle().LegendPadding, 0.0f, 20.0f, "%.0f");
13731376
ImGui::SliderFloat2("LegendInnerPadding", (float*)&GetStyle().LegendInnerPadding, 0.0f, 10.0f, "%.0f");
13741377
ImGui::SliderFloat2("LegendSpacing", (float*)&GetStyle().LegendSpacing, 0.0f, 5.0f, "%.0f");
13751378

13761379
if (ImPlot::BeginPlot("##Legend",ImVec2(-1,0))) {
1377-
ImPlotLegendFlags flags = ImPlotLegendFlags_None;
1378-
if (h) flags |= ImPlotLegendFlags_Horizontal;
1379-
if (o) flags |= ImPlotLegendFlags_Outside;
13801380
ImPlot::SetupLegend(loc, flags);
1381-
static MyImPlot::WaveData data1(0.001, 0.2, 2, 0.75);
1382-
static MyImPlot::WaveData data2(0.001, 0.2, 4, 0.25);
1383-
static MyImPlot::WaveData data3(0.001, 0.2, 6, 0.5);
1384-
ImPlot::PlotLineG("Item 1", MyImPlot::SineWave, &data1, 1000); // "Item 1" added to legend
1385-
ImPlot::PlotLineG("Item 2##IDText", MyImPlot::SawWave, &data2, 1000); // "Item 2" added to legend, text after ## used for ID only
1381+
static MyImPlot::WaveData data1(0.001, 0.2, 4, 0.2);
1382+
static MyImPlot::WaveData data2(0.001, 0.2, 4, 0.4);
1383+
static MyImPlot::WaveData data3(0.001, 0.2, 4, 0.6);
1384+
static MyImPlot::WaveData data4(0.001, 0.2, 4, 0.8);
1385+
static MyImPlot::WaveData data5(0.001, 0.2, 4, 1.0);
1386+
1387+
ImPlot::PlotLineG("Item B", MyImPlot::SawWave, &data1, 1000); // "Item B" added to legend
1388+
ImPlot::PlotLineG("Item A##IDText", MyImPlot::SawWave, &data2, 1000); // "Item A" added to legend, text after ## used for ID only
13861389
ImPlot::PlotLineG("##NotListed", MyImPlot::SawWave, &data3, 1000); // plotted, but not added to legend
1387-
ImPlot::PlotLineG("Item 3", MyImPlot::SineWave, &data1, 1000); // "Item 3" added to legend
1388-
ImPlot::PlotLineG("Item 3", MyImPlot::SawWave, &data2, 1000); // combined with previous "Item 3"
1390+
ImPlot::PlotLineG("Item C", MyImPlot::SawWave, &data4, 1000); // "Item C" added to legend
1391+
ImPlot::PlotLineG("Item C", MyImPlot::SawWave, &data5, 1000); // combined with previous "Item C"
1392+
13891393
ImPlot::EndPlot();
13901394
}
13911395
}

implot_internal.h

+1
Original file line numberDiff line numberDiff line change
@@ -1244,6 +1244,7 @@ struct ImPlotContext {
12441244
ImPlotInputMap InputMap;
12451245
bool OpenContextThisFrame;
12461246
ImGuiTextBuffer MousePosStringBuilder;
1247+
ImPlotItemGroup* SortItems;
12471248

12481249
// Align plots
12491250
ImPool<ImPlotAlignmentData> AlignmentData;

0 commit comments

Comments
 (0)