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