aboutsummaryrefslogtreecommitdiff
path: root/tools/CurveEditor/source/GraphEditorTestApp/CurveEditorTestApp.h
diff options
context:
space:
mode:
authorBryan Galdrikian <[email protected]>2017-08-23 11:24:32 -0700
committerBryan Galdrikian <[email protected]>2017-08-23 11:24:32 -0700
commitf1e539cadfb085cedc32f9773cfb9d14bfcdf138 (patch)
tree7ca74e06a4386dd22fd850a8417a31a85d282a30 /tools/CurveEditor/source/GraphEditorTestApp/CurveEditorTestApp.h
parentUpdated to CL 22661993: (diff)
downloadblast-f1e539cadfb085cedc32f9773cfb9d14bfcdf138.tar.xz
blast-f1e539cadfb085cedc32f9773cfb9d14bfcdf138.zip
Removing ArtistTools and CurveEditor projects
Diffstat (limited to 'tools/CurveEditor/source/GraphEditorTestApp/CurveEditorTestApp.h')
-rw-r--r--tools/CurveEditor/source/GraphEditorTestApp/CurveEditorTestApp.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/tools/CurveEditor/source/GraphEditorTestApp/CurveEditorTestApp.h b/tools/CurveEditor/source/GraphEditorTestApp/CurveEditorTestApp.h
deleted file mode 100644
index ed68141..0000000
--- a/tools/CurveEditor/source/GraphEditorTestApp/CurveEditorTestApp.h
+++ /dev/null
@@ -1,49 +0,0 @@
-#ifndef GRAPHEDITORTESTAPP_H
-#define GRAPHEDITORTESTAPP_H
-
-#include <QtWidgets/QWidget>
-
-namespace nvidia {
-namespace CurveEditor {
-
-class CurveEditorMainWindow;
-class CurveAttributeBase;
-class CurveAttribute;
-class ColorAttribute;
-
-} // namespace CurveEditor
-} // namespace nvidia
-
-using namespace nvidia::CurveEditor;
-
-namespace Ui
-{
- class CurveEditorTestAppClass;
-}
-
-class CurveEditorTestApp : public QWidget
-{
- Q_OBJECT
-
-public:
- CurveEditorTestApp(QWidget *parent = 0, Qt::WindowFlags flags = 0);
- ~CurveEditorTestApp();
-
-private slots:
- void on_btnCurveEditor_clicked(void);
- void onCurveAttributeChanged(nvidia::CurveEditor::CurveAttribute* attribute);
- void onColorAttributeChanged(nvidia::CurveEditor::ColorAttribute* attribute);
- void onReloadColorAttributeTexture(nvidia::CurveEditor::ColorAttribute* attribute, bool reloadColorTex, int selectedCtrlPntIndex);
-
-private:
- void _fillCurveAttributes();
- void _fillColorAttributes();
-
-private:
- Ui::CurveEditorTestAppClass* ui;
- CurveEditorMainWindow* _curveEditor;
- std::vector<CurveAttributeBase*> _curveAttributes;
- std::vector<ColorAttribute*> _colorAttributes;
-};
-
-#endif // GRAPHEDITORTESTAPP_H