Vuo  2.1.0
VuoCodeHighlighterGLSL.hh
Go to the documentation of this file.
1 
10 #pragma once
11 
12 class VuoCodeEditor;
13 
17 class VuoCodeHighlighterGLSL : public QSyntaxHighlighter
18 {
19  Q_OBJECT
20 
21 public:
22  VuoCodeHighlighterGLSL(QTextDocument *parent, VuoCodeEditor *codeEditor);
23 
24 private:
25  void highlightBlock(const QString &text);
26  VuoCodeEditor *codeEditor;
27 };