Vuo 2.4.4
Loading...
Searching...
No Matches
VuoCodeIssueList.hh
Go to the documentation of this file.
1
10#pragma once
11
12class VuoCodeWindow;
13
17class VuoCodeIssueList : public QDockWidget
18{
19 Q_OBJECT
20
21public:
22 explicit VuoCodeIssueList(QWidget *parent);
23
24 void updateIssues();
25 void selectIssueForLine(int lineNumber);
26
27private slots:
28 void moveCursorToIssue(QListWidgetItem *item);
29
30private:
31 void updateColor(bool isDark);
32
33 VuoCodeWindow *codeWindow;
34 QListWidget *listWidget;
35
36 friend VuoCodeWindow;
37};