| 2416 | } |
| 2417 | |
| 2418 | static inline wxColour AlphaBlend(ColorId fg, ColorId bg, double alpha) |
| 2419 | { |
| 2420 | const auto &fgc = theTheme.Colour(fg); |
| 2421 | const auto &bgc = theTheme.Colour(bg); |
| 2422 | return wxColour{ |
| 2423 | wxColour::AlphaBlend(fgc.Red(), bgc.Red(), alpha), |
| 2424 | wxColour::AlphaBlend(fgc.Green(), bgc.Green(), alpha), |
| 2425 | wxColour::AlphaBlend(fgc.Blue(), bgc.Blue(), alpha) |
| 2426 | }; |
| 2427 | } |
| 2428 | |
| 2429 | void AdornedRulerPanel::DoDrawBackground(wxDC * dc) |
| 2430 | { |
no outgoing calls
no test coverage detected