commit 5fc7ba31e2eee2011e4f16daa3e2ab349a72a1c9
parent 908892e32c17ba9cf77071a3d6c6c03ba45d3515
Author: Adam M <[email protected]>
Date: Wed, 11 Dec 2019 18:48:23 -0600
Attempt to override fick pigure shadow method (not working)
Diffstat:
1 file changed, 12 insertions(+), 0 deletions(-)
diff --git a/src/ComputerscareStolyFickPigure.cpp b/src/ComputerscareStolyFickPigure.cpp
@@ -414,6 +414,18 @@ struct StolyFickPigureWidget : ModuleWidget {
}
+ void drawShadow(const DrawArgs& args) {
+ DEBUG("my draw shadow has been called");
+ nvgBeginPath(args.vg);
+ float r = 20; // Blur radius
+ float c = 20; // Corner radius
+ math::Vec b = math::Vec(-10, 30); // Offset from each corner
+ nvgRect(args.vg, b.x - r, b.y - r, box.size.x - 2 * b.x + 2 * r, box.size.y - 2 * b.y + 2 * r);
+ NVGcolor shadowColor = nvgRGBAf(120, 0, 0, 0.7);
+ NVGcolor transparentColor = nvgRGBAf(120, 0, 0, 0);
+ nvgFillPaint(args.vg, nvgBoxGradient(args.vg, b.x, b.y, box.size.x - 2 * b.x, box.size.y - 2 * b.y, c, r, shadowColor, transparentColor));
+ nvgFill(args.vg);
+ }
};