Vuo  2.3.2
VuoCodeEditorStages.hh
Go to the documentation of this file.
1 
10 #pragma once
11 
12 #include "VuoShaderFile.hh"
13 
14 class VuoCodeEditor;
15 
19 class VuoCodeEditorStages : public QTabWidget
20 {
21  Q_OBJECT
22 
23 public:
24  explicit VuoCodeEditorStages(QWidget *parent, VuoShaderFile *shaderFile);
25 
27  void updatePosition();
28 
32 
33  bool modified();
34  void setUnmodified();
35 
36  void zoom11();
37  void zoomIn();
38  void zoomOut();
39 
43 
44 signals:
46 
47 private:
48  void keyPressEvent(QKeyEvent *event);
49  void updateColor(bool isDark);
50 };