You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
- #include "app/common.hpp"
- #include "widgets/OpaqueWidget.hpp"
- #include "app/Port.hpp"
- #include "engine/Wire.hpp"
-
-
- namespace rack {
-
-
- struct Port;
-
-
- struct WireWidget : OpaqueWidget {
- Port *outputPort = NULL;
- Port *inputPort = NULL;
- Port *hoveredOutputPort = NULL;
- Port *hoveredInputPort = NULL;
- Wire *wire = NULL;
- NVGcolor color;
-
- WireWidget();
- ~WireWidget();
- /** Synchronizes the plugged state of the widget to the owned wire */
- void updateWire();
- math::Vec getOutputPos();
- math::Vec getInputPos();
- json_t *toJson();
- void fromJson(json_t *rootJ);
- void draw(NVGcontext *vg) override;
- void drawPlugs(NVGcontext *vg);
- };
-
-
- } // namespace rack
|