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