Vuo 2.4.4
Loading...
Searching...
No Matches
VuoPanelDocumentation.hh
Go to the documentation of this file.
1
10#pragma once
11
12#include "VuoHeap.h"
13
17class VuoPanelDocumentation : public QWidget
18{
19 Q_OBJECT
20public:
21 explicit VuoPanelDocumentation(QWidget *parent = 0);
22 virtual QString getSelectedText();
23
24signals:
26
27protected slots:
28 void linkHovered(const QString &link);
29
30protected:
31 bool event(QEvent *event) VuoWarnUnusedResult;
32 QString getDescriptionForURL(const QString &url);
33 void hideEvent(QHideEvent *event);
34
35private:
36 bool documentationEntered;
37 QTimer *tooltipTimer;
38};