Vuo 2.4.4
Loading...
Searching...
No Matches
VuoPublishedPortDropBox.hh
Go to the documentation of this file.
1
10#pragma once
11
16class VuoPublishedPortDropBox : public QLabel
17{
18 Q_OBJECT
19public:
20 explicit VuoPublishedPortDropBox(QWidget *parent = 0);
21 void setHovered(bool hovered);
22 void setCurrentlyAcceptingDrops(bool acceptingDrops);
23
24signals:
25
26public slots:
27
28protected:
29 void paintEvent(QPaintEvent *event);
30
31private:
32 bool isHovered;
33 void updateStyleSheet();
34 QString getBaseStyleSheet();
35};