88{
90 const auto& rect = args.
rect;
91 constexpr auto penWidth = 0;
92 wxDCPenChanger pen { args.
dc, { wxPenInfo {
theTheme.
Colour(clrClipNameText), penWidth } } };
94 constexpr auto numDots = 3;
95 constexpr auto radius = 1;
96 constexpr auto spacing = 4;
97 constexpr auto totalWidth = numDots * 2 * radius + 2 * spacing;
98 const auto dotY = rect.y + (rect.height + 1 - radius) / 2;
99 for (auto i = 0; i < numDots; ++i)
100 {
101 const auto dotX = rect.x + (rect.width + 1 - totalWidth) / 2 +
102 i * (2 * radius + spacing);
103 dc.DrawCircle(dotX, dotY, radius);
104 }
105}
wxColour & Colour(int iIndex)