Vuo 2.4.4
Loading...
Searching...
No Matches
VuoErrorMark.hh
Go to the documentation of this file.
1
10#pragma once
11
12#include "VuoRendererItem.hh"
13
15class VuoRendererNode;
16
21{
22public:
24 void addMarkedComponents(set<VuoRendererNode *> nodes, set<VuoRendererCable *> cables);
25 QRectF boundingRect(void) const;
26 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget);
27 void removeFromScene();
29
30private:
31 QPainterPath getErrorMarkPath() const;
32 QPainterPath errorMarkPath;
33 set<VuoRendererNode *> nodes;
34 set<VuoRendererCable *> cables;
35};