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